pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/ragel



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.

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



Home | Main Index | Thread Index | Old Index