From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AF1A61581CA for ; Thu, 12 Jun 2025 21:30:05 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 9173B34244C for ; Thu, 12 Jun 2025 21:30:05 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id CF1AF1104DB; Thu, 12 Jun 2025 21:30:03 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 bobolink.gentoo.org (Postfix) with ESMTPS id C2E8E1104DB for ; Thu, 12 Jun 2025 21:30:03 +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 6DEF034226D for ; Thu, 12 Jun 2025 21:30:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EBDDB64F for ; Thu, 12 Jun 2025 21:30:00 +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: <1749763766.aa97f47eb9e9a3f1f1929215aec2fcb4b374c961.dilfridge@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto-qemu-m68k.conf X-VCS-Directories: tools/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: aa97f47eb9e9a3f1f1929215aec2fcb4b374c961 X-VCS-Branch: master Date: Thu, 12 Jun 2025 21:30:00 +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: 01b99961-3334-4544-b8d5-4a31084d240b X-Archives-Hash: 8526ea0f9d1bd60b87ed4cc26346e262 commit: aa97f47eb9e9a3f1f1929215aec2fcb4b374c961 Author: Andreas K. Hüttel gentoo org> AuthorDate: Thu Jun 12 21:29:26 2025 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Thu Jun 12 21:29:26 2025 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=aa97f47e Enable m68k aligned t64 builds Signed-off-by: Andreas K. Hüttel gentoo.org> tools/catalyst-auto-qemu-m68k.conf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/tools/catalyst-auto-qemu-m68k.conf b/tools/catalyst-auto-qemu-m68k.conf index 65c01527..acb97885 100644 --- a/tools/catalyst-auto-qemu-m68k.conf +++ b/tools/catalyst-auto-qemu-m68k.conf @@ -11,6 +11,8 @@ SPECS_DIR=${REPO_DIR}/releases/specs-qemu/m68k EMAIL_SUBJECT_PREPEND="[m68k-qemu-auto]" SETS=" + openrc_23_t64 + systemd_23_t64 openrc_23 systemd_23 musl_23 @@ -22,6 +24,10 @@ SET_systemd_23_SPECS="stage1-systemd-23.spec stage3-systemd-23.spec" SET_musl_23_SPECS="stage1-musl-23.spec stage3-musl-23.spec" +SET_openrc_23_t64_SPECS="aligned/stage1-openrc-23.spec aligned/stage3-openrc-23.spec" + +SET_systemd_23_t64_SPECS="aligned/stage1-systemd-23.spec aligned/stage3-systemd-23.spec" + update_symlinks() { # Symlink the latest stages3 to build from local d f @@ -57,6 +63,17 @@ post_build() { upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-musl/stage3-m68k_musl" m68k/23.0/m68k_musl popd >/dev/null ;; + aligned/stage3-openrc-23.spec) + pushd "${BUILD_SRCDIR_BASE}/builds/23.0-time64" >/dev/null + upload stage3-m68k-t64-openrc-${TIMESTAMP}*.xz* + popd >/dev/null + ;; + aligned/stage3-systemd-23.spec) + pushd "${BUILD_SRCDIR_BASE}/builds/23.0-time64" >/dev/null + upload stage3-m68k-t64-systemd-${TIMESTAMP}*.xz* + upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-time64/stage3-m68k" m68k/23.0/m68k-t64 + popd >/dev/null + ;; *) echo "Finished ${spec}" ;;