summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrodent <rodent@pkgsrc.org>2015-04-07 00:10:33 +0000
committerrodent <rodent@pkgsrc.org>2015-04-07 00:10:33 +0000
commite6adac9fb49c24e298b2b7e14aef7fc2237b34dd (patch)
treedb2f3123081360c79e675b09ac5e21d9a471245e /pkgtools
parentdea2957328c25be7b933e3e5a21d1314f9a5d032 (diff)
downloadpkgsrc-e6adac9fb49c24e298b2b7e14aef7fc2237b34dd.tar.gz
Don't consider "package.xml" as a candidate for ${WRKSRC}. This can affect
PECL packages. Bump PKGVERSION.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/url2pkg/Makefile4
-rw-r--r--pkgtools/url2pkg/files/url2pkg.pl3
2 files changed, 4 insertions, 3 deletions
diff --git a/pkgtools/url2pkg/Makefile b/pkgtools/url2pkg/Makefile
index b44ceec7ab2..b5c507c492f 100644
--- a/pkgtools/url2pkg/Makefile
+++ b/pkgtools/url2pkg/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.76 2015/04/04 04:00:49 rodent Exp $
+# $NetBSD: Makefile,v 1.77 2015/04/07 00:10:33 rodent Exp $
#
-PKGNAME= url2pkg-2.21
+PKGNAME= url2pkg-2.22
CATEGORIES= pkgtools
MAINTAINER= pkgsrc-users@NetBSD.org
diff --git a/pkgtools/url2pkg/files/url2pkg.pl b/pkgtools/url2pkg/files/url2pkg.pl
index 7e32c826ce6..364860d4ada 100644
--- a/pkgtools/url2pkg/files/url2pkg.pl
+++ b/pkgtools/url2pkg/files/url2pkg.pl
@@ -1,5 +1,5 @@
#! @PERL@
-# $NetBSD: url2pkg.pl,v 1.27 2015/04/04 04:00:49 rodent Exp $
+# $NetBSD: url2pkg.pl,v 1.28 2015/04/07 00:10:33 rodent Exp $
#
# Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -421,6 +421,7 @@ sub adjust_package_from_extracted_distfiles()
given ($f) {
next when qr"^\.";
next when 'pax_global_header';
+ next when 'package.xml';
next when qr".*\.gemspec";
default { push(@files, $f) }
}