diff options
author | agc <agc> | 1999-07-08 09:46:08 +0000 |
---|---|---|
committer | agc <agc> | 1999-07-08 09:46:08 +0000 |
commit | 75c8622a77a81633b05611921bf559a4bceffa5c (patch) | |
tree | 2007f43af236d74f093c8d32f38613765e53baaf /pkgtools | |
parent | 9712993cf26d6037018d662d5524962e2812597e (diff) | |
download | pkgsrc-75c8622a77a81633b05611921bf559a4bceffa5c.tar.gz |
bsd.pkg.mk recognises patch files of the form "patches/patch-*", rather
than "patches/patch-??" - fix pkglint.pl to mirror this.
Bump version number to 1.73, and update CHANGELOG
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkglint/Makefile | 4 | ||||
-rw-r--r-- | pkgtools/pkglint/files/CHANGELOG | 5 | ||||
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 4 |
3 files changed, 8 insertions, 5 deletions
diff --git a/pkgtools/pkglint/Makefile b/pkgtools/pkglint/Makefile index eeddc01bd4c..d51fbe20d91 100644 --- a/pkgtools/pkglint/Makefile +++ b/pkgtools/pkglint/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.12 1999/07/02 13:57:56 agc Exp $ +# $NetBSD: Makefile,v 1.13 1999/07/08 09:46:08 agc Exp $ # -DISTNAME= pkglint-1.72 +DISTNAME= pkglint-1.73 CATEGORIES= pkgtools devel MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/pkglint/files/CHANGELOG b/pkgtools/pkglint/files/CHANGELOG index 51d5199ed91..f1bbb4d1b8a 100644 --- a/pkgtools/pkglint/files/CHANGELOG +++ b/pkgtools/pkglint/files/CHANGELOG @@ -1,10 +1,13 @@ -$NetBSD: CHANGELOG,v 1.2 1998/08/20 15:16:49 tsarna Exp $ +$NetBSD: CHANGELOG,v 1.3 1999/07/08 09:46:09 agc Exp $ TODO - report line# for each errors/warnings in Makefile (need a complete rewrite) --- +r1.73 Thu Jul 8 10:43:03 BST 1999 + - Recognise patches of the form: "patches/patch-*", rather + than "patches/patch-??", to mirror bsd.pkg.mk's recognition. r1.66 Thu Aug 20 09:00:51 CDT 1998 - Add support for HOMEPAGE diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 45887b9be31..00c5229ee8f 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -11,7 +11,7 @@ # Freely redistributable. Absolutely no warranty. # # From Id: portlint.pl,v 1.64 1998/02/28 02:34:05 itojun Exp -# $NetBSD: pkglint.pl,v 1.8 1999/05/23 20:32:00 tv Exp $ +# $NetBSD: pkglint.pl,v 1.9 1999/07/08 09:46:09 agc Exp $ # # This version contains some changes necessary for NetBSD packages # done by Hubert Feyrer <hubertf@netbsd.org> and @@ -158,7 +158,7 @@ if ($extrafile) { } } } -foreach $i (<$portdir/patches/patch-??>) { +foreach $i (<$portdir/patches/patch-*>) { next if (! -T $i); $i =~ s/^\Q$portdir\E\///; next if (defined $checker{$i}); |