r34404 - in /branches/upstream/libemail-mime-creator-perl/current: Changes META.yml Makefile.PL lib/Email/MIME/Creator.pm t/singlepart.t

bricas-guest at users.alioth.debian.org bricas-guest at users.alioth.debian.org
Thu Apr 30 12:44:34 UTC 2009


Author: bricas-guest
Date: Thu Apr 30 12:44:29 2009
New Revision: 34404

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

Modified:
    branches/upstream/libemail-mime-creator-perl/current/Changes
    branches/upstream/libemail-mime-creator-perl/current/META.yml
    branches/upstream/libemail-mime-creator-perl/current/Makefile.PL
    branches/upstream/libemail-mime-creator-perl/current/lib/Email/MIME/Creator.pm
    branches/upstream/libemail-mime-creator-perl/current/t/singlepart.t

Modified: branches/upstream/libemail-mime-creator-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-mime-creator-perl/current/Changes?rev=34404&op=diff
==============================================================================
--- branches/upstream/libemail-mime-creator-perl/current/Changes (original)
+++ branches/upstream/libemail-mime-creator-perl/current/Changes Thu Apr 30 12:44:29 2009
@@ -1,4 +1,7 @@
 Revision history for Email-MIME-Creator
+
+1.456   2009-04-29
+        correct test expectations for Encodings 1.313
 
 1.455   2009-01-20
         fix a horrendous bug that would let you end up with:

Modified: branches/upstream/libemail-mime-creator-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-mime-creator-perl/current/META.yml?rev=34404&op=diff
==============================================================================
--- branches/upstream/libemail-mime-creator-perl/current/META.yml (original)
+++ branches/upstream/libemail-mime-creator-perl/current/META.yml Thu Apr 30 12:44:29 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Email-MIME-Creator
-version:            1.455
+version:            1.456
 abstract:           Email::MIME constructor for starting anew
 author:
     - Ricardo SIGNES <rjbs at cpan.org>
@@ -8,19 +8,22 @@
 distribution_type:  module
 configure_requires:
     ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
 requires:
     Email::MIME:          1.82
+    Email::MIME::Encodings:  1.313
     Email::MIME::Modifier:  1.440
     Email::Simple:        1.92
     Email::Simple::Creator:  1.4
     Test::More:           0.47
 resources:
-    Repository:  http://github.com/rjbs/email-mime-creator
+    repository:  http://github.com/rjbs/email-mime-creator
 no_index:
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.48
+generated_by:       ExtUtils::MakeMaker version 6.50
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: branches/upstream/libemail-mime-creator-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-mime-creator-perl/current/Makefile.PL?rev=34404&op=diff
==============================================================================
--- branches/upstream/libemail-mime-creator-perl/current/Makefile.PL (original)
+++ branches/upstream/libemail-mime-creator-perl/current/Makefile.PL Thu Apr 30 12:44:29 2009
@@ -8,6 +8,7 @@
   PREREQ_PM     => {
     'Email::MIME'            => '1.82',
     'Email::MIME::Modifier'  => '1.440', # allow forced multipart
+    'Email::MIME::Encodings' => '1.313', # deal with qp line endings; ugh
     'Email::Simple'          => '1.92',
     'Email::Simple::Creator' => '1.4',
     'Test::More'             => '0.47',
@@ -16,7 +17,7 @@
   (eval { ExtUtils::MakeMaker->VERSION(6.46) }
     ? (META_MERGE => {
         resources => {
-          Repository => 'http://github.com/rjbs/email-mime-creator'
+          repository => 'http://github.com/rjbs/email-mime-creator'
         }
       })
     : ()

Modified: branches/upstream/libemail-mime-creator-perl/current/lib/Email/MIME/Creator.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-mime-creator-perl/current/lib/Email/MIME/Creator.pm?rev=34404&op=diff
==============================================================================
--- branches/upstream/libemail-mime-creator-perl/current/lib/Email/MIME/Creator.pm (original)
+++ branches/upstream/libemail-mime-creator-perl/current/lib/Email/MIME/Creator.pm Thu Apr 30 12:44:29 2009
@@ -2,7 +2,7 @@
 use strict;
 
 use vars qw[$VERSION];
-$VERSION = '1.455';
+$VERSION = '1.456';
 
 use base q[Email::Simple::Creator];
 use Email::MIME;

Modified: branches/upstream/libemail-mime-creator-perl/current/t/singlepart.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-mime-creator-perl/current/t/singlepart.t?rev=34404&op=diff
==============================================================================
--- branches/upstream/libemail-mime-creator-perl/current/t/singlepart.t (original)
+++ branches/upstream/libemail-mime-creator-perl/current/t/singlepart.t Thu Apr 30 12:44:29 2009
@@ -38,7 +38,7 @@
 END_BODY
 
 # $expected_body   =~ s/\n/\x0d\x0a/g;
-# $expected_string =~ s/\n/\x0d\x0a/g;
+$expected_string =~ s/\n\z/\x0d\x0a/g;
 
 is $email->as_string, $expected_string, 'as_string matches';
 is $email->body,      $expected_body, 'body matches';




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