r5115 - in /packages/libemail-localdelivery-perl/trunk: Changes LICENSE LocalDelivery.pm LocalDelivery/ MANIFEST META.yml Makefile.PL debian/changelog debian/control debian/patches/10mbox-locking.dpatch lib/ t/mbox.t t/test_mbox

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sun Apr 15 13:49:00 UTC 2007


Author: gregoa-guest
Date: Sun Apr 15 13:48:59 2007
New Revision: 5115

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=5115
Log:
* New upstream release.
* Change {build,} dependency on libemail-simple-perl to >= 1.998.
* Adapt patch 10mbox to new upstream release.

Added:
    packages/libemail-localdelivery-perl/trunk/LICENSE
      - copied unchanged from r5114, packages/libemail-localdelivery-perl/branches/upstream/current/LICENSE
    packages/libemail-localdelivery-perl/trunk/lib/
      - copied from r5114, packages/libemail-localdelivery-perl/branches/upstream/current/lib/
Removed:
    packages/libemail-localdelivery-perl/trunk/LocalDelivery/
    packages/libemail-localdelivery-perl/trunk/LocalDelivery.pm
Modified:
    packages/libemail-localdelivery-perl/trunk/Changes
    packages/libemail-localdelivery-perl/trunk/MANIFEST
    packages/libemail-localdelivery-perl/trunk/META.yml
    packages/libemail-localdelivery-perl/trunk/Makefile.PL
    packages/libemail-localdelivery-perl/trunk/debian/changelog
    packages/libemail-localdelivery-perl/trunk/debian/control
    packages/libemail-localdelivery-perl/trunk/debian/patches/10mbox-locking.dpatch
    packages/libemail-localdelivery-perl/trunk/t/mbox.t
    packages/libemail-localdelivery-perl/trunk/t/test_mbox

Modified: packages/libemail-localdelivery-perl/trunk/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-localdelivery-perl/trunk/Changes?rev=5115&op=diff
==============================================================================
--- packages/libemail-localdelivery-perl/trunk/Changes (original)
+++ packages/libemail-localdelivery-perl/trunk/Changes Sun Apr 15 13:48:59 2007
@@ -1,3 +1,17 @@
+0.214   2007-02-22
+  - use strict everywhere
+
+0.213   2007-02-15
+  - avoid manging strings passed to deliver
+  - reorganize libs into ./lib
+
+0.212   2007-02-14
+  - fix packaging glitches
+
+0.211   2007-02-14
+  - St. Valentine's Day release: We love email!
+  - stop breaking the encapsulation around Email::Simple
+
 0.21    2006-07-21
 
   - update PEP URL

Modified: packages/libemail-localdelivery-perl/trunk/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-localdelivery-perl/trunk/MANIFEST?rev=5115&op=diff
==============================================================================
--- packages/libemail-localdelivery-perl/trunk/MANIFEST (original)
+++ packages/libemail-localdelivery-perl/trunk/MANIFEST Sun Apr 15 13:48:59 2007
@@ -1,7 +1,7 @@
 Changes
-LocalDelivery.pm
-LocalDelivery/Maildir.pm
-LocalDelivery/Mbox.pm
+lib/Email/LocalDelivery.pm
+lib/Email/LocalDelivery/Maildir.pm
+lib/Email/LocalDelivery/Mbox.pm
 Makefile.PL
 MANIFEST			This list of files
 META.yml
@@ -11,3 +11,4 @@
 t/pod.t
 t/pod-coverage.t
 t/test_mbox
+LICENSE

Modified: packages/libemail-localdelivery-perl/trunk/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-localdelivery-perl/trunk/META.yml?rev=5115&op=diff
==============================================================================
--- packages/libemail-localdelivery-perl/trunk/META.yml (original)
+++ packages/libemail-localdelivery-perl/trunk/META.yml Sun Apr 15 13:48:59 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-LocalDelivery
-version:      0.21
-version_from: LocalDelivery.pm
-installdirs:  site
-requires:
+--- #YAML:1.0
+name:                Email-LocalDelivery
+version:             0.214
+abstract:            ~
+license:             perl
+generated_by:        ExtUtils::MakeMaker version 6.31
+distribution_type:   module
+requires:     
     Email::FolderType:             0.7
-    Email::Simple:                 1.92
+    Email::Simple:                 1.998
     File::Path::Expand:            1.01
     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-localdelivery-perl/trunk/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-localdelivery-perl/trunk/Makefile.PL?rev=5115&op=diff
==============================================================================
--- packages/libemail-localdelivery-perl/trunk/Makefile.PL (original)
+++ packages/libemail-localdelivery-perl/trunk/Makefile.PL Sun Apr 15 13:48:59 2007
@@ -1,12 +1,14 @@
 use strict;
 use ExtUtils::MakeMaker;
+
 WriteMakefile(
-    NAME         => 'Email::LocalDelivery',
-    VERSION_FROM => 'LocalDelivery.pm',
-    PREREQ_PM    => {
-                     'Email::FolderType'  => '0.7',
-                     'Email::Simple'      => '1.92',
-                     'File::Path::Expand' => '1.01',
-                     'Test::More'         => '0.47',
-                    },
+  NAME         => 'Email::LocalDelivery',
+  VERSION_FROM => 'lib/Email/LocalDelivery.pm',
+  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
+  PREREQ_PM    => {
+    'Email::FolderType'  => '0.7',
+    'Email::Simple'      => '1.998', # needed for header_obj
+    'File::Path::Expand' => '1.01',
+    'Test::More'         => '0.47',
+  },
 );

Modified: packages/libemail-localdelivery-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-localdelivery-perl/trunk/debian/changelog?rev=5115&op=diff
==============================================================================
--- packages/libemail-localdelivery-perl/trunk/debian/changelog (original)
+++ packages/libemail-localdelivery-perl/trunk/debian/changelog Sun Apr 15 13:48:59 2007
@@ -1,3 +1,11 @@
+libemail-localdelivery-perl (0.214-1) unstable; urgency=low
+
+  * New upstream release.
+  * Change {build,} dependency on libemail-simple-perl to >= 1.998.
+  * Adapt patch 10mbox to new upstream release.
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sun, 15 Apr 2007 15:46:02 +0200
+
 libemail-localdelivery-perl (0.21-1) unstable; urgency=low
 
   * New upstream release.

Modified: packages/libemail-localdelivery-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-localdelivery-perl/trunk/debian/control?rev=5115&op=diff
==============================================================================
--- packages/libemail-localdelivery-perl/trunk/debian/control (original)
+++ packages/libemail-localdelivery-perl/trunk/debian/control Sun Apr 15 13:48:59 2007
@@ -2,15 +2,15 @@
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 5), dpatch
-Build-Depends-Indep: perl (>= 5.8.0-7), libfile-path-expand-perl (>= 1.01-1), libemail-foldertype-perl (>= 0.7-1), libemail-simple-perl (>= 1.92-0.1), liblockfile1 (>= 1.0-1), libtest-pod-perl (>= 1.14-1), libtest-pod-coverage-perl (>= 1.08-1)
+Build-Depends-Indep: perl (>= 5.8.0-7), libfile-path-expand-perl (>= 1.01-1), libemail-foldertype-perl (>= 0.7-1), libemail-simple-perl (>= 1.998), liblockfile1 (>= 1.0-1), libtest-pod-perl (>= 1.14-1), libtest-pod-coverage-perl (>= 1.08-1)
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Niko Tyni <ntyni at iki.fi>
+Uploaders: Niko Tyni <ntyni at iki.fi>, gregor herrmann <gregor+debian at comodo.priv.at>
 Standards-Version: 3.7.2
 XS-Vcs-Svn: svn://svn.debian.org/pkg-perl/packages/libemail-localdelivery-perl/trunk/
 
 Package: libemail-localdelivery-perl
 Architecture: all
-Depends: ${perl:Depends}, ${misc:Depends}, libfile-path-expand-perl (>= 1.01-1), libemail-foldertype-perl (>= 0.7-1), libemail-simple-perl (>= 1.92-0.1), liblockfile1 (>= 1.0-1)
+Depends: ${perl:Depends}, ${misc:Depends}, libfile-path-expand-perl (>= 1.01-1), libemail-foldertype-perl (>= 0.7-1), libemail-simple-perl (>= 1.998), liblockfile1 (>= 1.0-1)
 Description:  Deliver a piece of email - simply
  Email::LocalDelivery delivers an email to a list of mailboxes.
  .

Modified: packages/libemail-localdelivery-perl/trunk/debian/patches/10mbox-locking.dpatch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-localdelivery-perl/trunk/debian/patches/10mbox-locking.dpatch?rev=5115&op=diff
==============================================================================
--- packages/libemail-localdelivery-perl/trunk/debian/patches/10mbox-locking.dpatch (original)
+++ packages/libemail-localdelivery-perl/trunk/debian/patches/10mbox-locking.dpatch Sun Apr 15 13:48:59 2007
@@ -6,12 +6,12 @@
 
 @DPATCH@
 diff -urNad trunk~/LocalDelivery/Mbox.pm trunk/LocalDelivery/Mbox.pm
---- trunk~/LocalDelivery/Mbox.pm	2006-07-27 22:10:49.000000000 +0300
-+++ trunk/LocalDelivery/Mbox.pm	2006-07-27 22:11:02.000000000 +0300
+--- trunk~/lib/Email/LocalDelivery/Mbox.pm	2006-07-27 22:10:49.000000000 +0300
++++ trunk/lib/Email/LocalDelivery/Mbox.pm	2006-07-27 22:11:02.000000000 +0300
 @@ -2,7 +2,7 @@
  use File::Path;
  use File::Basename;
- use Email::Simple;
+ use Email::Simple 1.998; # needed for ->header_obj
 -use Fcntl ':flock';
 +use Fcntl qw(:DEFAULT :seek);
  use Symbol qw(gensym);

Modified: packages/libemail-localdelivery-perl/trunk/t/mbox.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-localdelivery-perl/trunk/t/mbox.t?rev=5115&op=diff
==============================================================================
--- packages/libemail-localdelivery-perl/trunk/t/mbox.t (original)
+++ packages/libemail-localdelivery-perl/trunk/t/mbox.t Sun Apr 15 13:48:59 2007
@@ -11,6 +11,7 @@
 From: brane at body
 
 From here I can see the pub.
+It looks like a giant model pub.
 MAIL
 
 my @delivered = Email::LocalDelivery->deliver( $mail, $name );

Modified: packages/libemail-localdelivery-perl/trunk/t/test_mbox
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-localdelivery-perl/trunk/t/test_mbox?rev=5115&op=diff
==============================================================================
--- packages/libemail-localdelivery-perl/trunk/t/test_mbox (original)
+++ packages/libemail-localdelivery-perl/trunk/t/test_mbox Sun Apr 15 13:48:59 2007
@@ -1,0 +1,6 @@
+From brane at body  Thu Feb 15 08:12:49 2007
+To: foot at body
+From: brane at body
+
+>From here I can see the pub.
+It looks like a giant model pub.




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