Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-DateTime-Format-Strptime-1.74-lp152.3.2 RPM for noarch

From OpenSuSE Leap 15.2 for noarch

Name: perl-DateTime-Format-Strptime Distribution: openSUSE Leap 15.2
Version: 1.74 Vendor: openSUSE
Release: lp152.3.2 Build date: Fri Sep 20 20:15:12 2019
Group: Development/Libraries/Perl Build host: lamb16
Size: 102103 Source RPM: perl-DateTime-Format-Strptime-1.74-lp152.3.2.src.rpm
Packager: https://bugs.opensuse.org
Url: http://search.cpan.org/dist/DateTime-Format-Strptime/
Summary: Parse and format strp and strf time patterns
This module implements most of 'strptime(3)', the POSIX function that is
the reverse of 'strftime(3)', for 'DateTime'. While 'strftime' takes a
'DateTime' and a pattern and returns a string, 'strptime' takes a string
and a pattern and returns the 'DateTime' object associated.

Provides

Requires

License

Artistic-2.0

Changelog

* Fri Aug 04 2017 coolo@suse.com
  - updated to 1.74
    see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
    1.74     2017-08-03
    - Fix text to not rely on a very specific exception message from Specio. This
      was broken in 0.39. Reported by Slaven Rezić. GH #18.
* Thu May 25 2017 coolo@suse.com
  - updated to 1.73
    see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
    1.73     2017-01-31
    - The format_datetime now checks that the object it is given isa DateTime
      object. Implemented by Mohammad S Anwar. GitHub #17.
    1.72     2017-01-24
    - Require DateTime::Locale 1.05. This fixes some test failures seen on CPAN
      Testers. Also require DateTime::TimeZone 2.09 because you should really
      update this on a regular basis.
    - Require Specio 0.33 to fix other test failures seen on CPAN (I hope).
    1.71     2017-01-24
    - By default, the word boundary checks added in 1.69 are now off. You can
      enable them by passing "strict => 1" to the constructor. This was reported
      as an issue by Toby Corkindale as GitHub #15.
    - Switched from Params::Validate to Params::ValidationCompiler.
* Mon Dec 12 2016 coolo@suse.com
  - updated to 1.70
    see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
    1.70     2016-12-10
    - Altered the conversion specifier %z to accept ±HH, ±HHMM, ±HH:MM and Z.
      Previously only ±HHMM where accepted. PR from Christian Hansen, GitHub #13.
    1.69     2016-12-04 (TRIAL RELEASE)
    - The word boundary check supposedly added in 1.67 didn't really work
      properly, and still matched too much. For example, the pattern "%d-%m-%y"
      would match "2016-11-30" and turn it into November 16, 2030. This also had
      problems at the end of strings, so that the same pattern would improperly
      match "30-11-2016" as November 30, 2020. Reported by Erik Huelsmann. GitHub
      [#11].
    - Added docs for several formats which had long been supported but not
      documented. These are %P, %c, %x, and %X. Reported by Alexander
      Hartmaier. GH #10.
* Sat Dec 03 2016 chris@computersalat.de
  - fix deps
    * perl(DateTime::Locale) >= 0.45 (not 0.450000)
* Mon May 23 2016 coolo@suse.com
  - updated to 1.68
    see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
    1.68     2016-05-08
    - Author tests are no longer in t/. This makes running tests for non-authors
      much faster. Requested by Kent Fredric. RT #114237.
* Mon Apr 04 2016 coolo@suse.com
  - updated to 1.67
    see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
    1.67     2016-03-31
    - Fixed a regression introduced in 1.60. Older versions of this library would
      match dates pretty match anywhere in a string, so "%Y-%m-%d" would match a
      string like "abcd1234-12-30efgh". This is probably _too_ permissive, but we
      definitely want to match on word boundaries so that we match
      "log.2016-03-31". Based on a PR from YASUTAKE Kiyoshi. GitHub #3.
    1.66     2016-03-27
    - Added a zone_map constructor argument. This lets you supply a mapping for
      ambiguous time zone abbreviations. Based on a patch from Douglas Wilson. RT
      [#74762].
* Tue Mar 22 2016 coolo@suse.com
  - updated to 1.65
    see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
    1.65     2016-03-15
    - Updated zone short name parsing to handle names like "+07", which were
      introduced in the latest IANA time zone database release.
* Tue Mar 08 2016 coolo@suse.com
  - updated to 1.64
    see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
    1.64     2016-02-21
    - Changed how a string that contains separate epoch and nanosecond fields is
      turned into a DateTime object in order to deal with changes coming in the
      next DateTime release.
* Thu Jan 14 2016 coolo@suse.com
  - updated to 1.63
    see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
    1.63     2016-01-13
    [BUG FIXES]
    - The behaviour of silently ignoring text after the matching part was
      lost in the rewrite. This has been restored. Patch by Dagfinn Ilmari
      Mannsåker. RT #111155.
* Sat Dec 26 2015 coolo@suse.com
  - updated to 1.62
    see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
    1.62     2015-12-19
    [BUG FIXES]
    - When on_error was set to something that did not die (including the default
      error handling), calling ->parse_datetime with some bad inputs could cause
      the module to error out internally by trying to call methods on an undefined
      value instead of returning undef. Reported by Mike Dorman. RT #110247.
* Sun Nov 15 2015 coolo@suse.com
  - updated to 1.61
    see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
    1.61     2015-11-13
    [BUG FIXES]
    - If you loaded this module with warnings globally enabled ("perl -w", which
      you should never do), then you'd get a warning about the import subroutine
      being redefined. This broke the Package::DeprecationManager API for turning
      off deprecation warnings. This has been fixed in
      Package::DeprecationManager 0.15. Reported by Martin. RT #108871.
* Mon Nov 09 2015 coolo@suse.com
  - updated to 1.60
    see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
    1.60     2015-11-07
    - This release is identical to the prior trial release. The changes for the
      trial releases are reproduced below for convenience.
    [BACKWARDS INCOMPATIBILITIES]
    - The error messages for various types of failures have changed.
    - The never-documented diagnostic parameter for the constructor has been
      removed.
    - The never-documented feature to allow you to use arbitrary DateTime.pm
      methods in the parsing pattern has been removed. This never made much sense
      anyway, since most DateTime.pm methods are not constructor params, but they
      were used that way.
    - Using the pattern, locale, and time_zone to set the respective attribute is
      now deprecated. Make a new object instead of changing one of these values.
    [BUG FIXES]
    - Fixed a warning from the tests with newer Perl versions. RT #107620.
    - Clarified docs to note that %Y and %G require 4-digit years. Reported by
      Karen Etheridge. RT #103147.
    - Using the 24-hour token (%H) with an AM/PM specifier (%p) now leads to an
      error if you try to parse something like "23:01 AM". Reported by Ric
      Signes. RT #92445.
    1.59     2015-10-25 (TRIAL RELEASE)
    - The previous release accidentally included an old version of Strptime.pm in
      the root dir, causing all sorts of chaos and test failures.
    1.58     2015-10-18 (TRIAL RELEASE)
    - This release is a substantial rewrite. Please test it and file bugs for any
      unintentional breakage.
    * The error messages for various types of failures have changed.
    * The never-documented diagnostic parameter for the constructor has been
      removed.
    * The never-documented feature to allow you to use arbitrary DateTime.pm
      methods in the parsing pattern has been removed. This never made much sense
      anyway, since most DateTime.pm methods are not constructor params, but they
      were used that way.
    * Using the pattern, locale, and time_zone to set the respective attribute is
      now deprecated. Make a new object instead of changing one of these values.
    - Fixed a warning from the tests with newer Perl versions. RT #107620.
    - Clarified docs to note that %Y and %G require 4-digit years. Reported by
      Karen Etheridge. RT #103147.
* Mon Oct 05 2015 coolo@suse.com
  - updated to 1.57
    see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
    1.57     2015-10-04
    - Make all tests pass with both the current DateTime::Locale and the upcoming
      new version (currently still in trial releases).

Files

/usr/lib/perl5/vendor_perl/5.26.1/DateTime
/usr/lib/perl5/vendor_perl/5.26.1/DateTime/Format
/usr/lib/perl5/vendor_perl/5.26.1/DateTime/Format/Strptime
/usr/lib/perl5/vendor_perl/5.26.1/DateTime/Format/Strptime.pm
/usr/lib/perl5/vendor_perl/5.26.1/DateTime/Format/Strptime/Types.pm
/usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi
/usr/share/doc/packages/perl-DateTime-Format-Strptime
/usr/share/doc/packages/perl-DateTime-Format-Strptime/CONTRIBUTING.md
/usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
/usr/share/doc/packages/perl-DateTime-Format-Strptime/README.md
/usr/share/doc/packages/perl-DateTime-Format-Strptime/bench
/usr/share/licenses/perl-DateTime-Format-Strptime
/usr/share/licenses/perl-DateTime-Format-Strptime/LICENSE
/usr/share/man/man3/DateTime::Format::Strptime.3pm.gz
/usr/share/man/man3/DateTime::Format::Strptime::Types.3pm.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 11:50:38 2024