Tue, 07 May 2024 01:02:38 UTC | login

Information for build perl-DateTime-1.49-3.fc29

ID64057
Package Nameperl-DateTime
Version1.49
Release3.fc29
Epoch2
SummaryDate and time object for Perl
DescriptionDateTime is a class for the representation of date/time combinations. It represents the Gregorian calendar, extended backwards in time before its creation (in 1582). This is sometimes known as the "proleptic Gregorian calendar". In this calendar, the first day of the calendar (the epoch), is the first day of year 1, which corresponds to the date which was (incorrectly) believed to be the birth of Jesus Christ.
Built bydavidlt
State complete
Volume DEFAULT
StartedSun, 22 Jul 2018 16:24:31 UTC
CompletedSun, 22 Jul 2018 18:59:33 UTC
Taskbuild (f29-candidate, perl-DateTime-1.49-3.fc29.src.rpm)
Tags
f29
RPMs
src
perl-DateTime-1.49-3.fc29.src.rpm (info) (download)
riscv64
perl-DateTime-1.49-3.fc29.riscv64.rpm (info) (download)
perl-DateTime-debuginfo-1.49-3.fc29.riscv64.rpm (info) (download)
perl-DateTime-debugsource-1.49-3.fc29.riscv64.rpm (info) (download)
Logs
riscv64
build.log
hw_info.log
mock_output.log
root.log
state.log
Changelog * Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.49-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2:1.49-2 - Perl 5.28 rebuild * Mon May 21 2018 Paul Howarth <paul@city-fan.org> - 2:1.49-1 - Update to 1.49 - Updated the ppport.h with the latest version of Devel::PPPort, which fixes a compilation warning when compiling with 5.27.11 (GH#81) - Switch upstream from search.cpan.org to metacpan.org * Mon Mar 26 2018 Paul Howarth <paul@city-fan.org> - 2:1.48-1 - Update to 1.48 - The last release would die if Sub::Util was not available, but this should just be an optional requirement (GH#77, GH#78) * Mon Mar 26 2018 Paul Howarth <paul@city-fan.org> - 2:1.47-1 - Update to 1.47 - DateTime::Duration->multiply now only allows integer multipliers (GH#73) - Added is_last_day_of_quarter() and is_last_day_of_year() methods (GH#72) - When an exception was thrown while adding a duration, the object could be left in a broken state with the duration partially applied; subsequent addition or subtraction would produce the wrong results (GH#74) - Add patch to support use without Sub::Util (GH#77, GH#78) * Mon Feb 12 2018 Paul Howarth <paul@city-fan.org> - 2:1.46-1 - Update to 1.46 - Fixed the formatting for the CLDR "S" symbol, which in some cases would round up to 1 instead of truncating a value, e.g. the "SSS" symbol would format 999,999,999 nanoseconds as "1.000" (GH#71) * Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.45-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Sun Dec 31 2017 Paul Howarth <paul@city-fan.org> - 2:1.45-1 - Update to 1.45 - Added month_length(), quarter_length() and year_length() methods (GH#70) * Tue Aug 22 2017 Paul Howarth <paul@city-fan.org> - 2:1.44-1 - Update to 1.44 - Added a stringify() method, which does exactly the same thing as stringification overloading does (GH#58) - Added an is_last_day_of_month() method to indicate whether or not an object falls on the last day of its month (GH#60) * Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.43-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.43-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Tue Jun 06 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2:1.43-2 - Perl 5.26 rebuild * Tue May 30 2017 Paul Howarth <paul@city-fan.org> - 2:1.43-1 - Update to 1.43 - Added a small optimization for boolification overloading: rather than relying on a fallback to stringification, we now return true directly, which is a little faster in cases like "if ($might_be_dt) { ... }" - The datetime() method now accepts a single argument to use as the separator between the date and time portion; this defaults to "T" - Drop redundant Group: tag * Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.42-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Mon Dec 26 2016 Paul Howarth <paul@city-fan.org> - 2:1.42-1 - Update to 1.42 - The DateTime::Duration->add and ->subtract methods now accept DateTime::Duration objects; this used to work by accident but is now done intentionally, with docs and tests (GH#50) * Thu Nov 17 2016 Paul Howarth <paul@city-fan.org> - 2:1.41-1 - Update to 1.41 - The DateTime->add and ->subtract methods now accept DateTime::Duration objects; this used to work by accident but is now done intentionally, with docs and tests (GH#45) * Sun Nov 13 2016 Paul Howarth <paul@city-fan.org> - 2:1.40-1 - Update to 1.40 - Switched from RT to the GitHub issue tracker * Mon Sep 19 2016 Paul Howarth <paul@city-fan.org> - 2:1.39-1 - Update to 1.39 - Replaced Params::Validate with Params::ValidationCompiler and Specio - In my benchmarks this makes constructing a new DateTime object about 14% faster - However, it slows down module load time by about 100 milliseconds (1/10 of a second) on my desktop system with a primed cache (so really measuring compile time, not disk load time) - When you pass a locale to $dt->set you will now get a warning suggesting you should use $dt->set_locale instead (CPAN RT#115420) - Bump minimum required Perl to 5.8.4 from 5.8.1 - Use NO_PERLLOCAL=1 so we can use "make install" * Sun Aug 07 2016 Paul Howarth <paul@city-fan.org> - 2:1.36-1 - Update to 1.36 - Require namespace::autoclean 0.19 * Sat Aug 06 2016 Paul Howarth <paul@city-fan.org> - 2:1.35-1 - Update to 1.35 - Use namespace::autoclean in all packages that import anything; without cleaning the namespace, DateTime ends up with "methods" like try and catch (from Try::Tiny), which can lead to very confusing bugs (CPAN RT#115983)