pkgsrc-Changes archive

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

CVS commit: pkgsrc/pkgtools/url2pkg



Module Name:    pkgsrc
Committed By:   rillig
Date:           Thu Nov 14 20:03:47 UTC 2019

Modified Files:
        pkgsrc/pkgtools/url2pkg: Makefile
        pkgsrc/pkgtools/url2pkg/files: url2pkg.py

Log Message:
pkgtools/url2pkg: update to 19.3.6

Changes since 19.3.5:

No longer print a stack trace when Ctrl+C is pressed.


To generate a diff of this commit:
cvs rdiff -u -r1.108 -r1.109 pkgsrc/pkgtools/url2pkg/Makefile
cvs rdiff -u -r1.25 -r1.26 pkgsrc/pkgtools/url2pkg/files/url2pkg.py

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

Modified files:

Index: pkgsrc/pkgtools/url2pkg/Makefile
diff -u pkgsrc/pkgtools/url2pkg/Makefile:1.108 pkgsrc/pkgtools/url2pkg/Makefile:1.109
--- pkgsrc/pkgtools/url2pkg/Makefile:1.108      Mon Oct 28 20:17:24 2019
+++ pkgsrc/pkgtools/url2pkg/Makefile    Thu Nov 14 20:03:47 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.108 2019/10/28 20:17:24 rillig Exp $
+# $NetBSD: Makefile,v 1.109 2019/11/14 20:03:47 rillig Exp $
 
-PKGNAME=       url2pkg-19.3.5
+PKGNAME=       url2pkg-19.3.6
 CATEGORIES=    pkgtools
 
 MAINTAINER=    rillig%NetBSD.org@localhost

Index: pkgsrc/pkgtools/url2pkg/files/url2pkg.py
diff -u pkgsrc/pkgtools/url2pkg/files/url2pkg.py:1.25 pkgsrc/pkgtools/url2pkg/files/url2pkg.py:1.26
--- pkgsrc/pkgtools/url2pkg/files/url2pkg.py:1.25       Mon Oct 28 20:17:24 2019
+++ pkgsrc/pkgtools/url2pkg/files/url2pkg.py    Thu Nov 14 20:03:47 2019
@@ -1,5 +1,5 @@
 #! @PYTHONBIN@
-# $NetBSD: url2pkg.py,v 1.25 2019/10/28 20:17:24 rillig Exp $
+# $NetBSD: url2pkg.py,v 1.26 2019/11/14 20:03:47 rillig Exp $
 
 # Copyright (c) 2019 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -1118,4 +1118,7 @@ def main(argv: List[str], g: Globals):
 
 
 if __name__ == '__main__':
-    main(sys.argv, Globals())
+    try:
+        main(sys.argv, Globals())
+    except KeyboardInterrupt:
+        sys.exit(1)



Home | Main Index | Thread Index | Old Index