perl-DateTime-Locale/perl-DateTime-Locale.spec

144 lines
4.9 KiB
RPMSpec
Raw Normal View History

2011-08-18 15:13:22 +00:00
Name: perl-DateTime-Locale
2016-06-27 09:58:12 +00:00
Version: 1.05
Release: 2%{?dist}
2011-08-18 15:13:22 +00:00
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
2015-05-28 09:19:59 +00:00
# Build
BuildRequires: make
2015-01-13 08:38:49 +00:00
BuildRequires: perl
BuildRequires: perl-generators
2015-05-28 09:19:59 +00:00
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
BuildRequires: perl(strict)
BuildRequires: perl(warnings)
# Runtime
2012-11-13 14:34:58 +00:00
BuildRequires: perl(Carp)
# Dist::CheckConflicts 0.02 is optionaly used from Makefile.PL, but it has no
# meaning in minimal build root without useless Perl modules.
BuildRequires: perl(Exporter)
2016-06-20 08:16:56 +00:00
BuildRequires: perl(List::Util) >= 1.45
BuildRequires: perl(Params::Validate)
2015-05-28 09:19:59 +00:00
# Tests only
BuildRequires: perl(base)
2015-01-13 08:38:49 +00:00
BuildRequires: perl(File::Spec)
BuildRequires: perl(Test::Fatal)
2015-05-28 09:19:59 +00:00
BuildRequires: perl(Test::More) >= 0.96
BuildRequires: perl(Test::Requires)
BuildRequires: perl(Test::Warnings)
BuildRequires: perl(utf8)
2015-01-13 08:38:49 +00:00
# Optional tests:
2015-05-28 09:19:59 +00:00
BuildRequires: perl(CPAN::Meta) >= 2.120900
BuildRequires: perl(CPAN::Meta::Prereqs)
BuildRequires: perl(Storable)
2015-05-28 09:19:59 +00:00
Requires: perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version))
Requires: perl(Dist::CheckConflicts) >= 0.02
2011-08-18 15:13:22 +00:00
# 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
2012-11-13 14:34:58 +00:00
Conflicts: perl-DateTime <= 1:0.7000-3.fc16
2011-08-18 15:13:22 +00:00
2015-05-28 09:19:59 +00:00
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Dist::CheckConflicts\\)$
2011-08-18 15:13:22 +00:00
%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}
%build
2015-05-28 09:19:59 +00:00
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
2015-01-13 08:38:49 +00:00
make %{?_smp_mflags}
2011-08-18 15:13:22 +00:00
%install
2015-05-28 09:19:59 +00:00
make pure_install DESTDIR=%{buildroot}
%{_fixperms} %{buildroot}/*
2011-08-18 15:13:22 +00:00
%check
2015-01-13 08:38:49 +00:00
make test
2011-08-18 15:13:22 +00:00
%files
2015-05-28 09:19:59 +00:00
%license LICENSE LICENSE.cldr
2016-03-29 14:12:16 +00:00
%doc Changes CONTRIBUTING.md README.md
2011-08-18 15:13:22 +00:00
%{perl_vendorlib}/*
%{_mandir}/man3/*
%changelog
* Wed Jul 13 2016 Petr Pisar <ppisar@redhat.com> - 1.05-2
- Simplify optional build-time dependencies
2016-06-27 09:58:12 +00:00
* Mon Jun 27 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.05-1
- 1.05 bump
2016-06-20 08:16:56 +00:00
* Mon Jun 20 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.04-1
- 1.04 bump
2016-05-15 23:10:50 +00:00
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.03-2
- Perl 5.24 rebuild
2016-03-29 14:12:16 +00:00
* Tue Mar 29 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.03-1
- 1.03 bump
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.02-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2015-12-11 12:26:21 +00:00
* Fri Dec 11 2015 Petr Šabata <contyk@redhat.com> - 1.02-1
- 1.02 bump
* Tue Nov 10 2015 Petr Šabata <contyk@redhat.com> - 1.01-1
- 1.01 bump, lots of backwards incompatible changes
2015-09-29 13:07:57 +00:00
* Tue Sep 29 2015 Petr Šabata <contyk@redhat.com> - 0.92-1
- 0.92 bump, no changes (yet)
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.46-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-06-06 17:57:39 +00:00
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.46-2
- Perl 5.22 rebuild
2015-05-28 09:19:59 +00:00
* Wed May 27 2015 Petr Šabata <contyk@redhat.com> - 0.46-1
- 0.46 bump
2015-01-13 08:38:49 +00:00
* Tue Jan 13 2015 Petr Pisar <ppisar@redhat.com> - 0.45-11
- Modernize spec file
2014-08-29 10:34:14 +00:00
* Fri Aug 29 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.45-10
- Perl 5.20 rebuild
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.45-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.45-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-07-26 19:26:24 +00:00
* Fri Jul 26 2013 Petr Pisar <ppisar@redhat.com> - 0.45-7
- Perl 5.18 rebuild
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.45-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2012-11-13 14:34:58 +00:00
* Tue Nov 13 2012 Marcela Mašláňová <mmaslano@redhat.com> - 0.45-5
- Add BR, fix whitespaces
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.45-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-06-19 08:21:38 +00:00
* Tue Jun 19 2012 Petr Pisar <ppisar@redhat.com> - 0.45-3
- Perl 5.16 rebuild
* 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
2011-08-18 15:13:22 +00:00
* Mon Aug 15 2011 Iain Arnell <iarnell@gmail.com> 0.45-1
- Specfile autogenerated by cpanspec 1.78.