From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1232703-garchives=archives.gentoo.org@lists.gentoo.org> 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 11DEF1382C5 for <garchives@archives.gentoo.org>; Sat, 19 Dec 2020 20:18:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6093FE0991; Sat, 19 Dec 2020 20:18:55 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 4B76BE0991 for <gentoo-commits@lists.gentoo.org>; Sat, 19 Dec 2020 20:18:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 46841340F9E for <gentoo-commits@lists.gentoo.org>; Sat, 19 Dec 2020 20:18:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0CCB4A for <gentoo-commits@lists.gentoo.org>; Sat, 19 Dec 2020 20:18:52 +0000 (UTC) From: "Anthony G. Basile" <blueness@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" <blueness@gentoo.org> Message-ID: <1608409115.c6a9395dbb74ac92292e17b5087d2787c03a7f8c.blueness@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: scripts/ X-VCS-Repository: proj/releng X-VCS-Files: scripts/cp-musl.sh scripts/cp-uclibc.sh X-VCS-Directories: scripts/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: c6a9395dbb74ac92292e17b5087d2787c03a7f8c X-VCS-Branch: master Date: Sat, 19 Dec 2020 20:18:52 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 551e69d9-0191-427b-aa8c-d1803d4548dd X-Archives-Hash: ad1bb0594132da532b04e8bc26d2be00 commit: c6a9395dbb74ac92292e17b5087d2787c03a7f8c Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org> AuthorDate: Sat Dec 19 20:18:24 2020 +0000 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org> CommitDate: Sat Dec 19 20:18:35 2020 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=c6a9395d scripts/{cp-musl.sh,cp-uclibc.sh}: move from nightheron:/home/blueness Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org> scripts/cp-musl.sh | 21 +++++++++++++++++++++ scripts/cp-uclibc.sh | 19 +++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/scripts/cp-musl.sh b/scripts/cp-musl.sh new file mode 100755 index 00000000..93f51675 --- /dev/null +++ b/scripts/cp-musl.sh @@ -0,0 +1,21 @@ +#!/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/cp-uclibc.sh b/scripts/cp-uclibc.sh new file mode 100755 index 00000000..0bfd24a7 --- /dev/null +++ b/scripts/cp-uclibc.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +CATDIR="/release/buildroot/alt-dev/builds/uclibc" +SERVER="amd64@dipper:~/uclibc" +LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*amd64*' -type l) +COMMAND="rsync" +for f in $LIST; do + $COMMAND $(realpath $f) $SERVER + $COMMAND $(realpath $f).CONTENTS.gz $SERVER + $COMMAND $(realpath $f).DIGESTS $SERVER +done + +SERVER="x86@dipper:~/uclibc" +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