[perl-Sub-Identify] Update to 0.08

Paul Howarth pghmcfc at fedoraproject.org
Thu Sep 18 10:08:25 UTC 2014


commit f87a2f781df5b2aab9694ccd5e3bf61a3bf3a27c
Author: Paul Howarth <paul at city-fan.org>
Date:   Thu Sep 18 11:07:45 2014 +0100

    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

 perl-Sub-Identify.spec |   45 +++++++++++++++++++++++++++++++++++++++------
 sources                |    2 +-
 2 files changed, 40 insertions(+), 7 deletions(-)
---
diff --git a/perl-Sub-Identify.spec b/perl-Sub-Identify.spec
index de0b232..5763149 100644
--- a/perl-Sub-Identify.spec
+++ b/perl-Sub-Identify.spec
@@ -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 at 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 at redhat.com> - 0.04-21
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index f1d2afa..3ce5553 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-cfa7c0d73090a2b4fb75d8a581a3ca81  Sub-Identify-0.04.tar.gz
+07fbd43c37a26f3ac1e12e854a5146dd  Sub-Identify-0.08.tar.gz



More information about the perl-devel mailing list