From 1b5469c95b061b794957e27fa4b66ce391551ad2 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Oct 25 2025 19:48:22 +0000 Subject: [PATCH 1/2] Drop Fedora 40 as a target It's EOL. --- diff --git a/archive_repo_manager.py b/archive_repo_manager.py index 619fbd4..136519b 100755 --- a/archive_repo_manager.py +++ b/archive_repo_manager.py @@ -11,7 +11,7 @@ logger = logging.getLogger(__name__) logger.setLevel(logging.INFO) ARCHIVE_REPO_MOUNT_POINT = '/mnt/bucket/' -TARGET_FEDORA_RELEASES = ['40', '41', '42'] +TARGET_FEDORA_RELEASES = ['41', '42'] # We are processing the org.fedoraproject.prod.bodhi.compose.complete topic diff --git a/run-archive-repo-update b/run-archive-repo-update index 25dce4a..8f0939a 100755 --- a/run-archive-repo-update +++ b/run-archive-repo-update @@ -6,7 +6,6 @@ LOCAL_WORKDIR='/var/archive-repo-manager' PREVIOUS_RUNS_DATESTAMP_FILE=previous-run-datestamps.txt ARCHES="aarch64 ppc64le s390x x86_64" declare -A SIGNINGKEYS=( - [40]='a15b79cc' [41]='e99d6ad1' [42]='105ef944' ) From 1b413ab1b94f255ae7dc896b85733e824eafb230 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Oct 25 2025 19:50:32 +0000 Subject: [PATCH 2/2] Add Fedora 43 as a target --- diff --git a/archive_repo_manager.py b/archive_repo_manager.py index 136519b..44ccc5d 100755 --- a/archive_repo_manager.py +++ b/archive_repo_manager.py @@ -11,7 +11,7 @@ logger = logging.getLogger(__name__) logger.setLevel(logging.INFO) ARCHIVE_REPO_MOUNT_POINT = '/mnt/bucket/' -TARGET_FEDORA_RELEASES = ['41', '42'] +TARGET_FEDORA_RELEASES = ['41', '42', '43'] # We are processing the org.fedoraproject.prod.bodhi.compose.complete topic diff --git a/run-archive-repo-update b/run-archive-repo-update index 8f0939a..9e9bf67 100755 --- a/run-archive-repo-update +++ b/run-archive-repo-update @@ -8,6 +8,7 @@ ARCHES="aarch64 ppc64le s390x x86_64" declare -A SIGNINGKEYS=( [41]='e99d6ad1' [42]='105ef944' + [43]='31645531' ) # A function to get the list of builds in the updates repo