Path to this page:
NOTICE: This package has been removed from pkgsrc./
time/p5-Time-HiRes,
Perl5 module for high resolution time, sleep, and alarm
Branch: CURRENT,
Version: 1.9760nb2,
Package name: p5-Time-HiRes-1.9760nb2,
Maintainer: badImplement usleep, ualarm, setitimer/getitimer and gettimeofday for Perl,
as well as wrappers to implement time, sleep, and alarm that know about
non-integral seconds.
Required to run:[
lang/perl5]
Required to build:[
pkgtools/cwrappers]
Master sites: (Expand)
SHA1: e6ee17e278eea166a9d53ff5fc9ccd2c6ef107ac
RMD160: 5942b87433c18f1d2ba59468e60765340e38a719
Filesize: 109.066 KB
Version history: (Expand)
- (2020-09-02) Package deleted from pkgsrc
- (2020-09-01) Updated to version: p5-Time-HiRes-1.9760nb2
- (2019-08-11) Updated to version: p5-Time-HiRes-1.9760nb1
- (2019-02-24) Updated to version: p5-Time-HiRes-1.9760
- (2018-08-22) Updated to version: p5-Time-HiRes-1.9758nb1
- (2018-03-25) Updated to version: p5-Time-HiRes-1.9758
CVS history: (Expand)
2020-08-31 20:13:29 by Thomas Klausner | Files touched by this commit (3631) |
Log message:
*: bump PKGREVISION for perl-5.32.
|
2019-08-11 15:25:21 by Thomas Klausner | Files touched by this commit (3557) |
Log message:
Bump PKGREVISIONs for perl 5.30.0
|
2019-06-30 22:17:50 by Nia Alarie | Files touched by this commit (1816) |
Log message:
Update packages using a search.cpan.org HOMEPAGE to metacpan.org.
The former now redirects to the latter.
This covers the most simple cases where http://search.cpan.org/dist/name
can be changed to https://metacpan.org/release/name.
Reviewed by hand to hopefully make sure no unwanted changes sneak in.
|
2019-02-24 11:42:47 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 1.9760
Upstream changes:
1.9760 [2019-02-18]
- make utime() available only if we have both fd and name setting
[RT #133030]
- Adjutst Makefile.PL for windows: the DEFINE() in Makefile.PL
can't be be in sub init() because that sub isn't called on windows
- t/itimer.t: avoid race condition.
- don't truncate nanosec utime
- fallback/const-c.inc: Avoid compiler warning showing up on darwin.
1.9759 [2018-03-23]
- This version reverts the changes on CPAN that were included in 1.9754 - 1.9758.
Several of these changes caused instability on some windows platforms. We can
revisit these fixes if necessary in Perl 5.29.0
|
2018-08-22 11:48:07 by Thomas Klausner | Files touched by this commit (3558) |
Log message:
Recursive bump for perl5-5.28.0
|
2018-03-25 18:06:52 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
p5-Time-HiRes: update to 1.9758.
1.9758 [2018-03-21]
- fix build in Win32 with Visual C by introducing a fake struct timezone
[rt.cpan.org #124844]
- in utime.t detect better being run in a noatime filesystem,
and if so, skip the test (for the HAMMER filesystem of DragonflyBSD)
- also for the HAMMER fs (if not in noatime), lower the expected subsecond
timestamp granularity to microseconds
- fix the version number typo in Changes: 1.9577 -> 1.9757
|
2018-03-18 09:54:58 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
p5-Time-HiRes: update to 1.9757.
1.9577 [2018-03-15]
- fix win32 (and cygwin?) builds which have been broken since 1.9755:
problem was that gettimeofday() is a macro and needs to stay such
- regenerate ppport.h with Perl 5.26.1 (was previously generated with
5.25.6) and Devel::PPPort 3.35 (previously 3.36) -- this doesn't
change the ppport.h, though
1.9756 [2018-03-14]
- division by zero in new test tv_interval.t [rt.cpan.org #124775]:
made the test pass even if the difference is zero, but also
made it practically impossible to ever be zero by adding
a sub-second sleep.
- remove comments from inside qw [rt.cpan.org #124777],
only seemed to be caught by Perl 5.18.4
1.9755 [2018-03-14]
- adjust the error messages of tv_interval()
- the NV_1EX constants now cast to be NV so that
tv_interval() with long double builds does not
produce ugly results [rt.cpan.org #106456]
- add tests for tv_interval()
- centralize the mygettimeofday() logic
- make the mygettimeofday() a function instead of macro
- add the OS X 10.12+ clock_gettime() constants
CLOCK_MONOTONIC_RAW_APPROX CLOCK_UPTIME_RAW_APPROX
- regenerate the fallback files
|
2018-02-20 04:05:38 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 1.9754
Upstream changes:
1.9754 [2018-02-16]
- unify the gettimeofday() and time() forked code
that had near identical code paths for MacOS Classic
(which has two unusual features: unsigned time_t,
and a special tz struct member), and for non-MacOS Classic
- tv_interval should be implemented in XS
[rt.cpan.org #106456]
thanks to Sergey Aleynikov (suggested implementation simplified
by the above-mentioned MacOS Classic simplification)
|