pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/multimedia/gst-plugins1-base gst-plugins1-base: fix un...
details: https://anonhg.NetBSD.org/pkgsrc/rev/6743cb0bf119
branches: trunk
changeset: 412873:6743cb0bf119
user: wiz <wiz%pkgsrc.org@localhost>
date: Thu Mar 12 22:50:30 2020 +0000
description:
gst-plugins1-base: fix unportable test(1) operator.
diffstat:
multimedia/gst-plugins1-base/distinfo | 3 ++-
multimedia/gst-plugins1-base/patches/patch-Makefile.in | 15 +++++++++++++++
2 files changed, 17 insertions(+), 1 deletions(-)
diffs (32 lines):
diff -r 0ed6360904e5 -r 6743cb0bf119 multimedia/gst-plugins1-base/distinfo
--- a/multimedia/gst-plugins1-base/distinfo Thu Mar 12 22:16:44 2020 +0000
+++ b/multimedia/gst-plugins1-base/distinfo Thu Mar 12 22:50:30 2020 +0000
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.37 2020/01/10 12:47:06 wiz Exp $
+$NetBSD: distinfo,v 1.38 2020/03/12 22:50:30 wiz Exp $
SHA1 (gst-plugins-base-1.16.2.tar.xz) = 7c650c99cd02f8ebc66d7b980a6b33663c71a89d
RMD160 (gst-plugins-base-1.16.2.tar.xz) = 7013e114ed94abe195ae4669a029ea5493015152
SHA512 (gst-plugins-base-1.16.2.tar.xz) = f28e71bba8ba25d4f18ba3a196f057721151f1ebf1309d808bd6771a3f9a68facfa1970dc4353b6f2fd1e8945edf5272854d328ea11ef399544f8b330f754a42
Size (gst-plugins-base-1.16.2.tar.xz) = 3939868 bytes
+SHA1 (patch-Makefile.in) = 415bdaffc5d0cd7543efadb7dca2707afabe98e1
SHA1 (patch-configure) = ccc8c761bf9bae23c97c6085e221d1a387acd651
diff -r 0ed6360904e5 -r 6743cb0bf119 multimedia/gst-plugins1-base/patches/patch-Makefile.in
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/gst-plugins1-base/patches/patch-Makefile.in Thu Mar 12 22:50:30 2020 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-Makefile.in,v 1.1 2020/03/12 22:50:30 wiz Exp $
+
+Fix unportable test(1) operator.
+
+--- Makefile.in.orig 2020-03-12 22:48:59.393433695 +0000
++++ Makefile.in
+@@ -1198,7 +1198,7 @@ download-po: $(top_srcdir)/common/downlo
+ for f in po/*.po; do \
+ num_changed=`git diff $$f | grep -e '^[+-][^+-]' | wc -l`; \
+ num_date=`git diff $$f | grep -e '^[+-][^+-]' | grep POT-Creation-Date | wc -l`; \
+- if [ $num_date == $num_changed ]; then \
++ if [ $num_date = $num_changed ]; then \
+ git checkout $$f; \
+ fi; \
+ done
Home |
Main Index |
Thread Index |
Old Index