r6600 - in /branches/upstream/libemail-simple-perl/current: Changes META.yml Makefile.PL lib/Email/Simple.pm t/header-names.t

jeremiah-guest at users.alioth.debian.org jeremiah-guest at users.alioth.debian.org
Tue Aug 14 15:31:56 UTC 2007


Author: jeremiah-guest
Date: Tue Aug 14 15:31:55 2007
New Revision: 6600

URL: http://svn.debian.org/wsvn/?sc=1&rev=6600
Log:
[svn-upgrade] Integrating new upstream version, libemail-simple-perl (2.003)

Modified:
    branches/upstream/libemail-simple-perl/current/Changes
    branches/upstream/libemail-simple-perl/current/META.yml
    branches/upstream/libemail-simple-perl/current/Makefile.PL
    branches/upstream/libemail-simple-perl/current/lib/Email/Simple.pm
    branches/upstream/libemail-simple-perl/current/t/header-names.t

Modified: branches/upstream/libemail-simple-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-simple-perl/current/Changes?rev=6600&op=diff
==============================================================================
--- branches/upstream/libemail-simple-perl/current/Changes (original)
+++ branches/upstream/libemail-simple-perl/current/Changes Tue Aug 14 15:31:55 2007
@@ -1,4 +1,9 @@
 Revision history for Perl extension Email::Simple.
+
+2.003     2007-07-19
+          improve tests, for 5.5 compat
+          remove conditional circular prereq on Email::MIME, replace it with a
+          warning and delay
 
 2.002     2007-07-14
           change initialization order to unbreak Email::MIME

Modified: branches/upstream/libemail-simple-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-simple-perl/current/META.yml?rev=6600&op=diff
==============================================================================
--- branches/upstream/libemail-simple-perl/current/META.yml (original)
+++ branches/upstream/libemail-simple-perl/current/META.yml Tue Aug 14 15:31:55 2007
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Email-Simple
-version:             2.002
+version:             2.003
 abstract:            ~
 license:             perl
 generated_by:        ExtUtils::MakeMaker version 6.32

Modified: branches/upstream/libemail-simple-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-simple-perl/current/Makefile.PL?rev=6600&op=diff
==============================================================================
--- branches/upstream/libemail-simple-perl/current/Makefile.PL (original)
+++ branches/upstream/libemail-simple-perl/current/Makefile.PL Tue Aug 14 15:31:55 2007
@@ -13,8 +13,10 @@
 ### ACHTUNG!  You need to update Email::MIME to a later version, as versions
 ### before 1.857 meddled in the guts of Email::Simple, which have been changed.
 ### If you are using an automated installer, this should happen automatically.
+###
+### This installation will proceed in five seconds.
 END_ACHTUNG
-    push @prereq, 'Email::MIME' => 1.857;
+    sleep 5;
   }
 }
 

Modified: branches/upstream/libemail-simple-perl/current/lib/Email/Simple.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-simple-perl/current/lib/Email/Simple.pm?rev=6600&op=diff
==============================================================================
--- branches/upstream/libemail-simple-perl/current/lib/Email/Simple.pm (original)
+++ branches/upstream/libemail-simple-perl/current/lib/Email/Simple.pm Tue Aug 14 15:31:55 2007
@@ -6,7 +6,7 @@
 
 use Email::Simple::Header;
 
-$Email::Simple::VERSION = '2.002';
+$Email::Simple::VERSION = '2.003';
 $Email::Simple::GROUCHY = 0;
 
 # We are liberal in what we accept.

Modified: branches/upstream/libemail-simple-perl/current/t/header-names.t
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-simple-perl/current/t/header-names.t?rev=6600&op=diff
==============================================================================
--- branches/upstream/libemail-simple-perl/current/t/header-names.t (original)
+++ branches/upstream/libemail-simple-perl/current/t/header-names.t Tue Aug 14 15:31:55 2007
@@ -26,7 +26,7 @@
     can_ok($email, $method);
     is_deeply(
       [ qw(From To Subject) ],
-      [ $email->$method     ],
+      [ $email->$method()   ],
       "have expected headers (via $method)"
     );
   }




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