From 87a16db6e08c4514631047dd3c6a0d7900b01dbe Mon Sep 17 00:00:00 2001
From: Paul Howarth <[email protected]>
Date: Tue, 30 May 2017 16:30:46 +0100
Subject: Upstream package renamed to Ref-Util-XS
This is to make room for Ref-Util's new pure-Perl interface
---
.gitignore | 2 +-
perl-Ref-Util-XS.spec | 116 ++++++++++++++++++++++++++++++++++++++++++++++++++
perl-Ref-Util.spec | 112 ------------------------------------------------
sources | 2 +-
4 files changed, 118 insertions(+), 114 deletions(-)
create mode 100644 perl-Ref-Util-XS.spec
delete mode 100644 perl-Ref-Util.spec
diff --git a/.gitignore b/.gitignore
index d185c61..3136e08 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/Ref-Util-[0-9.]*.tar.gz
+/Ref-Util-XS-[0-9.]*.tar.gz
diff --git a/perl-Ref-Util-XS.spec b/perl-Ref-Util-XS.spec
new file mode 100644
index 0000000..0c22d82
--- /dev/null
+++ b/perl-Ref-Util-XS.spec
@@ -0,0 +1,116 @@
+Name: perl-Ref-Util-XS
+Version: 0.115
+Release: 1%{?dist}
+Summary: Utility functions for checking references
+License: MIT
+URL: http://search.cpan.org/dist/Ref-Util-XS/
+Source0:
http://search.cpan.org/CPAN/authors/id/X/XS/XSAWYERX/Ref-Util-XS-%{version}.tar.gz
+# Build
+BuildRequires: coreutils
+BuildRequires: findutils
+BuildRequires: gcc
+BuildRequires: make
+BuildRequires: perl
+BuildRequires: perl-devel
+BuildRequires: perl-generators
+BuildRequires: perl(ExtUtils::MakeMaker)
+# Module
+BuildRequires: perl(Exporter) >= 5.57
+BuildRequires: perl(strict)
+BuildRequires: perl(warnings)
+BuildRequires: perl(XSLoader)
+# Test Suite
+BuildRequires: perl(constant)
+BuildRequires: perl(File::Spec)
+BuildRequires: perl(Test::More) >= 0.94
+# Optional Tests
+BuildRequires: perl(B::Concise)
+BuildRequires: perl(CPAN::Meta) >= 2.120900
+BuildRequires: perl(Readonly)
+# Runtime
+Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+
+# Avoid provides for private objects
+%{?perl_default_filter}
+
+%description
+Ref::Util::XS introduces several functions to help identify references in a
+faster and smarter way.
+
+%prep
+%setup -q -n Ref-Util-XS-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+find %{buildroot} -type f -name '*.bs' -empty -delete
+%{_fixperms} -c %{buildroot}
+
+%check
+make test
+
+%files
+%if 0%{?_licensedir:1}
+%license LICENSE
+%else
+%doc LICENSE
+%endif
+%doc Changes README
+%{perl_vendorarch}/auto/Ref/
+%{perl_vendorarch}/Ref/
+%{_mandir}/man3/Ref::Util::XS.3*
+
+%changelog
+* Fri May 12 2017 Paul Howarth <[email protected]> - 0.115-1
+- Package renamed Ref-Util-XS to make room for Ref-Util's new pure-Perl
+ interface
+
+* Sat Feb 11 2017 Fedora Release Engineering <[email protected]> -
0.113-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
+* Tue Jan 17 2017 Paul Howarth <[email protected]> - 0.113-1
+- Update to 0.113
+ - Fix bugtracker link
+
+* Sun Jan 15 2017 Paul Howarth <[email protected]> - 0.112-1
+- Update to 0.112
+ - Fix compilation on Sun (Oracle) and some MSVC compilers (GH#35)
+
+* Fri Dec 30 2016 Paul Howarth <[email protected]> - 0.111-1
+- Update to 0.111
+ - Fix test failure on 5.8.5 and under
+ - Moved to Dist::Zilla
+
+* Thu Dec 29 2016 Paul Howarth <[email protected]> - 0.110-1
+- Update to 0.110
+ - Fix support of 5.8 (GH#29, GH#34)
+ - Additional optimizations
+ - More extensive test suite
+
+* Mon Aug 29 2016 Paul Howarth <[email protected]> - 0.101-1
+- Update to 0.101
+ - A test accidentally added a dependency on Readonly.pm - fixed! (GH#30)
+ - Update README
+
+* Sat Aug 27 2016 Paul Howarth <[email protected]> - 0.100-1
+- Update to 0.100
+ - Support situations in op-code implementation where the parameters do not
+ come as a list
+ - Fix memory leak in dangling op
+ - Support magic (tied variables)
+ - Rework op implementation
+ - Speed up by changing the top of the stack instead of POPing and PUSHing
+ - Update ppport.h file from Devel::PPPort and remove the copy of SVRXOK since
+ it's now available
+ - Add license in Pod
+ - Specify minimum version of perl (5.6.2)
+
+* Thu Jul 28 2016 Paul Howarth <[email protected]> - 0.020-2
+- Sanitize for Fedora submission
+
+* Thu Jul 28 2016 Paul Howarth <[email protected]> - 0.020-1
+- Initial RPM version
diff --git a/perl-Ref-Util.spec b/perl-Ref-Util.spec
deleted file mode 100644
index c253134..0000000
--- a/perl-Ref-Util.spec
+++ /dev/null
@@ -1,112 +0,0 @@
-Name: perl-Ref-Util
-Version: 0.113
-Release: 2%{?dist}
-Summary: Utility functions for checking references
-License: MIT
-URL: http://search.cpan.org/dist/Ref-Util/
-Source0:
http://search.cpan.org/CPAN/authors/id/X/XS/XSAWYERX/Ref-Util-%{version}.tar.gz
-# Build
-BuildRequires: coreutils
-BuildRequires: findutils
-BuildRequires: gcc
-BuildRequires: make
-BuildRequires: perl
-BuildRequires: perl-devel
-BuildRequires: perl-generators
-BuildRequires: perl(ExtUtils::MakeMaker)
-# Module
-BuildRequires: perl(Exporter) >= 5.57
-BuildRequires: perl(strict)
-BuildRequires: perl(warnings)
-BuildRequires: perl(XSLoader)
-# Test Suite
-BuildRequires: perl(constant)
-BuildRequires: perl(File::Spec)
-BuildRequires: perl(Test::More) >= 0.94
-# Optional Tests
-BuildRequires: perl(B::Concise)
-BuildRequires: perl(CPAN::Meta) >= 2.120900
-BuildRequires: perl(Readonly)
-# Runtime
-Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
-
-# Avoid provides for private objects
-%{?perl_default_filter}
-
-%description
-Ref::Util introduces several functions to help identify references in a faster
-and smarter way.
-
-%prep
-%setup -q -n Ref-Util-%{version}
-
-%build
-perl Makefile.PL INSTALLDIRS=vendor
-make %{?_smp_mflags}
-
-%install
-make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -delete
-find %{buildroot} -type f -name '*.bs' -empty -delete
-%{_fixperms} -c %{buildroot}
-
-%check
-make test
-
-%files
-%if 0%{?_licensedir:1}
-%license LICENSE
-%else
-%doc LICENSE
-%endif
-%doc Changes README
-%{perl_vendorarch}/auto/Ref/
-%{perl_vendorarch}/Ref/
-%{_mandir}/man3/Ref::Util.3*
-
-%changelog
-* Sat Feb 11 2017 Fedora Release Engineering <[email protected]> -
0.113-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
-
-* Tue Jan 17 2017 Paul Howarth <[email protected]> - 0.113-1
-- Update to 0.113
- - Fix bugtracker link
-
-* Sun Jan 15 2017 Paul Howarth <[email protected]> - 0.112-1
-- Update to 0.112
- - Fix compilation on Sun (Oracle) and some MSVC compilers (GH#35)
-
-* Fri Dec 30 2016 Paul Howarth <[email protected]> - 0.111-1
-- Update to 0.111
- - Fix test failure on 5.8.5 and under
- - Moved to Dist::Zilla
-
-* Thu Dec 29 2016 Paul Howarth <[email protected]> - 0.110-1
-- Update to 0.110
- - Fix support of 5.8 (GH#29, GH#34)
- - Additional optimizations
- - More extensive test suite
-
-* Mon Aug 29 2016 Paul Howarth <[email protected]> - 0.101-1
-- Update to 0.101
- - A test accidentally added a dependency on Readonly.pm - fixed! (GH#30)
- - Update README
-
-* Sat Aug 27 2016 Paul Howarth <[email protected]> - 0.100-1
-- Update to 0.100
- - Support situations in op-code implementation where the parameters do not
- come as a list
- - Fix memory leak in dangling op
- - Support magic (tied variables)
- - Rework op implementation
- - Speed up by changing the top of the stack instead of POPing and PUSHing
- - Update ppport.h file from Devel::PPPort and remove the copy of SVRXOK since
- it's now available
- - Add license in Pod
- - Specify minimum version of perl (5.6.2)
-
-* Thu Jul 28 2016 Paul Howarth <[email protected]> - 0.020-2
-- Sanitize for Fedora submission
-
-* Thu Jul 28 2016 Paul Howarth <[email protected]> - 0.020-1
-- Initial RPM version
diff --git a/sources b/sources
index 6db76e9..87eb190 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (Ref-Util-0.113.tar.gz) =
1116ef8cde964c690b7ba7d32dad9b63429e882bbaa9920f4c47b789c84cbf66499f1a90b41cd6bc8d7afedcb10ea1a08775e3f12e4664055ddb212826db1e24
+SHA512 (Ref-Util-XS-0.115.tar.gz) =
c3608de9a4eb0070ebb4e1eda48e1bb0efc7ba4be036a48e89605b99def602ff41ba6d42470caa9da1ec2eb7d70641f0aead2c9c79f8bc4bde809572ecad9c12
--
cgit v1.1
https://src.fedoraproject.org/cgit/perl-Ref-Util-XS.git/commit/?h=master&id=87a16db6e08c4514631047dd3c6a0d7900b01dbe
_______________________________________________
perl-devel mailing list -- [email protected]
To unsubscribe send an email to [email protected]