Update to 0.08
- New upstream release 0.08 - Add test for function prototypes - Better, simpler code for testing if we can load the XS version - Add gitignore file - Experimental implementation of get_code_location - Add XS implementation of get_code_location() - Add test for the prototype of get_code_location - Make get_code_location work on undefined subs - Add link to github repo in the meta file - Add TODO file - Add pure-perl implementation of is_sub_constant() - Add XS implementation of is_constant_sub() - Add documentation - Skip tests that rely on perls more recent than 5.14.0 - Update ppport.h - Use the pure-perl version of is_sub_constant on perls earlier than 5.16 - Require B unconditionally on older perls - Require at least perl 5.8.0 - Improve docs beyond a really terse synopsis - Classify buildreqs by usage - Drop %defattr, redundant since rpm 4.4
This commit is contained in:
parent
9f7d5da0e6
commit
f87a2f781d
@ -1,17 +1,28 @@
|
||||
Name: perl-Sub-Identify
|
||||
Version: 0.04
|
||||
Release: 21%{?dist}
|
||||
Version: 0.08
|
||||
Release: 1%{?dist}
|
||||
Summary: Retrieve names of code references
|
||||
License: GPL+ or Artistic
|
||||
Group: Development/Libraries
|
||||
URL: http://search.cpan.org/dist/Sub-Identify/
|
||||
Source0: http://search.cpan.org/CPAN/authors/id/R/RG/RGARCIA/Sub-Identify-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
||||
BuildRequires: perl(Exporter)
|
||||
# Module Build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
# Module Runtime
|
||||
BuildRequires: perl(B)
|
||||
BuildRequires: perl(Exporter)
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(XSLoader)
|
||||
# Test Suite
|
||||
BuildRequires: perl(Test::More)
|
||||
BuildRequires: perl(Test::Pod)
|
||||
BuildRequires: perl(Test::Pod) >= 1.14
|
||||
BuildRequires: perl(warnings)
|
||||
# Runtime
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
Requires: perl(B)
|
||||
Requires: perl(XSLoader)
|
||||
|
||||
# Don't provide private perl libs
|
||||
%{?perl_default_filter}
|
||||
@ -44,13 +55,35 @@ make test
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc Changes t/
|
||||
%doc Changes TODO.mdown t/
|
||||
%{perl_vendorarch}/auto/Sub/
|
||||
%{perl_vendorarch}/Sub/
|
||||
%{_mandir}/man3/Sub::Identify.3pm*
|
||||
|
||||
%changelog
|
||||
* Thu Sep 18 2014 Paul Howarth <paul@city-fan.org> - 0.08-1
|
||||
- Update to 0.08
|
||||
- Add test for function prototypes
|
||||
- Better, simpler code for testing if we can load the XS version
|
||||
- Add gitignore file
|
||||
- Experimental implementation of get_code_location
|
||||
- Add XS implementation of get_code_location()
|
||||
- Add test for the prototype of get_code_location
|
||||
- Make get_code_location work on undefined subs
|
||||
- Add link to github repo in the meta file
|
||||
- Add TODO file
|
||||
- Add pure-perl implementation of is_sub_constant()
|
||||
- Add XS implementation of is_constant_sub()
|
||||
- Add documentation
|
||||
- Skip tests that rely on perls more recent than 5.14.0
|
||||
- Update ppport.h
|
||||
- Use the pure-perl version of is_sub_constant on perls earlier than 5.16
|
||||
- Require B unconditionally on older perls
|
||||
- Require at least perl 5.8.0
|
||||
- Improve docs beyond a really terse synopsis
|
||||
- Classify buildreqs by usage
|
||||
- Drop %%defattr, redundant since rpm 4.4
|
||||
|
||||
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.04-21
|
||||
- Perl 5.20 rebuild
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user