From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BD11E15808B for ; Fri, 16 Feb 2024 22:15:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 029A3E29B8; Fri, 16 Feb 2024 22:15:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CFE08E29B8 for ; Fri, 16 Feb 2024 22:15:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D00C5335CAF for ; Fri, 16 Feb 2024 22:15:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 344FC1132 for ; Fri, 16 Feb 2024 22:15:02 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1708121373.858d00cd634502fed8325caacbb1fbe4e8291c1f.dilfridge@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto-ia64.conf X-VCS-Directories: tools/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 858d00cd634502fed8325caacbb1fbe4e8291c1f X-VCS-Branch: master Date: Fri, 16 Feb 2024 22:15:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b6ed51c5-394a-4f86-8806-dc40c01f470a X-Archives-Hash: 77ecec0eeabc4f1b3a649ecec019eae7 commit: 858d00cd634502fed8325caacbb1fbe4e8291c1f Author: Andreas K. Hüttel gentoo org> AuthorDate: Fri Feb 16 22:09:33 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Fri Feb 16 22:09:33 2024 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=858d00cd Enable ia64 23.0 builds Signed-off-by: Andreas K. Hüttel gentoo.org> tools/catalyst-auto-ia64.conf | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/tools/catalyst-auto-ia64.conf b/tools/catalyst-auto-ia64.conf index 47c24f74..db010a8d 100644 --- a/tools/catalyst-auto-ia64.conf +++ b/tools/catalyst-auto-ia64.conf @@ -8,6 +8,8 @@ SPECS_DIR=${REPO_DIR}/releases/specs/ia64 SETS=" openrc systemd_mu + openrc_23 + systemd_23 " SET_openrc_SPECS="stage1-openrc.spec stage3-openrc.spec" @@ -15,6 +17,11 @@ SET_openrc_OPTIONAL_SPECS="installcd-stage1.spec installcd-stage2-minimal.spec" SET_systemd_mu_SPECS="stage1-systemd-mu.spec stage3-systemd-mu.spec" +SET_openrc_23_SPECS="stage1-openrc-23.spec stage3-openrc-23.spec" + +SET_systemd_23_SPECS="stage1-systemd-23.spec stage3-systemd-23.spec" + + KCONFIG_DIR=${REPO_DIR}/releases/kconfig/ia64 update_symlinks() { @@ -34,22 +41,20 @@ update_symlinks() { post_build() { local set=$1 spec=$2 - pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null + pushd "${BUILD_SRCDIR_BASE}" >/dev/null case ${spec} in installcd-stage2*) - upload *${TIMESTAMP}*.iso* + upload builds/default/*${TIMESTAMP}*.iso* ;; stage3-openrc.spec) - upload stage3-ia64-openrc-${TIMESTAMP}.tar.xz* - upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/default/stage3-ia64" ia64/17.0/ia64 + upload builds/default/stage3-ia64-openrc-${TIMESTAMP}.tar.xz* + upsync_binpackages packages/default/stage3-ia64 ia64/17.0/ia64 ;; - esac - popd >/dev/null - - pushd "${BUILD_SRCDIR_BASE}/builds/mergedusr" >/dev/null - case ${spec} in stage3-systemd-mu.spec) - upload stage3-ia64-systemd-mergedusr-${TIMESTAMP}.tar.xz* + upload builds/mergedusr/stage3-ia64-systemd-mergedusr-${TIMESTAMP}.tar.xz* + ;; + stage3-systemd-23.spec) + upsync_binpackages packages/23.0-default/stage3-ia64 ia64/23.0/ia64 ;; esac popd >/dev/null