diff options
author | rodent <rodent> | 2015-04-07 00:10:33 +0000 |
---|---|---|
committer | rodent <rodent> | 2015-04-07 00:10:33 +0000 |
commit | 9b15e1e34f6688c31e3818dc632381ae7438aa16 (patch) | |
tree | db2f3123081360c79e675b09ac5e21d9a471245e /pkgtools | |
parent | 1ac70eee4a9cecf4400f071a3a62da7f841f3d9f (diff) | |
download | pkgsrc-9b15e1e34f6688c31e3818dc632381ae7438aa16.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/Makefile | 4 | ||||
-rw-r--r-- | pkgtools/url2pkg/files/url2pkg.pl | 3 |
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) } } |