Front page | perl.perl5.porters |
Postings from April 2003
[PATCH Encode 1.93] pre-1.94 patch
Thread Previous
|
Thread Next
From:
Dan Kogai
Date:
April 24, 2003 23:21
Subject:
[PATCH Encode 1.93] pre-1.94 patch
Message ID:
1B5DC84F-76E6-11D7-A504-000393AE4244@dan.co.jp
to make Enache and Craig happy.
Pumpkings, please apply the patch after my .sig. Those changes are
rather too small to $Encode::VERSION++ but I want to clean up this
issue and stop the merry-go-round ASAP.
Dan the Encode Maintainer
--- ext/Encode/AUTHORS Mon Mar 31 20:17:11 2003
+++ ext/Encode-1.93/AUTHORS Fri Apr 25 15:14:12 2003
@@ -17,7 +17,6 @@
Craig A. Berry <craigberry@mac.com>
Dan Kogai <dankogai@dan.co.jp>
Elizabeth Mattijsen <liz@dijkmat.nl>
-Enache Adrian <enache@rdslink.ro>
Gerrit P. Haase <gp@familiehaase.de>
Graham Barr <gbarr@pobox.com>
Gurusamy Sarathy <gsar@activestate.com>
diff -ruN ext/Encode/Changes ext/Encode-1.93/Changes
--- ext/Encode/Changes Fri Apr 25 05:24:19 2003
+++ ext/Encode-1.93/Changes Fri Apr 25 15:14:36 2003
@@ -3,6 +3,17 @@
# $Id: Changes,v 1.93 2003/04/24 17:43:16 dankogai Exp $
#
$Revision: 1.93 $ $Date: 2003/04/24 17:43:16 $
+! AUTHORS
+ Enache Adrian removed upon request -- to live longer than Encode
+ and/or FreeBSD (toy-)?thread :)
+ Message-Id: <20030425015701.GA2069@ratsnest.hole>
+! t/enc_module.t
+ "close STDOUT unless $^O eq 'freebsd';" once again relocated
+ to keep VMS happy in which case "$^O eq 'freebsd'" is required
+ to keep FreBSD+thread happy. Sigh.
+ Message-Id: <3EA88ADC.3000300@mac.com>
+
+1.93 2003/04/24 17:43:16
! t/enc_eucjp.t
added "no warnings 'pack'" in for loop to keep bleedperl from
complaining "Character in 'C' format wrapped in pack".
diff -ruN ext/Encode/MANIFEST ext/Encode-1.93/MANIFEST
--- ext/Encode/MANIFEST Mon Mar 10 03:23:23 2003
+++ ext/Encode-1.93/MANIFEST Fri Apr 25 15:14:47 2003
@@ -189,3 +189,4 @@
ucm/shiftjis.ucm Unicode Character Map
ucm/symbol.ucm Unicode Character Map
ucm/viscii.ucm Unicode Character Map
+META.yml Module meta-data in YAML
diff -ruN ext/Encode/META.yml ext/Encode-1.93/META.yml
--- ext/Encode/META.yml Thu Jan 1 09:00:00 1970
+++ ext/Encode-1.93/META.yml Fri Apr 25 15:14:46 2003
@@ -0,0 +1,9 @@
+#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
+name: Encode
+version: 1.93
+version_from: Encode.pm
+installdirs: perl
+requires:
+
+distribution_type: module
+generated_by: ExtUtils::MakeMaker version 6.10_03
diff -ruN ext/Encode/t/enc_module.t ext/Encode-1.93/t/enc_module.t
--- ext/Encode/t/enc_module.t Fri Apr 25 05:24:20 2003
+++ ext/Encode-1.93/t/enc_module.t Fri Apr 25 15:10:12 2003
@@ -41,6 +41,11 @@
$obj->set("�ƥ���ʸ����");
print $obj->str, "\n";
+# Please do not move this to a point after the comparison -- Craig
Berry
+# and "unless $^O eq 'freebsd'" is needed for FreeBSD (toy-)?thread
+# -- dankogai
+close STDOUT unless $^O eq 'freebsd';
+
my $cmp = compare_text($file0, $file1);
is($cmp, 0, "encoding vs. STDOUT");
@@ -53,9 +58,6 @@
is ($cmp[$i++], $_, "encoding vs. STDIN - $i");
}
-# I have tested and found "unless $^O eq 'freebsd'" is not
-# necessary but I will leave it for the sake of Enache -- dankogai
-close STDOUT unless $^O eq 'freebsd';
unlink $file1 unless $cmp;
__END__
Thread Previous
|
Thread Next