diff options
author | marcus <marcus@FreeBSD.org> | 2006-03-12 19:19:43 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2006-03-12 19:19:43 +0000 |
commit | 95d8a417e1c62d6b7accdc79e24d958e7f29671d (patch) | |
tree | f0581b368c1bd7200f39b3ed0d22e301e13342bb /devel/portlint | |
parent | d728a710853d384af564a0bb675ea08f1bcc9960 (diff) | |
download | FreeBSD-ports-95d8a417e1c62d6b7accdc79e24d958e7f29671d.zip FreeBSD-ports-95d8a417e1c62d6b7accdc79e24d958e7f29671d.tar.gz |
Update to 2.8.7.
* Remove support for PERL_{BUILD,RUN}_DEPENDS
Approved by: portmgr (implicit)
Diffstat (limited to 'devel/portlint')
-rw-r--r-- | devel/portlint/Makefile | 2 | ||||
-rw-r--r-- | devel/portlint/src/portlint.pl | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/devel/portlint/Makefile b/devel/portlint/Makefile index ea41171..dab546c 100644 --- a/devel/portlint/Makefile +++ b/devel/portlint/Makefile @@ -8,7 +8,7 @@ # PORTNAME= portlint -PORTVERSION= 2.8.6 +PORTVERSION= 2.8.7 CATEGORIES= devel MASTER_SITES= # none DISTFILES= # none diff --git a/devel/portlint/src/portlint.pl b/devel/portlint/src/portlint.pl index 930db13..f613e92 100644 --- a/devel/portlint/src/portlint.pl +++ b/devel/portlint/src/portlint.pl @@ -17,7 +17,7 @@ # OpenBSD and NetBSD will be accepted. # # $FreeBSD$ -# $MCom: portlint/portlint.pl,v 1.112 2006/02/25 06:12:35 marcus Exp $ +# $MCom: portlint/portlint.pl,v 1.114 2006/03/12 19:19:47 marcus Exp $ # use vars qw/ $opt_a $opt_A $opt_b $opt_C $opt_c $opt_h $opt_t $opt_v $opt_M $opt_N $opt_B $opt_V /; @@ -40,7 +40,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 8; -my $micro = 6; +my $micro = 7; sub l { '[{(]'; } sub r { '[)}]'; } @@ -2173,7 +2173,7 @@ MAINTAINER COMMENT # NOTE: EXEC_DEPENDS is obsolete, so it should not be listed. @linestocheck = qw( EXTRACT_DEPENDS LIB_DEPENDS PATCH_DEPENDS BUILD_DEPENDS RUN_DEPENDS -FETCH_DEPENDS DEPENDS DEPENDS_TARGET PERL_RUN_DEPENDS PERL_BUILD_DEPENDS +FETCH_DEPENDS DEPENDS DEPENDS_TARGET ); if ($tmp =~ /(LIB_|BUILD_|RUN_|FETCH_)?DEPENDS/) { |