85 lines
2.9 KiB
RPMSpec
85 lines
2.9 KiB
RPMSpec
Name: perl-version
|
|
Epoch: 3
|
|
Version: 0.88
|
|
Release: 6%{?dist}
|
|
Summary: Perl extension for Version Objects
|
|
License: GPL+ or Artistic
|
|
Group: Development/Libraries
|
|
URL: http://search.cpan.org/dist/version/
|
|
Source0: http://www.cpan.org/authors/id/J/JP/JPEACOCK/version-%{version}.tar.gz
|
|
BuildRequires: perl(Module::Build)
|
|
BuildRequires: perl(Test::More) >= 0.45
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
# version::vxs is private module (see bug #633775)
|
|
%{?perl_default_filter:
|
|
%filter_from_provides /^perl(version::vxs)/d
|
|
%perl_default_filter
|
|
}
|
|
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}perl\\(version::vxs\\)
|
|
|
|
%description
|
|
Version objects were added to Perl in 5.10. This module implements version
|
|
objects for older version of Perl and provides the version object API for
|
|
all versions of Perl. All previous releases before 0.74 are deprecated and
|
|
should not be used due to incompatible API changes. Version 0.77 introduces
|
|
the new 'parse' and 'declare' methods to standardize usage. You are
|
|
strongly urged to set 0.77 as a minimum in your code.
|
|
|
|
%prep
|
|
%setup -q -n version-%{version}
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
|
find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
|
|
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} \; 2>/dev/null
|
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
|
|
%check
|
|
make test
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc Changes README
|
|
%doc %{perl_vendorlib}/version.pod
|
|
%dir %{perl_vendorlib}/version/
|
|
%doc %{perl_vendorlib}/version/Internals.pod
|
|
%{perl_vendorlib}/auto/version/
|
|
%{perl_vendorlib}/version.pm
|
|
%{perl_vendorlib}/version/vxs.pm
|
|
%{_mandir}/man3/version.3pm*
|
|
%{_mandir}/man3/version::Internals.3pm*
|
|
|
|
%changelog
|
|
* Tue Aug 16 2011 Marcela Mašláňová <mmaslano@redhat.com> - 3:0.88-6
|
|
- change path on vendor, so our debuginfo are not conflicting with
|
|
perl core debuginfos
|
|
|
|
* Sun Jul 24 2011 Iain Arnell <iarnell@gmail.com> 3:0.88-5
|
|
- update filtering for rpm 4.9
|
|
|
|
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 3:0.88-4
|
|
- Perl mass rebuild
|
|
|
|
* Fri Apr 08 2011 Petr Pisar <ppisar@redhat.com> - 3:0.88-3
|
|
- Unexport private version::vxs module (bug #633775)
|
|
- Remove BuildRoot stuff
|
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3:0.88-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
* Wed Jan 26 2011 Paul Howarth <paul@city-fan.org> 3:0.88-1
|
|
- Update to 0.88
|
|
- Revert to Makefile.PL flow as upstream dropped Build.PL to avoid circular
|
|
dependencies
|
|
- Install into perl directories rather than vendor directories
|
|
- Mark Pod files as %%doc
|
|
|
|
* Tue Mar 09 2010 Marcela Mašláňová <mmaslano@redhat.com> 3:0.82-1
|
|
- Specfile autogenerated by cpanspec 1.78.
|