diff options
author | rillig <rillig> | 2005-07-02 22:31:17 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-07-02 22:31:17 +0000 |
commit | 6fc8233e7d62471779dadbb0c294a2286cfb2759 (patch) | |
tree | e08bc59c9949d2addddbfaf1809800ab65ec4635 /pkgtools | |
parent | 07e50320bd8463f18a31ef15907bb4efb3ea78be (diff) | |
download | pkgsrc-6fc8233e7d62471779dadbb0c294a2286cfb2759.tar.gz |
Removed very old checks for files/md5, files/patch-sum, COMMENT and pkg/.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index a84572827d9..f1ff6891a80 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.200 2005/07/02 22:23:47 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.201 2005/07/02 22:31:17 rillig Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by: @@ -652,18 +652,6 @@ sub check_package($) { log_warning("$opt_packagedir/$distinfo_file", NO_LINE_NUMBER, "File not found. Please run '$conf_make makesum'."); } } - if (-f "$opt_packagedir/$filesdir/md5") { - log_error("$opt_packagedir/$filesdir/md5", NO_LINE_NUMBER, "This file is deprecated -- run '$conf_make mdi' to generate distinfo."); - } - if (-f "$opt_packagedir/$filesdir/patch-sum") { - log_error("$opt_packagedir/$filesdir/patch-sum", NO_LINE_NUMBER, "This file is deprecated -- run '$conf_make mps' to generate distinfo."); - } - if (-f "$opt_packagedir/$pkgdir/COMMENT") { - log_error("$opt_packagedir/$pkgdir/COMMENT", NO_LINE_NUMBER, "This file is deprecated -- please use a COMMENT variable instead."); - } - if (grep { $_ !~ qr"/CVS$" } <$opt_packagedir/pkg/*>) { - log_error("$opt_packagedir/pkg", NO_LINE_NUMBER, "This directory and its contents are deprecated! Please 'mv $opt_packagedir/pkg/* $opt_packagedir' and 'rmdir $opt_packagedir/pkg'."); - } if (grep { $_ !~ qr"/CVS$" } <$opt_packagedir/scripts/*>) { log_warning("$opt_packagedir/scripts", NO_LINE_NUMBER, "This directory and its contents are deprecated! Please call the script(s) explicitly from the corresponding target(s) in the pkg's Makefile."); } |