From owner-svn-ports-all@FreeBSD.ORG Sun Aug 5 22:56:24 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C5B2106564A; Sun, 5 Aug 2012 22:56:24 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F13998FC14; Sun, 5 Aug 2012 22:56:23 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q75MuNDl038114; Sun, 5 Aug 2012 22:56:23 GMT (envelope-from marcus@svn.freebsd.org) Received: (from marcus@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q75MuN8C038113; Sun, 5 Aug 2012 22:56:23 GMT (envelope-from marcus@svn.freebsd.org) Message-Id: <201208052256.q75MuN8C038113@svn.freebsd.org> From: Joe Marcus Clarke Date: Sun, 5 Aug 2012 22:56:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r302139 - in head/ports-mgmt/portlint: . src X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Aug 2012 22:56:24 -0000 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."); } } }