r6426 - in /trunk/libmarc-charset-perl: Changes MANIFEST META.yml debian/changelog etc/codetables.xml lib/MARC/Charset.pm t/farsi.marc t/farsi.t
dmn at users.alioth.debian.org
dmn at users.alioth.debian.org
Fri Aug 10 11:09:43 UTC 2007
Author: dmn
Date: Fri Aug 10 11:09:43 2007
New Revision: 6426
URL: http://svn.debian.org/wsvn/?sc=1&rev=6426
Log:
* New upstream release
Added:
trunk/libmarc-charset-perl/t/farsi.marc
- copied unchanged from r6425, branches/upstream/libmarc-charset-perl/current/t/farsi.marc
trunk/libmarc-charset-perl/t/farsi.t
- copied unchanged from r6425, branches/upstream/libmarc-charset-perl/current/t/farsi.t
Modified:
trunk/libmarc-charset-perl/Changes
trunk/libmarc-charset-perl/MANIFEST
trunk/libmarc-charset-perl/META.yml
trunk/libmarc-charset-perl/debian/changelog
trunk/libmarc-charset-perl/etc/codetables.xml
trunk/libmarc-charset-perl/lib/MARC/Charset.pm
Modified: trunk/libmarc-charset-perl/Changes
URL: http://svn.debian.org/wsvn/trunk/libmarc-charset-perl/Changes?rev=6426&op=diff
==============================================================================
--- trunk/libmarc-charset-perl/Changes (original)
+++ trunk/libmarc-charset-perl/Changes Fri Aug 10 11:09:43 2007
@@ -1,4 +1,18 @@
Revision history for MARC::Charset
+
+0.98 Tue Aug 7 08:28:24 EDT 2007
+ - addition of two code elements to etc/codetables.xml that enable
+ the conversion of some Arabic records that contain 0x8D and 0x8E
+ which ought to map to 0x200D and 0x200C in Unicode. These mappings
+ are present for Basic and Extended Latin, but are not present
+ in Arabic codetables. There are actually some records that seem
+ to prove the need for these rules (LCCN 2006552991). Thanks to
+ François Charette <fcharette at ankabut.net> for finding and proposing
+ the fix. Rules were forwarded on to LC for inclusion in canonical
+ character set mapping.
+ - added t/farsi.t and t/farsi.marc to enable testing of new
+ code rules. Hopefully this will fail if the codetables.xml is
+ inadvertently removed without LC having added the new rules.
0.97 Sun May 20 13:48:31 EDT 2007
- added t/null.t
Modified: trunk/libmarc-charset-perl/MANIFEST
URL: http://svn.debian.org/wsvn/trunk/libmarc-charset-perl/MANIFEST?rev=6426&op=diff
==============================================================================
--- trunk/libmarc-charset-perl/MANIFEST (original)
+++ trunk/libmarc-charset-perl/MANIFEST Fri Aug 10 11:09:43 2007
@@ -21,6 +21,8 @@
t/decompose.t
t/escape1.t
t/escape2.t
+t/farsi.marc
+t/farsi.t
t/hebrew1.marc
t/hebrew2.marc
t/hebrew3.marc
Modified: trunk/libmarc-charset-perl/META.yml
URL: http://svn.debian.org/wsvn/trunk/libmarc-charset-perl/META.yml?rev=6426&op=diff
==============================================================================
--- trunk/libmarc-charset-perl/META.yml (original)
+++ trunk/libmarc-charset-perl/META.yml Fri Aug 10 11:09:43 2007
@@ -1,7 +1,7 @@
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: MARC-Charset
-version: 0.97
+version: 0.98
version_from: lib/MARC/Charset.pm
installdirs: site
requires:
@@ -11,4 +11,4 @@
XML::SAX: 0
distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.30
+generated_by: ExtUtils::MakeMaker version 6.30_01
Modified: trunk/libmarc-charset-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libmarc-charset-perl/debian/changelog?rev=6426&op=diff
==============================================================================
--- trunk/libmarc-charset-perl/debian/changelog (original)
+++ trunk/libmarc-charset-perl/debian/changelog Fri Aug 10 11:09:43 2007
@@ -1,3 +1,9 @@
+libmarc-charset-perl (0.98-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Damyan Ivanov <dmn at debian.org> Fri, 10 Aug 2007 14:09:28 +0300
+
libmarc-charset-perl (0.97-2) unstable; urgency=medium
* Set Architecture to any, since the package contains architecture
Modified: trunk/libmarc-charset-perl/etc/codetables.xml
URL: http://svn.debian.org/wsvn/trunk/libmarc-charset-perl/etc/codetables.xml?rev=6426&op=diff
==============================================================================
--- trunk/libmarc-charset-perl/etc/codetables.xml (original)
+++ trunk/libmarc-charset-perl/etc/codetables.xml Fri Aug 10 11:09:43 2007
@@ -3801,7 +3801,32 @@
<ucs>030C</ucs>
<utf-8>CC8C</utf-8>
<name>SHORT U / COMBINING CARON</name>
- </code>
+ </code>
+
+ <!--
+ These last two code points were suggested by
+ François Charette (fcharette at ankabut.net) to
+ process LCCN 2006552991. They were forwarded
+ on to Clay Redding and Nate Trail at LC
+ for addition to the canonical tables. Before
+ replacing this file with the one from LC
+ at some future date the presence of these
+ two code points should be confirmed.
+ ehs Aug-07-2007.
+ -->
+
+ <code>
+ <marc>8D</marc>
+ <ucs>200D</ucs>
+ <utf-8>E2808D</utf-8>
+ <name>JOINER / ZERO WIDTH JOINER</name>
+ </code>
+ <code>
+ <marc>8E</marc>
+ <ucs>200C</ucs>
+ <utf-8>E2808C</utf-8>
+ <name>NON-JOINER / ZERO WIDTH NON-JOINER</name>
+ </code>
</characterSet>
</codeTable>
<codeTable name="Greek" date="January 2000" number="8">
@@ -98940,4 +98965,4 @@
</grouping>
</characterSet>
</codeTable>
-</codeTables>
+</codeTables>
Modified: trunk/libmarc-charset-perl/lib/MARC/Charset.pm
URL: http://svn.debian.org/wsvn/trunk/libmarc-charset-perl/lib/MARC/Charset.pm?rev=6426&op=diff
==============================================================================
--- trunk/libmarc-charset-perl/lib/MARC/Charset.pm (original)
+++ trunk/libmarc-charset-perl/lib/MARC/Charset.pm Fri Aug 10 11:09:43 2007
@@ -1,6 +1,6 @@
package MARC::Charset;
-our $VERSION = '0.97';
+our $VERSION = '0.98';
use strict;
use warnings;
More information about the Pkg-perl-cvs-commits
mailing list