Compare commits
No commits in common. "c9" and "c8s" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
||||
SOURCES/IO-Stringy-2.113.tar.gz
|
||||
SOURCES/IO-stringy-2.111.tar.gz
|
||||
/IO-stringy-2.111.tar.gz
|
||||
|
||||
@ -1 +0,0 @@
|
||||
5be396929c469c8a62aee6f0ff9e91d112a0abe7 SOURCES/IO-Stringy-2.113.tar.gz
|
||||
@ -1,17 +1,16 @@
|
||||
Summary: I/O on in-core objects like strings and arrays for Perl
|
||||
Name: perl-IO-stringy
|
||||
Version: 2.113
|
||||
Release: 7%{?dist}
|
||||
Version: 2.111
|
||||
Release: 9%{?dist}
|
||||
License: GPL+ or Artistic
|
||||
URL: https://metacpan.org/release/IO-stringy
|
||||
Source0: https://cpan.metacpan.org/modules/by-module/IO/IO-Stringy-%{version}.tar.gz
|
||||
Group: Development/Libraries
|
||||
URL: http://search.cpan.org/dist/IO-stringy/
|
||||
Source0: http://search.cpan.org/CPAN/authors/id/D/DS/DSKOLL/IO-stringy-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
||||
# Module Build
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: findutils
|
||||
BuildRequires: make
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
# Module Runtime
|
||||
BuildRequires: perl(Carp)
|
||||
@ -20,24 +19,15 @@ BuildRequires: perl(FileHandle)
|
||||
BuildRequires: perl(IO::File)
|
||||
BuildRequires: perl(IO::Handle)
|
||||
BuildRequires: perl(overload)
|
||||
BuildRequires: perl(parent)
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(Symbol)
|
||||
BuildRequires: perl(vars)
|
||||
BuildRequires: perl(warnings)
|
||||
# Test Suite
|
||||
BuildRequires: perl(File::Spec)
|
||||
BuildRequires: perl(File::Temp)
|
||||
BuildRequires: perl(Test::More) >= 0.88
|
||||
# Optional Tests
|
||||
BuildRequires: perl(CPAN::Meta) >= 2.120900
|
||||
BuildRequires: perl(CPAN::Meta::Prereqs)
|
||||
BuildRequires: perl(File::Basename)
|
||||
BuildRequires: perl(lib)
|
||||
# Runtime
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
|
||||
# New upstream maintainer for 2.112 finally got the dist name right
|
||||
Provides: perl-IO-Stringy = %{version}-%{release}
|
||||
|
||||
# Avoid doc-file dependency on /usr/bin/perl
|
||||
%{?perl_default_filter}
|
||||
|
||||
@ -56,27 +46,31 @@ and stop worrying about whether your function's caller handed you a
|
||||
string, a globref, or a FileHandle.
|
||||
|
||||
%prep
|
||||
%setup -q -n IO-Stringy-%{version}
|
||||
%setup -q -n IO-stringy-%{version}
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
make pure_install DESTDIR=%{buildroot}
|
||||
find %{buildroot} -type f -name .packlist -delete
|
||||
%{_fixperms} -c %{buildroot}
|
||||
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
|
||||
%{_fixperms} %{buildroot}
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%if 0%{?_licensedir:1}
|
||||
%license COPYING LICENSE
|
||||
%license COPYING
|
||||
%else
|
||||
%doc COPYING LICENSE
|
||||
%doc COPYING
|
||||
%endif
|
||||
%doc Changes examples/ README
|
||||
%doc README examples/
|
||||
%{perl_vendorlib}/IO/
|
||||
%{_mandir}/man3/IO::AtomicFile.3*
|
||||
%{_mandir}/man3/IO::InnerFile.3*
|
||||
@ -88,67 +82,6 @@ make test
|
||||
%{_mandir}/man3/IO::WrapTie.3*
|
||||
|
||||
%changelog
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.113-7
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.113-6
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.113-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.113-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.113-3
|
||||
- Perl 5.32 rebuild
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.113-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Jan 17 2020 Paul Howarth <paul@city-fan.org> - 2.113-1
|
||||
- Update to 2.113
|
||||
- Get rid of use of Common and TBone in all tests
|
||||
- Convert to Dist::Zilla for authoring
|
||||
- Cleaned up some of the docs (needs more)
|
||||
|
||||
* Sat Dec 14 2019 Paul Howarth <paul@city-fan.org> - 2.112-1
|
||||
- Update to 2.112
|
||||
- Added the change log from any prior source that could be found, and
|
||||
formatted the log to fit metacpan.org loose standards
|
||||
- Change use vars qw() to our $whatever instead
|
||||
- Hide IO::WrapTie subclasses from PAUSE
|
||||
- Rebuild Makefile.PL to contain all of the prerequisites
|
||||
- Convert README to README.md
|
||||
- Fix the documentation in the main module, IO::Stringy to better indicate
|
||||
where to get info and how to use the module
|
||||
- Fix the dist's META information to indicate the original author and license
|
||||
- Add a LICENSE file
|
||||
- Add AppVeyor CI testing
|
||||
- Add Travis CI testing
|
||||
- Update t/IO_InnerFile.t to use Test::More and a proper TEMP file
|
||||
(CPAN RT#103895)
|
||||
- Use author-independent source URL
|
||||
- Simplify find command using -delete
|
||||
- Add Provides: for perl-IO-Stringy
|
||||
- Fix permissions verbosely
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.111-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.111-13
|
||||
- Perl 5.30 rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.111-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.111-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.111-10
|
||||
- Perl 5.28 rebuild
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.111-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
Loading…
Reference in New Issue
Block a user