From owner-svn-ports-head@freebsd.org Fri May 27 09:04:22 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3CEEB4A227; Fri, 27 May 2016 09:04:21 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB61D1F89; Fri, 27 May 2016 09:04:21 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4R94KqB085970; Fri, 27 May 2016 09:04:20 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4R94KHC085966; Fri, 27 May 2016 09:04:20 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201605270904.u4R94KHC085966@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Fri, 27 May 2016 09:04:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415928 - in head: net/p5-Net-Address-Ethernet/files net/p5-Socket-Class/files www/p5-WWW-Search/files x11-toolkits/p5-Wx/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 May 2016 09:04:22 -0000 Author: mat Date: Fri May 27 09:04:20 2016 New Revision: 415928 URL: https://svnweb.freebsd.org/changeset/ports/415928 Log: Fix building with Perl 5.25. Unescaped left brace in regex is illegal in regex. Sponsored by: Absolight Added: head/net/p5-Net-Address-Ethernet/files/ head/net/p5-Net-Address-Ethernet/files/patch-Makefile.PL (contents, props changed) head/net/p5-Socket-Class/files/ head/net/p5-Socket-Class/files/patch-xs_sc__ssl_Makefile.PL (contents, props changed) head/www/p5-WWW-Search/files/ head/www/p5-WWW-Search/files/patch-Makefile.PL (contents, props changed) head/x11-toolkits/p5-Wx/files/patch-build_Wx_build_Utils.pm (contents, props changed) Added: head/net/p5-Net-Address-Ethernet/files/patch-Makefile.PL ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-Net-Address-Ethernet/files/patch-Makefile.PL Fri May 27 09:04:20 2016 (r415928) @@ -0,0 +1,16 @@ +--- Makefile.PL.orig 2016-05-26 14:56:06 UTC ++++ Makefile.PL +@@ -33,11 +33,11 @@ if ($ENV{MTHURN_PERL_DEV}) + { + warn " EEE did not find DIRFILESEP in Makefile\n"; + } # if +- if ($s !~ s/(pm_to_blib\(){{\@ARGV}}/$1 . '{@ARGV}'/e) ++ if ($s !~ s/(pm_to_blib\()\{\{\@ARGV\}\}/$1 . '{@ARGV}'/e) + { + warn " EEE did not find pm_to_blib@ARGV in Makefile\n"; + } # if +- if ($s !~ s/(from_to\s+=>\s+){{\@ARGV}}/$1 . '{@ARGV}'/e) ++ if ($s !~ s/(from_to\s+=>\s+)\{\{\@ARGV\}\}/$1 . '{@ARGV}'/e) + { + warn " EEE did not find from_to@ARGV in Makefile\n"; + } # if Added: head/net/p5-Socket-Class/files/patch-xs_sc__ssl_Makefile.PL ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-Socket-Class/files/patch-xs_sc__ssl_Makefile.PL Fri May 27 09:04:20 2016 (r415928) @@ -0,0 +1,11 @@ +--- xs/sc_ssl/Makefile.PL.orig 2012-01-20 00:08:58 UTC ++++ xs/sc_ssl/Makefile.PL +@@ -171,7 +171,7 @@ sub build_cmodule { + $step = 0; + foreach( <$fh> ) { + if( $step == 0 ) { +- if( /\s*struct st_mod_sc {/ ) { ++ if( /\s*struct st_mod_sc \{/ ) { + $ct1 = index( $ct, '/* !include st_mod_sc */' ); + $ct2 = substr( $ct, $ct1 + 25 ); + $ct1 = substr( $ct, 0, $ct1 ); Added: head/www/p5-WWW-Search/files/patch-Makefile.PL ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-WWW-Search/files/patch-Makefile.PL Fri May 27 09:04:20 2016 (r415928) @@ -0,0 +1,16 @@ +--- Makefile.PL.orig 2015-11-28 15:17:09 UTC ++++ Makefile.PL +@@ -116,11 +116,11 @@ if (0 && $ENV{MTHURN_PERL_DEV}) + { + print " EEE did not find DIRFILESEP in Makefile\n"; + } # if +- if ($s !~ s/(pm_to_blib\(){{\@ARGV}}/$1 . '{@ARGV}'/e) ++ if ($s !~ s/(pm_to_blib\()\{\{\@ARGV\}\}/$1 . '{@ARGV}'/e) + { + print " EEE did not find pm_to_blib@ARGV in Makefile\n"; + } # if +- if ($s !~ s/(from_to\s+=>\s+){{\@ARGV}}/$1 . '{@ARGV}'/e) ++ if ($s !~ s/(from_to\s+=>\s+)\{\{\@ARGV\}\}/$1 . '{@ARGV}'/e) + { + print " EEE did not find from_to@ARGV in Makefile\n"; + } # if Added: head/x11-toolkits/p5-Wx/files/patch-build_Wx_build_Utils.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/p5-Wx/files/patch-build_Wx_build_Utils.pm Fri May 27 09:04:20 2016 (r415928) @@ -0,0 +1,11 @@ +--- build/Wx/build/Utils.pm.orig 2014-03-08 13:01:15 UTC ++++ build/Wx/build/Utils.pm +@@ -107,7 +107,7 @@ sub scan_xs($$$) { + m/^\s*INCLUDE:\s+(.*)$/ and $file = $1 and $arr = \@xsinclude; + m/^\s*INCLUDE_COMMAND:\s+.*\s(\S+\.(?:xsp?|h))\s*/ and $file = $1 and + $arr = \@xsinclude; +- m/^\s*\%include{([^}]+)}\s*;\s*$/ and $file = $1 and $arr = \@xsinclude; ++ m/^\s*\%include\{([^}]+)\}\s*;\s*$/ and $file = $1 and $arr = \@xsinclude; + + if( defined $file ) { + $file = catfile( split '/', $file );