Drop more musl special sauce

Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
This commit is contained in:
Andreas K. Hüttel 2021-07-31 18:00:13 +02:00
parent c89c48aecf
commit 5e6a94495a
No known key found for this signature in database
GPG key ID: 4C49F79E54D0A206
2 changed files with 0 additions and 34 deletions

View file

@ -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

View file

@ -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