r3468 - in /packages/libemail-simple-creator-perl/trunk: Changes MANIFEST META.yml debian/changelog lib/Email/Simple/Creator.pm t/create.t t/pod-coverage.t t/pod.t

pabs-guest at users.alioth.debian.org pabs-guest at users.alioth.debian.org
Sat Aug 12 09:29:11 UTC 2006


Author: pabs-guest
Date: Sat Aug 12 09:29:10 2006
New Revision: 3468

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

Added:
    packages/libemail-simple-creator-perl/trunk/t/pod-coverage.t
      - copied unchanged from r3467, packages/libemail-simple-creator-perl/branches/upstream/current/t/pod-coverage.t
    packages/libemail-simple-creator-perl/trunk/t/pod.t
      - copied unchanged from r3467, packages/libemail-simple-creator-perl/branches/upstream/current/t/pod.t
Modified:
    packages/libemail-simple-creator-perl/trunk/Changes
    packages/libemail-simple-creator-perl/trunk/MANIFEST
    packages/libemail-simple-creator-perl/trunk/META.yml
    packages/libemail-simple-creator-perl/trunk/debian/changelog
    packages/libemail-simple-creator-perl/trunk/lib/Email/Simple/Creator.pm
    packages/libemail-simple-creator-perl/trunk/t/create.t

Modified: packages/libemail-simple-creator-perl/trunk/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/trunk/Changes?rev=3468&op=diff
==============================================================================
--- packages/libemail-simple-creator-perl/trunk/Changes (original)
+++ packages/libemail-simple-creator-perl/trunk/Changes Sat Aug 12 09:29:10 2006
@@ -1,3 +1,8 @@
+1.41   2006-07-03
+
+  - don't use no_plan in test; it breaks under old Test::More
+    (applied by RJBS, thanks to LTHEGLER)
+
 1.4    2004-07-25
 
   - use Email::Date

Modified: packages/libemail-simple-creator-perl/trunk/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/trunk/MANIFEST?rev=3468&op=diff
==============================================================================
--- packages/libemail-simple-creator-perl/trunk/MANIFEST (original)
+++ packages/libemail-simple-creator-perl/trunk/MANIFEST Sat Aug 12 09:29:10 2006
@@ -5,3 +5,5 @@
 META.yml
 README
 t/create.t
+t/pod.t
+t/pod-coverage.t

Modified: packages/libemail-simple-creator-perl/trunk/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/trunk/META.yml?rev=3468&op=diff
==============================================================================
--- packages/libemail-simple-creator-perl/trunk/META.yml (original)
+++ packages/libemail-simple-creator-perl/trunk/META.yml Sat Aug 12 09:29:10 2006
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Email-Simple-Creator
-version:      1.4
+version:      1.41
 version_from: lib/Email/Simple/Creator.pm
 installdirs:  site
 requires:
@@ -10,4 +10,4 @@
     Test::More:                    0.47
 
 distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.17
+generated_by: ExtUtils::MakeMaker version 6.30

Modified: packages/libemail-simple-creator-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/trunk/debian/changelog?rev=3468&op=diff
==============================================================================
--- packages/libemail-simple-creator-perl/trunk/debian/changelog (original)
+++ packages/libemail-simple-creator-perl/trunk/debian/changelog Sat Aug 12 09:29:10 2006
@@ -1,3 +1,9 @@
+libemail-simple-creator-perl (1.41-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Paul Wise <pabs3 at bonedaddy.net>  Sat, 12 Aug 2006 17:26:40 +0800
+
 libemail-simple-creator-perl (1.4-1) unstable; urgency=low
 
   * Initial Release.

Modified: packages/libemail-simple-creator-perl/trunk/lib/Email/Simple/Creator.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/trunk/lib/Email/Simple/Creator.pm?rev=3468&op=diff
==============================================================================
--- packages/libemail-simple-creator-perl/trunk/lib/Email/Simple/Creator.pm (original)
+++ packages/libemail-simple-creator-perl/trunk/lib/Email/Simple/Creator.pm Sat Aug 12 09:29:10 2006
@@ -1,9 +1,8 @@
 package Email::Simple::Creator;
-# $Id: Creator.pm,v 1.4 2004/07/25 20:29:28 cwest Exp $
 use strict;
 
 use vars qw[$VERSION $CRLF];
-$VERSION = (qw$Revision: 1.4 $)[1];
+$VERSION = '1.41';
 $CRLF    = "\x0a\x0d";
 
 sub _date_header {

Modified: packages/libemail-simple-creator-perl/trunk/t/create.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/trunk/t/create.t?rev=3468&op=diff
==============================================================================
--- packages/libemail-simple-creator-perl/trunk/t/create.t (original)
+++ packages/libemail-simple-creator-perl/trunk/t/create.t Sat Aug 12 09:29:10 2006
@@ -1,4 +1,4 @@
-use Test::More qw[no_plan];
+use Test::More tests => 6;
 use_ok 'Email::Simple::Creator';
 use_ok 'Email::Simple';
 
@@ -46,4 +46,4 @@
     $pass ?
       is   $string, $message :
       isnt $string, $message;
-}
+}




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