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: Tue, 29 Jun 2021 21:12:26
Message-Id: 1625001114.4bedfac79514e54fce9090b49ad716a723d4ec27.dilfridge@gentoo
1 commit: 4bedfac79514e54fce9090b49ad716a723d4ec27
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 29 21:11:54 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 29 21:11:54 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=4bedfac7
7
8 catalyst-auto: also here, move riscv64 stages back to build-type default
9
10 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
11
12 tools/catalyst-auto-qemu-riscv.conf | 9 ++-------
13 1 file changed, 2 insertions(+), 7 deletions(-)
14
15 diff --git a/tools/catalyst-auto-qemu-riscv.conf b/tools/catalyst-auto-qemu-riscv.conf
16 index 4954bdae..6a03879b 100644
17 --- a/tools/catalyst-auto-qemu-riscv.conf
18 +++ b/tools/catalyst-auto-qemu-riscv.conf
19 @@ -19,9 +19,6 @@ SETS="
20 multilib_200_systemd
21 "
22
23 -# riscv32 does not work yet
24 -# ilp32
25 -
26 SET_lp64d_200_openrc_SPECS="stage1-lp64d-20.0-openrc.spec stage3-lp64d-20.0-openrc.spec"
27 SET_lp64d_200_systemd_SPECS="stage1-lp64d-20.0-systemd.spec stage3-lp64d-20.0-systemd.spec"
28 SET_lp64_200_openrc_SPECS="stage1-lp64-20.0-openrc.spec stage3-lp64-20.0-openrc.spec"
29 @@ -29,12 +26,10 @@ SET_lp64_200_systemd_SPECS="stage1-lp64-20.0-systemd.spec stage3-lp64-20.0-syste
30 SET_multilib_200_openrc_SPECS="stage1-multilib-20.0-openrc.spec stage3-multilib-20.0-openrc.spec"
31 SET_multilib_200_systemd_SPECS="stage1-multilib-20.0-systemd.spec stage3-multilib-20.0-systemd.spec"
32
33 -SET_ilp32_SPECS="stage1-ilp32.spec stage3-ilp32.spec"
34 -
35 update_symlinks() {
36 # Symlink the latest stages3 to build from
37 local d f
38 - for d in "${BUILD_SRCDIR_BASE}/builds/default" "${BUILD_SRCDIR_BASE}/builds/20.0" ; do
39 + for d in "${BUILD_SRCDIR_BASE}/builds/default" ; do
40 pushd "${d}" >/dev/null
41 for f in $(ls stage3*xz | grep -v latest | give_latest_from_dates) ; do
42 local of=$(echo "${f}" | convert_filename)
43 @@ -49,7 +44,7 @@ post_build() {
44
45 case ${spec} in
46 stage3*.spec)
47 - pushd "${BUILD_SRCDIR_BASE}/builds/20.0" >/dev/null
48 + pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null
49 upload stage3-rv64_$(echo ${spec}|sed -e 's:^stage3-::g' -e 's:\.spec$::g')-${TIMESTAMP}*.xz*
50 popd >/dev/null
51 ;;