Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/releng:master commit in: scripts/
Date: Sat, 31 Jul 2021 16:05:27
Message-Id: 1627747441.c55494ef41ec2002a7326caa90704f03eb0dfd7a.dilfridge@gentoo
1 commit: c55494ef41ec2002a7326caa90704f03eb0dfd7a
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 31 16:04:01 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 31 16:04:01 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=c55494ef
7
8 Remove uclibc files
9
10 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
11
12 scripts/cp-uclibc.sh | 19 -------------------
13 1 file changed, 19 deletions(-)
14
15 diff --git a/scripts/cp-uclibc.sh b/scripts/cp-uclibc.sh
16 deleted file mode 100755
17 index 0bfd24a7..00000000
18 --- a/scripts/cp-uclibc.sh
19 +++ /dev/null
20 @@ -1,19 +0,0 @@
21 -#!/bin/bash
22 -
23 -CATDIR="/release/buildroot/alt-dev/builds/uclibc"
24 -SERVER="amd64@dipper:~/uclibc"
25 -LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*amd64*' -type l)
26 -COMMAND="rsync"
27 -for f in $LIST; do
28 - $COMMAND $(realpath $f) $SERVER
29 - $COMMAND $(realpath $f).CONTENTS.gz $SERVER
30 - $COMMAND $(realpath $f).DIGESTS $SERVER
31 -done
32 -
33 -SERVER="x86@dipper:~/uclibc"
34 -LIST=$(find $CATDIR -maxdepth 3 -iname 'stage3*i686*' -type l)
35 -for f in $LIST; do
36 - $COMMAND $(realpath $f) $SERVER
37 - $COMMAND $(realpath $f).CONTENTS.gz $SERVER
38 - $COMMAND $(realpath $f).DIGESTS $SERVER
39 -done