128 lines
4.2 KiB
RPMSpec
128 lines
4.2 KiB
RPMSpec
# We don't really need ExtUtils::MakeMaker ≥ 6.31
|
|
%global old_eumm %(perl -MExtUtils::MakeMaker -e 'printf "%d\\n", $ExtUtils::MakeMaker::VERSION < 6.31 ? 1 : 0;' 2>/dev/null || echo 0)
|
|
|
|
# Test suite needs patching if we have Test::More < 0.88
|
|
%global old_test_more %(perl -MTest::More -e 'printf "%d\\n", $Test::More::VERSION < 0.88 ? 1 : 0;' 2>/dev/null || echo 0)
|
|
|
|
Name: perl-Perl-OSType
|
|
Version: 1.002
|
|
Release: 240%{?dist}
|
|
Summary: Map Perl operating system names to generic types
|
|
License: GPL+ or Artistic
|
|
Group: Development/Libraries
|
|
URL: http://search.cpan.org/dist/Perl-OSType/
|
|
Source0: http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Perl-OSType-%{version}.tar.gz
|
|
Patch0: Perl-OSType-1.002-old-EU::MM.patch
|
|
Patch1: Perl-OSType-1.002-old-Test::More.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
|
BuildArch: noarch
|
|
BuildRequires: perl(constant)
|
|
BuildRequires: perl(Exporter)
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
BuildRequires: perl(File::Temp)
|
|
BuildRequires: perl(Test::More)
|
|
# Optional tests
|
|
%if !%{defined perl_bootstrap}
|
|
BuildRequires: perl(Pod::Coverage::TrustPod)
|
|
BuildRequires: perl(Test::CPAN::Meta)
|
|
BuildRequires: perl(Test::Pod)
|
|
BuildRequires: perl(Test::Pod::Coverage)
|
|
BuildRequires: perl(Test::Portability::Files)
|
|
%endif
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
|
|
|
%description
|
|
Modules that provide OS-specific behaviors often need to know if the current
|
|
operating system matches a more generic type of operating systems. For example,
|
|
'linux' is a type of 'Unix' operating system and so is 'freebsd'.
|
|
|
|
This module provides a mapping between an operating system name as given by $^O
|
|
and a more generic type. The initial version is based on the OS type mappings
|
|
provided in Module::Build and ExtUtils::CBuilder (thus, Microsoft operating
|
|
systems are given the type 'Windows' rather than 'Win32').
|
|
|
|
%prep
|
|
%setup -q -n Perl-OSType-%{version}
|
|
|
|
# We don't really need ExtUtils::MakeMaker ≥ 6.31
|
|
%if %{old_eumm}
|
|
%patch0 -p1
|
|
%endif
|
|
|
|
# Fix test suite for Test::More < 0.88
|
|
%if %{old_test_more}
|
|
%patch1 -p1
|
|
%endif
|
|
|
|
%build
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
rm -rf %{buildroot}
|
|
make pure_install DESTDIR=%{buildroot}
|
|
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
|
|
find %{buildroot} -depth -type d -exec rmdir {} \; 2>/dev/null
|
|
%{_fixperms} %{buildroot}
|
|
|
|
%check
|
|
%if %{defined perl_bootstrap}
|
|
rm -rf xt
|
|
%endif
|
|
make test TEST_FILES="t/*.t xt/*/*.t"
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc Changes LICENSE README
|
|
%{perl_vendorlib}/Perl/
|
|
%{_mandir}/man3/Perl::OSType.3pm*
|
|
|
|
%changelog
|
|
* Fri Aug 17 2012 Petr Pisar <ppisar@redhat.com> - 1.002-240
|
|
- Increase release to replace perl sub-package (bug #848961)
|
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.002-13
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
* Tue Jul 10 2012 Petr Pisar <ppisar@redhat.com> - 1.002-12
|
|
- Perl 5.16 re-rebuild of bootstrapped packages
|
|
|
|
* Wed Jun 06 2012 Petr Pisar <ppisar@redhat.com> - 1.002-11
|
|
- Perl 5.16 rebuild
|
|
|
|
* Fri Jun 01 2012 Petr Pisar <ppisar@redhat.com> - 1.002-10
|
|
- Skip author tests on bootstrap
|
|
|
|
* Thu Jan 12 2012 Paul Howarth <paul@city-fan.org> - 1.002-9
|
|
- Fedora 17 mass rebuild
|
|
|
|
* Wed Aug 17 2011 Paul Howarth <paul@city-fan.org> - 1.002-8
|
|
- BR: perl(Pod::Coverage::TrustPod) unconditionally now that it's available in
|
|
EPEL-4
|
|
|
|
* Tue Aug 16 2011 Marcela Maslanova <mmaslano@redhat.com> - 1.002-7
|
|
- Install to vendor perl directories to avoid potential debuginfo conflicts
|
|
with the main perl package if this module ever becomes arch-specific
|
|
|
|
* Thu Jul 21 2011 Petr Sabata <contyk@redhat.com> - 1.002-6
|
|
- Perl mass rebuild
|
|
|
|
* Tue Jul 19 2011 Petr Sabata <contyk@redhat.com> - 1.002-5
|
|
- Perl mass rebuild
|
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.002-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
* Wed Jan 26 2011 Paul Howarth <paul@city-fan.org> - 1.002-3
|
|
- BR: perl(constant), perl(Exporter), perl(File::Temp) in case they are
|
|
dual-lived at some point (#672801)
|
|
|
|
* Wed Jan 26 2011 Paul Howarth <paul@city-fan.org> - 1.002-2
|
|
- Sanitize for Fedora submission
|
|
|
|
* Tue Jan 25 2011 Paul Howarth <paul@city-fan.org> - 1.002-1
|
|
- Initial RPM version
|