diff options
author | wiz <wiz@pkgsrc.org> | 2020-03-13 07:39:41 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2020-03-13 07:39:41 +0000 |
commit | 31b6a8fbb62f9f4b34ce878aec20d9b66e80206e (patch) | |
tree | d90455df0da770d114751748553e64c3b8cbcbe9 /multimedia | |
parent | ac69c8b42e454fd536ac7c03ea280312f1a0042c (diff) | |
download | pkgsrc-31b6a8fbb62f9f4b34ce878aec20d9b66e80206e.tar.gz |
gst-plugins1-*: fix unportable test(1) operator
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/gst-plugins1-bad/distinfo | 3 | ||||
-rw-r--r-- | multimedia/gst-plugins1-bad/patches/patch-Makefile.in | 15 | ||||
-rw-r--r-- | multimedia/gst-plugins1-good/distinfo | 3 | ||||
-rw-r--r-- | multimedia/gst-plugins1-good/patches/patch-Makefile.in | 15 | ||||
-rw-r--r-- | multimedia/gst-plugins1-ugly/distinfo | 3 | ||||
-rw-r--r-- | multimedia/gst-plugins1-ugly/patches/patch-Makefile.in | 15 |
6 files changed, 51 insertions, 3 deletions
diff --git a/multimedia/gst-plugins1-bad/distinfo b/multimedia/gst-plugins1-bad/distinfo index eec9cd7cf2a..cc742439448 100644 --- a/multimedia/gst-plugins1-bad/distinfo +++ b/multimedia/gst-plugins1-bad/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.36 2020/01/10 12:47:06 wiz Exp $ +$NetBSD: distinfo,v 1.37 2020/03/13 07:39:41 wiz Exp $ SHA1 (gst-plugins-bad-1.16.2.tar.xz) = e5a1b317c1e6f77aebe74fd6a823c4668ba6c1f7 RMD160 (gst-plugins-bad-1.16.2.tar.xz) = e42b51eee105a2c6181725ca801887ea64f3f4ce SHA512 (gst-plugins-bad-1.16.2.tar.xz) = aeaf3388156fe7317e193a3f940d391a6d8a1187f93e6925cee4cb02c4e78d9b456c22c27c318f0f9b2212ca68887c5cdcc256adaf068bfab8ec5c091a1e8805 Size (gst-plugins-bad-1.16.2.tar.xz) = 4887812 bytes +SHA1 (patch-Makefile.in) = 415bdaffc5d0cd7543efadb7dca2707afabe98e1 diff --git a/multimedia/gst-plugins1-bad/patches/patch-Makefile.in b/multimedia/gst-plugins1-bad/patches/patch-Makefile.in new file mode 100644 index 00000000000..7e72786125d --- /dev/null +++ b/multimedia/gst-plugins1-bad/patches/patch-Makefile.in @@ -0,0 +1,15 @@ +$NetBSD: patch-Makefile.in,v 1.1 2020/03/13 07:39:42 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 diff --git a/multimedia/gst-plugins1-good/distinfo b/multimedia/gst-plugins1-good/distinfo index 1868c3ae922..e09274d4da7 100644 --- a/multimedia/gst-plugins1-good/distinfo +++ b/multimedia/gst-plugins1-good/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.42 2020/01/10 12:47:06 wiz Exp $ +$NetBSD: distinfo,v 1.43 2020/03/13 07:39:42 wiz Exp $ SHA1 (gst-plugins-good-1.16.2.tar.xz) = 071f195359ff0b3b3329ad3ad2b89803a1e7d063 RMD160 (gst-plugins-good-1.16.2.tar.xz) = a666f33406af18f9a6aafc70948c9ac24699e50f SHA512 (gst-plugins-good-1.16.2.tar.xz) = ab0dfd51af3ea345db466618547c35c78b5f08e725096b66074a5a7e0a83ca25ac51d2d915b7a8c07b70f8e4c9fc65d51c1851f147a5a5a71fbca58e1eb5ffd4 Size (gst-plugins-good-1.16.2.tar.xz) = 3897172 bytes +SHA1 (patch-Makefile.in) = 415bdaffc5d0cd7543efadb7dca2707afabe98e1 SHA1 (patch-sys_osxvideo_Makefile.in) = 1c598bd99f46c4b4acc27008b2c863ef4ae418a0 diff --git a/multimedia/gst-plugins1-good/patches/patch-Makefile.in b/multimedia/gst-plugins1-good/patches/patch-Makefile.in new file mode 100644 index 00000000000..7e72786125d --- /dev/null +++ b/multimedia/gst-plugins1-good/patches/patch-Makefile.in @@ -0,0 +1,15 @@ +$NetBSD: patch-Makefile.in,v 1.1 2020/03/13 07:39:42 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 diff --git a/multimedia/gst-plugins1-ugly/distinfo b/multimedia/gst-plugins1-ugly/distinfo index e3222c7b3e0..e541e561807 100644 --- a/multimedia/gst-plugins1-ugly/distinfo +++ b/multimedia/gst-plugins1-ugly/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.37 2020/01/10 12:47:06 wiz Exp $ +$NetBSD: distinfo,v 1.38 2020/03/13 07:39:42 wiz Exp $ SHA1 (gst-plugins-ugly-1.16.2.tar.xz) = be62f7d8744e0b9c0dd223ef7662e983be9fa5f7 RMD160 (gst-plugins-ugly-1.16.2.tar.xz) = b6605f4bdf9ba768307c1806c7a75b530c832cff SHA512 (gst-plugins-ugly-1.16.2.tar.xz) = 9f393043f51b12b376607e68b3b86437af86e321e3a3566e59c7f3507ed26622211df87e30a23bcc927f37bc11f53ca3b29f1b12bf58e623ce18edc88a9cdee3 Size (gst-plugins-ugly-1.16.2.tar.xz) = 893964 bytes +SHA1 (patch-Makefile.in) = 415bdaffc5d0cd7543efadb7dca2707afabe98e1 diff --git a/multimedia/gst-plugins1-ugly/patches/patch-Makefile.in b/multimedia/gst-plugins1-ugly/patches/patch-Makefile.in new file mode 100644 index 00000000000..7e72786125d --- /dev/null +++ b/multimedia/gst-plugins1-ugly/patches/patch-Makefile.in @@ -0,0 +1,15 @@ +$NetBSD: patch-Makefile.in,v 1.1 2020/03/13 07:39:42 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 |