pkgsrc-Changes archive

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

CVS commit: pkgsrc/lang/gjs



Module Name:    pkgsrc
Committed By:   wiz
Date:           Thu Mar 12 22:53:12 UTC 2020

Modified Files:
        pkgsrc/lang/gjs: distinfo
        pkgsrc/lang/gjs/patches: patch-Makefile.am

Log Message:
gjs: fix unportable test(1) operator


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/gjs/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/gjs/patches/patch-Makefile.am

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

Modified files:

Index: pkgsrc/lang/gjs/distinfo
diff -u pkgsrc/lang/gjs/distinfo:1.1 pkgsrc/lang/gjs/distinfo:1.2
--- pkgsrc/lang/gjs/distinfo:1.1        Sun Oct  6 15:50:31 2019
+++ pkgsrc/lang/gjs/distinfo    Thu Mar 12 22:53:12 2020
@@ -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

Index: pkgsrc/lang/gjs/patches/patch-Makefile.am
diff -u pkgsrc/lang/gjs/patches/patch-Makefile.am:1.1 pkgsrc/lang/gjs/patches/patch-Makefile.am:1.2
--- pkgsrc/lang/gjs/patches/patch-Makefile.am:1.1       Sun Oct  6 15:50:31 2019
+++ pkgsrc/lang/gjs/patches/patch-Makefile.am   Thu Mar 12 22:53:12 2020
@@ -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 @@ Disable tests, they pull in a lot more d
  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