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

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Fri Apr 13 23:04:42 UTC 2007


Author: gregoa-guest
Date: Fri Apr 13 23:04:41 2007
New Revision: 5101

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

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/io.t
    packages/libemail-send-perl/trunk/t/lib/Without.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=5101&op=diff
==============================================================================
--- packages/libemail-send-perl/trunk/Changes (original)
+++ packages/libemail-send-perl/trunk/Changes Fri Apr 13 23:04:41 2007
@@ -1,3 +1,12 @@
+2.185   2006-02-05
+  - no code changes, only test changes
+  - use UNLINK not CLEANUP for File::Temp::tempfile
+
+2.184   2006-02-05
+  - no code changes, only test changes
+  - create tempdirs under t, in case TMPDIR or /tmp is noexec
+    (spotted by MST)
+
 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!

Modified: packages/libemail-send-perl/trunk/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-send-perl/trunk/META.yml?rev=5101&op=diff
==============================================================================
--- packages/libemail-send-perl/trunk/META.yml (original)
+++ packages/libemail-send-perl/trunk/META.yml Fri Apr 13 23:04:41 2007
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Email-Send
-version:             2.183
+version:             2.185
 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=5101&op=diff
==============================================================================
--- packages/libemail-send-perl/trunk/debian/changelog (original)
+++ packages/libemail-send-perl/trunk/debian/changelog Fri Apr 13 23:04:41 2007
@@ -1,3 +1,9 @@
+libemail-send-perl (2.185-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 14 Apr 2007 01:02:33 +0200
+
 libemail-send-perl (2.183-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=5101&op=diff
==============================================================================
--- packages/libemail-send-perl/trunk/lib/Email/Send.pm (original)
+++ packages/libemail-send-perl/trunk/lib/Email/Send.pm Fri Apr 13 23:04:41 2007
@@ -2,7 +2,7 @@
 use strict;
 
 use vars qw[$VERSION];
-$VERSION   = '2.183';
+$VERSION   = '2.185';
 
 use Email::Simple;
 use Module::Pluggable search_path => 'Email::Send';

Modified: packages/libemail-send-perl/trunk/t/io.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-send-perl/trunk/t/io.t?rev=5101&op=diff
==============================================================================
--- packages/libemail-send-perl/trunk/t/io.t (original)
+++ packages/libemail-send-perl/trunk/t/io.t Fri Apr 13 23:04:41 2007
@@ -22,7 +22,7 @@
 This is a test (message).
 END_MESSAGE
 
-my (undef, $filename) = tempfile(CLEANUP => 1);
+my (undef, $filename) = tempfile(DIR => 't', UNLINK => 1);
 
 { my @no_warning_please = @Email::Send::IO::IO; }
 @Email::Send::IO::IO = ($filename);

Modified: packages/libemail-send-perl/trunk/t/lib/Without.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-send-perl/trunk/t/lib/Without.pm?rev=5101&op=diff
==============================================================================
--- packages/libemail-send-perl/trunk/t/lib/Without.pm (original)
+++ packages/libemail-send-perl/trunk/t/lib/Without.pm Fri Apr 13 23:04:41 2007
@@ -9,7 +9,7 @@
 use Symbol ();
 
 my $tempdir;
-BEGIN { $tempdir = File::Temp::tempdir(CLEANUP => 1); }
+BEGIN { $tempdir = File::Temp::tempdir(DIR => 't', CLEANUP => 1); }
 use lib $tempdir;
 
 sub import {

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=5101&op=diff
==============================================================================
--- packages/libemail-send-perl/trunk/t/sendmail.t (original)
+++ packages/libemail-send-perl/trunk/t/sendmail.t Fri Apr 13 23:04:41 2007
@@ -59,7 +59,7 @@
   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();
+  my $tempdir = File::Temp::tempdir(DIR => 't', CLEANUP => 1);
 
   require File::Spec;
 
@@ -88,7 +88,7 @@
   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();
+  my $tempdir = File::Temp::tempdir(DIR => 't', CLEANUP => 1);
 
   require File::Spec;
 




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