r5088 - in /packages/libemail-abstract-perl/trunk: Changes LICENSE MANIFEST META.yml Makefile.PL debian/changelog lib/Email/Abstract.pm

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Fri Apr 13 22:26:04 UTC 2007


Author: gregoa-guest
Date: Fri Apr 13 22:26:04 2007
New Revision: 5088

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=5088
Log:
* New upstream release.

Added:
    packages/libemail-abstract-perl/trunk/LICENSE
      - copied unchanged from r5087, packages/libemail-abstract-perl/branches/upstream/current/LICENSE
Modified:
    packages/libemail-abstract-perl/trunk/Changes
    packages/libemail-abstract-perl/trunk/MANIFEST
    packages/libemail-abstract-perl/trunk/META.yml
    packages/libemail-abstract-perl/trunk/Makefile.PL
    packages/libemail-abstract-perl/trunk/debian/changelog
    packages/libemail-abstract-perl/trunk/lib/Email/Abstract.pm

Modified: packages/libemail-abstract-perl/trunk/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-abstract-perl/trunk/Changes?rev=5088&op=diff
==============================================================================
--- packages/libemail-abstract-perl/trunk/Changes (original)
+++ packages/libemail-abstract-perl/trunk/Changes Fri Apr 13 22:26:04 2007
@@ -1,43 +1,38 @@
 Revision history for Perl extension Email::Abstract.
 
-2.131    2006-08-22
+2.132   2007-03-22
+        packaging improvements
 
-  - pod tests
+2.131   2006-08-22
+        pod tests
 
-2.13     2006-07-24
+2.13    2006-07-24
+        test for and permit passing Email::Abstract objects to Email::Abstract
+        class methods
 
-  - test for and permit passing Email::Abstract objects to Email::Abstract
-    class methods
+2.12    2006-07-24
+        don't use MIME::Entity in test if it's not available
 
-2.12     2006-07-24
+2.11    2006-07-22
+        better test planning
 
-  - don't use MIME::Entity in test if it's not available
+2.10    2006-07-21
+        add a new method to create wrapper objects
+        handle subclasses /properly/ (correct ISA order)
+        improved tests and test coverage
+        miscellaneous refactoring
+        update PEP URL
+        update documentation
 
-2.11     2006-07-22
+2.01    2004-11-04
+        Minor Documentation Fix
+        Author Change
+        PEP Contact Added
 
-  - better test planning
+2.0     2004-08-25 12:12:37 BST
+        Handle subclasses
 
-2.10     2006-07-21
+0.01    2004-05-26 16:47 20
+        original version; created by h2xs 1.22 with options
+          -AX -b 5.6.0 -n Email::Abstract
 
-  - add a new method to create wrapper objects
-  - handle subclasses /properly/ (correct ISA order)
-  - improved tests and test coverage
-  - miscellaneous refactoring
-  - update PEP URL
-  - update documentation
-
-2.01     2004-11-04
-
-  - Minor Documentation Fix
-  - Author Change
-  - PEP Contact Added
-
-2.0      2004-08-25 12:12:37 BST
-
-  - Handle subclasses
-
-0.01     2004-05-26 16:47 20
-
-	- original version; created by h2xs 1.22 with options
-		-AX -b 5.6.0 -n Email::Abstract
-

Modified: packages/libemail-abstract-perl/trunk/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-abstract-perl/trunk/MANIFEST?rev=5088&op=diff
==============================================================================
--- packages/libemail-abstract-perl/trunk/MANIFEST (original)
+++ packages/libemail-abstract-perl/trunk/MANIFEST Fri Apr 13 22:26:04 2007
@@ -14,4 +14,5 @@
 t/pod.t
 t/pod-coverage.t
 t/subclass.t
+LICENSE
 META.yml                                 Module meta-data (added by MakeMaker)

Modified: packages/libemail-abstract-perl/trunk/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-abstract-perl/trunk/META.yml?rev=5088&op=diff
==============================================================================
--- packages/libemail-abstract-perl/trunk/META.yml (original)
+++ packages/libemail-abstract-perl/trunk/META.yml Fri Apr 13 22:26:04 2007
@@ -1,14 +1,15 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         Email-Abstract
-version:      2.131
-version_from: lib/Email/Abstract.pm
-installdirs:  site
-requires:
+--- #YAML:1.0
+name:                Email-Abstract
+version:             2.132
+abstract:            ~
+license:             perl
+generated_by:        ExtUtils::MakeMaker version 6.31
+distribution_type:   module
+requires:     
     Class::ISA:                    0.20
     Email::Simple:                 1.91
     Module::Pluggable:             1.5
     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-abstract-perl/trunk/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-abstract-perl/trunk/Makefile.PL?rev=5088&op=diff
==============================================================================
--- packages/libemail-abstract-perl/trunk/Makefile.PL (original)
+++ packages/libemail-abstract-perl/trunk/Makefile.PL Fri Apr 13 22:26:04 2007
@@ -1,14 +1,15 @@
 use 5.006;
+use strict;
 use ExtUtils::MakeMaker;
-# See lib/ExtUtils/MakeMaker.pm for details of how to influence
-# the contents of the Makefile that is written.
+
 WriteMakefile(
-    NAME              => 'Email::Abstract',
-    VERSION_FROM      => 'lib/Email/Abstract.pm', # finds $VERSION
-    PREREQ_PM     => {
-        'Class::ISA'        => '0.20', # first release
-        'Email::Simple'     => '1.91', # avoid undef body
-        'Module::Pluggable' => '1.5',
-        'Test::More'        => '0.47',
-    },
+  NAME              => 'Email::Abstract',
+  VERSION_FROM      => 'lib/Email/Abstract.pm', # finds $VERSION
+  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
+  PREREQ_PM     => {
+    'Class::ISA'        => '0.20', # first release
+    'Email::Simple'     => '1.91', # avoid undef body
+    'Module::Pluggable' => '1.5',
+    'Test::More'        => '0.47',
+  },
 );

Modified: packages/libemail-abstract-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-abstract-perl/trunk/debian/changelog?rev=5088&op=diff
==============================================================================
--- packages/libemail-abstract-perl/trunk/debian/changelog (original)
+++ packages/libemail-abstract-perl/trunk/debian/changelog Fri Apr 13 22:26:04 2007
@@ -1,3 +1,9 @@
+libemail-abstract-perl (2.132-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 14 Apr 2007 00:24:29 +0200
+
 libemail-abstract-perl (2.131-1) unstable; urgency=low
 
   * New upstream release.

Modified: packages/libemail-abstract-perl/trunk/lib/Email/Abstract.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-abstract-perl/trunk/lib/Email/Abstract.pm?rev=5088&op=diff
==============================================================================
--- packages/libemail-abstract-perl/trunk/lib/Email/Abstract.pm (original)
+++ packages/libemail-abstract-perl/trunk/lib/Email/Abstract.pm Fri Apr 13 22:26:04 2007
@@ -4,7 +4,7 @@
 use 5.006;
 use strict;
 use warnings;
-our $VERSION = '2.131';
+our $VERSION = '2.132';
 use Module::Pluggable search_path => [ __PACKAGE__ ], require => 1;
 
 my @plugins = __PACKAGE__->plugins(); # Requires them.
@@ -217,7 +217,7 @@
 
 This module is maintained by the Perl Email Project
 
-  L<http://emailproject.perl.org/wiki/Email::Abstract>
+L<http://emailproject.perl.org/wiki/Email::Abstract>
 
 =head1 AUTHOR
 




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