81 lines
2.8 KiB
RPMSpec
81 lines
2.8 KiB
RPMSpec
![]() |
# vim: set sw=4 ts=4 et nu:
|
||
|
# norootforbuild
|
||
|
|
||
|
Name: perl-DateTime-Set
|
||
|
Version: 0.28
|
||
|
Release: 0
|
||
|
Summary: Datetime sets and set math
|
||
|
Source: http://search.cpan.org/CPAN/authors/id/F/FG/FGLOCK/DateTime-Set-%{version}.tar.gz
|
||
|
URL: http://search.cpan.org/dist/DateTime-Set/
|
||
|
Group: Development/Libraries/Perl
|
||
|
License: Perl License
|
||
|
BuildRoot: %{_tmppath}/build-%{name}-%{version}
|
||
|
Requires: perl = %{perl_version}
|
||
|
BuildRequires: make perl
|
||
|
BuildRequires: perl(DateTime)
|
||
|
BuildRequires: perl(Set::Infinite)
|
||
|
# a BuildRequires/Requires would create a cycle, and it is not absolutely necessary:
|
||
|
#BuildRequires: perl(DateTime::Event::Recurrence)
|
||
|
Requires: perl(DateTime)
|
||
|
Requires: perl(Set::Infinite)
|
||
|
Provides: perl-DateTime-Span = %{version}
|
||
|
Provides: perl-DateTime-SpanSet = %{version}
|
||
|
|
||
|
%description
|
||
|
DateTime::Set is a module for datetime sets. It can be used to handle two
|
||
|
different types of sets.
|
||
|
|
||
|
The first is a fixed set of predefined datetime objects. For example, if we
|
||
|
wanted to create a set of datetimes containing the birthdays of people in our
|
||
|
family for the current year.
|
||
|
|
||
|
The second type of set that it can handle is one based on a recurrence, such as
|
||
|
"every Wednesday", or "noon on the 15th day of every month". This type of set
|
||
|
can have fixed starting and ending datetimes, but neither is required. So our
|
||
|
"every Wednesday set" could be "every Wednesday from the beginning of time
|
||
|
until the end of time", or "every Wednesday after 2003-03-05 until the end of
|
||
|
time", or "every Wednesday between 2003-03-05 and 2004-01-07".
|
||
|
|
||
|
This module also supports set math operations, so you do things like create a
|
||
|
new set from the union or difference of two sets, check whether a datetime is a
|
||
|
member of a given set, etc.
|
||
|
|
||
|
This is different from a DateTime::Span, which handles a continuous range as
|
||
|
opposed to individual datetime points. There is also a module DateTime::SpanSet
|
||
|
to handle sets of spans.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n "DateTime-Set-%{version}"
|
||
|
%__sed -i '/^auto_install/d' Makefile.PL
|
||
|
|
||
|
%build
|
||
|
%__perl Makefile.PL PREFIX="%{_prefix}"
|
||
|
%__make %{?jobs:-j%{jobs}}
|
||
|
|
||
|
%install
|
||
|
%perl_make_install
|
||
|
%perl_process_packlist
|
||
|
|
||
|
%check
|
||
|
%__make test
|
||
|
|
||
|
%clean
|
||
|
%{?buildroot:%__rm -rf "%{buildroot}"}
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
%doc Changes README
|
||
|
%dir %{perl_vendorlib}/DateTime
|
||
|
%{perl_vendorlib}/DateTime/Set.pm
|
||
|
%{perl_vendorlib}/DateTime/Span.pm
|
||
|
%{perl_vendorlib}/DateTime/SpanSet.pm
|
||
|
%{perl_vendorlib}/Set/Infinite
|
||
|
%dir %{perl_vendorarch}/auto/DateTime
|
||
|
%{perl_vendorarch}/auto/DateTime/Set
|
||
|
%doc %{perl_man3dir}/DateTime::Set.%{perl_man3ext}%{ext_man}
|
||
|
%doc %{perl_man3dir}/DateTime::Span.%{perl_man3ext}%{ext_man}
|
||
|
%doc %{perl_man3dir}/DateTime::SpanSet.%{perl_man3ext}%{ext_man}
|
||
|
%doc %{perl_man3dir}/Set::Infinite::*.%{perl_man3ext}%{ext_man}
|
||
|
/var/adm/perl-modules/%{name}
|
||
|
|