summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrillig <rillig>2005-08-24 17:29:52 +0000
committerrillig <rillig>2005-08-24 17:29:52 +0000
commit7c58041a601c13ad8b9c2a6c7df41cb3c937bbba (patch)
tree839c2322ef9d2fa82525c1521500738185aca7b9 /pkgtools
parent8f2ecd2eaf23ae30f2a87d8dc81d744a5faea669 (diff)
downloadpkgsrc-7c58041a601c13ad8b9c2a6c7df41cb3c937bbba.tar.gz
Removed the check for contiguous blank lines completely. As long as
pkglint does not catch the important facts correctly it shouldn't be nitpicking about white-space. I doubt that anyone has used the -B# and the -Wwhitespace options at all, so there's no harm removing them.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkglint/files/pkglint.pl12
1 files changed, 1 insertions, 11 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl
index b99d6dfa77c..fc67647619b 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.256 2005/08/24 16:50:13 rillig Exp $
+# $NetBSD: pkglint.pl,v 1.257 2005/08/24 17:29:52 rillig Exp $
#
# This version contains lots of changes necessary for NetBSD packages
# done by:
@@ -302,7 +302,6 @@ my $conf_datadir = '@DATADIR@';
# Command Line Options
my $opt_autofix = false;
-my $opt_contblank = 1;
my $opt_debug = false;
my $opt_dumpmakefile = false;
my $opt_quiet = false;
@@ -349,7 +348,6 @@ my $opt_warn_paren = true;
my $opt_warn_plist_sort = false;
my $opt_warn_types = true;
my $opt_warn_vague = false;
-my $opt_warn_whitespace = false;
my $opt_warn_workdir = true;
my (%warnings) = (
"absname" => [\$opt_warn_absname, "warn about use of absolute file names"],
@@ -361,7 +359,6 @@ my (%warnings) = (
"plist-sort" => [\$opt_warn_plist_sort, "warn about unsorted entries in PLISTs"],
"types" => [\$opt_warn_types, "do some simple type checking in Makefiles"],
"vague" => [\$opt_warn_vague, "show old (unreliable, vague) warnings"],
- "whitespace" => [\$opt_warn_whitespace, "warn about white-space issues"],
"workdir" => [\$opt_warn_workdir, "warn that work* should not be committed into CVS"],
);
@@ -472,7 +469,6 @@ sub parse_command_line() {
my ($opt, $val) = @_;
parse_multioption($val, \%checks);
},
- "contblank|B=i" => \$opt_contblank,
"debug|d" => \$opt_debug,
"dumpmakefile|I" => \$opt_dumpmakefile,
"gcc-output-format|g" => sub {
@@ -1288,7 +1284,6 @@ sub checklines_direct_tools($) {
sub checklines_Makefile($) {
my ($lines) = @_;
- my ($cont) = 0;
foreach my $line (@{$lines}) {
my $text = $line->text;
@@ -1303,11 +1298,6 @@ sub checklines_Makefile($) {
$line->log_warning("Use tab (not spaces) to make indentation.");
}
- $cont = ($text eq "") ? $cont + 1 : 0;
- if ($opt_warn_whitespace && $cont == $opt_contblank + 1) {
- $line->log_warning("${cont} contiguous blank lines, should be at most ${opt_contblank}.");
- }
-
if ($text =~ $regex_varassign) {
my ($varname, $op, $value) = ($1, $2, $3);