r49023 - in /branches/upstream/libemail-valid-perl/current: Changes META.yml lib/Email/Valid.pm t/valid.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Dec 20 13:19:28 UTC 2009


Author: gregoa
Date: Sun Dec 20 13:19:20 2009
New Revision: 49023

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

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

Modified: branches/upstream/libemail-valid-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-valid-perl/current/Changes?rev=49023&op=diff
==============================================================================
--- branches/upstream/libemail-valid-perl/current/Changes (original)
+++ branches/upstream/libemail-valid-perl/current/Changes Sun Dec 20 13:19:20 2009
@@ -1,4 +1,7 @@
 Revision history for Perl extension Email::Valid.
+
+0.182     2009-08-03
+          skip DNS tests on machines with lying DNS
 
 0.181     2009-03-23
           explicitly require perl5 version 6

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=49023&op=diff
==============================================================================
--- branches/upstream/libemail-valid-perl/current/META.yml (original)
+++ branches/upstream/libemail-valid-perl/current/META.yml Sun Dec 20 13:19:20 2009
@@ -1,14 +1,17 @@
 --- #YAML:1.0
 name:               Email-Valid
-version:            0.181
+version:            0.182
 abstract:           ~
 author:  []
 license:            perl
 distribution_type:  module
 configure_requires:
     ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
 requires:
     Mail::Address:  0
+    Net::DNS:       0
     perl:           5.006
     Test::More:     0
 resources:
@@ -17,7 +20,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.48
+generated_by:       ExtUtils::MakeMaker version 6.50
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

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=49023&op=diff
==============================================================================
--- branches/upstream/libemail-valid-perl/current/lib/Email/Valid.pm (original)
+++ branches/upstream/libemail-valid-perl/current/lib/Email/Valid.pm Sun Dec 20 13:19:20 2009
@@ -11,7 +11,7 @@
 use Mail::Address;
 use File::Spec;
 
-$VERSION = '0.181';
+$VERSION = '0.182';
 
 %AUTOLOAD = (
   fqdn     => 1,

Modified: branches/upstream/libemail-valid-perl/current/t/valid.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libemail-valid-perl/current/t/valid.t?rev=49023&op=diff
==============================================================================
--- branches/upstream/libemail-valid-perl/current/t/valid.t (original)
+++ branches/upstream/libemail-valid-perl/current/t/valid.t Sun Dec 20 13:19:20 2009
@@ -88,6 +88,12 @@
   skip "your dns appears missing or failing to resolve", 2
     unless $v->address(-address=> 'devnull at pobox.com', -mxcheck => 1);
 
+  if (
+    $v->address(-address => 'blort at will-never-exist.pobox.com', -mxcheck => 1)
+  ) {
+    skip "your dns is lying to you; you must not use mxcheck", 2;
+  }
+
   ok(
     $v->address(-address => 'blort at aol.com', -mxcheck => 1),
     'blort at aol.com, with mxcheck, is ok',




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