pkgsrc-Changes archive

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

CVS commit: pkgsrc/databases/shared-mime-info



Module Name:    pkgsrc
Committed By:   he
Date:           Wed Feb  5 08:04:17 UTC 2020

Modified Files:
        pkgsrc/databases/shared-mime-info: distinfo
Added Files:
        pkgsrc/databases/shared-mime-info/patches: patch-Makefile.in

Log Message:
Patch away a use of the non-standard == as operator for the test command.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 pkgsrc/databases/shared-mime-info/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/databases/shared-mime-info/patches/patch-Makefile.in

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/shared-mime-info/distinfo
diff -u pkgsrc/databases/shared-mime-info/distinfo:1.34 pkgsrc/databases/shared-mime-info/distinfo:1.35
--- pkgsrc/databases/shared-mime-info/distinfo:1.34     Thu Aug 16 12:45:23 2018
+++ pkgsrc/databases/shared-mime-info/distinfo  Wed Feb  5 08:04:17 2020
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.34 2018/08/16 12:45:23 wiz Exp $
+$NetBSD: distinfo,v 1.35 2020/02/05 08:04:17 he Exp $
 
 SHA1 (shared-mime-info-1.10.tar.xz) = d126fa5a0b16bb5440c6b4c56bf65f83c189e129
 RMD160 (shared-mime-info-1.10.tar.xz) = 2542abd899b372cae77a93dafb8b80b7a097e823
 SHA512 (shared-mime-info-1.10.tar.xz) = efc2b63cae11e6b0332f8607ba57a885dec68a23ac299bbda3eb6e2c7ed071c7c40dba73e9cf23ab675fcaa86ea3777fa931a9f25000a08ec6a748734c88beda
 Size (shared-mime-info-1.10.tar.xz) = 616800 bytes
+SHA1 (patch-Makefile.in) = d7237ae74b408332cbf9e3d50a08118bcbf062b7
 SHA1 (patch-aa) = 2e55e6051412b06b2661f88673cb14154eef2c8a

Added files:

Index: pkgsrc/databases/shared-mime-info/patches/patch-Makefile.in
diff -u /dev/null pkgsrc/databases/shared-mime-info/patches/patch-Makefile.in:1.1
--- /dev/null   Wed Feb  5 08:04:17 2020
+++ pkgsrc/databases/shared-mime-info/patches/patch-Makefile.in Wed Feb  5 08:04:17 2020
@@ -0,0 +1,15 @@
+$NetBSD: patch-Makefile.in,v 1.1 2020/02/05 08:04:17 he Exp $
+
+Don't use non-portable test operator ==.
+
+--- Makefile.in.orig   2018-06-28 10:02:41.000000000 +0000
++++ Makefile.in
+@@ -1238,7 +1238,7 @@ check-translations:
+                       RET=1;                                                                          \
+               fi;                                                                                     \
+       done;                                                                                           \
+-      if [ $$RET == 1 ] ; then exit 1; fi
++      if [ $$RET = 1 ] ; then exit 1; fi
+ 
+ update-translations: create-pot
+       @tx pull --all --force --skip



Home | Main Index | Thread Index | Old Index