r32864 - in /trunk/libemail-valid-perl: Changes META.yml Makefile.PL README debian/changelog debian/control lib/Email/Valid.pm

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


Author: ryan52-guest
Date: Thu Apr  9 05:52:48 2009
New Revision: 32864

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=32864
Log:
* New upstream release
* Add myself to Uploaders
* Debian Policy 3.8.1

Modified:
    trunk/libemail-valid-perl/Changes
    trunk/libemail-valid-perl/META.yml
    trunk/libemail-valid-perl/Makefile.PL
    trunk/libemail-valid-perl/README
    trunk/libemail-valid-perl/debian/changelog
    trunk/libemail-valid-perl/debian/control
    trunk/libemail-valid-perl/lib/Email/Valid.pm

Modified: trunk/libemail-valid-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libemail-valid-perl/Changes?rev=32864&op=diff
==============================================================================
--- trunk/libemail-valid-perl/Changes (original)
+++ trunk/libemail-valid-perl/Changes Thu Apr  9 05:52:48 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: trunk/libemail-valid-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libemail-valid-perl/META.yml?rev=32864&op=diff
==============================================================================
--- trunk/libemail-valid-perl/META.yml (original)
+++ trunk/libemail-valid-perl/META.yml Thu Apr  9 05:52:48 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: trunk/libemail-valid-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libemail-valid-perl/Makefile.PL?rev=32864&op=diff
==============================================================================
--- trunk/libemail-valid-perl/Makefile.PL (original)
+++ trunk/libemail-valid-perl/Makefile.PL Thu Apr  9 05:52:48 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: trunk/libemail-valid-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libemail-valid-perl/README?rev=32864&op=diff
==============================================================================
--- trunk/libemail-valid-perl/README (original)
+++ trunk/libemail-valid-perl/README Thu Apr  9 05:52:48 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: trunk/libemail-valid-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libemail-valid-perl/debian/changelog?rev=32864&op=diff
==============================================================================
--- trunk/libemail-valid-perl/debian/changelog (original)
+++ trunk/libemail-valid-perl/debian/changelog Thu Apr  9 05:52:48 2009
@@ -1,4 +1,4 @@
-libemail-valid-perl (0.180-1) UNRELEASED; urgency=low
+libemail-valid-perl (0.181-1) UNRELEASED; urgency=low
 
   no need to upload, just adds git repo (and a diag() in a test)
 
@@ -12,7 +12,12 @@
     (source stanza).
   * debian/control: Added: ${misc:Depends} to Depends: field.
 
- -- Brian Cassidy <brian.cassidy at gmail.com>  Fri, 30 Jan 2009 10:30:55 -0400
+  [ Ryan Niebur ]
+  * New upstream release
+  * Add myself to Uploaders
+  * Debian Policy 3.8.1
+
+ -- Ryan Niebur <ryanryan52 at gmail.com>  Wed, 08 Apr 2009 22:52:41 -0700
 
 libemail-valid-perl (0.179-2) unstable; urgency=low
 

Modified: trunk/libemail-valid-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libemail-valid-perl/debian/control?rev=32864&op=diff
==============================================================================
--- trunk/libemail-valid-perl/debian/control (original)
+++ trunk/libemail-valid-perl/debian/control Thu Apr  9 05:52:48 2009
@@ -4,12 +4,12 @@
 Build-Depends: debhelper (>= 6), quilt (>= 0.40)
 Build-Depends-Indep: perl (>= 5.6.0-16), libmailtools-perl, libnet-dns-perl, libnet-domain-tld-perl (>= 1.65-2), netbase, libtest-pod-coverage-perl, libtest-pod-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Standards-Version: 3.7.3
+Standards-Version: 3.8.1
 Homepage: http://search.cpan.org/dist/Email-Valid/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libemail-valid-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libemail-valid-perl/
 Uploaders: Ron Lee <ron at debian.org>, Gunnar Wolf <gwolf at debian.org>, gregor herrmann <gregor+debian at comodo.priv.at>, Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
-
+, Ryan Niebur <ryanryan52 at gmail.com>
 Package: libemail-valid-perl
 Architecture: all
 Depends: ${misc:Depends}, ${perl:Depends}, libmailtools-perl, libnet-dns-perl, libnet-domain-tld-perl (>= 1.65-2), netbase

Modified: trunk/libemail-valid-perl/lib/Email/Valid.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libemail-valid-perl/lib/Email/Valid.pm?rev=32864&op=diff
==============================================================================
--- trunk/libemail-valid-perl/lib/Email/Valid.pm (original)
+++ trunk/libemail-valid-perl/lib/Email/Valid.pm Thu Apr  9 05:52:48 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