Received: by mail.netbsd.org (Postfix, from userid 605) id 2E7D884DF3; Thu, 12 Mar 2020 17:36:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AA4A684DEC for ; Thu, 12 Mar 2020 17:36:36 +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 IhaReXB_5HQS for ; Thu, 12 Mar 2020 17:36:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2E01C84DEB for ; Thu, 12 Mar 2020 17:36:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 21C00FB27; Thu, 12 Mar 2020 17:36:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158403459639500" MIME-Version: 1.0 Date: Thu, 12 Mar 2020 17:36:36 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/ragel To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200312173636.21C00FB27@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. --_----------=_158403459639500 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Mar 12 17:36:36 UTC 2020 Modified Files: pkgsrc/devel/ragel: distinfo Added Files: pkgsrc/devel/ragel/patches: patch-test_runtests.in Log Message: ragel: fix unportable test(1) operator in test run script The script uses bash as interpreter, and pkgsrc doesn't run them yet, so we could skip instead... To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/ragel/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/devel/ragel/patches/patch-test_runtests.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158403459639500 Content-Disposition: inline Content-Length: 1604 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ragel/distinfo diff -u pkgsrc/devel/ragel/distinfo:1.10 pkgsrc/devel/ragel/distinfo:1.11 --- pkgsrc/devel/ragel/distinfo:1.10 Wed Apr 19 18:32:47 2017 +++ pkgsrc/devel/ragel/distinfo Thu Mar 12 17:36:35 2020 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.10 2017/04/19 18:32:47 wiz Exp $ +$NetBSD: distinfo,v 1.11 2020/03/12 17:36:35 wiz Exp $ SHA1 (ragel-6.10.tar.gz) = 946162090fb58b794ed53173fac13398d565b794 RMD160 (ragel-6.10.tar.gz) = e37a0f83d3acbb77c7d7ea115f2faf0f2478724b @@ -6,3 +6,4 @@ SHA512 (ragel-6.10.tar.gz) = 6c1fe4f6fa8 Size (ragel-6.10.tar.gz) = 1232993 bytes SHA1 (patch-aapl_bstcommon.h) = 540e74d2ff3ace21d3fb0cd817027cf18837bc98 SHA1 (patch-ragel_javacodegen.cpp) = 3fc6b892b18993a769c7eb80bb89bbef63d71c7d +SHA1 (patch-test_runtests.in) = 53605647f71655b05db3721fec44046d960f8e78 Added files: Index: pkgsrc/devel/ragel/patches/patch-test_runtests.in diff -u /dev/null pkgsrc/devel/ragel/patches/patch-test_runtests.in:1.1 --- /dev/null Thu Mar 12 17:36:36 2020 +++ pkgsrc/devel/ragel/patches/patch-test_runtests.in Thu Mar 12 17:36:35 2020 @@ -0,0 +1,15 @@ +$NetBSD: patch-test_runtests.in,v 1.1 2020/03/12 17:36:35 wiz Exp $ + +Fix unportable test(1) operator. + +--- test/runtests.in.orig 2017-03-24 03:29:28.000000000 +0000 ++++ test/runtests.in +@@ -104,7 +104,7 @@ function run_test() + + out_args="" + [ $lang != java ] && out_args="-o ${binary}"; +- [ $lang == csharp ] && out_args="-out:${binary}"; ++ [ $lang = csharp ] && out_args="-out:${binary}"; + + # Ruby doesn't need to be compiled. + if [ $lang != ruby ]; then --_----------=_158403459639500--