diff options
author | wiz <wiz@pkgsrc.org> | 2003-05-27 17:14:51 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-05-27 17:14:51 +0000 |
commit | 9326d8145c9f52e620be1adc6008bd0404e1903c (patch) | |
tree | db9ab9598579bc4b3101b9ec3c5c06bd5352cb6e /pkgtools/pkglint | |
parent | 3eaf10d41dbdc289558b88052d6b0c0b58fe231b (diff) | |
download | pkgsrc-9326d8145c9f52e620be1adc6008bd0404e1903c.tar.gz |
Remove "country code" check -- a remnant from FreeBSD times. Update to 3.54.
Diffstat (limited to 'pkgtools/pkglint')
-rw-r--r-- | pkgtools/pkglint/Makefile | 4 | ||||
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 6 |
2 files changed, 3 insertions, 7 deletions
diff --git a/pkgtools/pkglint/Makefile b/pkgtools/pkglint/Makefile index 8701f1cc5dd..972b3a96e42 100644 --- a/pkgtools/pkglint/Makefile +++ b/pkgtools/pkglint/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.159 2003/04/30 03:16:06 atatat Exp $ +# $NetBSD: Makefile,v 1.160 2003/05/27 17:14:51 wiz Exp $ # -DISTNAME= pkglint-3.53 +DISTNAME= pkglint-3.54 WRKSRC= ${WRKDIR} CATEGORIES= pkgtools devel MASTER_SITES= # empty diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 76f8e35d47e..2eb064d72d7 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.87 2003/04/22 10:18:23 wiz Exp $ +# $NetBSD: pkglint.pl,v 1.88 2003/05/27 17:14:52 wiz Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by Hubert Feyrer <hubertf@netbsd.org>, @@ -1159,10 +1159,6 @@ EOF # additional checks for committer. $i = ($pkgname eq '') ? $distname : $pkgname; - if ($committer && $i =~ /^(de|ja|ko|ru|vi|zh)-/) { - &perror("WARN: be sure to include country code \"$1-\" ". - "in the module alias name."); - } if ($committer && -f "$portdir/$i.tgz") { &perror("WARN: be sure to remove $portdir/$i.tgz ". "before committing the package."); |