64 lines
2.1 KiB
RPMSpec
64 lines
2.1 KiB
RPMSpec
|
Name: perl-Date-ISO8601
|
||
|
Version: 0.004
|
||
|
Release: 1%{?dist}
|
||
|
Summary: Three ISO 8601 numerical calendars
|
||
|
License: GPL+ or Artistic
|
||
|
Group: Development/Libraries
|
||
|
URL: http://search.cpan.org/dist/Date-ISO8601/
|
||
|
Source0: http://www.cpan.org/modules/by-module/Date/Date-ISO8601-%{version}.tar.gz
|
||
|
BuildArch: noarch
|
||
|
BuildRequires: perl >= 0:5.006
|
||
|
BuildRequires: perl(Carp)
|
||
|
BuildRequires: perl(constant)
|
||
|
BuildRequires: perl(Exporter)
|
||
|
BuildRequires: perl(integer)
|
||
|
BuildRequires: perl(Module::Build)
|
||
|
BuildRequires: perl(parent)
|
||
|
BuildRequires: perl(strict)
|
||
|
BuildRequires: perl(Test::More)
|
||
|
BuildRequires: perl(Test::Pod)
|
||
|
BuildRequires: perl(Test::Pod::Coverage)
|
||
|
BuildRequires: perl(warnings)
|
||
|
Requires: perl(Exporter)
|
||
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||
|
|
||
|
%{?perl_default_filter}
|
||
|
|
||
|
%description
|
||
|
The international standard ISO 8601 "Data elements and interchange formats
|
||
|
- Information interchange - Representation of dates and times" defines
|
||
|
three distinct calendars by which days can be labeled. It also defines
|
||
|
textual formats for the representation of dates in these calendars. This
|
||
|
module provides functions to convert dates between these three calendars
|
||
|
and Chronological Julian Day Numbers, which is a suitable format to do
|
||
|
arithmetic with. It also supplies functions that describe the shape of
|
||
|
these calendars, to assist in calendrical calculations. It also supplies
|
||
|
functions to represent dates textually in the ISO 8601 formats. ISO 8601
|
||
|
also covers time of day and time periods, but this module does nothing
|
||
|
relating to those parts of the standard; this is only about labeling days.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n Date-ISO8601-%{version}
|
||
|
|
||
|
%build
|
||
|
%{__perl} Build.PL installdirs=vendor
|
||
|
./Build
|
||
|
|
||
|
%install
|
||
|
./Build install destdir=%{buildroot} create_packlist=0
|
||
|
find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
|
||
|
|
||
|
%{_fixperms} %{buildroot}/*
|
||
|
|
||
|
%check
|
||
|
./Build test
|
||
|
|
||
|
%files
|
||
|
%doc Changes README
|
||
|
%{perl_vendorlib}/*
|
||
|
%{_mandir}/man3/*
|
||
|
|
||
|
%changelog
|
||
|
* Thu Aug 11 2011 Iain Arnell <iarnell@gmail.com> 0.004-1
|
||
|
- Specfile autogenerated by cpanspec 1.78.
|