Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Jul 2016 17:42:25 +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: r418192 - in head/ports-mgmt/portlint: . src
Message-ID:  <201607071742.u67HgPQa054381@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marcus
Date: Thu Jul  7 17:42:25 2016
New Revision: 418192
URL: https://svnweb.freebsd.org/changeset/ports/418192

Log:
  Update to 2.17.3.
  
  This release fixes a bug in newer versions of Perl where '{' and '}' caused
  regexp compilation to fail.
  
  PR:		210809
  Submitted by:	mat

Modified:
  head/ports-mgmt/portlint/Makefile
  head/ports-mgmt/portlint/src/portlint.pl

Modified: head/ports-mgmt/portlint/Makefile
==============================================================================
--- head/ports-mgmt/portlint/Makefile	Thu Jul  7 17:39:37 2016	(r418191)
+++ head/ports-mgmt/portlint/Makefile	Thu Jul  7 17:42:25 2016	(r418192)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	portlint
-PORTVERSION=	2.17.2
+PORTVERSION=	2.17.3
 CATEGORIES=	ports-mgmt
 MASTER_SITES=	# none
 DISTFILES=	# none

Modified: head/ports-mgmt/portlint/src/portlint.pl
==============================================================================
--- head/ports-mgmt/portlint/src/portlint.pl	Thu Jul  7 17:39:37 2016	(r418191)
+++ head/ports-mgmt/portlint/src/portlint.pl	Thu Jul  7 17:42:25 2016	(r418192)
@@ -15,7 +15,7 @@
 # was removed.
 #
 # $FreeBSD$
-# $MCom: portlint/portlint.pl,v 1.388 2016/05/15 18:42:34 jclarke Exp $
+# $MCom: portlint/portlint.pl,v 1.390 2016/07/07 17:40:43 jclarke Exp $
 #
 
 use strict;
@@ -50,7 +50,7 @@ $portdir = '.';
 # version variables
 my $major = 2;
 my $minor = 17;
-my $micro = 2;
+my $micro = 3;
 
 # default setting - for FreeBSD
 my $portsdir = '/usr/ports';
@@ -2005,8 +2005,8 @@ xargs xmkmf
 	my %pathnames = ();
 	print "OK: checking for paths that have macro replacements.\n"
 		if ($verbose);
-	$pathnames{'${PREFIX}/share/java/classes'} = 'JAVADIR';
-	$pathnames{'${PREFIX}/share/java'} = 'JAVASHAREDIR';
+	$pathnames{'$\{PREFIX\}/share/java/classes'} = 'JAVADIR';
+	$pathnames{'$\{PREFIX\}/share/java'} = 'JAVASHAREDIR';
 	foreach my $i (keys %pathnames) {
 		my $lineno = &linenumber($`);
 		if ($j =~ m|$i|gm) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607071742.u67HgPQa054381>