From owner-svn-ports-all@FreeBSD.ORG Sat Dec 29 23:19:08 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C619987; Sat, 29 Dec 2012 23:19:08 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 8D68B8FC08; Sat, 29 Dec 2012 23:19:07 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBTNJ7ho070672; Sat, 29 Dec 2012 23:19:07 GMT (envelope-from marcus@svn.freebsd.org) Received: (from marcus@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBTNJ7eV070670; Sat, 29 Dec 2012 23:19:07 GMT (envelope-from marcus@svn.freebsd.org) Message-Id: <201212292319.qBTNJ7eV070670@svn.freebsd.org> From: Joe Marcus Clarke Date: Sat, 29 Dec 2012 23:19:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309644 - in head/ports-mgmt/portlint: . src X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 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: Sat, 29 Dec 2012 23:19:08 -0000 Author: marcus Date: Sat Dec 29 23:19:06 2012 New Revision: 309644 URL: http://svnweb.freebsd.org/changeset/ports/309644 Log: Update to 2.14.1. Remove the check for empty header comments. I think this is too restrictive. There are a number of ports that do this for various reasons. Modified: head/ports-mgmt/portlint/Makefile head/ports-mgmt/portlint/src/portlint.pl Modified: head/ports-mgmt/portlint/Makefile ============================================================================== --- head/ports-mgmt/portlint/Makefile Sat Dec 29 23:14:24 2012 (r309643) +++ head/ports-mgmt/portlint/Makefile Sat Dec 29 23:19:06 2012 (r309644) @@ -5,7 +5,7 @@ # PORTNAME= portlint -PORTVERSION= 2.14.0 +PORTVERSION= 2.14.1 CATEGORIES= ports-mgmt MASTER_SITES= # none DISTFILES= # none Modified: head/ports-mgmt/portlint/src/portlint.pl ============================================================================== --- head/ports-mgmt/portlint/src/portlint.pl Sat Dec 29 23:14:24 2012 (r309643) +++ head/ports-mgmt/portlint/src/portlint.pl Sat Dec 29 23:19:06 2012 (r309644) @@ -17,7 +17,7 @@ # OpenBSD and NetBSD will be accepted. # # $FreeBSD$ -# $MCom: portlint/portlint.pl,v 1.264 2012/12/27 23:29:04 marcus Exp $ +# $MCom: portlint/portlint.pl,v 1.266 2012/12/29 23:23:32 marcus Exp $ # use strict; @@ -52,7 +52,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 14; -my $micro = 0; +my $micro = 1; sub l { '[{(]'; } sub r { '[)}]'; } @@ -1336,8 +1336,8 @@ sub checkmakefile { &perror("FATAL", $file, 2, "header should be ". "followed by \$$rcsidstr\$."); } elsif ($lines[3] !~ /^$/) { - &perror("FATAL", $file, 3, "do not add extra ". - "empty comments after header."); + #&perror("FATAL", $file, 3, "do not add extra ". + # "empty comments after header."); } } elsif ($lines[1] !~ /^# \$$rcsidstr[:\$]/ or $lines[2] !~ /^$/) { &perror("FATAL", $file, 1, "incorrect header; ".