./time/p5-Time-Format, Easy-to-use date/time formatting

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 1.16nb3, Package name: p5-Time-Format-1.16nb3, Maintainer: pkgsrc-users

Time::Format provides a very easy way to format dates and times. The
formatting functions are tied to hash variables, so they can be used
inside strings as well as in ordinary expressions. The formatting
codes used are meant to be easy to remember, use, and read. They
follow a simple, consistent pattern. If I've done my job right, once
you learn the codes, you should never have to refer to the
documentation again. A quick-reference page is included, just in
case. ;-)

Time::Format can also format DateTime objects, and strings created
with Date::Manip.

Also provided is a tied-hash interface to POSIX::strftime and
Date::Manip::UnixDate.

If the I18N::Langinfo module is available, Time::Format provides
weekday and month names in a language appropriate for your locale.


Required to run:
[lang/perl5] [devel/p5-Date-Manip]

Required to build:
[devel/p5-Module-Build]

Master sites: (Expand)

Filesize: 46.409 KB

Version history: (Expand)


CVS history: (Expand)


   2023-07-06 11:43:03 by Thomas Klausner | Files touched by this commit (2483)
Log message:
*: recursive bump for perl 5.38
   2022-06-28 13:38:00 by Thomas Klausner | Files touched by this commit (3952)
Log message:
*: recursive bump for perl 5.36
   2021-10-26 13:24:47 by Nia Alarie | Files touched by this commit (263)
Log message:
time: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes
   2021-10-07 17:04:23 by Nia Alarie | Files touched by this commit (263)
Log message:
time: Remove SHA1 hashes for distfiles
   2021-05-24 21:56:06 by Thomas Klausner | Files touched by this commit (3575)
Log message:
*: recursive bump for perl 5.34
   2020-09-07 19:55:20 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
p5-Time-Format: update to 1.16.

1.16  2020 February 19
        - Fix a bug in the interface to Time::Format_XS.
          Using the time_format function with only a format argument (i.e., to use
          the current time) would fail (fatally) because the XS interface code for
          time_format requires two arguments.
   2020-08-31 20:13:29 by Thomas Klausner | Files touched by this commit (3631)
Log message:
*: bump PKGREVISION for perl-5.32.
   2019-09-13 11:48:33 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 1.15

Upstream changes:
1.15  2019 July 26
        - Fix a bug in the test suite due to floating-point rounding.  Thanks to
          Slaven Rezic (see CPAN RT bug 130150:
                              https://rt.cpan.org/Ticket/Display.html?id=130150)
        - Also improved __DATA__ handling, so as not to hold a lock on the library.

1.14  2019 July 22
        - Fix CPAN RT bug 87484 (https://rt.cpan.org/Ticket/Display.html?id=87484),
          concerning very small floating-point values (e.g. "2.1458e-06").
        - Fix CPAN RT Bug 95447, concerning floating-point numerical time values.
        - Fix CPAN RT Bug 121367, concerning loading perl-only routines after \ 
forking.
          This might (?) also fix bug 74880, but I can't reproduce that.
        - Skip locale tests on openbsd platform.
        - Fix accented strings in locale.t

1.13  2019 July 18
        - Fix CPAN RT bug 85001.
          This was a problem in the test suite only; no code changes were made
          in the main module lib/Time/Format.pm.
          The problem existed in how the test suite checked for whether certain
          CPAN modules were installed, and especially in how it attempted to
          unload them from memory afterward.
          Thanks to Sendu Bala for reporting this -- and to Jim Keenan for
          pushing me to fix this.