Date: Sat, 12 Oct 2013 16:44:46 +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: r330147 - in head/ports-mgmt/portlint: . src Message-ID: <201310121644.r9CGikG1026230@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marcus Date: Sat Oct 12 16:44:46 2013 New Revision: 330147 URL: http://svnweb.freebsd.org/changeset/ports/330147 Log: Properly bump the version of portlint. 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 Oct 12 16:42:36 2013 (r330146) +++ head/ports-mgmt/portlint/Makefile Sat Oct 12 16:44:46 2013 (r330147) @@ -3,6 +3,7 @@ PORTNAME= portlint PORTVERSION= 2.14.5 +PORTREVISION= 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 Oct 12 16:42:36 2013 (r330146) +++ head/ports-mgmt/portlint/src/portlint.pl Sat Oct 12 16:44:46 2013 (r330147) @@ -17,7 +17,7 @@ # OpenBSD and NetBSD will be accepted. # # $FreeBSD$ -# $MCom: portlint/portlint.pl,v 1.282 2013/07/14 16:08:12 marcus Exp $ +# $MCom: portlint/portlint.pl,v 1.285 2013/10/12 16:41:24 marcus Exp $ # use strict; @@ -52,7 +52,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 14; -my $micro = 4; +my $micro = 5; sub l { '[{(]'; } sub r { '[)}]'; } @@ -353,7 +353,8 @@ if ($committer) { } elsif (/^\./) { &perror("WARN", $fullname, -1, "dotfiles are not preferred. ". "If this file is a dotfile to be installed as an example, ". - "consider importing it as \"dot$_\"."); + "consider importing it as \"dot$_\".") unless + (-d && $_ eq '.svn'); } elsif (/[^-.a-zA-Z0-9_\+]/) { &perror("WARN", $fullname, -1, "only use characters ". "[-_.a-zA-Z0-9+] for patch or script names."); @@ -1157,7 +1158,7 @@ sub check_depends_syntax { "USES[+]=gettext."); } - # check USES=gmake + # check USE_GMAKE if ($m{'dep'} =~ /^(gmake|\${GMAKE})$/) { &perror("WARN", $file, -1, "dependency to $1 ". "listed in $j. consider using ". @@ -1358,7 +1359,7 @@ sub checkmakefile { #&perror("FATAL", $file, 3, "do not add extra ". # "empty comments after header."); } - # special case for $rcsidsrt\n$MCom: portlint/portlint.pl,v 1.282 2013/07/14 16:08:12 marcus Exp $ + # special case for $rcsidsrt\n$MCom: portlint/portlint.pl,v 1.285 2013/10/12 16:41:24 marcus Exp $ } elsif ($lines[1] =~ /^# \$$rcsidstr[:\$]/ and $lines[2] =~ /^#\s+\$MCom[:\$]/ and $lines[3] =~ /^$/) { # DO NOTHING } elsif ($lines[1] !~ /^# \$$rcsidstr[:\$]/ or $lines[2] !~ /^$/) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310121644.r9CGikG1026230>