import perl-PerlIO-gzip-0.20-4.el8
This commit is contained in:
commit
776a297926
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
SOURCES/PerlIO-gzip-0.20.tar.gz
|
1
.perl-PerlIO-gzip.metadata
Normal file
1
.perl-PerlIO-gzip.metadata
Normal file
@ -0,0 +1 @@
|
||||
a1627a023babe66a1e9994d04e08ce76b42ab2ee SOURCES/PerlIO-gzip-0.20.tar.gz
|
169
SPECS/perl-PerlIO-gzip.spec
Normal file
169
SPECS/perl-PerlIO-gzip.spec
Normal file
@ -0,0 +1,169 @@
|
||||
Name: perl-PerlIO-gzip
|
||||
Version: 0.20
|
||||
Release: 4%{?dist}
|
||||
Summary: Perl extension to provide a PerlIO layer to gzip/gunzip
|
||||
License: GPL+ or Artistic
|
||||
URL: http://search.cpan.org/dist/PerlIO-gzip/
|
||||
Source0: http://www.cpan.org/authors/id/N/NW/NWCLARK/PerlIO-gzip-%{version}.tar.gz
|
||||
# Build
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: findutils
|
||||
BuildRequires: gcc
|
||||
BuildRequires: make
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl-devel
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl(Config)
|
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||
BuildRequires: zlib-devel
|
||||
# Runtime
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(warnings)
|
||||
BuildRequires: perl(XSLoader)
|
||||
# Tests only
|
||||
BuildRequires: perl(File::Compare)
|
||||
BuildRequires: perl(File::Spec)
|
||||
BuildRequires: perl(Test::More)
|
||||
# Dependencies
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version))
|
||||
Requires: perl(:WITH_PERLIO)
|
||||
|
||||
# Avoid provides from private perl objects
|
||||
%{?perl_default_filter}
|
||||
|
||||
%description
|
||||
PerlIO::gzip provides a PerlIO layer that manipulates files in the format
|
||||
used by the gzip program. Compression and decompression are implemented.
|
||||
|
||||
This is akin to Compress::Zlib, except that it operates at the lower PerlIO
|
||||
layer.
|
||||
|
||||
%prep
|
||||
%setup -q -n PerlIO-gzip-%{version}
|
||||
|
||||
%build
|
||||
perl Makefile.PL \
|
||||
INSTALLDIRS=vendor \
|
||||
OPTIMIZE="%{optflags}" \
|
||||
NO_PACKLIST=1 \
|
||||
NO_PERLLOCAL=1
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make install DESTDIR=%{buildroot}
|
||||
find %{buildroot} -type f -name '*.bs' -empty -delete
|
||||
%{_fixperms} -c %{buildroot}
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%files
|
||||
%doc Changes README
|
||||
%{perl_vendorarch}/auto/PerlIO/
|
||||
%{perl_vendorarch}/PerlIO/
|
||||
%{_mandir}/man3/PerlIO::gzip.3*
|
||||
|
||||
%changelog
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.20-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.20-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.20-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Thu Jun 22 2017 Paul Howarth <paul@city-fan.org> - 0.20-1
|
||||
- Update to 0.20
|
||||
- Fix test skip count on Win32 (CPAN RT#76335)
|
||||
- Drop UTF8 docs patch; issue fixed upstream
|
||||
|
||||
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.19-8
|
||||
- Perl 5.26 rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.19-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.19-6
|
||||
- Perl 5.24 rebuild
|
||||
|
||||
* Tue Apr 19 2016 Paul Howarth <paul@city-fan.org> - 0.19-5
|
||||
- Fix FTBFS due to missing buildreq perl-devel
|
||||
- Use a patch rather than scripted iconv to fix documentation encodings
|
||||
- Simplify find command using -empty and -delete
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.19-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.19-2
|
||||
- Perl 5.22 rebuild
|
||||
|
||||
* Fri Mar 20 2015 Petr Šabata <contyk@redhat.com> - 0.19-1
|
||||
- 0.19 bump, patch merged upstream
|
||||
- Modernize the spec
|
||||
|
||||
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.18-21
|
||||
- Perl 5.20 rebuild
|
||||
|
||||
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Fri Aug 01 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.18-19
|
||||
- Fix RT#92412
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 0.18-16
|
||||
- Perl 5.18 rebuild
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Fri Jun 08 2012 Petr Pisar <ppisar@redhat.com> - 0.18-13
|
||||
- Perl 5.16 rebuild
|
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Wed Jun 15 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.18-11
|
||||
- Perl mass rebuild
|
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Tue Dec 21 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.18-9
|
||||
- Rebuild to fix problems with vendorarch/lib (#661697)
|
||||
|
||||
* Tue May 04 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.18-8
|
||||
- Mass rebuild with perl-5.12.0
|
||||
|
||||
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.18-7
|
||||
- rebuild against perl 5.10.1
|
||||
|
||||
* Fri Aug 28 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.18-6
|
||||
- bump
|
||||
|
||||
* Thu Aug 27 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.18-5
|
||||
- update filtering
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Sat Feb 28 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.18-3
|
||||
- strip private Perl libs from autoprov output
|
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Wed Jul 16 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.18-1
|
||||
- Specfile autogenerated by cpanspec 1.74.
|
Loading…
Reference in New Issue
Block a user