summaryrefslogtreecommitdiff
path: root/time
AgeCommit message (Collapse)AuthorFilesLines
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam27-54/+54
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-26uses both C and C++schwarz1-1/+2
2006-02-17Fixed warnings found by pkglint -Wall.martti2-4/+4
2006-02-15Update p5-Time-Hires to 1.87abs2-9/+7
1.87 [2006-02-13] - [rt.cpan.org #17442] 'make test' frequently fails under Cygwin Perl v5.8.8, reported and patched by J. R. Hedden (two race condition bugs in the END block in the case the main process dies before the timer process, unearthed by a bug in Cygwin ualarm) 1.86 [2005-12-17] - HiRes.t:s/ok 32/ok 33/, from Dominic Dunlop - tighten up the clock() test marginally by requiring non-negative - clock_nanosleep() and clock() doc tweaks 1.85 [2005-12-16] - the interface to clock_nanosleep() is more natural when it is like (hires) time() (instead of like nanosleep), and the .xs implementation of clock_nanosleep() in 1.84 was broken anyway - the semantics of clock() are not quite so silly as I thought, but still somewhat odd, documented as such - additional enhancements to the clock() documentation - add test for clock_nanosleep() (I cannot test this since none of my systems have the function) - add test for clock() 1.84 [2005-12-16] - add clock() which returns the processor time in (floating point) seconds since an arbitrary era - add clock_nanosleep() which suspends the current thread until either absolute time or for relative time - [rt.cpan.org #16486] printf missing value in HiRes.t - add constants CLOCKS_PER_SEC, CLOCK_SOFTTIME, TIMER_ABSTIME - tiny typo fixes 1.83 [2005-11-19] - has_symbol() was wrong since e.g. ITIMER_VIRTUAL is exported via @EXPORT_OK even when it is not available. This is heinous. @EXPORT_OK should be determined at Makefile.PL time. - be more lenient is testing clock_gettime(): allow more slop, and retry up to three times, sleeping a random nap between the retries - human months are one-based (noticed by Anton Berezin) 1.82 [2005-10-06] - CLOCK_REALTIME is an enum value (of the clockid_t enum) in HP-UX (and might be so elsewhere, too), debugged by H. Merijn Brand - include const-c.inc as late as possible (from Randy Kobes, [rt.cpan.org #15552] to avoid undefined usleep() on Win32 1.81 [2005-11-05] - try to be more robust and consistent in the detection of CLOCK_REALTIME and ITIMER_VIRTUAL in HiRes.t: the proper way is sub has_symbol { my $symbol = shift; eval 'import Time::HiRes qw($symbol)'; return 0 unless $@ eq ''; return exists ${"Time::HiRes::$symbol"}; } and then use &FOO_BAR in the test. All these moves are needed because 1) one cannot directly do eval 'Time::HiRes::FOO_BAR' because FOO_BAR might have a true value of zero (or in the general case an empty string or even undef) 2) In case FOO_BAR is not available in this platform, &FOO_BAR avoids the bareword warning - wait more (1.5 seconds instead of 0.1) for the CLOCK_REALTIME test but expect the 'customary' slop of 0.20 instead of 0.25 - fixed inside a comment HAS_POLL -> TIME_HIRES_NANOSLEEP - at the end of HiRest.t tell how close we were to termination 1.80 [2005-11-04] - Gisle noticed a mistake (using HAS_NANOSLEEP) in 1.79 1.79 [2005-11-03] - try nanosleep for emulating usleep -- may help in some weird embedded realtime places which have nanosleep but neither usleep nor select nor poll (doesn't have to be weird embedded realtime place, though -- in many places usleep is nanosleep anyway) - try poll for emulating usleep -- this may help some obscure/old SVR4 places that have neither usleep nor select - a redundant test guard in HiRes.t 1.78 [2005-11-03] - ITIMER_VIRTUAL detection in HiRes.t had problems (that we cannot in the general case fail already at 'use' phase is suboptimal) - fixes to the documentation of clock_gettime() and clock_getres() 1.77 [2005-11-03] - add support for the POSIX clock_gettime() and clock_getres(), if available, either as library calls or as syscalls - be more defensive about missing functionality: break out early (during 'use') if no e.g. clock_getres() is available, and protect our back by trapping those cases also in HiRes.xs - the test added in 1.76 could cause an endless loop e.g. in Solaris, due to mixing of sleep() and alarm() (bad programmer, no cookie!) 1.76 [2005-10-22] - testing for nanosleep had wrong logic which caused nanosleep to become undefined for e.g. Mac OS X - added a test for a core dump that was introduced by Perl 5.8.0 safe signals and was fixed for the time of 5.8.1 (one report of the core dump was [perl #20920]), the test skipped pre-5.8.1. - *cough* s/unanosleep/nanosleep/g; *cough* 1.75 [2005-10-18] - installation patch from Gisle Aas: in Perls 5.8.x and later use MakeMaker INSTALLDIRS value of 'perl' instead of 'site'. 1.74 [2005-09-19] - [cpan #14608] Solaris 8 perl 5.005_03 File::Spec module does not have method rel2abs (the workaround is not to use rel2abs, should not be necessary) - [cpan #14642] U2time wrongly exported on the C API (patch supplied by the reporter, SALVA@cpan.org) - add release dates to Changes 1.73 [2005-08-16] - Time::HiRes::nanosleep support for Solaris [PATCH] (POSIX::uname() not available if building with core perl, from Gisle Aas, via perl5-porters, perl change #25295) 1.72 [2005-07-01] - going back to the 1.68 loader setup (using DynaLoader) since too many weird things starting breaking - fix a typo in José Auguste-Etienne's name 1.71 [2005-06-28] - a thinko in the nanosleep() detection - move more changes stuff from the README to Changes - add -w to the Makefile.PL 1.70 [2005-06-26] - oops in 1.69 about @ISA (not affecting anything but silly) - add copyright 2005 to HiRes.pm - add copyright and license to HiRes.xs - add copyrights 2003, 2004, 2005 to README 1.69 [2005-06-25] - actually run a test for nanosleep (if there is no $Config{d_nanosleep}) since e.g. in AIX 4.2 it seems that one can link in nanosleep() but then calling it fails instantly and sets errno to ENOSYS (Not implemented). This may be fixable in the AIX case by figuring out the right (realtime POSIX?) libs and whatnot, but in the general case running a real test case is better. (Of course, this change will no doubt run into portability problems because of the execution step...) Note that because of hysterical raisins most Perls do NOT have $Config{d_nanosleep} (scanning for it by Configure would in many platforms require linking in things like -lrt, which would in many platforms be a bad idea for Perl itself). (from José Auguste-Etienne) - support XSLoader also since it's much faster (from Alexey Tourbin) - add SEE ALSO (BSD::Resource and Time::TAI64) 1.68 [2005-05-14] - somehow 1.67 had a lot of doubled lines (a major cut-and-paste error suspected), but miraculously it still worked since the doubling took place below the __END__ token - undef Pause() before defining it to avoid redefinition warnings during compilation in case perl.h had already defined Pause() (part of perl change #24271) - minor doc tweaks 1.67 [2005-05-04] - (internal) don't ignore the return value of gettimeofday() - (external) return undef or an empty if the C gettimeofday() fails (affects Time::HiRes gettimeofday() and the hires time())
2006-02-09Add and enable p5-Time-TAI64.kleink1-1/+2
2006-02-09Initial import of p5-Time-TAI 2.10 into the Packages Collection.kleink4-0/+27
This Module makes available to the user functions to convert TAI64 strings to unix timestamps suitable to make time calculations.
2006-02-06Remove a non-existant directory from PLIST.ghen1-2/+1
2006-02-06s/_MOZILLA_USE_GTK2/MOZILLA_USE_GTK2/g, as to silent pkglint (WARN: Variableghen1-2/+2
names starting with an underscore are reserved for internal pkgsrc use). Ok with wiz.
2006-02-06s/${MOZILLA}/sunbird/ in DISTNAME, because this would be wrong for sunbird-gtk1.ghen1-2/+2
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg49-77/+98
2006-02-05Add time/sunbird.ghen1-1/+2
2006-02-05Import Mozilla Sunbird, a stand-alone Calendar application:ghen37-0/+4339
The Sunbird Project is a redesign of the Calendar component. The goal is to produce a cross platform standalone calendar application based on Mozilla's XUL user interface language. At the moment the Sunbird name is a project name. It is not official and may change in the future. The intended user is someone who uses Mozilla Firefox and Mozilla Thunderbird and wants a calendar application based on Mozilla. Ok with wiz. I'll add a -gtk1 version later this week.
2006-02-05Converted to the SUBST framework.rillig2-16/+20
Fixed almost all pkglint warnings.
2006-02-04Made extraction possible even if unzip(1) is not in the PATH. Instead ofrillig1-5/+7
hiding bugs by using unzip || true, test if the needed file has been extracted.
2006-02-04The commands for extracting files should never be called like (unzip) ||rillig1-3/+3
true. That just hides bugs. (Hi wiz.)
2006-01-26Has BROKEN_GETTEXT_DETECTION. Uses msgfmt.joerg1-1/+3
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz11-15/+22
of the shlib major bump. PKGREVISION++ for the dependencies.
2006-01-22Add DragonFly support.joerg2-3/+12
2006-01-22Slightly reorder headers to workaround a bug in regex.h on DragonFly.joerg2-1/+19
2006-01-20Drop maintainership. I can't seriously be the maintainer of so manyjmmv2-4/+4
packages - specially of packages that I haven't touched for a long while or those that other people can handle better than me.
2006-01-13Make this compile on SunOS 5.x.is1-2/+2
2006-01-06DEPENDS and PKGREVISION bumps because db4's library name changed.wiz2-4/+4
2006-01-05Remove duplicate entry from dependency list.hira2-11/+12
2006-01-05Fix installation error. Define AllTarget in Imakefile.hira2-5/+13
Tested on NetBSD/i386 3.0_STABLE.
2006-01-05Change the default for BUILDLINK_DEPMETHOD.qt3-tools from "full" to "build",ghen1-4/+1
without affecting packages that are currently using it. Packages which previously didn't set BUILDLINK_DEPMETHOD to neither "full" nor "build" now set it to "full", but should be checked whether they really need it (comment added). Packages which previously set it to "build" now don't set it anymore. Ok by jlam, wiz.
2006-01-04Express these packages' brokenness with BROKEN_IN=pkgsrc-2005Q4schmonz1-3/+2
rather than PKG_FAIL_REASON, so that they provide useful error messages in build logs, and so that they continue to work on platforms where they aren't broken.
2006-01-02Use flock on DragonFly.joerg2-1/+16
2006-01-02Fix errno. DragonFly support.joerg8-21/+100
2006-01-02Fix errno, use getprogname on DragonFly.joerg2-1/+17
2005-12-31Recursive PKGREVISION bump for gnutls shlib major bump.wiz4-7/+8
Bump BUILDLINK_RECOMMENDED.
2005-12-29add gchore to category makefilegarbled1-1/+2
2005-12-29Import gchore-1.0.garbled4-0/+28
Gchore is a simple tool that tracks your chores, and reminds you to do them on a daily basis. It is not a general todo list, it is better suited for repeating tasks, such as taking out the garbage on mondays.
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-27Lower expectations, both others' and mine: relinquish stewardshipseb1-2/+2
2005-12-26Mark packages for pkgsrc-2005Q4 that don't build on NetBSD/i386schmonz1-1/+4
3.0. If one of these is important to you, please fix it in time for pkgsrc-2006Q1, or it may be removed.
2005-12-12Bump all motif packages for recent openmotif update. The major versionjoerg2-4/+4
of the shared libXm has changed.
2005-12-07Initialisation with stdout has to be done at runtime.joerg2-1/+24
2005-12-06Add DragonFly support.joerg1-2/+2
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig2-4/+4
CONFIGURE_ARGS.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig8-22/+21
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-11-09Substitute "XFce 4" with "Xfce" in DESCR and Makefile's COMMENT.martti4-6/+6
It is a lower-case f according to the official site.
2005-11-09Updated xfce4 to 4.2.3.1martti3-7/+12
* Lots of bug fixes * Translation updates Official ChangeLog is available at: http://www.xfce.org/release_notes/4.2.3.1_changelog.html
2005-11-08Explicitly pull in xpm rather than depending on the base X11 installtv1-2/+2
to supply it.
2005-11-07Removed the buildlink3.mkmartti1-18/+0
I got few private comments that one should not use buildlink3.mk but the standard DEPENDS statement because we do not link against libraries in this case.
2005-11-05Added buildlink3.mk for this package.martti1-0/+18
2005-11-03Fixed wrong use of WRKSRC.rillig4-11/+13
2005-10-23Added RCS Id to patch-ab.rillig2-2/+4
2005-10-22Accept python-2.4 too, from Geert Hendrickx in PR 31887.wiz1-2/+2
2005-10-16Update to 2.4.1: unknown changes.jmmv3-8/+12
2005-09-28Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE,rillig3-7/+7
NO_BUILD, USE_LIBTOOL.