diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2012-08-05 22:56:23 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2012-08-05 22:56:23 +0000 |
commit | 7299d3170198ceb0c31eb3387c66dbfd5c161528 (patch) | |
tree | c11b3a5c4db6a2d58a37f6579c294c058f809412 | |
parent | Advise PORTSCOUT not to run into a false positive due to the (diff) |
Update to 2.13.12.
Replace some of the CVS verbiage with SVN.
Submitted by: beat
Notes
Notes:
svn path=/head/; revision=302139
-rw-r--r-- | ports-mgmt/portlint/Makefile | 2 | ||||
-rw-r--r-- | ports-mgmt/portlint/src/portlint.pl | 11 |
2 files changed, 8 insertions, 5 deletions
diff --git a/ports-mgmt/portlint/Makefile b/ports-mgmt/portlint/Makefile index 96327cc4ad02..4e7f3fd4a1b2 100644 --- a/ports-mgmt/portlint/Makefile +++ b/ports-mgmt/portlint/Makefile @@ -8,7 +8,7 @@ # PORTNAME= portlint -PORTVERSION= 2.13.11 +PORTVERSION= 2.13.12 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 c87f9b91399e..3552f035cee3 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.250 2012/07/09 01:37:29 marcus Exp $ +# $MCom: portlint/portlint.pl,v 1.252 2012/08/05 22:18:57 marcus Exp $ # use strict; @@ -52,7 +52,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 13; -my $micro = 11; +my $micro = 12; sub l { '[{(]'; } sub r { '[)}]'; } @@ -342,7 +342,7 @@ if ($committer) { $File::Find::prune = 1; } elsif (-l) { &perror("WARN", $fullname, -1, "this is a symlink. ". - "CVS will ignore it."); + "Please remove it."); } elsif (-z) { &perror("FATAL", $fullname, -1, "empty file and should be removed. ". "If it still needs to be there, put a dummy comment ". @@ -365,6 +365,9 @@ if ($committer) { } elsif (/README.html/) { &perror("FATAL", $fullname, -1, "for safety, be sure to cleanup ". "README.html files before committing the port."); + } elsif ($_ eq '.svn' && -d) { + &perror("FATAL", $fullname, -1, "for safety, be sure to cleanup ". + "Subversion files before committing the port."); } elsif ($_ eq 'CVS' && -d) { if ($newport) { &perror("FATAL", $fullname, -1, "for safety, be sure to cleanup ". @@ -2331,7 +2334,7 @@ EOF ($newport ? 'for new port, ' : 'is it a new port? if so, '). "make \$$rcsidstr\$ tag in comment ". - "section empty, to make CVS happy."); + "section empty, to make SVN happy."); } } } |