From 4c05691ad4617a61e630792277a94e8b84689cf1 Mon Sep 17 00:00:00 2001 From: Michael Armijo Date: May 27 2026 18:45:38 +0000 Subject: [PATCH 1/2] drop 42 as a target Drop F42 as a target since it's EOL now. --- diff --git a/archive_repo_manager.py b/archive_repo_manager.py index 72a342e..53d221c 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 = ['42', '43', '44'] +TARGET_FEDORA_RELEASES = ['43', '44'] # We are processing the org.fedoraproject.prod.bodhi.compose.complete topic diff --git a/run-archive-repo-update b/run-archive-repo-update index 3b4a4a3..ad77218 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=( - [42]='105ef944' [43]='31645531' [44]='6d9f90a6' ) @@ -18,7 +17,6 @@ declare -A SIGNINGKEYS=( # - A build was used that was never sent through bodhi. Example: # - https://github.com/coreos/fedora-coreos-tracker/issues/2142#issuecomment-4416057431 declare -A KOJI_MANUAL_BUILD_OVERRIDES=( - [42]='' [43]='' [44]='' ) From 162daa76a6d95a3ec709eb2c1474a9dbe17aa536 Mon Sep 17 00:00:00 2001 From: Michael Armijo Date: May 27 2026 18:49:13 +0000 Subject: [PATCH 2/2] Add manual override for vim-9.2.390-1.fc44 This package is missing for ppc64le, most likely a failure during downloading due to https://pagure.io/releng/archive-repo-manager/issue/31. Add a manual override for vim to add it to the archive for ppc64le. --- diff --git a/run-archive-repo-update b/run-archive-repo-update index ad77218..a2bcab6 100755 --- a/run-archive-repo-update +++ b/run-archive-repo-update @@ -18,7 +18,7 @@ declare -A SIGNINGKEYS=( # - https://github.com/coreos/fedora-coreos-tracker/issues/2142#issuecomment-4416057431 declare -A KOJI_MANUAL_BUILD_OVERRIDES=( [43]='' - [44]='' + [44]='vim-9.2.390-1.fc44' ) # A function to get the list of builds in the updates repo