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: scripts/
Date: Sat, 31 Jul 2021 16:00:38
Message-Id: 1627747213.5e6a94495ac4622e98c9c72c9d9077fbd78216e1.dilfridge@gentoo
1 commit: 5e6a94495ac4622e98c9c72c9d9077fbd78216e1
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 31 16:00:13 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 31 16:00:13 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=5e6a9449
7
8 Drop more musl special sauce
9
10 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
11
12 scripts/cp-musl.sh | 21 ---------------------
13 scripts/update_musl_overlay | 13 -------------
14 2 files changed, 34 deletions(-)
15
16 diff --git a/scripts/cp-musl.sh b/scripts/cp-musl.sh
17 deleted file mode 100755
18 index 93f51675..00000000
19 --- a/scripts/cp-musl.sh
20 +++ /dev/null
21 @@ -1,21 +0,0 @@
22 -#!/bin/bash
23 -
24 -CATDIR="/release/buildroot/alt-dev/builds/musl"
25 -SERVER="amd64@dipper:~/musl"
26 -LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*amd64*' -type l)
27 -#COMMAND="rsync -e ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes -o StrictHostKeyChecking=no -a --omit-dir-times --delay-updates "
28 -COMMAND="rsync"
29 -for f in $LIST; do
30 - $COMMAND $(realpath $f) $SERVER
31 - $COMMAND $(realpath $f).CONTENTS.gz $SERVER
32 - $COMMAND $(realpath $f).DIGESTS $SERVER
33 -done
34 -
35 -#SERVER="/release/weekly/builds/x86/musl"
36 -SERVER="x86@dipper:~/musl"
37 -LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*i686*' -type l)
38 -for f in $LIST; do
39 - $COMMAND $(realpath $f) $SERVER
40 - $COMMAND $(realpath $f).CONTENTS.gz $SERVER
41 - $COMMAND $(realpath $f).DIGESTS $SERVER
42 -done
43
44 diff --git a/scripts/update_musl_overlay b/scripts/update_musl_overlay
45 deleted file mode 100755
46 index 4d62aef0..00000000
47 --- a/scripts/update_musl_overlay
48 +++ /dev/null
49 @@ -1,13 +0,0 @@
50 -#!/bin/bash
51 -
52 -MUSLDIR="/release/trees/musl-auto"
53 -MUSLURI="https://anongit.gentoo.org/git/proj/musl.git"
54 -
55 -if [ ! -d "${MUSLDIR}" ] ; then
56 - echo musl directory not present yet or not a directory, fixing
57 - rm -rf "${MUSLDIR}"
58 - git clone "${MUSLURI}" "${MUSLDIR}"
59 -else
60 - cd "${MUSLDIR}"
61 - git pull
62 -fi