[Bps-public-commit] LWP-UserAgent-Paranoid branch, master, updated. 0.94-2-g785e937

Alex Vandiver alexmv at bestpractical.com
Thu Jun 19 18:09:18 EDT 2014


The branch, master has been updated
       via  785e93765eeb6f333ac01c0563eb585c1bb0a7d7 (commit)
       via  0a73caa042ec98c028eb630851a8cbf37866eb0e (commit)
      from  f7454cbe2f85e70a50192f2e2e80f0dcbf747d1a (commit)

Summary of changes:
 Changes                             | 4 ++++
 META.yml                            | 6 +++---
 Makefile.PL                         | 2 +-
 inc/Module/Install.pm               | 2 +-
 inc/Module/Install/Base.pm          | 2 +-
 inc/Module/Install/Can.pm           | 2 +-
 inc/Module/Install/Fetch.pm         | 2 +-
 inc/Module/Install/Makefile.pm      | 2 +-
 inc/Module/Install/Metadata.pm      | 2 +-
 inc/Module/Install/ReadmeFromPod.pm | 2 +-
 inc/Module/Install/Win32.pm         | 2 +-
 inc/Module/Install/WriteAll.pm      | 2 +-
 lib/LWP/UserAgent/Paranoid.pm       | 2 +-
 13 files changed, 18 insertions(+), 14 deletions(-)

- Log -----------------------------------------------------------------
commit 0a73caa042ec98c028eb630851a8cbf37866eb0e
Author: Thomas Sibley <tsibley at cpan.org>
Date:   Thu Jun 19 12:18:45 2014 -0700

    Require at least Time::HiRes 1.9716 for a functional alarm()
    
    1.9715's alarm() is non-functional on at least some systems, evidenced
    by various CPAN testers failure reports from vanilla Perl 5.8.9 installs
    which include 1.9715 in core.
    
    The functionality of alarm() may be tested like so:
    
        perl -MTime::HiRes=alarm -le '
            $SIG{ALRM} = sub { print "alarm: ", time; die "alarm works\n" };
            alarm 1;
            print "start: ", $start = time;
            'spin' while $start + 4 > time;
            die "alarm broken\n";
        '

diff --git a/META.yml b/META.yml
index e035fa4..ff5f548 100644
--- a/META.yml
+++ b/META.yml
@@ -26,7 +26,7 @@ requires:
   LWPx::ParanoidHandler: 0
   Net::DNS::Paranoid: 0
   Scalar::Util: 0
-  Time::HiRes: 0
+  Time::HiRes: 1.9716
 resources:
   license: http://opensource.org/licenses/gpl-license.php
   repository: https://github.com/bestpractical/lwp-useragent-paranoid.git
diff --git a/Makefile.PL b/Makefile.PL
index f8fed4a..3c72a30 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -11,7 +11,7 @@ requires 'LWP::UserAgent';
 requires 'LWPx::ParanoidHandler';
 requires 'Net::DNS::Paranoid';
 requires 'Scalar::Util';
-requires 'Time::HiRes';
+requires 'Time::HiRes', '1.9716';
 
 test_requires 'Test::Requires';
 test_requires 'Test::TCP';

commit 785e93765eeb6f333ac01c0563eb585c1bb0a7d7
Author: Thomas Sibley <tsibley at cpan.org>
Date:   Thu Jun 19 12:25:14 2014 -0700

    Releng for 0.95

diff --git a/Changes b/Changes
index b3de2c2..8430bab 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
+0.95    Thu Jun 19 12:10:48 PDT 2014
+    * Require Time::HiRes 1.9716 to fix a non-functional alarm()
+      (Thomas Sibley)
+
 0.94    Mon Jul  1 11:04:41 PDT 2013
 
     * Support fractional seconds in request_timeout (Andrew Rodland)
diff --git a/META.yml b/META.yml
index ff5f548..a718ef0 100644
--- a/META.yml
+++ b/META.yml
@@ -11,7 +11,7 @@ configure_requires:
   ExtUtils::MakeMaker: 6.36
 distribution_type: module
 dynamic_config: 1
-generated_by: 'Module::Install version 1.06'
+generated_by: 'Module::Install version 1.08'
 license: gplv2
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -30,4 +30,4 @@ requires:
 resources:
   license: http://opensource.org/licenses/gpl-license.php
   repository: https://github.com/bestpractical/lwp-useragent-paranoid.git
-version: 0.94
+version: 0.95
diff --git a/inc/Module/Install.pm b/inc/Module/Install.pm
index 4ecf46b..7680c84 100644
--- a/inc/Module/Install.pm
+++ b/inc/Module/Install.pm
@@ -31,7 +31,7 @@ BEGIN {
 	# This is not enforced yet, but will be some time in the next few
 	# releases once we can make sure it won't clash with custom
 	# Module::Install extensions.
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 
 	# Storage for the pseudo-singleton
 	$MAIN    = undef;
diff --git a/inc/Module/Install/Base.pm b/inc/Module/Install/Base.pm
index 802844a..3e63345 100644
--- a/inc/Module/Install/Base.pm
+++ b/inc/Module/Install/Base.pm
@@ -4,7 +4,7 @@ package Module::Install::Base;
 use strict 'vars';
 use vars qw{$VERSION};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 }
 
 # Suspend handler for "redefined" warnings
diff --git a/inc/Module/Install/Can.pm b/inc/Module/Install/Can.pm
index 22167b8..93f248d 100644
--- a/inc/Module/Install/Can.pm
+++ b/inc/Module/Install/Can.pm
@@ -8,7 +8,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
diff --git a/inc/Module/Install/Fetch.pm b/inc/Module/Install/Fetch.pm
index bee0c4f..ecc0d53 100644
--- a/inc/Module/Install/Fetch.pm
+++ b/inc/Module/Install/Fetch.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
diff --git a/inc/Module/Install/Makefile.pm b/inc/Module/Install/Makefile.pm
index 7052f36..c0978a4 100644
--- a/inc/Module/Install/Makefile.pm
+++ b/inc/Module/Install/Makefile.pm
@@ -8,7 +8,7 @@ use Fcntl qw/:flock :seek/;
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
diff --git a/inc/Module/Install/Metadata.pm b/inc/Module/Install/Metadata.pm
index 58430f3..e4112f8 100644
--- a/inc/Module/Install/Metadata.pm
+++ b/inc/Module/Install/Metadata.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
diff --git a/inc/Module/Install/ReadmeFromPod.pm b/inc/Module/Install/ReadmeFromPod.pm
index 6a80818..b5e03c3 100644
--- a/inc/Module/Install/ReadmeFromPod.pm
+++ b/inc/Module/Install/ReadmeFromPod.pm
@@ -7,7 +7,7 @@ use warnings;
 use base qw(Module::Install::Base);
 use vars qw($VERSION);
 
-$VERSION = '0.20';
+$VERSION = '0.22';
 
 sub readme_from {
   my $self = shift;
diff --git a/inc/Module/Install/Win32.pm b/inc/Module/Install/Win32.pm
index eeaa3fe..e529382 100644
--- a/inc/Module/Install/Win32.pm
+++ b/inc/Module/Install/Win32.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
diff --git a/inc/Module/Install/WriteAll.pm b/inc/Module/Install/WriteAll.pm
index 85d8018..2c74308 100644
--- a/inc/Module/Install/WriteAll.pm
+++ b/inc/Module/Install/WriteAll.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.06';
+	$VERSION = '1.08';
 	@ISA     = qw{Module::Install::Base};
 	$ISCORE  = 1;
 }
diff --git a/lib/LWP/UserAgent/Paranoid.pm b/lib/LWP/UserAgent/Paranoid.pm
index c67240e..0976b4d 100644
--- a/lib/LWP/UserAgent/Paranoid.pm
+++ b/lib/LWP/UserAgent/Paranoid.pm
@@ -11,7 +11,7 @@ LWP::UserAgent::Paranoid - A modern LWPx::ParanoidAgent for safer requests
 package LWP::UserAgent::Paranoid;
 use base 'LWP::UserAgent';
 
-our $VERSION = "0.94";
+our $VERSION = "0.95";
 
 use Scalar::Util          qw/ refaddr /;
 use Time::HiRes           qw/ alarm /;

-----------------------------------------------------------------------


More information about the Bps-public-commit mailing list