r40831 - in /branches/upstream/libemail-folder-perl/current: Changes META.yml lib/Email/Folder.pm lib/Email/Folder/Mbox.pm t/pod-coverage.t t/pod.t
jawnsy-guest at users.alioth.debian.org
jawnsy-guest at users.alioth.debian.org
Mon Jul 27 15:28:13 UTC 2009
Author: jawnsy-guest
Date: Mon Jul 27 15:28:05 2009
New Revision: 40831
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=40831
Log:
[svn-upgrade] Integrating new upstream version, libemail-folder-perl (0.855)
Modified:
branches/upstream/libemail-folder-perl/current/Changes
branches/upstream/libemail-folder-perl/current/META.yml
branches/upstream/libemail-folder-perl/current/lib/Email/Folder.pm
branches/upstream/libemail-folder-perl/current/lib/Email/Folder/Mbox.pm
branches/upstream/libemail-folder-perl/current/t/pod-coverage.t
branches/upstream/libemail-folder-perl/current/t/pod.t
Modified: branches/upstream/libemail-folder-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-folder-perl/current/Changes?rev=40831&op=diff
==============================================================================
--- branches/upstream/libemail-folder-perl/current/Changes (original)
+++ branches/upstream/libemail-folder-perl/current/Changes Mon Jul 27 15:28:05 2009
@@ -1,3 +1,8 @@
+Revision history for Email-Folder
+
+0.855 2009-07-26
+ fix pod tests
+
0.854 2007-12-23
fix a bug in which the last header of a mbox message could be lost
Modified: branches/upstream/libemail-folder-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-folder-perl/current/META.yml?rev=40831&op=diff
==============================================================================
--- branches/upstream/libemail-folder-perl/current/META.yml (original)
+++ branches/upstream/libemail-folder-perl/current/META.yml Mon Jul 27 15:28:05 2009
@@ -1,15 +1,23 @@
--- #YAML:1.0
-name: Email-Folder
-version: 0.854
-abstract: ~
-license: perl
-author: ~
-generated_by: ExtUtils::MakeMaker version 6.42
-distribution_type: module
-requires:
- Email::FolderType: 0.6
- Email::Simple: 0
- Test::More: 0.47
+name: Email-Folder
+version: 0.855
+abstract: ~
+author: []
+license: perl
+distribution_type: module
+configure_requires:
+ ExtUtils::MakeMaker: 0
+build_requires:
+ ExtUtils::MakeMaker: 0
+requires:
+ Email::FolderType: 0.6
+ Email::Simple: 0
+ Test::More: 0.47
+no_index:
+ directory:
+ - t
+ - inc
+generated_by: ExtUtils::MakeMaker version 6.50
meta-spec:
- url: http://module-build.sourceforge.net/META-spec-v1.3.html
- version: 1.3
+ url: http://module-build.sourceforge.net/META-spec-v1.4.html
+ version: 1.4
Modified: branches/upstream/libemail-folder-perl/current/lib/Email/Folder.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-folder-perl/current/lib/Email/Folder.pm?rev=40831&op=diff
==============================================================================
--- branches/upstream/libemail-folder-perl/current/lib/Email/Folder.pm (original)
+++ branches/upstream/libemail-folder-perl/current/lib/Email/Folder.pm Mon Jul 27 15:28:05 2009
@@ -5,7 +5,7 @@
use Email::FolderType qw/folder_type/;
use vars qw($VERSION);
-$VERSION = "0.854";
+$VERSION = "0.855";
=head1 NAME
Modified: branches/upstream/libemail-folder-perl/current/lib/Email/Folder/Mbox.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-folder-perl/current/lib/Email/Folder/Mbox.pm?rev=40831&op=diff
==============================================================================
--- branches/upstream/libemail-folder-perl/current/lib/Email/Folder/Mbox.pm (original)
+++ branches/upstream/libemail-folder-perl/current/lib/Email/Folder/Mbox.pm Mon Jul 27 15:28:05 2009
@@ -50,8 +50,7 @@
/^From /
-In deference to this extract from L<Content-Length Considered
-Harmful|http://www.jwz.org/doc/content-length.html>
+In deference to this extract from L<http://www.jwz.org/doc/content-length.html>
Essentially the only safe way to parse that file format is to
consider all lines which begin with the characters ``From ''
Modified: branches/upstream/libemail-folder-perl/current/t/pod-coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-folder-perl/current/t/pod-coverage.t?rev=40831&op=diff
==============================================================================
--- branches/upstream/libemail-folder-perl/current/t/pod-coverage.t (original)
+++ branches/upstream/libemail-folder-perl/current/t/pod-coverage.t Mon Jul 27 15:28:05 2009
@@ -1,6 +1,9 @@
#!perl -T
use Test::More;
+
+plan skip_all => 'set RELEASE_TESTING to test pod' if ! $ENV{RELEASE_TESTING};
+
eval "use Test::Pod::Coverage 1.08";
plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD coverage"
if $@;
Modified: branches/upstream/libemail-folder-perl/current/t/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-folder-perl/current/t/pod.t?rev=40831&op=diff
==============================================================================
--- branches/upstream/libemail-folder-perl/current/t/pod.t (original)
+++ branches/upstream/libemail-folder-perl/current/t/pod.t Mon Jul 27 15:28:05 2009
@@ -1,6 +1,7 @@
#!perl -T
use Test::More;
+plan skip_all => 'set RELEASE_TESTING to test pod' if ! $ENV{RELEASE_TESTING};
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