r4624 - in /packages/libemail-send-perl/branches/upstream/current: Changes META.yml lib/Email/Send.pm t/sendmail.t

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Fri Dec 15 15:54:20 CET 2006


Author: eloy
Date: Fri Dec 15 15:54:20 2006
New Revision: 4624

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=4624
Log:
Load /tmp/tmp.uBrub27937/libemail-send-perl-2.183 into
packages/libemail-send-perl/branches/upstream/current.

Modified:
    packages/libemail-send-perl/branches/upstream/current/Changes
    packages/libemail-send-perl/branches/upstream/current/META.yml
    packages/libemail-send-perl/branches/upstream/current/lib/Email/Send.pm
    packages/libemail-send-perl/branches/upstream/current/t/sendmail.t

Modified: packages/libemail-send-perl/branches/upstream/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-send-perl/branches/upstream/current/Changes?rev=4624&op=diff
==============================================================================
--- packages/libemail-send-perl/branches/upstream/current/Changes (original)
+++ packages/libemail-send-perl/branches/upstream/current/Changes Fri Dec 15 15:54:20 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/branches/upstream/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-send-perl/branches/upstream/current/META.yml?rev=4624&op=diff
==============================================================================
--- packages/libemail-send-perl/branches/upstream/current/META.yml (original)
+++ packages/libemail-send-perl/branches/upstream/current/META.yml Fri Dec 15 15:54:20 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/branches/upstream/current/lib/Email/Send.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-send-perl/branches/upstream/current/lib/Email/Send.pm?rev=4624&op=diff
==============================================================================
--- packages/libemail-send-perl/branches/upstream/current/lib/Email/Send.pm (original)
+++ packages/libemail-send-perl/branches/upstream/current/lib/Email/Send.pm Fri Dec 15 15:54:20 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/branches/upstream/current/t/sendmail.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-send-perl/branches/upstream/current/t/sendmail.t?rev=4624&op=diff
==============================================================================
--- packages/libemail-send-perl/branches/upstream/current/t/sendmail.t (original)
+++ packages/libemail-send-perl/branches/upstream/current/t/sendmail.t Fri Dec 15 15:54:20 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