r11296 - in /branches/upstream/libemail-simple-creator-perl/current: Changes META.yml Makefile.PL lib/Email/Simple/Creator.pm

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Mon Dec 17 17:06:41 UTC 2007


Author: gregoa-guest
Date: Mon Dec 17 17:06:40 2007
New Revision: 11296

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

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

Modified: branches/upstream/libemail-simple-creator-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-simple-creator-perl/current/Changes?rev=11296&op=diff
==============================================================================
--- branches/upstream/libemail-simple-creator-perl/current/Changes (original)
+++ branches/upstream/libemail-simple-creator-perl/current/Changes Mon Dec 17 17:06:40 2007
@@ -1,4 +1,7 @@
 Revision history for Email-Simple-Creator
+
+1.424     2007-11-30
+          replace Email::Date prereq with Email::Date::Format
 
 1.423     2007-11-01
           update Email::Simple prereq version

Modified: branches/upstream/libemail-simple-creator-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-simple-creator-perl/current/META.yml?rev=11296&op=diff
==============================================================================
--- branches/upstream/libemail-simple-creator-perl/current/META.yml (original)
+++ branches/upstream/libemail-simple-creator-perl/current/META.yml Mon Dec 17 17:06:40 2007
@@ -1,12 +1,12 @@
 --- #YAML:1.0
 name:                Email-Simple-Creator
-version:             1.423
+version:             1.424
 abstract:            Email::Simple constructor for starting anew.
 license:             perl
 generated_by:        ExtUtils::MakeMaker version 6.36_01
 distribution_type:   module
 requires:     
-    Email::Date:                   
+    Email::Date::Format:           1.000
     Email::Simple:                 2.003
     Test::More:                    0.47
 meta-spec:

Modified: branches/upstream/libemail-simple-creator-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-simple-creator-perl/current/Makefile.PL?rev=11296&op=diff
==============================================================================
--- branches/upstream/libemail-simple-creator-perl/current/Makefile.PL (original)
+++ branches/upstream/libemail-simple-creator-perl/current/Makefile.PL Mon Dec 17 17:06:40 2007
@@ -7,9 +7,9 @@
   NAME          => 'Email::Simple::Creator',
   (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
   PREREQ_PM     => {
-    'Test::More'        => '0.47',
-    'Email::Simple'     => '2.003',
-    'Email::Date'       => '',
+    'Test::More'          => '0.47',
+    'Email::Simple'       => '2.003',
+    'Email::Date::Format' => '1.000', # first release
   },
   VERSION_FROM  => 'lib/Email/Simple/Creator.pm',
 );

Modified: branches/upstream/libemail-simple-creator-perl/current/lib/Email/Simple/Creator.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-simple-creator-perl/current/lib/Email/Simple/Creator.pm?rev=11296&op=diff
==============================================================================
--- branches/upstream/libemail-simple-creator-perl/current/lib/Email/Simple/Creator.pm (original)
+++ branches/upstream/libemail-simple-creator-perl/current/lib/Email/Simple/Creator.pm Mon Dec 17 17:06:40 2007
@@ -2,15 +2,15 @@
 use strict;
 
 use vars qw[$VERSION $CRLF];
-$VERSION = '1.423';
+$VERSION = '1.424';
 
 sub _crlf {
   "\x0d\x0a";
 }
 
 sub _date_header {
-  require Email::Date;
-  Email::Date::format_date();
+  require Email::Date::Format;
+  Email::Date::Format::email_date();
 }
 
 sub _add_to_header {




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