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

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Thu Apr 9 05:51:40 UTC 2009


Author: ryan52-guest
Date: Thu Apr  9 05:51:35 2009
New Revision: 32862

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=32862
Log:
[svn-upgrade] Integrating new upstream version, libemail-valid-perl (0.181)

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

Modified: branches/upstream/libemail-valid-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-valid-perl/current/Changes?rev=32862&op=diff
==============================================================================
--- branches/upstream/libemail-valid-perl/current/Changes (original)
+++ branches/upstream/libemail-valid-perl/current/Changes Thu Apr  9 05:51:35 2009
@@ -1,4 +1,9 @@
 Revision history for Perl extension Email::Valid.
+
+0.181     2009-03-23
+          explicitly require perl5 version 6
+          update some module metadata (Alexandr Ciornii)
+          remove hateful indirect method notation (Alexandr Ciornii)
 
 0.180     2009-01-16
           add repo location to metadata

Modified: branches/upstream/libemail-valid-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-valid-perl/current/META.yml?rev=32862&op=diff
==============================================================================
--- branches/upstream/libemail-valid-perl/current/META.yml (original)
+++ branches/upstream/libemail-valid-perl/current/META.yml Thu Apr  9 05:51:35 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Email-Valid
-version:            0.180
+version:            0.181
 abstract:           ~
 author:  []
 license:            perl
@@ -9,9 +9,10 @@
     ExtUtils::MakeMaker:  0
 requires:
     Mail::Address:  0
-    Net::DNS:       0
+    perl:           5.006
+    Test::More:     0
 resources:
-    Repository:  http://github.com/rjbs/email-valid
+    repository:  http://github.com/rjbs/email-valid
 no_index:
     directory:
         - t

Modified: branches/upstream/libemail-valid-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-valid-perl/current/Makefile.PL?rev=32862&op=diff
==============================================================================
--- branches/upstream/libemail-valid-perl/current/Makefile.PL (original)
+++ branches/upstream/libemail-valid-perl/current/Makefile.PL Thu Apr  9 05:51:35 2009
@@ -1,3 +1,5 @@
+require 5.006;
+
 use strict;
 use warnings;
 
@@ -21,8 +23,10 @@
 WriteMakefile(
     'NAME'	   => 'Email::Valid',
     'VERSION_FROM' => 'lib/Email/Valid.pm', 
+    MIN_PERL_VERSION => '5.006',
     (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
     'PREREQ_PM'    => {
+      'Test::More' => 0,
       'Mail::Address' => 0,
       ($need_net_dns ? ('Net::DNS' => 0) : ()),
       ((!$need_net_dns and $^O =~ /\AMSWin32|Cygwin\z/)
@@ -37,8 +41,8 @@
     (eval { ExtUtils::MakeMaker->VERSION(6.46) }
       ? (META_MERGE => {
           resources => {
-            Repository => 'http://github.com/rjbs/email-valid'
-          }
+            repository => 'http://github.com/rjbs/email-valid'
+          },
         })
       : ()
     ),

Modified: branches/upstream/libemail-valid-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-valid-perl/current/README?rev=32862&op=diff
==============================================================================
--- branches/upstream/libemail-valid-perl/current/README (original)
+++ branches/upstream/libemail-valid-perl/current/README Thu Apr  9 05:51:35 2009
@@ -4,56 +4,3 @@
   optionally, whether a mail host exists for the domain or whether
   the top level domain of the email address is valid.  
 
-COPYRIGHT
-
-  Copyright 1998-2003, Maurice Aubrey <maurice at hevanet.com>. 
-  All rights reserved.
-
-  This module is free software; you may redistribute it and/or
-  modify it under the same terms as Perl itself.
-
-PREREQUISITES
-
-  This module requires perl 5.004 or later and the Mail::Address module.
-  The Net::DNS module is required for DNS checks.   
-
-  Either the Net::DNS module or the nslookup utility are required 
-  to perform DNS checks.
-
-  The Net::Domain::TLD module is required to check validity of top level
-  domains.
-
-  Under Win32, the module tests take a very long time, so be patient.
- 
-INSTALLATION
-
-  To install this module, move into the directory where this file is
-  located and type the following:
-
-        perl Makefile.PL
-        make
-        make test
-        make install
-
-  This will install the module into the Perl library directory.  If 
-  you lack sufficient privileges for this, then you can specify an
-  alternate directory like this:
-
-        perl Makefile.PL PREFIX=/where/I/want/it/put
-        make
-        make test
-        make install
-
-  Once installed, you can use the following line to load the module into
-  your scripts:
-
-        use Email::Valid;
-
-  If you installed the module into an alternative directory, you will
-  need to let Perl know where it can be found:
-
-        use lib "/path/to/my/modules";
-        use Email::Valid;
-
-  See the POD documentation for further details.
-

Modified: branches/upstream/libemail-valid-perl/current/lib/Email/Valid.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-valid-perl/current/lib/Email/Valid.pm?rev=32862&op=diff
==============================================================================
--- branches/upstream/libemail-valid-perl/current/lib/Email/Valid.pm (original)
+++ branches/upstream/libemail-valid-perl/current/lib/Email/Valid.pm Thu Apr  9 05:51:35 2009
@@ -1,15 +1,17 @@
 package Email::Valid;
-
+require 5.006;
 use strict;
+use warnings;
 use vars qw( $VERSION $RFC822PAT %AUTOLOAD $AUTOLOAD $NSLOOKUP_PAT
              @NSLOOKUP_PATHS $Details $Resolver $Nslookup_Path 
              $DNS_Method $TLD $Debug );
+
 use Carp;
 use IO::File;
 use Mail::Address;
 use File::Spec;
 
-$VERSION = '0.180';
+$VERSION = '0.181';
 
 %AUTOLOAD = (
   fqdn     => 1,
@@ -160,7 +162,7 @@
     return 1;
   } else {
     # phew, we're not on Windows!
-    if (my $fh = new IO::File '-|') {
+    if (my $fh = IO::File->new('-|')) {
       my $response = <$fh>;
       print STDERR $response if $Debug;
       close $fh;




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