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:
Paul Howarth 2014-09-18 11:07:45 +01:00
parent 9f7d5da0e6
commit f87a2f781d
2 changed files with 40 additions and 7 deletions

View File

@ -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

View File

@ -1 +1 @@
cfa7c0d73090a2b4fb75d8a581a3ca81 Sub-Identify-0.04.tar.gz
07fbd43c37a26f3ac1e12e854a5146dd Sub-Identify-0.08.tar.gz