Gentoo Archives: gentoo-commits

From: Ian Stakenvicius <axs@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/mozilla:master commit in: scripts/
Date: Wed, 27 Apr 2016 15:56:26
Message-Id: 1461772539.a1738f6a3804230550af2e81a4d99c58d055ea10.axs@gentoo
1 commit: a1738f6a3804230550af2e81a4d99c58d055ea10
2 Author: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 15:55:39 2016 +0000
4 Commit: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 15:55:39 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=a1738f6a
7
8 verify_distfiles.sh: fix bug so that matching works on *-bin packages
9
10 scripts/verify_distfiles.sh | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13 diff --git a/scripts/verify_distfiles.sh b/scripts/verify_distfiles.sh
14 index 420318b..9ffc867 100755
15 --- a/scripts/verify_distfiles.sh
16 +++ b/scripts/verify_distfiles.sh
17 @@ -20,8 +20,8 @@ check_distfiles() {
18 wget -O ${sigfile} -q https://archive.mozilla.org/pub/${mybasename}/releases/${myver}/SHA512SUMS
19 gpg --verify ${sigfile}.asc ${sigfile} || exit 1
20
21 - grep -e "^DIST ${myname}-${myver}[-\.]" \
22 - -e "^DIST ${mybasename}_.*-${myver}[-\.]" \
23 + grep -e "^DIST ${mybasename}-${myver}[-\.]" \
24 + -e "^DIST ${myname}_.*-${myver}[-\.]" \
25 Manifest |grep -v -- "${myname}-.*-patches-" |awk '{print $7}' |while read ech ; do
26 tmp=$(grep ${ech} Manifest |awk '{print $2}')
27 if grep $ech ${sigfile} &>/dev/null ; then