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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8447713933E for ; Mon, 5 Jul 2021 23:31:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B22A3E09C3; Mon, 5 Jul 2021 23:31:42 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0AAA9E09C3 for ; Mon, 5 Jul 2021 23:31:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C42C9342A6C for ; Mon, 5 Jul 2021 23:31:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55673174 for ; Mon, 5 Jul 2021 23:31:38 +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: <1625527873.a59843d9bdbd557d237a4e6f4ec85eabc210d0d9.dilfridge@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto-x86.conf X-VCS-Directories: tools/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: a59843d9bdbd557d237a4e6f4ec85eabc210d0d9 X-VCS-Branch: master Date: Mon, 5 Jul 2021 23:31:38 +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: 25af6dd2-ad7e-4728-a6da-bc5bcd1aea4e X-Archives-Hash: 849cad8557b0bf747bdf80c4ad31a6aa commit: a59843d9bdbd557d237a4e6f4ec85eabc210d0d9 Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Jul 5 23:31:13 2021 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Mon Jul 5 23:31:13 2021 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=a59843d9 x86: delete obsolete catalyst-auto config file Signed-off-by: Andreas K. Hüttel gentoo.org> tools/catalyst-auto-x86.conf | 77 -------------------------------------------- 1 file changed, 77 deletions(-) diff --git a/tools/catalyst-auto-x86.conf b/tools/catalyst-auto-x86.conf deleted file mode 100644 index 075bb447..00000000 --- a/tools/catalyst-auto-x86.conf +++ /dev/null @@ -1,77 +0,0 @@ -# This is the config file for the catalyst-auto script. It should be pretty -# self-explanatory. - -UPLOAD_USER=x86 -UPLOAD_KEY=/root/.ssh/id_rsa -host=$(hostname) - -ARCH="x86" -TYPE="auto" -source /etc/catalyst/release/build.env - -SPECS_DIR=${REPO_DIR}/releases/specs/x86 - -SETS="" -SPECS="nosuchfile.spec" - -KCONFIG_DIR=${REPO_DIR}/releases/kconfig/x86 - -EXTENSIONS="@(.tar.xz|.tar.bz2|.tar.gz|.tar|.sfs)" - -update_symlinks() { - # Symlink the latest stages3 to build from - for d in ${BUILD_SRCDIR_BASE}/{default,hardened} ; do - pushd "${d}" >/dev/null || exit - shopt -s extglob - for f in $(ls stage3*${EXTENSIONS} | grep -v latest | give_latest_from_dates ) ; do - # 20yymmddThhmmssZ - # 20yymmddhhmmss - # 20yymmdd - # 20yy.n - of=$(perl -p \ - -e 's/20\d{6}T\d{6}Z/latest/g;' \ - -e 's/20\d{6}\d{6}/latest/g;' \ - -e 's/20\d{6}/latest/g;' \ - -e 's/20\d{2}\.\d{2}/latest/g;' \ - <<<"$f") - ln -svf "$f" "$of" - done - popd >/dev/null || exit - done -} - -post_build() { - local set=$1 spec=$2 - - pushd "${BUILD_SRCDIR_BASE}"/default >/dev/null || exit - UPLOAD_DEST=${BUILD_DESTDIR_BASE} - case ${spec} in - stage3.spec) - upload stage3-i486-${TIMESTAMP}.tar.xz* - ;; - installcd-stage2-minimal.spec) - upload install-x86-minimal-${TIMESTAMP}.iso* - ;; - i686/stage3.spec) - upload stage3-i686-${TIMESTAMP}.tar.xz* - ;; - i686/stage3-systemd.spec) - upload stage3-i686-systemd-${TIMESTAMP}.tar.xz* - ;; - esac - popd >/dev/null || exit - - pushd "${BUILD_SRCDIR_BASE}"/hardened >/dev/null || exit - UPLOAD_DEST=${BUILD_DESTDIR_BASE}/hardened - case ${spec} in - hardened/stage3.spec) - upload stage3-i686-hardened-${TIMESTAMP}.tar.xz* - ;; - hardened/admincd-stage2.spec) - upload admincd-x86-${TIMESTAMP}.iso* - ;; - esac - popd >/dev/null || exit -} - -# vim:ft=sh: