r22497 - in /branches/upstream/libemail-simple-perl/current: Changes MANIFEST META.yml lib/Email/Simple.pm lib/Email/Simple/Header.pm lib/Email/Simple/Headers.pm

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Sun Jun 29 19:34:23 UTC 2008


Author: ansgar-guest
Date: Sun Jun 29 19:34:23 2008
New Revision: 22497

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

Removed:
    branches/upstream/libemail-simple-perl/current/lib/Email/Simple/Headers.pm
Modified:
    branches/upstream/libemail-simple-perl/current/Changes
    branches/upstream/libemail-simple-perl/current/MANIFEST
    branches/upstream/libemail-simple-perl/current/META.yml
    branches/upstream/libemail-simple-perl/current/lib/Email/Simple.pm
    branches/upstream/libemail-simple-perl/current/lib/Email/Simple/Header.pm

Modified: branches/upstream/libemail-simple-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-simple-perl/current/Changes?rev=22497&op=diff
==============================================================================
--- branches/upstream/libemail-simple-perl/current/Changes (original)
+++ branches/upstream/libemail-simple-perl/current/Changes Sun Jun 29 19:34:23 2008
@@ -1,4 +1,8 @@
 Revision history for Perl extension Email::Simple.
+
+2.004     2008-06-25
+          publicize default_header_class method
+          remove the long-deprecated Headers.pm
 
 2.003     2007-07-19
           improve tests, for 5.5 compat

Modified: branches/upstream/libemail-simple-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-simple-perl/current/MANIFEST?rev=22497&op=diff
==============================================================================
--- branches/upstream/libemail-simple-perl/current/MANIFEST (original)
+++ branches/upstream/libemail-simple-perl/current/MANIFEST Sun Jun 29 19:34:23 2008
@@ -1,7 +1,6 @@
 Changes
 lib/Email/Simple.pm
 lib/Email/Simple/Header.pm
-lib/Email/Simple/Headers.pm
 Makefile.PL
 MANIFEST
 README

Modified: branches/upstream/libemail-simple-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-simple-perl/current/META.yml?rev=22497&op=diff
==============================================================================
--- branches/upstream/libemail-simple-perl/current/META.yml (original)
+++ branches/upstream/libemail-simple-perl/current/META.yml Sun Jun 29 19:34:23 2008
@@ -1,12 +1,13 @@
 --- #YAML:1.0
 name:                Email-Simple
-version:             2.003
+version:             2.004
 abstract:            ~
 license:             perl
-generated_by:        ExtUtils::MakeMaker version 6.32
+author:              ~
+generated_by:        ExtUtils::MakeMaker version 6.44
 distribution_type:   module
 requires:     
     Test::More:                    0.47
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.2.html
-    version: 1.2
+    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
+    version: 1.3

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=22497&op=diff
==============================================================================
--- branches/upstream/libemail-simple-perl/current/lib/Email/Simple.pm (original)
+++ branches/upstream/libemail-simple-perl/current/lib/Email/Simple.pm Sun Jun 29 19:34:23 2008
@@ -6,7 +6,7 @@
 
 use Email::Simple::Header;
 
-$Email::Simple::VERSION = '2.003';
+$Email::Simple::VERSION = '2.004';
 $Email::Simple::GROUCHY = 0;
 
 # We are liberal in what we accept.
@@ -80,7 +80,7 @@
     $text_ref = \'';
   }
 
-  my $header_class = $arg->{header_class} || $self->_default_header_class;
+  my $header_class = $arg->{header_class} || $self->default_header_class;
 
   $self->header_obj_set(
     $header_class->new(\$head, { crlf => $self->crlf })
@@ -230,14 +230,14 @@
 
 sub crlf { $_[0]->{mycrlf} }
 
-#=head2 default_header_class
-#
-#This returns the class used, by default, for header objects, and is provided
-#for subclassing.  The default default is Email::Simple::Header.
-#
-#=cut
-
-sub _default_header_class { 'Email::Simple::Header' }
+=head2 default_header_class
+
+This returns the class used, by default, for header objects, and is provided
+for subclassing.  The default default is Email::Simple::Header.
+
+=cut
+
+sub default_header_class { 'Email::Simple::Header' }
 
 1;
 

Modified: branches/upstream/libemail-simple-perl/current/lib/Email/Simple/Header.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-simple-perl/current/lib/Email/Simple/Header.pm?rev=22497&op=diff
==============================================================================
--- branches/upstream/libemail-simple-perl/current/lib/Email/Simple/Header.pm (original)
+++ branches/upstream/libemail-simple-perl/current/lib/Email/Simple/Header.pm Sun Jun 29 19:34:23 2008
@@ -5,7 +5,7 @@
 
 require Email::Simple;
 
-$Email::Simple::Header::VERSION = '2.000';
+$Email::Simple::Header::VERSION = '2.004';
 
 =head1 NAME
 




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