summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorwen <wen@pkgsrc.org>2013-10-02 02:44:24 +0000
committerwen <wen@pkgsrc.org>2013-10-02 02:44:24 +0000
commit68c2b18e19d68d2aee2caf70be5e8fddabbab05f (patch)
tree902c819095112223050a417bffdcfdf397f0eb89 /time
parent0bf107c2f25c2ae8eaefc20c26c158cf3c090f61 (diff)
downloadpkgsrc-68c2b18e19d68d2aee2caf70be5e8fddabbab05f.tar.gz
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 (limited to 'time')
-rw-r--r--time/p5-Time-HiRes/Makefile5
-rw-r--r--time/p5-Time-HiRes/distinfo9
-rw-r--r--time/p5-Time-HiRes/patches/patch-HiRes.xs16
3 files changed, 6 insertions, 24 deletions
diff --git a/time/p5-Time-HiRes/Makefile b/time/p5-Time-HiRes/Makefile
index d13c325ff25..bbe075aee4a 100644
--- a/time/p5-Time-HiRes/Makefile
+++ b/time/p5-Time-HiRes/Makefile
@@ -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 --git a/time/p5-Time-HiRes/distinfo b/time/p5-Time-HiRes/distinfo
index e53ae59bcff..d19f776938c 100644
--- a/time/p5-Time-HiRes/distinfo
+++ b/time/p5-Time-HiRes/distinfo
@@ -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 --git a/time/p5-Time-HiRes/patches/patch-HiRes.xs b/time/p5-Time-HiRes/patches/patch-HiRes.xs
deleted file mode 100644
index 23e0b41eaf2..00000000000
--- a/time/p5-Time-HiRes/patches/patch-HiRes.xs
+++ /dev/null
@@ -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()