1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

- Update to 2.18

PR:		145148
Submitted by:	Steve Wills <steve@mouf.net
Approved by:	maintainer
This commit is contained in:
Martin Wilke 2010-04-02 18:10:11 +00:00
parent f82514274f
commit b7a44dc101
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=252080
3 changed files with 7 additions and 26 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= ParseLex
PORTVERSION= 2.15
PORTVERSION= 2.18
CATEGORIES= devel perl5
MASTER_SITES= CPAN/Parse
PKGNAMEPREFIX= p5-
@ -16,10 +16,8 @@ COMMENT= Object-oriented generator of lexical analyzers
PERL_CONFIGURE= yes
MAN3= Parse::Lex.3 Parse::Token.3 Parse::YYLex.3 Parse::LexEvent.3 \
Parse::CLex.3 Parse::Template.3
post-patch:
@${RM} ${WRKSRC}/lib/Parse/*.orig
MAN3= Parse::ALex.3 Parse::Lex.3 Parse::Token.3 Parse::YYLex.3 \
Parse::LexEvent.3 Parse::CLex.3 Parse::Trace.3 \
Parse::Template.3
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (ParseLex-2.15.tar.gz) = aeb0bb36454485d28214aad0907d5c92
SHA256 (ParseLex-2.15.tar.gz) = a6201f0522b36733ec237e37ff8328f306b23081ea8473de7456d18831d3e997
SIZE (ParseLex-2.15.tar.gz) = 51560
MD5 (ParseLex-2.18.tar.gz) = beb91a385c80a03ab1138e3cc7507a65
SHA256 (ParseLex-2.18.tar.gz) = 91af4c5b07c66d1656093b355a0c8f4f4594032d90cb024390e58e9e9e033be2
SIZE (ParseLex-2.18.tar.gz) = 54384

View File

@ -1,17 +0,0 @@
--- lib/Parse/Template.pm.orig Thu Sep 23 12:16:28 1999
+++ lib/Parse/Template.pm Fri Aug 20 16:03:23 2004
@@ -1,4 +1,4 @@
-use strict
+use strict;
require 5.004;
package Parse::Template;
$Parse::Template::VERSION = '0.32';
@@ -132,7 +132,7 @@
}
# evaluated expressions are not always available in (caller(1))[6];
if (defined($1) and $1 ne '') {
- $expr = $1; # what is the template expression?
+ my $expr = $1; # what is the template expression?
{ package DB; # what is the part name?
@DB::caller = caller(2); # why is this needed? /ee?
@DB::caller = caller(1);