summaryrefslogtreecommitdiff
path: root/cpan/Encode
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2014-01-03 08:48:20 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2014-01-03 08:48:20 +0000
commit3cd3edd26d7d7351a88a464d90ab62a28f1f25fc (patch)
tree2add03aafa3020a6615e3cadc3cebb659eabd421 /cpan/Encode
parentb5af3ad26055ddca5e9a93f7311d2be865b3de75 (diff)
downloadperl-3cd3edd26d7d7351a88a464d90ab62a28f1f25fc.tar.gz
Upgrade Encode from version 2.56 to 2.57
Diffstat (limited to 'cpan/Encode')
-rw-r--r--cpan/Encode/Encode.pm4
-rw-r--r--cpan/Encode/Makefile.PL2
-rw-r--r--cpan/Encode/bin/enc2xs20
-rw-r--r--cpan/Encode/encengine.c2
-rw-r--r--cpan/Encode/lib/Encode/Encoder.pm2
-rw-r--r--cpan/Encode/lib/Encode/GSM0338.pm2
-rw-r--r--cpan/Encode/lib/Encode/Unicode/UTF7.pm2
-rw-r--r--cpan/Encode/t/Encoder.t2
8 files changed, 18 insertions, 18 deletions
diff --git a/cpan/Encode/Encode.pm b/cpan/Encode/Encode.pm
index 81ebb884bd..0c58043bff 100644
--- a/cpan/Encode/Encode.pm
+++ b/cpan/Encode/Encode.pm
@@ -1,10 +1,10 @@
#
-# $Id: Encode.pm,v 2.55 2013/09/14 07:51:59 dankogai Exp dankogai $
+# $Id: Encode.pm,v 2.57 2014/01/03 04:51:39 dankogai Exp $
#
package Encode;
use strict;
use warnings;
-our $VERSION = sprintf "%d.%02d", q$Revision: 2.56 $ =~ /(\d+)/g;
+our $VERSION = sprintf "%d.%02d", q$Revision: 2.57 $ =~ /(\d+)/g;
use constant DEBUG => !!$ENV{PERL_ENCODE_DEBUG};
use XSLoader ();
XSLoader::load( __PACKAGE__, $VERSION );
diff --git a/cpan/Encode/Makefile.PL b/cpan/Encode/Makefile.PL
index 5eb0f183e1..18d5915b25 100644
--- a/cpan/Encode/Makefile.PL
+++ b/cpan/Encode/Makefile.PL
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.PL,v 2.12 2013/09/14 07:51:59 dankogai Exp dankogai $
+# $Id: Makefile.PL,v 2.12 2013/09/14 07:51:59 dankogai Exp $
#
use 5.007003;
use strict;
diff --git a/cpan/Encode/bin/enc2xs b/cpan/Encode/bin/enc2xs
index 0fe1da47db..c5f788d725 100644
--- a/cpan/Encode/bin/enc2xs
+++ b/cpan/Encode/bin/enc2xs
@@ -10,7 +10,7 @@ use warnings;
use Getopt::Std;
use Config;
my @orig_ARGV = @ARGV;
-our $VERSION = do { my @r = (q$Revision: 2.8 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+our $VERSION = do { my @r = (q$Revision: 2.9 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
# These may get re-ordered.
# RAW is a do_now as inserted by &enter
@@ -1080,7 +1080,7 @@ add a new encoding, just read this chapter and forget the rest.
=over 4
-=item 0.
+=item 0.Z<>
Have a .ucm file ready. You can get it from somewhere or you can write
your own from scratch or you can grab one from the Encode distribution
@@ -1091,7 +1091,7 @@ in I<my.ucm>. C<$> is a shell prompt.
$ ls -F
my.ucm
-=item 1.
+=item 1.Z<>
Issue a command as follows;
@@ -1114,7 +1114,7 @@ The following files were created.
=over 4
-=item 1.1.
+=item 1.1.Z<>
If you want *.ucm installed together with the modules, do as follows;
@@ -1124,20 +1124,20 @@ If you want *.ucm installed together with the modules, do as follows;
=back
-=item 2.
+=item 2.Z<>
Edit the files generated. You don't have to if you have no time AND no
intention to give it to someone else. But it is a good idea to edit
the pod and to add more tests.
-=item 3.
+=item 3.Z<>
Now issue a command all Perl Mongers love:
$ perl Makefile.PL
Writing Makefile for Encode::My
-=item 4.
+=item 4.Z<>
Now all you have to do is make.
@@ -1158,7 +1158,7 @@ The time it takes varies depending on how fast your machine is and
how large your encoding is. Unless you are working on something big
like euc-tw, it won't take too long.
-=item 5.
+=item 5.Z<>
You can "make install" already but you should test first.
@@ -1171,11 +1171,11 @@ You can "make install" already but you should test first.
Files=1, Tests=2, 0 wallclock secs
( 0.09 cusr + 0.01 csys = 0.09 CPU)
-=item 6.
+=item 6.Z<>
If you are content with the test result, just "make install"
-=item 7.
+=item 7.Z<>
If you want to add your encoding to Encode's demand-loading list
(so you don't have to "use Encode::YourEncoding"), run
diff --git a/cpan/Encode/encengine.c b/cpan/Encode/encengine.c
index 255e4d789b..efe198a17d 100644
--- a/cpan/Encode/encengine.c
+++ b/cpan/Encode/encengine.c
@@ -81,7 +81,7 @@ This scheme can also handle shift encodings.
A slight enhancement to the scheme also allows for look-ahead - if
we add a flag to re-add the removed byte to the source we could handle
- a" -> ä
+ a" -> U+00E4 (LATIN SMALL LETTER A WITH DIAERESIS)
ab -> a (and take b back please)
*/
diff --git a/cpan/Encode/lib/Encode/Encoder.pm b/cpan/Encode/lib/Encode/Encoder.pm
index 000b415285..23e0349bf3 100644
--- a/cpan/Encode/lib/Encode/Encoder.pm
+++ b/cpan/Encode/lib/Encode/Encoder.pm
@@ -1,5 +1,5 @@
#
-# $Id: Encoder.pm,v 2.3 2013/09/14 07:51:59 dankogai Exp dankogai $
+# $Id: Encoder.pm,v 2.3 2013/09/14 07:51:59 dankogai Exp $
#
package Encode::Encoder;
use strict;
diff --git a/cpan/Encode/lib/Encode/GSM0338.pm b/cpan/Encode/lib/Encode/GSM0338.pm
index 5148488b69..20257a1cbd 100644
--- a/cpan/Encode/lib/Encode/GSM0338.pm
+++ b/cpan/Encode/lib/Encode/GSM0338.pm
@@ -1,5 +1,5 @@
#
-# $Id: GSM0338.pm,v 2.5 2013/09/14 07:51:59 dankogai Exp dankogai $
+# $Id: GSM0338.pm,v 2.5 2013/09/14 07:51:59 dankogai Exp $
#
package Encode::GSM0338;
diff --git a/cpan/Encode/lib/Encode/Unicode/UTF7.pm b/cpan/Encode/lib/Encode/Unicode/UTF7.pm
index 039e06717b..d5d86e2f90 100644
--- a/cpan/Encode/lib/Encode/Unicode/UTF7.pm
+++ b/cpan/Encode/lib/Encode/Unicode/UTF7.pm
@@ -1,5 +1,5 @@
#
-# $Id: UTF7.pm,v 2.8 2013/09/14 07:51:59 dankogai Exp dankogai $
+# $Id: UTF7.pm,v 2.8 2013/09/14 07:51:59 dankogai Exp $
#
package Encode::Unicode::UTF7;
use strict;
diff --git a/cpan/Encode/t/Encoder.t b/cpan/Encode/t/Encoder.t
index 63eea23d99..bfb4d8e045 100644
--- a/cpan/Encode/t/Encoder.t
+++ b/cpan/Encode/t/Encoder.t
@@ -1,5 +1,5 @@
#
-# $Id: Encoder.t,v 2.1 2013/09/14 07:51:59 dankogai Exp dankogai $
+# $Id: Encoder.t,v 2.1 2013/09/14 07:51:59 dankogai Exp $
#
BEGIN {