diff options
author | marcus <marcus@FreeBSD.org> | 2008-07-05 14:02:28 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2008-07-05 14:02:28 +0800 |
commit | 6808281525803717f480fe4e88e47601c83c81e6 (patch) | |
tree | bf8fe3a59b79bbad650aa71bfa45da9885f8cce9 /ports-mgmt | |
parent | 18a4812549a4dbe42269e7519f756bd9111a6c79 (diff) | |
download | freebsd-ports-gnome-6808281525803717f480fe4e88e47601c83c81e6.tar.gz freebsd-ports-gnome-6808281525803717f480fe4e88e47601c83c81e6.tar.zst freebsd-ports-gnome-6808281525803717f480fe4e88e47601c83c81e6.zip |
Update to 2.9.9.
Check for misuse of the %%XXXDIR%% constructs in order to help with the QA
Tinderbox build reports.
PR: 125037
Submitted by: leeym
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/portlint/Makefile | 2 | ||||
-rw-r--r-- | ports-mgmt/portlint/src/portlint.pl | 10 |
2 files changed, 9 insertions, 3 deletions
diff --git a/ports-mgmt/portlint/Makefile b/ports-mgmt/portlint/Makefile index df8456035cd2..60f514bb3ecf 100644 --- a/ports-mgmt/portlint/Makefile +++ b/ports-mgmt/portlint/Makefile @@ -8,7 +8,7 @@ # PORTNAME= portlint -PORTVERSION= 2.9.8 +PORTVERSION= 2.9.9 CATEGORIES= ports-mgmt MASTER_SITES= # none DISTFILES= # none diff --git a/ports-mgmt/portlint/src/portlint.pl b/ports-mgmt/portlint/src/portlint.pl index 5ae57a8d8238..d76e45e4e75b 100644 --- a/ports-mgmt/portlint/src/portlint.pl +++ b/ports-mgmt/portlint/src/portlint.pl @@ -17,7 +17,7 @@ # OpenBSD and NetBSD will be accepted. # # $FreeBSD$ -# $MCom: portlint/portlint.pl,v 1.154 2008/03/23 00:24:48 marcus Exp $ +# $MCom: portlint/portlint.pl,v 1.155 2008/07/05 06:01:38 marcus Exp $ # use vars qw/ $opt_a $opt_A $opt_b $opt_C $opt_c $opt_g $opt_h $opt_t $opt_v $opt_M $opt_N $opt_B $opt_V /; @@ -46,7 +46,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 9; -my $micro = 8; +my $micro = 9; sub l { '[{(]'; } sub r { '[)}]'; } @@ -858,6 +858,12 @@ sub checkplist { } } + if ($_ =~ m{^%%PORT(\w+)%%(.*?)%%(\w+)DIR%%(.*)$} and $1 ne $3) { + &perror("WARN", $file, $., "Do not mix %%PORT$1%% with %%$3DIR%%. ". + "Use '%%PORT$3%%$2%%$3DIR%%$4' instead and update Makefile ". + "accordingly."); + } + if ($_ =~ m#man/([^/]+/)?man([$manchapters])/([^\.]+\.[$manchapters])(\.gz)?$#) { if ($4 eq '') { $plistman{$2} .= ' ' . $3; |