From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3DBE4139337 for ; Sat, 31 Jul 2021 16:00:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94D6AE0896; Sat, 31 Jul 2021 16:00:37 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7B325E0896 for ; Sat, 31 Jul 2021 16:00:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 03D08335C2A for ; Sat, 31 Jul 2021 16:00:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 614184A2 for ; Sat, 31 Jul 2021 16:00:34 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1627747213.5e6a94495ac4622e98c9c72c9d9077fbd78216e1.dilfridge@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: scripts/ X-VCS-Repository: proj/releng X-VCS-Files: scripts/cp-musl.sh scripts/update_musl_overlay X-VCS-Directories: scripts/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 5e6a94495ac4622e98c9c72c9d9077fbd78216e1 X-VCS-Branch: master Date: Sat, 31 Jul 2021 16:00:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fb043b44-29c4-4395-82c6-33598eb52bbf X-Archives-Hash: 2060ef6b3578ada7c267332c2bd7487b commit: 5e6a94495ac4622e98c9c72c9d9077fbd78216e1 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Jul 31 16:00:13 2021 +0000 Commit: Andreas K. Hüttel gentoo 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 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