summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2017-10-08 23:25:06 +0000
committerrillig <rillig@pkgsrc.org>2017-10-08 23:25:06 +0000
commit0ed18a6b78e94761ea6804d721c489a93d17ff40 (patch)
tree045d84d2a9469a0a5a6c7f2759b8e5dcec30a4e1 /pkgtools
parent75a4a92c72b91a5d0b0356d708d5bee6c56f1e83 (diff)
downloadpkgsrc-0ed18a6b78e94761ea6804d721c489a93d17ff40.tar.gz
Updated pkglint4 to 4.164
Removed support for kde3, since it has been removed from pkgsrc.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkglint4/Makefile5
-rw-r--r--pkgtools/pkglint4/files/pkglint.pl10
2 files changed, 3 insertions, 12 deletions
diff --git a/pkgtools/pkglint4/Makefile b/pkgtools/pkglint4/Makefile
index 0da2ea75d4a..71ac18d8962 100644
--- a/pkgtools/pkglint4/Makefile
+++ b/pkgtools/pkglint4/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2017/06/14 16:25:17 prlw1 Exp $
+# $NetBSD: Makefile,v 1.9 2017/10/08 23:25:06 rillig Exp $
-PKGNAME= pkglint4-4.163
-PKGREVISION= 2
+PKGNAME= pkglint4-4.164
CATEGORIES= pkgtools
OWNER= rillig@NetBSD.org
diff --git a/pkgtools/pkglint4/files/pkglint.pl b/pkgtools/pkglint4/files/pkglint.pl
index 4cc8c9e9de9..9720d265efd 100644
--- a/pkgtools/pkglint4/files/pkglint.pl
+++ b/pkgtools/pkglint4/files/pkglint.pl
@@ -1,5 +1,5 @@
#! @PERL@
-# $NetBSD: pkglint.pl,v 1.5 2017/06/14 16:23:09 prlw1 Exp $
+# $NetBSD: pkglint.pl,v 1.6 2017/10/08 23:25:06 rillig Exp $
#
# pkglint - static analyzer and checker for pkgsrc packages
@@ -3773,14 +3773,6 @@ sub checkline_mk_varassign($$$$$) {
}
}
- if ($varname eq "CONFIGURE_ARGS" && $value =~ m"=\$\{PREFIX\}/share/kde") {
- $line->log_note("Please .include \"../../meta-pkgs/kde3/kde3.mk\" instead of this line.");
- $line->explain_note(
-"That file probably does many things automatically and consistently that",
-"this package also does. When using kde3.mk, you can probably also leave",
-"out some explicit dependencies.");
- }
-
if ($varname eq "EVAL_PREFIX" && $value =~ m"^([\w_]+)=") {
my ($eval_varname) = ($1);