r3419 - in /packages/libemail-folder-perl/branches/upstream/current: Build.PL Changes MANIFEST META.yml Makefile.PL lib/Email/Folder.pm lib/Email/Folder/Mbox.pm t/pod-coverage.t t/pod.t

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Mon Aug 7 15:18:58 UTC 2006


Author: gregoa-guest
Date: Mon Aug  7 15:18:57 2006
New Revision: 3419

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=3419
Log:
Load /tmp/tmp.oStRlt2256/libemail-folder-perl-0.851 into
packages/libemail-folder-perl/branches/upstream/current.

Added:
    packages/libemail-folder-perl/branches/upstream/current/t/pod-coverage.t
    packages/libemail-folder-perl/branches/upstream/current/t/pod.t
Removed:
    packages/libemail-folder-perl/branches/upstream/current/Build.PL
Modified:
    packages/libemail-folder-perl/branches/upstream/current/Changes
    packages/libemail-folder-perl/branches/upstream/current/MANIFEST
    packages/libemail-folder-perl/branches/upstream/current/META.yml
    packages/libemail-folder-perl/branches/upstream/current/Makefile.PL
    packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder.pm
    packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder/Mbox.pm

Modified: packages/libemail-folder-perl/branches/upstream/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-folder-perl/branches/upstream/current/Changes?rev=3419&op=diff
==============================================================================
--- packages/libemail-folder-perl/branches/upstream/current/Changes (original)
+++ packages/libemail-folder-perl/branches/upstream/current/Changes Mon Aug  7 15:18:57 2006
@@ -1,3 +1,7 @@
+0.851     2006-08-01
+     * use ExtUtils::MakeMaker, to standardize PEP
+     * add pod coverage tests and improve coverage
+
 0.85 Tuesday 4th April, 2006
     Fix clobbering of $_ in Mbox.pm
     Put FH in binmode to fix non-ascii mails on Windows   

Modified: packages/libemail-folder-perl/branches/upstream/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-folder-perl/branches/upstream/current/MANIFEST?rev=3419&op=diff
==============================================================================
--- packages/libemail-folder-perl/branches/upstream/current/MANIFEST (original)
+++ packages/libemail-folder-perl/branches/upstream/current/MANIFEST Mon Aug  7 15:18:57 2006
@@ -6,13 +6,13 @@
 lib/Email/Folder/MH.pm
 lib/Email/Folder/Reader.pm
 MANIFEST
-META.yml
-Build.PL
 Makefile.PL
 TODO
 t/01mbox.t
 t/02maildir.t
 t/03mh.t
+t/pod.t
+t/pod-coverage.t
 t/testmh/.mh_sequences
 t/testmh/1
 t/testmh/2
@@ -35,3 +35,4 @@
 t/testmaildir/cur/1050314226.9981_5.penfold
 t/testmaildir/cur/1050314226.9981_13.penfold
 t/testmaildir/cur/1050314226.9981_3.penfold
+META.yml                                 Module meta-data (added by MakeMaker)

Modified: packages/libemail-folder-perl/branches/upstream/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-folder-perl/branches/upstream/current/META.yml?rev=3419&op=diff
==============================================================================
--- packages/libemail-folder-perl/branches/upstream/current/META.yml (original)
+++ packages/libemail-folder-perl/branches/upstream/current/META.yml Mon Aug  7 15:18:57 2006
@@ -1,25 +1,13 @@
----
-name: Email-Folder
-version: 0.85
-author: ~
-abstract: read all the messages from a folder as Email::Simple objects.
-license: perl
+# http://module-build.sourceforge.net/META-spec.html
+#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
+name:         Email-Folder
+version:      0.851
+version_from: lib/Email/Folder.pm
+installdirs:  site
 requires:
-  Email::FolderType: 0.6
-  Email::Simple: 0
-  Test::More: 0
-provides:
-  Email::Folder:
-    file: lib/Email/Folder.pm
-    version: 0.85
-  Email::Folder::Ezmlm:
-    file: lib/Email/Folder/Ezmlm.pm
-  Email::Folder::MH:
-    file: lib/Email/Folder/MH.pm
-  Email::Folder::Maildir:
-    file: lib/Email/Folder/Maildir.pm
-  Email::Folder::Mbox:
-    file: lib/Email/Folder/Mbox.pm
-  Email::Folder::Reader:
-    file: lib/Email/Folder/Reader.pm
-generated_by: Module::Build version 0.2611
+    Email::FolderType:             0.6
+    Email::Simple:                 0
+    Test::More:                    0.47
+
+distribution_type: module
+generated_by: ExtUtils::MakeMaker version 6.30

Modified: packages/libemail-folder-perl/branches/upstream/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-folder-perl/branches/upstream/current/Makefile.PL?rev=3419&op=diff
==============================================================================
--- packages/libemail-folder-perl/branches/upstream/current/Makefile.PL (original)
+++ packages/libemail-folder-perl/branches/upstream/current/Makefile.PL Mon Aug  7 15:18:57 2006
@@ -1,15 +1,14 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.03
 use ExtUtils::MakeMaker;
-WriteMakefile
-(
-          'NAME' => 'Email::Folder',
-          'VERSION_FROM' => 'lib/Email/Folder.pm',
-          'PREREQ_PM' => {
-                           'Email::FolderType' => '0.6',
-                           'Email::Simple' => '0',
-                           'Test::More' => '0'
-                         },
-          'INSTALLDIRS' => 'site',
-          'PL_FILES' => {}
-        )
-;
+use strict;
+use warnings;
+
+WriteMakefile(
+  NAME          => 'Email::Folder',
+  VERSION_FROM  => 'lib/Email/Folder.pm',
+  PREREQ_PM     => {
+    'Email::FolderType' => 0.6, # or Ezmlm
+    'Email::Simple' => 0,
+    'Test::More'    => '0.47',
+  },
+);
+

Modified: packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder.pm?rev=3419&op=diff
==============================================================================
--- packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder.pm (original)
+++ packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder.pm Mon Aug  7 15:18:57 2006
@@ -5,7 +5,7 @@
 use Email::FolderType qw/folder_type/;
 
 use vars qw($VERSION);
-$VERSION = "0.85";
+$VERSION = "0.851";
 
 =head1 NAME
 

Modified: packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder/Mbox.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder/Mbox.pm?rev=3419&op=diff
==============================================================================
--- packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder/Mbox.pm (original)
+++ packages/libemail-folder-perl/branches/upstream/current/lib/Email/Folder/Mbox.pm Mon Aug  7 15:18:57 2006
@@ -76,6 +76,10 @@
 
 Seek to an offset when opening the mbox.  When used in combination with
 ->tell you may be able to resume reading, with a trailing wind.
+
+=item C<tell>
+
+This returns the current filehandle position in the mbox.
 
 =back
 

Added: packages/libemail-folder-perl/branches/upstream/current/t/pod-coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-folder-perl/branches/upstream/current/t/pod-coverage.t?rev=3419&op=file
==============================================================================
--- packages/libemail-folder-perl/branches/upstream/current/t/pod-coverage.t (added)
+++ packages/libemail-folder-perl/branches/upstream/current/t/pod-coverage.t Mon Aug  7 15:18:57 2006
@@ -1,0 +1,11 @@
+#!perl -T
+
+use Test::More;
+eval "use Test::Pod::Coverage 1.08";
+plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD coverage"
+  if $@;
+
+all_pod_coverage_ok({
+  coverage_class => 'Pod::Coverage::CountParents',
+  also_private   => [ qw(defaults) ],
+});

Added: packages/libemail-folder-perl/branches/upstream/current/t/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-folder-perl/branches/upstream/current/t/pod.t?rev=3419&op=file
==============================================================================
--- packages/libemail-folder-perl/branches/upstream/current/t/pod.t (added)
+++ packages/libemail-folder-perl/branches/upstream/current/t/pod.t Mon Aug  7 15:18:57 2006
@@ -1,0 +1,6 @@
+#!perl -T
+
+use Test::More;
+eval "use Test::Pod 1.14";
+plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
+all_pod_files_ok();




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