perl-Date-Manip/perl-Date-Manip.spec
Anna Maresova 30631f815d - update to 6.14
* Date::Manip 5.xx and 6.xx are both installed automatically,
   and the correct one will be chosen.
 * Fixed a bug where recurrence handling was broken.  RT 62128
 * documentation was cleaned up to be easier to read, and better
   organized.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Date-Manip?expand=0&rev=16
2010-10-21 13:52:50 +00:00

93 lines
2.9 KiB
RPMSpec

#
# spec file for package perl-Date-Manip (Version 6.13)
#
# Copyright (c) 2010 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.14
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
BuildRequires: perl >= 5.10
BuildRequires: perl(Module::Build)
%if 0%{?suse_version} < 1120
BuildRequires: perl-macros
%endif
%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 = %{perl_version}
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