r57828 - in /branches/upstream/libmarc-charset-perl/current: Changes META.yml lib/MARC/Charset.pm lib/MARC/Charset/Table.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Wed May 12 11:09:50 UTC 2010


Author: dmn
Date: Wed May 12 11:05:29 2010
New Revision: 57828

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=57828
Log:
[svn-upgrade] Integrating new upstream version, libmarc-charset-perl (1.2)

Modified:
    branches/upstream/libmarc-charset-perl/current/Changes
    branches/upstream/libmarc-charset-perl/current/META.yml
    branches/upstream/libmarc-charset-perl/current/lib/MARC/Charset.pm
    branches/upstream/libmarc-charset-perl/current/lib/MARC/Charset/Table.pm

Modified: branches/upstream/libmarc-charset-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmarc-charset-perl/current/Changes?rev=57828&op=diff
==============================================================================
--- branches/upstream/libmarc-charset-perl/current/Changes (original)
+++ branches/upstream/libmarc-charset-perl/current/Changes Wed May 12 11:05:29 2010
@@ -1,4 +1,9 @@
 Revision history for MARC::Charset
+
+1.2 Tue May 11 22:21:13 EDT 2010
+     - use Storable::nfreeze instead of Storable::freeze to get a more
+       portable character set database. Reported and fixed by Niko Tyni
+       of debian http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=579517
 
 1.1 Tue Jun 30 15:51:16 EDT 2009
      - Patch from Damyan Ivanov of the Debian Perl Group to trim the size

Modified: branches/upstream/libmarc-charset-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmarc-charset-perl/current/META.yml?rev=57828&op=diff
==============================================================================
--- branches/upstream/libmarc-charset-perl/current/META.yml (original)
+++ branches/upstream/libmarc-charset-perl/current/META.yml Wed May 12 11:05:29 2010
@@ -1,14 +1,25 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         MARC-Charset
-version:      1.1
-version_from: lib/MARC/Charset.pm
-installdirs:  site
+--- #YAML:1.0
+name:               MARC-Charset
+version:            1.2
+abstract:           convert MARC-8 encoded strings to UTF-8
+author:
+    - Ed Summers <ehs at pobox.com>
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
 requires:
-    Class::Accessor:               0
-    Test::More:                    0
-    Unicode::Normalize:            0
-    XML::SAX:                      0
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.30_01
+    Class::Accessor:     0
+    Test::More:          0
+    Unicode::Normalize:  0
+    XML::SAX:            0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.55_02
+meta-spec:
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: branches/upstream/libmarc-charset-perl/current/lib/MARC/Charset.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmarc-charset-perl/current/lib/MARC/Charset.pm?rev=57828&op=diff
==============================================================================
--- branches/upstream/libmarc-charset-perl/current/lib/MARC/Charset.pm (original)
+++ branches/upstream/libmarc-charset-perl/current/lib/MARC/Charset.pm Wed May 12 11:05:29 2010
@@ -1,6 +1,6 @@
 package MARC::Charset;
 
-our $VERSION = '1.1';
+our $VERSION = '1.2';
 use strict;
 use warnings;
 

Modified: branches/upstream/libmarc-charset-perl/current/lib/MARC/Charset/Table.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmarc-charset-perl/current/lib/MARC/Charset/Table.pm?rev=57828&op=diff
==============================================================================
--- branches/upstream/libmarc-charset-perl/current/lib/MARC/Charset/Table.pm (original)
+++ branches/upstream/libmarc-charset-perl/current/lib/MARC/Charset/Table.pm Wed May 12 11:05:29 2010
@@ -37,7 +37,7 @@
 use GDBM_File;
 use MARC::Charset::Code;
 use MARC::Charset::Constants qw(:all);
-use Storable qw(freeze thaw);
+use Storable qw(nfreeze thaw);
 
 =head2 new()
 
@@ -66,7 +66,7 @@
     my ($self, $code) = @_;
 
     # the Code object is serialized
-    my $frozen = freeze($code);
+    my $frozen = nfreeze($code);
 
     # to support lookup by marc8 and utf8 values we 
     # stash away the rule in the db using two keys




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