Change 17778 by [EMAIL PROTECTED] on 2002/08/25 18:43:06

        Subject: Encode 1.76 Released
        From: Dan Kogai <[EMAIL PROTECTED]>
        Date: su elo 25, 2002  11:27:07 US/Eastern
        Message-Id: <[EMAIL PROTECTED]>

Affected files ...

.... //depot/perl/ext/Encode/Changes#41 edit
.... //depot/perl/ext/Encode/Encode.pm#120 edit
.... //depot/perl/ext/Encode/bin/piconv#17 edit
.... //depot/perl/ext/Encode/encoding.pm#14 edit
.... //depot/perl/ext/Encode/lib/Encode/Alias.pm#21 edit
.... //depot/perl/ext/Encode/lib/Encode/MIME/Header.pm#6 edit
.... //depot/perl/ext/Encode/t/big5-eten.utf#2 edit
.... //depot/perl/ext/Encode/ucm/big5-eten.ucm#4 edit

Differences ...

==== //depot/perl/ext/Encode/Changes#41 (text) ====
Index: perl/ext/Encode/Changes
--- perl/ext/Encode/Changes#40~16964~   Sat Jun  1 10:25:31 2002
+++ perl/ext/Encode/Changes     Sun Aug 25 11:43:06 2002
@@ -1,9 +1,36 @@
 # Revision history for Perl extension Encode.
 #
-# $Id: Changes,v 1.75 2002/06/01 18:07:49 dankogai Exp dankogai $
+# $Id: Changes,v 1.76 2002/08/25 15:09:51 dankogai Exp dankogai $
 #
 
-$Revision: 1.75 $ $Date: 2002/06/01 18:07:49 $
+$Revision: 1.76 $ $Date: 2002/08/25 15:09:51 $
+! t/big5-eten.utf
+  To reflect ucm change by Autrijus.  t/big5-eten.enc was regenerated
+  but naturally identical to previous version -- dankogai
+! ucm/big5-eten.ucm
+  Codepoint fixes -- autrijus
+  Message-Id: <[EMAIL PROTECTED]>
+= *
+  copied everything under perl-5.8.0/ext/Encode to make sure Encode
+  is in sync w/ perl core
+! t/CJKT.t t/guess.t
+  Change 17175 by jhi@alpha on 2002/06/10 23:24:42
+  Now that binmode(FH) does implicit ":bytes" revisit
+  the failing tests.  The worrisome one is the Digest::MD5
+  test-- how will it fare in CRLF lands now?
+! t/CJKT.t t/guess.t
+  From: Radu Greab <[EMAIL PROTECTED]>
+  Date: Mon, 10 Jun 2002 00:40:34 +0300
+  Message-Id: <[EMAIL PROTECTED]>
+  Fixes for en_US.UTF-8 failures, all but ext/PerlIO/t/fallback.t
+  ones which I cannot figure out.
+! lib/Encode/Alias.pm
+  Subject: [Encode PATCH] spurious warning
+  From: Nicholas Clark <[EMAIL PROTECTED]>
+  Date: Sun, 2 Jun 2002 20:26:22 +0100
+  Message-ID: <[EMAIL PROTECTED]>
+
+1.75 2002/06/01 18:07:49
 ! lib/Encode/Alias.pm t/Alias.t lib/Encode/Supported.pod TW/TW.pm
   glibc compliance cited by Autrijus.
   http://www.li18nux.org/docs/html/CodesetAliasTable-V10.html
@@ -679,7 +706,7 @@
   Typo fixes and improvements by jhi
   Message-Id: <[EMAIL PROTECTED]>, et al.
 
-1.11  $Date: 2002/06/01 18:07:49 $
+1.11  $Date: 2002/08/25 15:09:51 $
 + t/encoding.t
 + t/jperl.t
 ! MANIFEST

==== //depot/perl/ext/Encode/Encode.pm#120 (text) ====
Index: perl/ext/Encode/Encode.pm
--- perl/ext/Encode/Encode.pm#119~17591~        Wed Jul 17 05:18:24 2002
+++ perl/ext/Encode/Encode.pm   Sun Aug 25 11:43:06 2002
@@ -1,9 +1,9 @@
 #
-# $Id: Encode.pm,v 1.75 2002/06/01 18:07:42 dankogai Exp $
+# $Id: Encode.pm,v 1.76 2002/08/25 15:09:51 dankogai Exp dankogai $
 #
 package Encode;
 use strict;
-our $VERSION = do { my @r = (q$Revision: 1.75 $ =~ /\d+/g); sprintf "%d."."%02d" x 
$#r, @r };
+our $VERSION = do { my @r = (q$Revision: 1.76 $ =~ /\d+/g); sprintf "%d."."%02d" x 
+$#r, @r };
 our $DEBUG = 0;
 use XSLoader ();
 XSLoader::load(__PACKAGE__, $VERSION);

==== //depot/perl/ext/Encode/bin/piconv#17 (text) ====
Index: perl/ext/Encode/bin/piconv
--- perl/ext/Encode/bin/piconv#16~16964~        Sat Jun  1 10:25:31 2002
+++ perl/ext/Encode/bin/piconv  Sun Aug 25 11:43:06 2002
@@ -1,5 +1,5 @@
 #!./perl
-# $Id: piconv,v 1.25 2002/06/01 18:07:49 dankogai Exp dankogai $
+# $Id: piconv,v 1.25 2002/06/01 18:07:49 dankogai Exp $
 #
 use 5.8.0;
 use strict;

==== //depot/perl/ext/Encode/encoding.pm#14 (text) ====
Index: perl/ext/Encode/encoding.pm
--- perl/ext/Encode/encoding.pm#13~17581~       Tue Jul 16 12:49:16 2002
+++ perl/ext/Encode/encoding.pm Sun Aug 25 11:43:06 2002
@@ -1,5 +1,5 @@
 package encoding;
-our $VERSION = do { my @r = (q$Revision: 1.35 $ =~ /\d+/g); sprintf "%d."."%02d" x 
$#r, @r };
+our $VERSION = do { my @r = (q$Revision: 1.36 $ =~ /\d+/g); sprintf "%d."."%02d" x 
+$#r, @r };
 
 use Encode;
 use strict;

==== //depot/perl/ext/Encode/lib/Encode/Alias.pm#21 (text) ====
Index: perl/ext/Encode/lib/Encode/Alias.pm
--- perl/ext/Encode/lib/Encode/Alias.pm#20~17009~       Wed Jun  5 06:07:01 2002
+++ perl/ext/Encode/lib/Encode/Alias.pm Sun Aug 25 11:43:06 2002
@@ -1,7 +1,7 @@
 package Encode::Alias;
 use strict;
 use Encode;
-our $VERSION = do { my @r = (q$Revision: 1.32 $ =~ /\d+/g); sprintf "%d."."%02d" x 
$#r, @r };
+our $VERSION = do { my @r = (q$Revision: 1.33 $ =~ /\d+/g); sprintf "%d."."%02d" x 
+$#r, @r };
 our $DEBUG = 0;
 
 use base qw(Exporter);

==== //depot/perl/ext/Encode/lib/Encode/MIME/Header.pm#6 (text) ====
Index: perl/ext/Encode/lib/Encode/MIME/Header.pm
--- perl/ext/Encode/lib/Encode/MIME/Header.pm#5~16715~  Mon May 20 15:13:45 2002
+++ perl/ext/Encode/lib/Encode/MIME/Header.pm   Sun Aug 25 11:43:06 2002
@@ -1,7 +1,7 @@
 package Encode::MIME::Header;
 use strict;
 # use warnings;
-our $VERSION = do { my @r = (q$Revision: 1.5 $ =~ /\d+/g); sprintf "%d."."%02d" x 
$#r, @r };
+our $VERSION = do { my @r = (q$Revision: 1.6 $ =~ /\d+/g); sprintf "%d."."%02d" x 
+$#r, @r };
 
 use Encode qw(find_encoding encode_utf8);
 use MIME::Base64;

==== //depot/perl/ext/Encode/t/big5-eten.utf#2 (text) ====
Index: perl/ext/Encode/t/big5-eten.utf
--- perl/ext/Encode/t/big5-eten.utf#1~16089~    Mon Apr 22 17:12:09 2002
+++ perl/ext/Encode/t/big5-eten.utf     Sun Aug 25 11:43:06 2002
@@ -193,8 +193,8 @@
 0xc7c0: 
ツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャ
 0xc7e0: 
ヤュユョヨラリルレロヮワヰヱヲンヴヵヶАБВГДЕЁЖЗИЙК 
 0xc840: ЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзий
-0xc860: клмнопрстуфхцчшщъыьэюя⇧↸↹‌乚 刂 
-0xc8a0:  
冈❠
+0xc860: клмнопрстуфхцчшщъыьэюя⇧↸↹𠃌乚𠂊刂 
+0xc8a0:  
+冈𧘇
 0xc8c0: 
¬¦'"㈱№℡゛゜⺀⺄⺆⺇⺈⺊⺌⺍⺕⺜
 0xc8e0: ⺝⺥⺧⺪⺬⺮⺶⺼⺾⻆⻊⻌⻍⻏⻖⻗⻞⻣   ʃɐɛɔɵœøŋʊɪ 
 0xc940: 
乂乜凵匚厂万丌乇亍囗兀屮彳丏冇与丮亓仂仉仈冘勼卬厹圠夃夬尐巿旡殳

==== //depot/perl/ext/Encode/ucm/big5-eten.ucm#4 (text) ====
Index: perl/ext/Encode/ucm/big5-eten.ucm
--- perl/ext/Encode/ucm/big5-eten.ucm#3~16070~  Mon Apr 22 05:44:09 2002
+++ perl/ext/Encode/ucm/big5-eten.ucm   Sun Aug 25 11:43:06 2002
@@ -1,5 +1,5 @@
 #
-# $Id: big5-eten.ucm,v 1.2 2002/04/22 03:41:13 dankogai Exp $
+# $Id: big5-eten.ucm,v 1.3 2002/08/25 15:09:51 dankogai Exp dankogai $
 #
 # ./compile -n big5-eten -o Encode/big5-eten.ucm Encode/big5-eten.enc
 <code_set_name> "big5-eten"
@@ -313,8 +313,8 @@
 <U044E> \xC8\x74 |0
 <U044F> \xC8\x75 |0
 <U0451> \xC8\x5B |0
-<U2008> \xC8\x7C |0
-<U200C> \xC8\x7A |0
+<U2008A> \xC8\x7C |0
+<U200CC> \xC8\x7A |0
 <U2013> \xA1\x56 |0
 <U2014> \xA1\x58 |0
 <U2018> \xA1\xA5 |0
@@ -500,7 +500,7 @@
 <U2640> \xA1\xF0 |0
 <U2642> \xA1\xF1 |0
 <U273D> \xC6\xE6 |0
-<U2760> \xC8\xA4 |0
+<U27607> \xC8\xA4 |0
 <U2E80> \xC8\xD6 |0
 <U2E84> \xC8\xD7 |0
 <U2E86> \xC8\xD8 |0
End of Patch.

Reply via email to