Date: Thu, 24 Nov 2016 09:57:15 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426998 - in head/misc/p5-I18N-LangTags: . files Message-ID: <201611240957.uAO9vFS8060822@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Thu Nov 24 09:57:15 2016 New Revision: 426998 URL: https://svnweb.freebsd.org/changeset/ports/426998 Log: - Fix perl syntax with perl 5.24+ - While here, fix typo in documentation PR: 190531 Submitted by: vess@slavof.net Approved by: maintainer timeout (daemon, 2.5 years) MFH: 2016Q4 Added: head/misc/p5-I18N-LangTags/files/ head/misc/p5-I18N-LangTags/files/patch-lib_I18N_LangTags.pm (contents, props changed) head/misc/p5-I18N-LangTags/files/patch-lib_I18N_LangTags_Detect.pm (contents, props changed) Modified: head/misc/p5-I18N-LangTags/Makefile Modified: head/misc/p5-I18N-LangTags/Makefile ============================================================================== --- head/misc/p5-I18N-LangTags/Makefile Thu Nov 24 09:33:18 2016 (r426997) +++ head/misc/p5-I18N-LangTags/Makefile Thu Nov 24 09:57:15 2016 (r426998) @@ -3,7 +3,7 @@ PORTNAME= I18N-LangTags PORTVERSION= 0.35 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Added: head/misc/p5-I18N-LangTags/files/patch-lib_I18N_LangTags.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/p5-I18N-LangTags/files/patch-lib_I18N_LangTags.pm Thu Nov 24 09:57:15 2016 (r426998) @@ -0,0 +1,11 @@ +--- lib/I18N/LangTags.pm.orig 2004-10-07 07:26:33 UTC ++++ lib/I18N/LangTags.pm +@@ -489,7 +489,7 @@ lookup in %greetings fails. That's the + You could instead do lookups on $wanted with: + + use I18N::LangTags qw(same_language_tag); +- my $repsonse = ''; ++ my $response = ''; + foreach my $l2 (keys %greetings) { + if(same_language_tag($wanted, $l2)) { + $response = $greetings{$l2}; Added: head/misc/p5-I18N-LangTags/files/patch-lib_I18N_LangTags_Detect.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/p5-I18N-LangTags/files/patch-lib_I18N_LangTags_Detect.pm Thu Nov 24 09:57:15 2016 (r426998) @@ -0,0 +1,11 @@ +--- lib/I18N/LangTags/Detect.pm.orig 2004-06-21 05:47:55 UTC ++++ lib/I18N/LangTags/Detect.pm +@@ -137,7 +137,7 @@ sub _try_use { # Basically a wrapper a + my $module = $_[0]; # ASSUME sane module name! + { no strict 'refs'; + return($tried{$module} = 1) +- if defined(%{$module . "::Lexicon"}) or defined(@{$module . "::ISA"}); ++ if %{$module . "::Lexicon"} or @{$module . "::ISA"}; + # weird case: we never use'd it, but there it is! + } +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611240957.uAO9vFS8060822>