summaryrefslogtreecommitdiff
path: root/time/p5-Time-Local
AgeCommit message (Collapse)AuthorFilesLines
2009-01-11Update from version 1.18nb1 to 1.19.1 (upstream version 1.1901).he2-8/+7
Upstream changes: 1.1901 2008-11-01 - Test fixes only. The tests planned the wrong number of tests on 32-bit platforms, causing failures. 1.19 2008-11-01 - The calculation of the maximum integer size was using $Config{intsize} when it should use $Config{ivsize}. Apparently on a 64-bit platform intsize can be 4 when ivsize is 8. Based on a patch from Jan Dubois.
2008-10-19Bump the PKGREVISION for all packages which depend directly on perl,he1-1/+2
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
2008-07-18- updated to 1.18rhaen2-7/+6
ChangeLog: 1.18 2007-10-31 - Added pod and pod coverage tests. - Doing a new release to provide a conformant META.yml file. - This release contains no code changes from 1.17.
2007-10-25Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mkjlam1-1/+0
can handle packages having no PLIST files.
2007-05-06Updated to version 1.17.heinz2-8/+11
Pkgsrc changes: - MAINTAINER cannot take care of the package anymore. - Marked the package as supporting installation to DESTDIR. - It's a pure Perl package. Changes since version 1.12: =========================== 1.17 2007-01-25 - I made the same test count mistake as was in 1.14 again. This release fixes the test count (again) when running on a system that doesn't support negative epochs (like Win32). Patched by Kenichi Ishigaki (again). 1.16 2007-01-23 - The leap year fix in 1.14 was pretty broken, as it checked after converting the year to Perl's internal (year - 1900) format. 1.15 2007-01-22 - Fix Local.t test count when running on a system that doesn't support negative epochs (like Win32). Patched by Kenichi Ishigaki. 1.14 2007-01-21 - Fixed leap year check to produce the right answer for years outside of the 32-bit epoch range (such as 1900 and 2100). See rt.perl.org #31241. Reported by Nathan Zook. 1.13 2006-08-09 - Switched to using Test::More for the tests. - Fixed a bug that occurred around the DST change for Europe/London (and probably other time zones with a positive UTC offset). If given, the hour immediately after the change (2:00 AM for Europe/London), then the returned epoch was 3600 seconds too large. Reported by Roger Picton. See RT #11662.
2006-04-16Import p5-Time-Local from pkgsrc-wip. Packaged by Roman Kulik.minskim4-0/+28
These routines are the inverse of built-in perl functions localtime() and gmtime(). They accept a date as a six-element array, and return the corresponding time(2) value in seconds since the system epoch (Midnight, January 1, 1970 UTC on Unix, for example). This value can be positive or negative, though POSIX only requires support for positive values, so dates before the system's epoch may not work on all operating systems.