r53683 - in /branches/upstream/liblocale-maketext-lexicon-perl/current: Changes MANIFEST.SKIP META.yml Makefile.PL lib/Locale/Maketext/Lexicon.pm lib/Locale/Maketext/Lexicon/Tie.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sat Mar 6 15:25:55 UTC 2010


Author: gregoa
Date: Sat Mar  6 15:25:42 2010
New Revision: 53683

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=53683
Log:
[svn-upgrade] Integrating new upstream version, liblocale-maketext-lexicon-perl (0.79)

Modified:
    branches/upstream/liblocale-maketext-lexicon-perl/current/Changes
    branches/upstream/liblocale-maketext-lexicon-perl/current/MANIFEST.SKIP
    branches/upstream/liblocale-maketext-lexicon-perl/current/META.yml
    branches/upstream/liblocale-maketext-lexicon-perl/current/Makefile.PL
    branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon.pm
    branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon/Tie.pm

Modified: branches/upstream/liblocale-maketext-lexicon-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocale-maketext-lexicon-perl/current/Changes?rev=53683&op=diff
==============================================================================
--- branches/upstream/liblocale-maketext-lexicon-perl/current/Changes (original)
+++ branches/upstream/liblocale-maketext-lexicon-perl/current/Changes Sat Mar  6 15:25:42 2010
@@ -1,3 +1,8 @@
+[Changes for 0.79 - 2010-03-02]
+
+ * Locale::Maketext::Lexicon::Tie
+    - Removed a deprecated use of "defined %" for Perl 5.11+
+
 [Changes for 0.78 - 2010-02-23]
 
  * Locale::Maketext::Lexicon

Modified: branches/upstream/liblocale-maketext-lexicon-perl/current/MANIFEST.SKIP
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocale-maketext-lexicon-perl/current/MANIFEST.SKIP?rev=53683&op=diff
==============================================================================
--- branches/upstream/liblocale-maketext-lexicon-perl/current/MANIFEST.SKIP (original)
+++ branches/upstream/liblocale-maketext-lexicon-perl/current/MANIFEST.SKIP Sat Mar  6 15:25:42 2010
@@ -8,3 +8,6 @@
 pm_to_blib
 ^Makefile$
 .project
+^.git/
+.gitignore
+

Modified: branches/upstream/liblocale-maketext-lexicon-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocale-maketext-lexicon-perl/current/META.yml?rev=53683&op=diff
==============================================================================
--- branches/upstream/liblocale-maketext-lexicon-perl/current/META.yml (original)
+++ branches/upstream/liblocale-maketext-lexicon-perl/current/META.yml Sat Mar  6 15:25:42 2010
@@ -29,4 +29,4 @@
 requires:
   Locale::Maketext: 0.01
   perl: 5.005
-version: 0.78
+version: 0.79

Modified: branches/upstream/liblocale-maketext-lexicon-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocale-maketext-lexicon-perl/current/Makefile.PL?rev=53683&op=diff
==============================================================================
--- branches/upstream/liblocale-maketext-lexicon-perl/current/Makefile.PL (original)
+++ branches/upstream/liblocale-maketext-lexicon-perl/current/Makefile.PL Sat Mar  6 15:25:42 2010
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!perl
 
 use 5.005;
 use inc::Module::Install;

Modified: branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon.pm?rev=53683&op=diff
==============================================================================
--- branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon.pm (original)
+++ branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon.pm Sat Mar  6 15:25:42 2010
@@ -1,5 +1,5 @@
 package Locale::Maketext::Lexicon;
-$Locale::Maketext::Lexicon::VERSION = '0.78';
+$Locale::Maketext::Lexicon::VERSION = '0.79';
 
 use 5.004;
 use strict;
@@ -10,7 +10,7 @@
 
 =head1 VERSION
 
-This document describes version 0.77 of Locale::Maketext::Lexicon,
+This document describes version 0.79 of Locale::Maketext::Lexicon,
 released December 29, 2008.
 
 =head1 SYNOPSIS

Modified: branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon/Tie.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon/Tie.pm?rev=53683&op=diff
==============================================================================
--- branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon/Tie.pm (original)
+++ branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon/Tie.pm Sat Mar  6 15:25:42 2010
@@ -1,5 +1,5 @@
 package Locale::Maketext::Lexicon::Tie;
-$Locale::Maketext::Lexicon::Tie::VERSION = '0.04';
+$Locale::Maketext::Lexicon::Tie::VERSION = '0.05';
 
 use strict;
 use Symbol ();
@@ -35,7 +35,7 @@
     # Load the target module into memory
     {
         no strict 'refs';
-        eval "use $mod; 1" or die $@ unless defined %{"$mod\::"};
+        eval "use $mod; 1" or die $@ unless %{"$mod\::"};
     }
 
     # Perform the actual tie




More information about the Pkg-perl-cvs-commits mailing list