aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2021-07-31 18:00:13 +0200
committerAndreas K. Hüttel <dilfridge@gentoo.org>2021-07-31 18:00:13 +0200
commit5e6a94495ac4622e98c9c72c9d9077fbd78216e1 (patch)
tree7f01f6edbdd14eccd1d965f9338e39a177218446 /scripts
parentDrop all the musl special sauce, integrated in main builds now (diff)
downloadreleng-5e6a94495ac4622e98c9c72c9d9077fbd78216e1.tar.gz
releng-5e6a94495ac4622e98c9c72c9d9077fbd78216e1.tar.bz2
releng-5e6a94495ac4622e98c9c72c9d9077fbd78216e1.zip
Drop more musl special sauce
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/cp-musl.sh21
-rwxr-xr-xscripts/update_musl_overlay13
2 files changed, 0 insertions, 34 deletions
diff --git a/scripts/cp-musl.sh b/scripts/cp-musl.sh
deleted file mode 100755
index 93f51675..00000000
--- a/scripts/cp-musl.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-CATDIR="/release/buildroot/alt-dev/builds/musl"
-SERVER="amd64@dipper:~/musl"
-LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*amd64*' -type l)
-#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 "
-COMMAND="rsync"
-for f in $LIST; do
- $COMMAND $(realpath $f) $SERVER
- $COMMAND $(realpath $f).CONTENTS.gz $SERVER
- $COMMAND $(realpath $f).DIGESTS $SERVER
-done
-
-#SERVER="/release/weekly/builds/x86/musl"
-SERVER="x86@dipper:~/musl"
-LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*i686*' -type l)
-for f in $LIST; do
- $COMMAND $(realpath $f) $SERVER
- $COMMAND $(realpath $f).CONTENTS.gz $SERVER
- $COMMAND $(realpath $f).DIGESTS $SERVER
-done
diff --git a/scripts/update_musl_overlay b/scripts/update_musl_overlay
deleted file mode 100755
index 4d62aef0..00000000
--- a/scripts/update_musl_overlay
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-MUSLDIR="/release/trees/musl-auto"
-MUSLURI="https://anongit.gentoo.org/git/proj/musl.git"
-
-if [ ! -d "${MUSLDIR}" ] ; then
- echo musl directory not present yet or not a directory, fixing
- rm -rf "${MUSLDIR}"
- git clone "${MUSLURI}" "${MUSLDIR}"
-else
- cd "${MUSLDIR}"
- git pull
-fi