r38296 - in /branches/upstream/libmime-encwords-perl/current: Changes EncWords.pm META.yml Makefile.PL t/pod.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Fri Jun 19 13:33:30 UTC 2009


Author: jawnsy-guest
Date: Fri Jun 19 13:33:25 2009
New Revision: 38296

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=38296
Log:
[svn-upgrade] Integrating new upstream version, libmime-encwords-perl (1.011.1)

Modified:
    branches/upstream/libmime-encwords-perl/current/Changes
    branches/upstream/libmime-encwords-perl/current/EncWords.pm
    branches/upstream/libmime-encwords-perl/current/META.yml
    branches/upstream/libmime-encwords-perl/current/Makefile.PL
    branches/upstream/libmime-encwords-perl/current/t/pod.t

Modified: branches/upstream/libmime-encwords-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmime-encwords-perl/current/Changes?rev=38296&op=diff
==============================================================================
--- branches/upstream/libmime-encwords-perl/current/Changes (original)
+++ branches/upstream/libmime-encwords-perl/current/Changes Fri Jun 19 13:33:25 2009
@@ -1,3 +1,13 @@
+2009-06-16	Hatuka*nezumi - IKEDA Soji	<hatuka at nezumi.nu>
+
+	* Release 1.011.1 - no new features.
+	* Fix: Perl <= 5.6.x - skip tests with older POD::Simple.
+	* MIME::Charset >= 1.007.1 is required.
+
+2009-05-17	Hatuka*nezumi - IKEDA Soji	<hatuka at nezumi.nu>
+
+	* Release 1.011 - not really released.
+
 2009-05-11	Hatuka*nezumi - IKEDA Soji	<hatuka at nezumi.nu>
 
 	* Release 1.011_01 - no new features.

Modified: branches/upstream/libmime-encwords-perl/current/EncWords.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmime-encwords-perl/current/EncWords.pm?rev=38296&op=diff
==============================================================================
--- branches/upstream/libmime-encwords-perl/current/EncWords.pm (original)
+++ branches/upstream/libmime-encwords-perl/current/EncWords.pm Fri Jun 19 13:33:25 2009
@@ -121,7 +121,7 @@
 #------------------------------
 
 ### The package version, both in 1.23 style *and* usable by MakeMaker:
-$VERSION = '1.011_02';
+$VERSION = '1.011.1';
 
 ### Public Configuration Attributes
 $Config = {

Modified: branches/upstream/libmime-encwords-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmime-encwords-perl/current/META.yml?rev=38296&op=diff
==============================================================================
--- branches/upstream/libmime-encwords-perl/current/META.yml (original)
+++ branches/upstream/libmime-encwords-perl/current/META.yml Fri Jun 19 13:33:25 2009
@@ -1,7 +1,7 @@
 --- #YAML:1.0
 name:         MIME-EncWords
 abstract:     deal with RFC 2047 encoded words (improved)
-version:      1.011_02
+version:      1.011.1
 author:
   - Hatuka*nezumi - IKEDA Soji <hatuka at nezumi.nu>
 license:      perl
@@ -9,14 +9,14 @@
 requires:
     Encode:                        1.98
     MIME::Base64:                  2.13
-    MIME::Charset:                 1.007_02
+    MIME::Charset:                 1.007.1
     perl:                          5.005
 build_requires:
     Test::More:                    0
 provides:
     MIME::EncWords:
         file:                      EncWords.pm
-        version:                   1.011_02
+        version:                   1.011.1
 resources:
     repository: http://hatuka.nezumi.nu/repos/MIME-EncWords/
 meta-spec:

Modified: branches/upstream/libmime-encwords-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmime-encwords-perl/current/Makefile.PL?rev=38296&op=diff
==============================================================================
--- branches/upstream/libmime-encwords-perl/current/Makefile.PL (original)
+++ branches/upstream/libmime-encwords-perl/current/Makefile.PL Fri Jun 19 13:33:25 2009
@@ -6,7 +6,7 @@
 	'VERSION_FROM'	=> 'EncWords.pm',
 	'PREREQ_PM'	=> ($] >= 5.008)? {
 	    'Encode'		=> 1.98,
-	    'MIME::Charset'	=> '1.007',
+	    'MIME::Charset'	=> '1.007.1',
 	    'MIME::Base64'	=> 2.13,
 	    'Test::More'	=> 0,
 	}: {

Modified: branches/upstream/libmime-encwords-perl/current/t/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmime-encwords-perl/current/t/pod.t?rev=38296&op=diff
==============================================================================
--- branches/upstream/libmime-encwords-perl/current/t/pod.t (original)
+++ branches/upstream/libmime-encwords-perl/current/t/pod.t Fri Jun 19 13:33:25 2009
@@ -1,6 +1,12 @@
 use strict;
 use Test::More;
-eval "use Test::Pod 1.00";
-plan skip_all => "Test::Pod 1.00 or later required for testing POD" if $@;
+if ($] < 5.007003 ) {
+    plan skip_all => "Perl 5.7.3 or later required for testing utf-8 POD";
+} else {
+    eval "use Test::Pod 1.00";
+    if ($@) {
+        plan skip_all => "Test::Pod 1.00 or later required for testing POD";
+    }
+}
 all_pod_files_ok();
 




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