Date: Sun, 5 Aug 2012 22:56:23 +0000 (UTC) From: Joe Marcus Clarke <marcus@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r302139 - in head/ports-mgmt/portlint: . src Message-ID: <201208052256.q75MuN8C038113@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marcus Date: Sun Aug 5 22:56:23 2012 New Revision: 302139 URL: http://svn.freebsd.org/changeset/ports/302139 Log: Update to 2.13.12. Replace some of the CVS verbiage with SVN. Submitted by: beat Modified: head/ports-mgmt/portlint/Makefile head/ports-mgmt/portlint/src/portlint.pl Modified: head/ports-mgmt/portlint/Makefile ============================================================================== --- head/ports-mgmt/portlint/Makefile Sun Aug 5 22:28:43 2012 (r302138) +++ head/ports-mgmt/portlint/Makefile Sun Aug 5 22:56:23 2012 (r302139) @@ -8,7 +8,7 @@ # PORTNAME= portlint -PORTVERSION= 2.13.11 +PORTVERSION= 2.13.12 CATEGORIES= ports-mgmt MASTER_SITES= # none DISTFILES= # none Modified: head/ports-mgmt/portlint/src/portlint.pl ============================================================================== --- head/ports-mgmt/portlint/src/portlint.pl Sun Aug 5 22:28:43 2012 (r302138) +++ head/ports-mgmt/portlint/src/portlint.pl Sun Aug 5 22:56:23 2012 (r302139) @@ -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."); } } }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208052256.q75MuN8C038113>