summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2016-06-26 19:03:33 +0000
committerwiz <wiz@pkgsrc.org>2016-06-26 19:03:33 +0000
commite70c33195a6baa05460cce1bdc5283d0fa33bb5e (patch)
treede5d27290ee762793094a36bf84b4f5f1c7dfcd1 /pkgtools
parent332e77c271149f717f3cca76579f7e92fdd9afae (diff)
downloadpkgsrc-e70c33195a6baa05460cce1bdc5283d0fa33bb5e.tar.gz
Fix typo in github handling.
Bump version.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/url2pkg/Makefile4
-rw-r--r--pkgtools/url2pkg/files/url2pkg.pl4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgtools/url2pkg/Makefile b/pkgtools/url2pkg/Makefile
index 09c64c92aa3..92bb225e84e 100644
--- a/pkgtools/url2pkg/Makefile
+++ b/pkgtools/url2pkg/Makefile
@@ -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
diff --git a/pkgtools/url2pkg/files/url2pkg.pl b/pkgtools/url2pkg/files/url2pkg.pl
index 05492874b24..e0c481a3334 100644
--- a/pkgtools/url2pkg/files/url2pkg.pl
+++ b/pkgtools/url2pkg/files/url2pkg.pl
@@ -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 ) {