Update to 1.25

- New upstream release 1.25
  - DateTime->from_object would die if given a DateTime::Infinite object; now
    it returns another DateTime::Infinite object (CPAN RT#112712)
- Simplify find command using -empty and -delete
This commit is contained in:
Paul Howarth 2016-03-07 09:08:37 +00:00
parent b7c39171ed
commit 5188a602d0
2 changed files with 9 additions and 3 deletions

View File

@ -1,6 +1,6 @@
Name: perl-DateTime
Epoch: 2
Version: 1.24
Version: 1.25
Release: 1%{?dist}
Summary: Date and time object for Perl
License: Artistic 2.0
@ -83,7 +83,7 @@ perl Build.PL --installdirs=vendor --optimize="%{optflags}"
%install
./Build install --destdir=%{buildroot} --create_packlist=0
find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f {} \;
find %{buildroot} -type f -name '*.bs' -empty -delete
%{_fixperms} %{buildroot}
%check
@ -101,6 +101,12 @@ find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f {} \;
%{_mandir}/man3/DateTime::LeapSecond.3*
%changelog
* Mon Mar 7 2016 Paul Howarth <paul@city-fan.org> - 2:1.25-1
- Update to 1.25
- DateTime->from_object would die if given a DateTime::Infinite object; now
it returns another DateTime::Infinite object (CPAN RT#112712)
- Simplify find command using -empty and -delete
* Tue Mar 1 2016 Paul Howarth <paul@city-fan.org> - 2:1.24-1
- Update to 1.24
- The last release partially broke $dt->time; if you passed a value to use

View File

@ -1 +1 @@
c8c225a5e48a3c2b1e4cefc93cdd2e0e DateTime-1.24.tar.gz
3343f67ebefb3f082a0067dfaee3b3c8 DateTime-1.25.tar.gz