pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/pkgtools/url2pkg Don't consider "package.xml" as a can...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1ab06ac476c2
branches:  trunk
changeset: 649643:1ab06ac476c2
user:      rodent <rodent%pkgsrc.org@localhost>
date:      Tue Apr 07 00:10:33 2015 +0000

description:
Don't consider "package.xml" as a candidate for ${WRKSRC}. This can affect
PECL packages. Bump PKGVERSION.

diffstat:

 pkgtools/url2pkg/Makefile         |  4 ++--
 pkgtools/url2pkg/files/url2pkg.pl |  3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)

diffs (31 lines):

diff -r 44fce5cbf3e3 -r 1ab06ac476c2 pkgtools/url2pkg/Makefile
--- a/pkgtools/url2pkg/Makefile Mon Apr 06 20:59:23 2015 +0000
+++ b/pkgtools/url2pkg/Makefile Tue Apr 07 00:10:33 2015 +0000
@@ -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@localhost
diff -r 44fce5cbf3e3 -r 1ab06ac476c2 pkgtools/url2pkg/files/url2pkg.pl
--- a/pkgtools/url2pkg/files/url2pkg.pl Mon Apr 06 20:59:23 2015 +0000
+++ b/pkgtools/url2pkg/files/url2pkg.pl Tue Apr 07 00:10:33 2015 +0000
@@ -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 @@
                given ($f) {
                        next when qr"^\.";
                        next when 'pax_global_header';
+                       next when 'package.xml';
                        next when qr".*\.gemspec";
                        default { push(@files, $f) }
                }



Home | Main Index | Thread Index | Old Index