r59382 - in /branches/upstream/libemail-abstract-perl/current: Changes MANIFEST META.yml README lib/Email/Abstract.pm lib/Email/Abstract/MailInternet.pm lib/Email/Abstract/Plugin.pm t/pod-coverage.t t/pod.t

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Mon Jun 14 12:58:43 UTC 2010


Author: ansgar-guest
Date: Mon Jun 14 12:57:24 2010
New Revision: 59382

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=59382
Log:
[svn-upgrade] new version libemail-abstract-perl (3.002)

Removed:
    branches/upstream/libemail-abstract-perl/current/README
    branches/upstream/libemail-abstract-perl/current/t/pod-coverage.t
    branches/upstream/libemail-abstract-perl/current/t/pod.t
Modified:
    branches/upstream/libemail-abstract-perl/current/Changes
    branches/upstream/libemail-abstract-perl/current/MANIFEST
    branches/upstream/libemail-abstract-perl/current/META.yml
    branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract.pm
    branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract/MailInternet.pm
    branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract/Plugin.pm

Modified: branches/upstream/libemail-abstract-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-abstract-perl/current/Changes?rev=59382&op=diff
==============================================================================
--- branches/upstream/libemail-abstract-perl/current/Changes (original)
+++ branches/upstream/libemail-abstract-perl/current/Changes Mon Jun 14 12:57:24 2010
@@ -1,4 +1,7 @@
 Revision history for Email-Abstract.
+
+3.002     2010-06-11
+          avoid a warning in MailInternet with zero headers found
 
 3.001     2008-12-11
           declare our prereq on Scalar::Util

Modified: branches/upstream/libemail-abstract-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-abstract-perl/current/MANIFEST?rev=59382&op=diff
==============================================================================
--- branches/upstream/libemail-abstract-perl/current/MANIFEST (original)
+++ branches/upstream/libemail-abstract-perl/current/MANIFEST Mon Jun 14 12:57:24 2010
@@ -8,11 +8,8 @@
 lib/Email/Abstract/Plugin.pm
 Makefile.PL
 MANIFEST			This list of files
-README
 t/abstractions.t
 t/lib/Test/EmailAbstract.pm
-t/pod.t
-t/pod-coverage.t
 t/subclass.t
 t/unknown.t
 t/example.msg

Modified: branches/upstream/libemail-abstract-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-abstract-perl/current/META.yml?rev=59382&op=diff
==============================================================================
--- branches/upstream/libemail-abstract-perl/current/META.yml (original)
+++ branches/upstream/libemail-abstract-perl/current/META.yml Mon Jun 14 12:57:24 2010
@@ -1,11 +1,13 @@
 --- #YAML:1.0
 name:               Email-Abstract
-version:            3.001
+version:            3.002
 abstract:           ~
 author:  []
 license:            perl
 distribution_type:  module
 configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
     ExtUtils::MakeMaker:  0
 requires:
     Class::ISA:         0.20
@@ -17,7 +19,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.48
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract.pm?rev=59382&op=diff
==============================================================================
--- branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract.pm (original)
+++ branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract.pm Mon Jun 14 12:57:24 2010
@@ -4,7 +4,7 @@
 package Email::Abstract;
 use Carp;
 use Email::Simple;
-$Email::Abstract::VERSION = '3.001';
+$Email::Abstract::VERSION = '3.002';
 use Module::Pluggable
   search_path => [__PACKAGE__],
   except      => 'Email::Abstract::Plugin',

Modified: branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract/MailInternet.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract/MailInternet.pm?rev=59382&op=diff
==============================================================================
--- branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract/MailInternet.pm (original)
+++ branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract/MailInternet.pm Mon Jun 14 12:57:24 2010
@@ -24,6 +24,7 @@
 sub get_header { 
     my ($class, $obj, $header) = @_; 
     my @values = $obj->head->get($header); 
+    return unless @values;
 
     # No reason to s/// lots of values if we're just going to return one.
     $#values = 0 if not wantarray;

Modified: branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract/Plugin.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract/Plugin.pm?rev=59382&op=diff
==============================================================================
--- branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract/Plugin.pm (original)
+++ branches/upstream/libemail-abstract-perl/current/lib/Email/Abstract/Plugin.pm Mon Jun 14 12:57:24 2010
@@ -2,7 +2,7 @@
 
 package Email::Abstract::Plugin;
 
-$Email::Abstract::Plugin::VERSION = '3.000';
+$Email::Abstract::Plugin::VERSION = '3.002';
 
 =head1 NAME
 




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