r6602 - in /trunk/libemail-simple-perl: Changes META.yml Makefile.PL debian/changelog 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:46:34 UTC 2007


Author: jeremiah-guest
Date: Tue Aug 14 15:46:33 2007
New Revision: 6602

URL: http://svn.debian.org/wsvn/?sc=1&rev=6602
Log:
New upstream release with improved testing.

Modified:
    trunk/libemail-simple-perl/Changes
    trunk/libemail-simple-perl/META.yml
    trunk/libemail-simple-perl/Makefile.PL
    trunk/libemail-simple-perl/debian/changelog
    trunk/libemail-simple-perl/lib/Email/Simple.pm
    trunk/libemail-simple-perl/t/header-names.t

Modified: trunk/libemail-simple-perl/Changes
URL: http://svn.debian.org/wsvn/trunk/libemail-simple-perl/Changes?rev=6602&op=diff
==============================================================================
--- trunk/libemail-simple-perl/Changes (original)
+++ trunk/libemail-simple-perl/Changes Tue Aug 14 15:46:33 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: trunk/libemail-simple-perl/META.yml
URL: http://svn.debian.org/wsvn/trunk/libemail-simple-perl/META.yml?rev=6602&op=diff
==============================================================================
--- trunk/libemail-simple-perl/META.yml (original)
+++ trunk/libemail-simple-perl/META.yml Tue Aug 14 15:46:33 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: trunk/libemail-simple-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/trunk/libemail-simple-perl/Makefile.PL?rev=6602&op=diff
==============================================================================
--- trunk/libemail-simple-perl/Makefile.PL (original)
+++ trunk/libemail-simple-perl/Makefile.PL Tue Aug 14 15:46:33 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: trunk/libemail-simple-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libemail-simple-perl/debian/changelog?rev=6602&op=diff
==============================================================================
--- trunk/libemail-simple-perl/debian/changelog (original)
+++ trunk/libemail-simple-perl/debian/changelog Tue Aug 14 15:46:33 2007
@@ -1,3 +1,9 @@
+libemail-simple-perl (2.003-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Jeremiah Foster <jeremiah at jeremiahfoster.com>  Tue, 14 Aug 2007 15:32:43 +0000
+
 libemail-simple-perl (2.002-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libemail-simple-perl/lib/Email/Simple.pm
URL: http://svn.debian.org/wsvn/trunk/libemail-simple-perl/lib/Email/Simple.pm?rev=6602&op=diff
==============================================================================
--- trunk/libemail-simple-perl/lib/Email/Simple.pm (original)
+++ trunk/libemail-simple-perl/lib/Email/Simple.pm Tue Aug 14 15:46:33 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: trunk/libemail-simple-perl/t/header-names.t
URL: http://svn.debian.org/wsvn/trunk/libemail-simple-perl/t/header-names.t?rev=6602&op=diff
==============================================================================
--- trunk/libemail-simple-perl/t/header-names.t (original)
+++ trunk/libemail-simple-perl/t/header-names.t Tue Aug 14 15:46:33 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