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:   wiz
Date:           Sun Jun 26 19:03:34 UTC 2016

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

Log Message:
Fix typo in github handling.

Bump version.


To generate a diff of this commit:
cvs rdiff -u -r1.82 -r1.83 pkgsrc/pkgtools/url2pkg/Makefile
cvs rdiff -u -r1.32 -r1.33 pkgsrc/pkgtools/url2pkg/files/url2pkg.pl

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.82 pkgsrc/pkgtools/url2pkg/Makefile:1.83
--- pkgsrc/pkgtools/url2pkg/Makefile:1.82       Fri Jun 10 21:43:04 2016
+++ pkgsrc/pkgtools/url2pkg/Makefile    Sun Jun 26 19:03:33 2016
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.82 2016/06/10 21:43:04 rillig Exp $
+# $NetBSD: Makefile,v 1.83 2016/06/26 19:03:33 wiz Exp $
 
-PKGNAME=       url2pkg-2.26
+PKGNAME=       url2pkg-2.27
 CATEGORIES=    pkgtools
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost

Index: pkgsrc/pkgtools/url2pkg/files/url2pkg.pl
diff -u pkgsrc/pkgtools/url2pkg/files/url2pkg.pl:1.32 pkgsrc/pkgtools/url2pkg/files/url2pkg.pl:1.33
--- pkgsrc/pkgtools/url2pkg/files/url2pkg.pl:1.32       Fri Jun 10 21:43:04 2016
+++ pkgsrc/pkgtools/url2pkg/files/url2pkg.pl    Sun Jun 26 19:03:33 2016
@@ -1,5 +1,5 @@
 #! @PERL@
-# $NetBSD: url2pkg.pl,v 1.32 2016/06/10 21:43:04 rillig Exp $
+# $NetBSD: url2pkg.pl,v 1.33 2016/06/26 19:03:33 wiz Exp $
 #
 
 # Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -307,7 +307,7 @@ sub generate_initial_package($) {
                if ($url =~ qr"^https?://github\.com/") {
                        if ($url =~ qr"^https?://github\.com/(.*)/(.*)/archive/(.*)(\.tar\.gz|\.zip)$") {
                                $master_sites = "\${MASTER_SITE_GITHUB:=$1/}";
-                               $homepage = "https://github.com/$1/$2/}";;
+                               $homepage = "https://github.com/$1/$2/";;
                                $gh_project = $2;
                                $gh_tag = $3;
                                if (index($gh_tag, $gh_project) == -1 ) {



Home | Main Index | Thread Index | Old Index