pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/lang/gjs gjs: fix unportable test(1) operator
details: https://anonhg.NetBSD.org/pkgsrc/rev/e14ceabe4af1
branches: trunk
changeset: 412874:e14ceabe4af1
user: wiz <wiz%pkgsrc.org@localhost>
date: Thu Mar 12 22:53:12 2020 +0000
description:
gjs: fix unportable test(1) operator
diffstat:
lang/gjs/distinfo | 4 ++--
lang/gjs/patches/patch-Makefile.am | 15 +++++++++++++--
2 files changed, 15 insertions(+), 4 deletions(-)
diffs (43 lines):
diff -r 6743cb0bf119 -r e14ceabe4af1 lang/gjs/distinfo
--- a/lang/gjs/distinfo Thu Mar 12 22:50:30 2020 +0000
+++ b/lang/gjs/distinfo Thu Mar 12 22:53:12 2020 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.1 2019/10/06 15:50:31 fox Exp $
+$NetBSD: distinfo,v 1.2 2020/03/12 22:53:12 wiz Exp $
SHA1 (gjs-1.53.4.tar.xz) = 7193dffbc30e08fec94bc315feeb41bfdaa67c64
RMD160 (gjs-1.53.4.tar.xz) = 1263754399afd24e0522d67241685192574d4e35
SHA512 (gjs-1.53.4.tar.xz) = 5876a8912699fcb22bdfe678a5c9d9893be9dc5b2242160985dd6491c1b4c6148fd4d57d62a9be9c98186176440cf9f99239f8be6b57126cb077c3f90aeb8e2e
Size (gjs-1.53.4.tar.xz) = 635936 bytes
-SHA1 (patch-Makefile.am) = 5b8f2c6468b557c54541172ca0ceba5b77601f8c
+SHA1 (patch-Makefile.am) = 74f02a764cb9f12605c4cccf61dd65bda8027414
SHA1 (patch-configure.ac) = acd8d6e1546c14a636478da2a557cef4bdbc146a
diff -r 6743cb0bf119 -r e14ceabe4af1 lang/gjs/patches/patch-Makefile.am
--- a/lang/gjs/patches/patch-Makefile.am Thu Mar 12 22:50:30 2020 +0000
+++ b/lang/gjs/patches/patch-Makefile.am Thu Mar 12 22:53:12 2020 +0000
@@ -1,8 +1,10 @@
-$NetBSD: patch-Makefile.am,v 1.1 2019/10/06 15:50:31 fox Exp $
+$NetBSD: patch-Makefile.am,v 1.2 2020/03/12 22:53:12 wiz Exp $
Disable tests, they pull in a lot more dependencies.
---- Makefile.am.orig 2019-10-05 08:36:21.151106816 +0000
+Fix unportable test(1) operator.
+
+--- Makefile.am.orig 2018-07-08 22:13:17.000000000 +0000
+++ Makefile.am
@@ -161,9 +161,6 @@ gjs_console_SOURCES = $(gjs_console_srcs
install-exec-hook:
@@ -14,3 +16,12 @@
EXTRA_DIST += \
autogen.sh \
COPYING.LGPL \
+@@ -216,7 +213,7 @@ prepare-minor-release: $(DISTNAME) prepa
+
+ upload-release: $(DISTNAME) Makefile
+ git log origin/master..master
+- @echo -n "Ok to push? [y/N] "; read ans; test x$$ans == xy || exit 1
++ @echo -n "Ok to push? [y/N] "; read ans; test x$$ans = xy || exit 1
+ git push --tags origin master:master
+ scp $(DISTNAME) master.gnome.org:
+ ssh master.gnome.org install-module $(DISTNAME)
Home |
Main Index |
Thread Index |
Old Index