commit:     5e6a94495ac4622e98c9c72c9d9077fbd78216e1
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 31 16:00:13 2021 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Jul 31 16:00:13 2021 +0000
URL:        https://gitweb.gentoo.org/proj/releng.git/commit/?id=5e6a9449

Drop more musl special sauce

Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 scripts/cp-musl.sh          | 21 ---------------------
 scripts/update_musl_overlay | 13 -------------
 2 files changed, 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

Reply via email to