pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/time/p5-Time-HiRes Update to 1.9726



details:   https://anonhg.NetBSD.org/pkgsrc/rev/15f538187cf4
branches:  trunk
changeset: 624842:15f538187cf4
user:      wen <wen%pkgsrc.org@localhost>
date:      Wed Oct 02 02:44:24 2013 +0000

description:
Update to 1.9726

Upstream changes:
1.9726 [2013-08-17]
        - Correct s/us splitting of usleep(1000000) [rt.cpan.org #78266].
        - Avoid integer overflow in itimer-based alarm() with large
          argument [rt.cpan.org #87160].
        - Define PERL_NO_INLINE_FUNCTIONS during probe compilations, to
          avoid false negatives caused by not linking with the perl core.
        - Be more careful about context in stat().
        - Install into "site" directories by default on perl 5.11+
          [rt.cpan.org #79797].
        - Fix a couple of doc typos [rt.cpan.org #85365].
        - Fix function name in a doc example [rt.cpan.org #86318].
        - Provide lstat() that yields high-res timestamps, alongside
          the existing high-res stat() [rt.cpan.org #78732].

diffstat:

 time/p5-Time-HiRes/Makefile               |   5 ++---
 time/p5-Time-HiRes/distinfo               |   9 ++++-----
 time/p5-Time-HiRes/patches/patch-HiRes.xs |  16 ----------------
 3 files changed, 6 insertions(+), 24 deletions(-)

diffs (48 lines):

diff -r 876393534232 -r 15f538187cf4 time/p5-Time-HiRes/Makefile
--- a/time/p5-Time-HiRes/Makefile       Wed Oct 02 02:37:40 2013 +0000
+++ b/time/p5-Time-HiRes/Makefile       Wed Oct 02 02:44:24 2013 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.37 2013/05/31 12:42:28 wiz Exp $
+# $NetBSD: Makefile,v 1.38 2013/10/02 02:44:24 wen Exp $
 
-DISTNAME=              Time-HiRes-1.9725
+DISTNAME=              Time-HiRes-1.9726
 PKGNAME=               p5-${DISTNAME}
-PKGREVISION=           2
 SVR4_PKGNAME=          p5thr
 CATEGORIES=            time perl5
 MASTER_SITES=          ${MASTER_SITE_PERL_CPAN:=Time/}
diff -r 876393534232 -r 15f538187cf4 time/p5-Time-HiRes/distinfo
--- a/time/p5-Time-HiRes/distinfo       Wed Oct 02 02:37:40 2013 +0000
+++ b/time/p5-Time-HiRes/distinfo       Wed Oct 02 02:44:24 2013 +0000
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.21 2012/09/11 09:24:08 sno Exp $
+$NetBSD: distinfo,v 1.22 2013/10/02 02:44:24 wen Exp $
 
-SHA1 (Time-HiRes-1.9725.tar.gz) = f2bc79e089ad8dc3cf0adfd4c9cf583a1aa44d6b
-RMD160 (Time-HiRes-1.9725.tar.gz) = 75c222f792c6cd4a10075b0df129e6181c2a952d
-Size (Time-HiRes-1.9725.tar.gz) = 88527 bytes
-SHA1 (patch-HiRes.xs) = 2181d98a9b35ac232549f4bd5cc0f25edccbe237
+SHA1 (Time-HiRes-1.9726.tar.gz) = f29b38189bb27c441cf4f09c1e40eec0eee03177
+RMD160 (Time-HiRes-1.9726.tar.gz) = d0d9cdf5bcdfe97eb6ebff091fa05e2741c392e0
+Size (Time-HiRes-1.9726.tar.gz) = 89744 bytes
diff -r 876393534232 -r 15f538187cf4 time/p5-Time-HiRes/patches/patch-HiRes.xs
--- a/time/p5-Time-HiRes/patches/patch-HiRes.xs Wed Oct 02 02:37:40 2013 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-$NetBSD: patch-HiRes.xs,v 1.2 2012/07/09 06:33:35 wiz Exp $
-
-Fix off-by-one. From Michai Ramakers in PR 46673.
-https://rt.cpan.org/Public/Bug/Display.html?id=78266
-
---- HiRes.xs.orig      2011-06-08 18:36:38.000000000 +0000
-+++ HiRes.xs
-@@ -792,7 +792,7 @@ usleep(useconds)
-       CODE:
-       gettimeofday(&Ta, NULL);
-       if (items > 0) {
--          if (useconds > 1E6) {
-+          if (useconds >= 1E6) {
-               IV seconds = (IV) (useconds / 1E6);
-               /* If usleep() has been implemented using setitimer()
-                * then this contortion is unnecessary-- but usleep()



Home | Main Index | Thread Index | Old Index