From d9757b6e0129923f55563f03ff8712bbec84c099 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Apr 15 2025 12:53:06 +0000 Subject: [PATCH 1/2] Drop Fedora 39 as a target It's EOL now. --- diff --git a/archive_repo_manager.py b/archive_repo_manager.py index d62e87c..2ee955c 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 = ['39', '40', '41'] +TARGET_FEDORA_RELEASES = ['40', '41'] # We are processing the org.fedoraproject.prod.bodhi.compose.complete topic diff --git a/run-archive-repo-update b/run-archive-repo-update index f464d9d..e24b42b 100755 --- a/run-archive-repo-update +++ b/run-archive-repo-update @@ -5,7 +5,7 @@ set -eu -o pipefail LOCAL_WORKDIR='/var/archive-repo-manager' PREVIOUS_RUNS_DATESTAMP_FILE=previous-run-datestamps.txt ARCHES="aarch64 ppc64le s390x x86_64" -declare -A SIGNINGKEYS=( [39]='18b8e74c' +declare -A SIGNINGKEYS=( [40]='a15b79cc' [41]='e99d6ad1' ) From caa51daea4b15815ae54e2a25f4d41cfe1f9f00a Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Apr 15 2025 12:54:04 +0000 Subject: [PATCH 2/2] Add Fedora 42 as a target --- diff --git a/archive_repo_manager.py b/archive_repo_manager.py index 2ee955c..619fbd4 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'] +TARGET_FEDORA_RELEASES = ['40', '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 e24b42b..25dce4a 100755 --- a/run-archive-repo-update +++ b/run-archive-repo-update @@ -7,7 +7,9 @@ PREVIOUS_RUNS_DATESTAMP_FILE=previous-run-datestamps.txt ARCHES="aarch64 ppc64le s390x x86_64" declare -A SIGNINGKEYS=( [40]='a15b79cc' - [41]='e99d6ad1' ) + [41]='e99d6ad1' + [42]='105ef944' + ) # A function to get the list of builds in the updates repo # at a given timestamp.