From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 03082138206 for ; Wed, 27 Apr 2016 15:56:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A72C821C00A; Wed, 27 Apr 2016 15:56:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 53F7221C00A for ; Wed, 27 Apr 2016 15:56:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1D759340C7A for ; Wed, 27 Apr 2016 15:56:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ADD8032C for ; Wed, 27 Apr 2016 15:56:18 +0000 (UTC) From: "Ian Stakenvicius" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Stakenvicius" Message-ID: <1461772539.a1738f6a3804230550af2e81a4d99c58d055ea10.axs@gentoo> Subject: [gentoo-commits] proj/mozilla:master commit in: scripts/ X-VCS-Repository: proj/mozilla X-VCS-Files: scripts/verify_distfiles.sh X-VCS-Directories: scripts/ X-VCS-Committer: axs X-VCS-Committer-Name: Ian Stakenvicius X-VCS-Revision: a1738f6a3804230550af2e81a4d99c58d055ea10 X-VCS-Branch: master Date: Wed, 27 Apr 2016 15:56:18 +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-Archives-Salt: 74faeacb-04af-4d54-8b8b-3b45b57ba38a X-Archives-Hash: 55d1ada6de0c2b823c215ffa19ee5d67 commit: a1738f6a3804230550af2e81a4d99c58d055ea10 Author: Ian Stakenvicius gentoo org> AuthorDate: Wed Apr 27 15:55:39 2016 +0000 Commit: Ian Stakenvicius gentoo org> CommitDate: Wed Apr 27 15:55:39 2016 +0000 URL: https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=a1738f6a verify_distfiles.sh: fix bug so that matching works on *-bin packages scripts/verify_distfiles.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/verify_distfiles.sh b/scripts/verify_distfiles.sh index 420318b..9ffc867 100755 --- a/scripts/verify_distfiles.sh +++ b/scripts/verify_distfiles.sh @@ -20,8 +20,8 @@ check_distfiles() { wget -O ${sigfile} -q https://archive.mozilla.org/pub/${mybasename}/releases/${myver}/SHA512SUMS gpg --verify ${sigfile}.asc ${sigfile} || exit 1 - grep -e "^DIST ${myname}-${myver}[-\.]" \ - -e "^DIST ${mybasename}_.*-${myver}[-\.]" \ + grep -e "^DIST ${mybasename}-${myver}[-\.]" \ + -e "^DIST ${myname}_.*-${myver}[-\.]" \ Manifest |grep -v -- "${myname}-.*-patches-" |awk '{print $7}' |while read ech ; do tmp=$(grep ${ech} Manifest |awk '{print $2}') if grep $ech ${sigfile} &>/dev/null ; then