12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- Name: perl-DateTime-Locale
- Version: 0.45
- Release: 1%{?_dist_release}
- Summary: Localization support for DateTime.pm
- # package itself is 'same terms as Perl'
- # modules under DateTime/Locale/ are generated from data provided by the CLDR project
- # tools/t/test-data contains CLDR data files under MIT license
- License: (GPL+ or Artistic) and MIT
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/DateTime-Locale/
- Source0: http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Locale-%{version}.tar.gz
- BuildArch: noarch
- BuildRequires: perl >= 0:5.006
- BuildRequires: perl(List::MoreUtils)
- BuildRequires: perl(Module::Build)
- BuildRequires: perl(Params::Validate) >= 0.91
- BuildRequires: perl(Test::More)
- BuildRequires: perl(Test::Output)
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- # perl-DateTime-Locale used to be bundled with perl-DateTime
- # ideally, this would be resolved with
- # Requires: perl-DateTime >= 2:0.70-1
- # but DateTime::Locale doesn't strictly require DateTime
- # and this would introduce circular build dependencies
- Conflicts: perl-DateTime <= 1:0.7000-3.fc16
- %{?perl_default_filter}
- %description
- DateTime::Locale is primarily a factory for the various locale sub-classes.
- It also provides some functions for getting information on all the
- available locales.
- %prep
- %setup -q -n DateTime-Locale-%{version}
- iconv -f iso-8859-1 -t utf-8 Changes >Changes.iconv \
- && touch -r Changes Changes.iconv \
- && mv -f Changes.iconv Changes
- %build
- %{__perl} Build.PL installdirs=vendor
- ./Build
- %install
- rm -rf %{buildroot}
- ./Build install destdir=%{buildroot} create_packlist=0
- find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
- %{_fixperms} %{buildroot}/*
- %check
- ./Build test
- %clean
- rm -rf %{buildroot}
- %files
- %doc Changes LICENSE LICENSE.cldr README
- %{perl_vendorlib}/*
- %{_mandir}/man3/*
- %changelog
- * Tue Mar 06 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.45-1
- - initial build for Vine Linux
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.45-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Mon Aug 15 2011 Iain Arnell <iarnell@gmail.com> 0.45-1
- - Specfile autogenerated by cpanspec 1.78.
|