r3094 - in /packages/libemail-valid-perl/branches/upstream/current: Changes META.yml Makefile.PL lib/Email/Valid.pm

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Mon Jun 19 11:35:15 UTC 2006


Author: eloy
Date: Mon Jun 19 11:35:14 2006
New Revision: 3094

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=3094
Log:
Load /tmp/tmp.dsNuVQ7456/libemail-valid-perl-0.174 into
packages/libemail-valid-perl/branches/upstream/current.

Modified:
    packages/libemail-valid-perl/branches/upstream/current/Changes
    packages/libemail-valid-perl/branches/upstream/current/META.yml
    packages/libemail-valid-perl/branches/upstream/current/Makefile.PL
    packages/libemail-valid-perl/branches/upstream/current/lib/Email/Valid.pm

Modified: packages/libemail-valid-perl/branches/upstream/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-valid-perl/branches/upstream/current/Changes?rev=3094&op=diff
==============================================================================
--- packages/libemail-valid-perl/branches/upstream/current/Changes (original)
+++ packages/libemail-valid-perl/branches/upstream/current/Changes Mon Jun 19 11:35:14 2006
@@ -1,4 +1,7 @@
 Revision history for Perl extension Email::Valid.
+
+0.174   Fri Jun 17 2006
+        added module required on Win32 (IO::CaptureOutput) to Makefile.PL
 
 0.173   Fri Jun 17 2006
         update test to require same min. version of TLD.pm as code

Modified: packages/libemail-valid-perl/branches/upstream/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-valid-perl/branches/upstream/current/META.yml?rev=3094&op=diff
==============================================================================
--- packages/libemail-valid-perl/branches/upstream/current/META.yml (original)
+++ packages/libemail-valid-perl/branches/upstream/current/META.yml Mon Jun 19 11:35:14 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-Valid
-version:      0.173
+version:      0.174
 version_from: lib/Email/Valid.pm
 installdirs:  site
 requires:

Modified: packages/libemail-valid-perl/branches/upstream/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-valid-perl/branches/upstream/current/Makefile.PL?rev=3094&op=diff
==============================================================================
--- packages/libemail-valid-perl/branches/upstream/current/Makefile.PL (original)
+++ packages/libemail-valid-perl/branches/upstream/current/Makefile.PL Mon Jun 19 11:35:14 2006
@@ -3,7 +3,14 @@
 WriteMakefile(
     'NAME'	   => 'Email::Valid',
     'VERSION_FROM' => 'lib/Email/Valid.pm', 
-    'PREREQ_PM'    => { 'Mail::Address' => 0 },
+    'PREREQ_PM'    => {
+      'Mail::Address' => 0,
+      (($^O eq 'MSWin32' or $^O eq 'Cygwin')
+       ? ('IO::CaptureOutput' => 0)
+       : ()
+      ),
+    },
+
     'dist'         => { 'COMPRESS'=>'gzip -9f', 'SUFFIX' => 'gz',
                         'ZIP'=>'/usr/bin/zip', 'ZIPFLAGS'=>'-rl' }
 );

Modified: packages/libemail-valid-perl/branches/upstream/current/lib/Email/Valid.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-valid-perl/branches/upstream/current/lib/Email/Valid.pm?rev=3094&op=diff
==============================================================================
--- packages/libemail-valid-perl/branches/upstream/current/lib/Email/Valid.pm (original)
+++ packages/libemail-valid-perl/branches/upstream/current/lib/Email/Valid.pm Mon Jun 19 11:35:14 2006
@@ -9,7 +9,7 @@
 use Mail::Address;
 use File::Spec;
 
-$VERSION = '0.173';
+$VERSION = '0.174';
 
 %AUTOLOAD = (
   fqdn     => 1,




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