r4435 - in /packages/libemail-simple-perl/trunk: Changes LICENSE MANIFEST META.yml Makefile.PL debian/changelog lib/Email/Simple.pm t/ct-header.t

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Wed Nov 29 10:17:19 CET 2006


Author: eloy
Date: Wed Nov 29 10:17:19 2006
New Revision: 4435

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=4435
Log:
eloy: new upstream version

Added:
    packages/libemail-simple-perl/trunk/LICENSE
      - copied unchanged from r4434, packages/libemail-simple-perl/branches/upstream/current/LICENSE
    packages/libemail-simple-perl/trunk/t/ct-header.t
      - copied unchanged from r4434, packages/libemail-simple-perl/branches/upstream/current/t/ct-header.t
Modified:
    packages/libemail-simple-perl/trunk/Changes
    packages/libemail-simple-perl/trunk/MANIFEST
    packages/libemail-simple-perl/trunk/META.yml
    packages/libemail-simple-perl/trunk/Makefile.PL
    packages/libemail-simple-perl/trunk/debian/changelog
    packages/libemail-simple-perl/trunk/lib/Email/Simple.pm

Modified: packages/libemail-simple-perl/trunk/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-perl/trunk/Changes?rev=4435&op=diff
==============================================================================
--- packages/libemail-simple-perl/trunk/Changes (original)
+++ packages/libemail-simple-perl/trunk/Changes Wed Nov 29 10:17:19 2006
@@ -1,4 +1,9 @@
 Revision history for Perl extension Email::Simple.
+
+1.996    2006-11-27
+  - do not wrap Content-Type field; it can cause Outlook to go nuts
+    while this is a special case, it does not make E::S incorrect, as folding
+    long headers is allowed (for aesthetics) and not mandated
 
 1.995    2006-10-19
   - tentative refactoring of headers

Modified: packages/libemail-simple-perl/trunk/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-perl/trunk/MANIFEST?rev=4435&op=diff
==============================================================================
--- packages/libemail-simple-perl/trunk/MANIFEST (original)
+++ packages/libemail-simple-perl/trunk/MANIFEST Wed Nov 29 10:17:19 2006
@@ -6,6 +6,7 @@
 README
 t/badly-folded.t
 t/basic.t
+t/ct-header.t
 t/folding.t
 t/header-case.t
 t/header-junk.t
@@ -30,4 +31,5 @@
 t/test-mails/many-repeats
 t/undef-message.t
 t/unit.t
+LICENSE
 META.yml                                 Module meta-data (added by MakeMaker)

Modified: packages/libemail-simple-perl/trunk/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-perl/trunk/META.yml?rev=4435&op=diff
==============================================================================
--- packages/libemail-simple-perl/trunk/META.yml (original)
+++ packages/libemail-simple-perl/trunk/META.yml Wed Nov 29 10:17:19 2006
@@ -1,11 +1,12 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         Email-Simple
-version:      1.995
-version_from: lib/Email/Simple.pm
-installdirs:  site
-requires:
+--- #YAML:1.0
+name:                Email-Simple
+version:             1.996
+abstract:            ~
+license:             perl
+generated_by:        ExtUtils::MakeMaker version 6.31
+distribution_type:   module
+requires:     
     Test::More:                    0.47
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.30
+meta-spec:
+    url:     http://module-build.sourceforge.net/META-spec-v1.2.html
+    version: 1.2

Modified: packages/libemail-simple-perl/trunk/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-perl/trunk/Makefile.PL?rev=4435&op=diff
==============================================================================
--- packages/libemail-simple-perl/trunk/Makefile.PL (original)
+++ packages/libemail-simple-perl/trunk/Makefile.PL Wed Nov 29 10:17:19 2006
@@ -1,9 +1,11 @@
+use strict;
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
-               NAME          => 'Email::Simple',
-               VERSION_FROM  => 'lib/Email/Simple.pm',
-               PREREQ_PM     => {
-                                 'Test::More' => '0.47',
-                                },
+  NAME          => 'Email::Simple',
+  VERSION_FROM  => 'lib/Email/Simple.pm',
+  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
+  PREREQ_PM     => {
+    'Test::More' => '0.47',
+  },
 );

Modified: packages/libemail-simple-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-perl/trunk/debian/changelog?rev=4435&op=diff
==============================================================================
--- packages/libemail-simple-perl/trunk/debian/changelog (original)
+++ packages/libemail-simple-perl/trunk/debian/changelog Wed Nov 29 10:17:19 2006
@@ -1,3 +1,9 @@
+libemail-simple-perl (1.996-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Wed, 29 Nov 2006 10:15:19 +0100
+
 libemail-simple-perl (1.995-1) unstable; urgency=low
 
   * New upstream release.

Modified: packages/libemail-simple-perl/trunk/lib/Email/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-perl/trunk/lib/Email/Simple.pm?rev=4435&op=diff
==============================================================================
--- packages/libemail-simple-perl/trunk/lib/Email/Simple.pm (original)
+++ packages/libemail-simple-perl/trunk/lib/Email/Simple.pm Wed Nov 29 10:17:19 2006
@@ -4,7 +4,7 @@
 use strict;
 use Carp ();
 
-$Email::Simple::VERSION = '1.995';
+$Email::Simple::VERSION = '1.996';
 $Email::Simple::GROUCHY = 0;
 
 my $crlf = qr/\x0a\x0d|\x0d\x0a|\x0a|\x0d/;  # We are liberal in what we accept.
@@ -265,7 +265,7 @@
 
   my $string = "$field: $data";
 
-  return (length $string > 78)
+  return ((length $string > 78) and (lc $field ne 'content-type'))
     ? $self->_fold($string)
     : ($string . $self->{mycrlf});
 }




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