r4626 - in /packages/libemail-send-perl/trunk: Changes META.yml debian/changelog lib/Email/Send.pm t/sendmail.t

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Fri Dec 15 15:55:22 CET 2006


Author: eloy
Date: Fri Dec 15 15:55:22 2006
New Revision: 4626

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=4626
Log:
eloy: new upstream version

Modified:
    packages/libemail-send-perl/trunk/Changes
    packages/libemail-send-perl/trunk/META.yml
    packages/libemail-send-perl/trunk/debian/changelog
    packages/libemail-send-perl/trunk/lib/Email/Send.pm
    packages/libemail-send-perl/trunk/t/sendmail.t

Modified: packages/libemail-send-perl/trunk/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-send-perl/trunk/Changes?rev=4626&op=diff
==============================================================================
--- packages/libemail-send-perl/trunk/Changes (original)
+++ packages/libemail-send-perl/trunk/Changes Fri Dec 15 15:55:22 2006
@@ -1,3 +1,7 @@
+2.183   2006-12-14
+  - fix test skip error on Win32; claimed to skip 1, then skipped 2
+    thanks for the test report, Steffen Mueller!
+
 2.182   2006-12-07
   - skip/fix some tests on Win32
   - move to/from finding to another method in ::SMTP

Modified: packages/libemail-send-perl/trunk/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-send-perl/trunk/META.yml?rev=4626&op=diff
==============================================================================
--- packages/libemail-send-perl/trunk/META.yml (original)
+++ packages/libemail-send-perl/trunk/META.yml Fri Dec 15 15:55:22 2006
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Email-Send
-version:             2.182
+version:             2.183
 abstract:            Simply Sending Email
 license:             perl
 generated_by:        ExtUtils::MakeMaker version 6.31

Modified: packages/libemail-send-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-send-perl/trunk/debian/changelog?rev=4626&op=diff
==============================================================================
--- packages/libemail-send-perl/trunk/debian/changelog (original)
+++ packages/libemail-send-perl/trunk/debian/changelog Fri Dec 15 15:55:22 2006
@@ -1,3 +1,9 @@
+libemail-send-perl (2.183-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Fri, 15 Dec 2006 15:54:32 +0100
+
 libemail-send-perl (2.182-1) unstable; urgency=low
 
   * New upstream release

Modified: packages/libemail-send-perl/trunk/lib/Email/Send.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-send-perl/trunk/lib/Email/Send.pm?rev=4626&op=diff
==============================================================================
--- packages/libemail-send-perl/trunk/lib/Email/Send.pm (original)
+++ packages/libemail-send-perl/trunk/lib/Email/Send.pm Fri Dec 15 15:55:22 2006
@@ -2,7 +2,7 @@
 use strict;
 
 use vars qw[$VERSION];
-$VERSION   = '2.182';
+$VERSION   = '2.183';
 
 use Email::Simple;
 use Module::Pluggable search_path => 'Email::Send';

Modified: packages/libemail-send-perl/trunk/t/sendmail.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-send-perl/trunk/t/sendmail.t?rev=4626&op=diff
==============================================================================
--- packages/libemail-send-perl/trunk/t/sendmail.t (original)
+++ packages/libemail-send-perl/trunk/t/sendmail.t Fri Dec 15 15:55:22 2006
@@ -56,7 +56,7 @@
 SKIP:
 {
   skip 'Cannot run this test unless current perl is -x', 1 unless -x $^X;
- skip 'Win32 does not understand shebang', 1 if $^O eq 'MSWin32';
+  skip 'Win32 does not understand shebang', 1 if $^O eq 'MSWin32';
 
   skip 'Cannot run this test without File::Temp', 1 unless $has_FileTemp;
   my $tempdir = File::Temp::tempdir();
@@ -85,7 +85,7 @@
 SKIP:
 {
   skip 'Cannot run this test unless current perl is -x', 2 unless -x $^X;
-  skip 'Win32 does not understand shebang', 1 if $^O eq 'MSWin32';
+  skip 'Win32 does not understand shebang', 2 if $^O eq 'MSWin32';
 
   skip 'Cannot run this test without File::Temp', 2 unless $has_FileTemp;
   my $tempdir = File::Temp::tempdir();




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