Bug fixes Fixed a bug where GlobalCnf wasn't working. Peter Edwards Improved error messages in a few cases. Fixed a bug where one invalid date/timezone check was ignored. Morten Bjornsvik Fixed a bug where '$base2 = new Date::Manip::Base $base1' wasn't working. RT 67143 Fixed a bug where passing dates in to the Recur->dates method failed. RT 67144 Fixed a bug where the mode wasn't being preserved correctly for a delta. RT 67150 Fixed a bug in recurrences where a base date outside of a date range with a very uncommon recurrence format would not work correctly. Fixed a problem where the '%s' printf option didn't work in GMT. Time zone fixes Newest zoneinfo data (tzdata 2011f) OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Date-Manip?expand=0&rev=25
91 lines
2.9 KiB
RPMSpec
91 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package perl-Date-Manip
|
|
#
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
%bcond_with pod
|
|
|
|
Name: perl-Date-Manip
|
|
%define cpan_name Date-Manip
|
|
Summary: Date manipulation routines
|
|
Version: 6.23
|
|
Release: 1
|
|
License: GPL+ or Artistic
|
|
Group: Development/Libraries/Perl
|
|
Url: http://search.cpan.org/dist/Date-Manip/
|
|
Source: %{cpan_name}-%{version}.tar.bz2
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%{perl_requires}
|
|
BuildRequires: perl >= 5.10
|
|
BuildRequires: perl(Module::Build)
|
|
BuildRequires: perl-macros
|
|
%if %{with pod}
|
|
BuildRequires: perl(Test::Pod)
|
|
BuildRequires: perl(Test::Pod::Coverage)
|
|
%endif
|
|
BuildRequires: perl(Carp)
|
|
BuildRequires: perl(IO::File)
|
|
BuildRequires: perl(Test::Inter)
|
|
BuildRequires: perl(YAML::Syck)
|
|
Requires: perl(Carp)
|
|
Requires: perl(IO::File)
|
|
Requires: perl(YAML::Syck)
|
|
Obsoletes: perl-DateManip < %{version}
|
|
Provides: perl-DateManip = %{version}
|
|
|
|
%description
|
|
Date::Manip is a series of modules designed to make any common date/time
|
|
manipulation easy to do. Operations such as comparing two times,
|
|
calculating a time a given amount of time from another, or parsing
|
|
international times are all easily done. From the very beginning, the main
|
|
focus of Date::Manip has been to be able to do ANY desired date/time
|
|
operation easily, not necessarily quickly. Also, it is definitely oriented
|
|
towards the type of operations we (as people) tend to think of rather than
|
|
those operations used routinely by computers. There are other modules that
|
|
can do a subset of the operations available in Date::Manip much quicker
|
|
than those presented here, so be sure to read the section SHOULD I USE
|
|
DATE::MANIP in the Date::Manip::Misc document before deciding which of the
|
|
Date and Time modules from CPAN is for you.
|
|
|
|
Authors:
|
|
--------
|
|
Sullivan Beck <sbeck@cpan.org>
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
%{__perl} Build.PL installdirs=vendor
|
|
./Build
|
|
|
|
%check
|
|
./Build test
|
|
|
|
%install
|
|
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
|
|
%perl_gen_filelist
|
|
|
|
%clean
|
|
%{__rm} -rf $RPM_BUILD_ROOT
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,-)
|
|
%doc HISTORY LICENSE README README.first
|
|
|
|
%changelog
|