perl-DateTime-Format-Mail/perl-DateTime-Format-Mail.spec

108 lines
3.2 KiB
RPMSpec
Raw Normal View History

Name: perl-DateTime-Format-Mail
Version: 0.3001
Release: 5%{?dist}
Summary: Convert between DateTime and RFC2822/822 formats
Group: Development/Libraries
License: GPL+ or Artistic
URL: http://search.cpan.org/dist/DateTime-Format-Mail
Source0: http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/DateTime-Format-Mail-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl(Module::Build), perl(DateTime)
BuildRequires: perl(Params::Validate) >= 0.67, perl(Test::More) >= 0.47
BuildRequires: perl(File::Find::Rule)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
# DateTime >= 0.1705 plays havoc with rpm's versioning system
Source99: filter-requires.sh
%define __perl_requires %{SOURCE99}
%description
RFCs 2822 and 822 specify date formats to be used by email. This module parses
and emits such dates.
RFC2822 (April 2001) introduces a slightly different format of date than that
used by RFC822 (August 1982). The main correction is that the preferred format
is more limited, and thus easier to parse programmatically.
Despite the ease of generating and parsing perfectly valid RFC822 and RFC2822
people still get it wrong. This module aims to correct that.
%prep
%setup -q -n DateTime-Format-Mail-%{version}
# POD doesn't like E<copy> very much...
perl -pi -e 's/E<copy>/(C)/' `find lib/ -type f`
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags}
# American English, bitte
mv LICENCE LICENSE
%install
rm -rf %{buildroot}
make pure_install PERL_INSTALL_ROOT=%{buildroot}
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null ';'
chmod -R u+w %{buildroot}/*
%check
# we don't have a SIGNATURE, regardless of perl(Test::Signature) being around
rm t/00signature.t
make test
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
2008-01-25 18:31:01 +00:00
%doc Artistic COPYING LICENSE Changes AUTHORS README CREDITS
%doc t/sample_dates t/invalid.t
%{perl_vendorlib}/*
%{_mandir}/man3/*.3*
%changelog
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3001-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3001-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2008-02-28 13:13:34 +00:00
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.3001-3
- Rebuild for perl 5.10 (again)
2008-01-25 18:31:01 +00:00
* Fri Jan 25 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.3001-2
- no more notes/ directory
* Thu Jan 24 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.3001-1
- 0.3001
- fix license tag
- rebuild against new perl
2006-09-01 04:06:59 +00:00
* Thu Aug 31 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.30-4
2006-09-01 04:01:34 +00:00
- bump for mass rebuild
2006-08-07 01:39:18 +00:00
* Sun Aug 06 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.30-3
- bump for build and release
* Sun Aug 06 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.30-2
- add missing br: perl(File::Find::Rule)
- additional files from the test suite added to %%doc
* Fri Aug 04 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.30-1
- Initial spec file for F-E