Received: by mail.netbsd.org (Postfix, from userid 605) id 6BB4784D93; Sat, 16 May 2020 21:19:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E592B84D7C for ; Sat, 16 May 2020 21:19:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id J9EU0QxZBg3x for ; Sat, 16 May 2020 21:19:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 63E1884D47 for ; Sat, 16 May 2020 21:19:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 588C1FB27; Sat, 16 May 2020 21:19:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158966399880100" MIME-Version: 1.0 Date: Sat, 16 May 2020 21:19:58 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/devel/netcdf To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20200516211958.588C1FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_158966399880100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Sat May 16 21:19:58 UTC 2020 Modified Files: pkgsrc/devel/netcdf: distinfo pkgsrc/devel/netcdf/patches: patch-ncdap__test_testauth.sh Log Message: devel/netcdf: Remediate test [[ To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/devel/netcdf/distinfo cvs rdiff -u -r1.2 -r1.3 \ pkgsrc/devel/netcdf/patches/patch-ncdap__test_testauth.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158966399880100 Content-Disposition: inline Content-Length: 2209 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/netcdf/distinfo diff -u pkgsrc/devel/netcdf/distinfo:1.20 pkgsrc/devel/netcdf/distinfo:1.21 --- pkgsrc/devel/netcdf/distinfo:1.20 Wed May 16 06:32:58 2018 +++ pkgsrc/devel/netcdf/distinfo Sat May 16 21:19:58 2020 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.20 2018/05/16 06:32:58 wen Exp $ +$NetBSD: distinfo,v 1.21 2020/05/16 21:19:58 gdt Exp $ SHA1 (netcdf-4.6.1.tar.gz) = 11912675530db61474b305b572e06f83d682aa2c RMD160 (netcdf-4.6.1.tar.gz) = aa70f9ca6b5fbd8c914420b3570ac4f316ed47e5 SHA512 (netcdf-4.6.1.tar.gz) = a2d49b013ff1bcba748e4b1f55a14a25728bfdfce44001cbfacfd01d585ea39972950ea4db6fa6ec3531f8be8a3a3072a2338b6b211205719e81d0498fd8a502 Size (netcdf-4.6.1.tar.gz) = 5693557 bytes SHA1 (patch-configure) = 74457173c01355cd0f99f136ae10bdc67e831489 -SHA1 (patch-ncdap__test_testauth.sh) = 2a92af8d23238815b8d6645f2d3c2376d2c2ff91 +SHA1 (patch-ncdap__test_testauth.sh) = ce9968762c7e0ba53ce32c3210cab621f35ea669 Index: pkgsrc/devel/netcdf/patches/patch-ncdap__test_testauth.sh diff -u pkgsrc/devel/netcdf/patches/patch-ncdap__test_testauth.sh:1.2 pkgsrc/devel/netcdf/patches/patch-ncdap__test_testauth.sh:1.3 --- pkgsrc/devel/netcdf/patches/patch-ncdap__test_testauth.sh:1.2 Wed May 16 06:32:58 2018 +++ pkgsrc/devel/netcdf/patches/patch-ncdap__test_testauth.sh Sat May 16 21:19:58 2020 @@ -1,9 +1,29 @@ -$NetBSD: patch-ncdap__test_testauth.sh,v 1.2 2018/05/16 06:32:58 wen Exp $ +$NetBSD: patch-ncdap__test_testauth.sh,v 1.3 2020/05/16 21:19:58 gdt Exp $ Portability fix. ---- ncdap_test/testauth.sh.orig 2018-05-16 03:08:45.000000000 +0000 +\todo File upstream. + +--- ncdap_test/testauth.sh.orig 2018-03-15 21:22:57.000000000 +0000 +++ ncdap_test/testauth.sh +@@ -87,7 +87,7 @@ createrc() { + RCP="$1" ; shift + unset NOPWD + unset BADPWD +- while [[ $# > 0 ]] ; do ++ while [ "$#" > 0 ] ; do + case "$1" in + nopwd) NOPWD=1 ;; + badpwd) BADPWD=1 ;; +@@ -124,7 +124,7 @@ createnetrc() { + NCP="$1" ; shift + unset NOPWD + unset BADPWD +- while [[ $# > 0 ]] ; do ++ while [ "$#" > 0 ] ; do + case "$1" in + nopwd) NOPWD=1 ;; + badpwd) BADPWD=1 ;; @@ -246,7 +246,7 @@ if test "x$RCHOME" = x1 ; then show fi --_----------=_158966399880100--