Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/releng:master commit in: tools/
Date: Sat, 31 Jul 2021 15:51:00
Message-Id: 1627746576.a883a24bdc209e08dd3fd4730b02d99782dffe0f.dilfridge@gentoo
1 commit: a883a24bdc209e08dd3fd4730b02d99782dffe0f
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 31 15:49:36 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 31 15:49:36 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=a883a24b
7
8 Drop amd64 autobuild file from pardalote
9
10 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
11
12 tools/catalyst-auto-amd64.conf | 56 ------------------------------------------
13 1 file changed, 56 deletions(-)
14
15 diff --git a/tools/catalyst-auto-amd64.conf b/tools/catalyst-auto-amd64.conf
16 deleted file mode 100644
17 index fc25a273..00000000
18 --- a/tools/catalyst-auto-amd64.conf
19 +++ /dev/null
20 @@ -1,56 +0,0 @@
21 -# This is the config file for the catalyst-auto script. It should be pretty
22 -# self-explanatory.
23 -
24 -UPLOAD_USER=amd64
25 -UPLOAD_KEY=/root/.ssh/id_rsa
26 -host=$(hostname)
27 -
28 -ARCH="amd64"
29 -TYPE="auto"
30 -source /etc/catalyst/release/build.env
31 -
32 -SPECS_DIR=${REPO_DIR}/releases/specs/amd64
33 -
34 -SETS=""
35 -SPECS="nosuchfile.spec"
36 -
37 -KCONFIG_DIR=${REPO_DIR}/releases/kconfig/amd64
38 -
39 -EXTENSIONS="@(.tar.xz|.tar.bz2|.tar.gz|.tar|.sfs)"
40 -
41 -update_symlinks() {
42 - # Symlink the latest stages3 to build from
43 - for d in ${BUILD_SRCDIR_BASE}/{default,hardened} ; do
44 - pushd "${d}" >/dev/null || exit
45 - shopt -s extglob
46 - for f in $(ls stage3*${EXTENSIONS} | grep -v latest | give_latest_from_dates ) ; do
47 - # 20yymmddThhmmssZ
48 - # 20yymmddhhmmss
49 - # 20yymmdd
50 - # 20yy.n
51 - of=$(perl -p \
52 - -e 's/20\d{6}T\d{6}Z/latest/g;' \
53 - -e 's/20\d{6}\d{6}/latest/g;' \
54 - -e 's/20\d{6}/latest/g;' \
55 - -e 's/20\d{2}\.\d{2}/latest/g;' \
56 - <<<"$f")
57 - ln -svf "$f" "$of"
58 - done
59 - popd >/dev/null || exit
60 - done
61 -}
62 -
63 -post_build() {
64 - local set=$1 spec=$2
65 -
66 - pushd "${BUILD_SRCDIR_BASE}"/hardened >/dev/null || exit
67 - UPLOAD_DEST=${BUILD_DESTDIR_BASE}/hardened
68 - case ${spec} in
69 - hardened/stage4-minimal.spec)
70 - upload stage4-amd64-hardened+minimal-${TIMESTAMP}.tar.xz*
71 - ;;
72 - esac
73 - popd >/dev/null || exit
74 -}
75 -
76 -# vim:ft=sh: