Compare commits
No commits in common. "c8-stream-5.3" and "stream-perl-5.24-rhel-8.9.0" have entirely different histories.
c8-stream-
...
stream-per
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
||||
1
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/IO-Compress-2.093.tar.gz
|
||||
SOURCES/IO-Compress-2.074.tar.gz
|
||||
|
@ -1 +0,0 @@
|
||||
d0fa0c576a52028fb5c86455cc5d7897f5d194f9 SOURCES/IO-Compress-2.093.tar.gz
|
7
gating.yaml
Normal file
7
gating.yaml
Normal file
@ -0,0 +1,7 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- fedora-*
|
||||
decision_context: bodhi_update_push_stable
|
||||
subject_type: koji_build
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}
|
3
perl-IO-Compress.rpmlintrc
Normal file
3
perl-IO-Compress.rpmlintrc
Normal file
@ -0,0 +1,3 @@
|
||||
from Config import *
|
||||
addFilter("spelling-error %description -l en_US zlib -> ")
|
||||
addFilter("spelling-error %description -l en_US gzip -> ")
|
@ -1,30 +1,22 @@
|
||||
# Run time expensive tests
|
||||
%bcond_without long_tests
|
||||
# Run optional test
|
||||
%if ! (0%{?rhel})
|
||||
%bcond_without perl_IO_Compress_enables_optional_test
|
||||
%else
|
||||
%bcond_with perl_IO_Compress_enables_optional_test
|
||||
%endif
|
||||
|
||||
%{?perl_default_filter}
|
||||
|
||||
Name: perl-IO-Compress
|
||||
Version: 2.093
|
||||
Release: 1%{?dist}
|
||||
Version: 2.074
|
||||
Release: 2%{?dist}
|
||||
Summary: Read and write compressed data
|
||||
License: GPL+ or Artistic
|
||||
URL: https://metacpan.org/release/IO-Compress
|
||||
Source0: https://cpan.metacpan.org/modules/by-module/IO/IO-Compress-%{version}.tar.gz
|
||||
Group: Development/Libraries
|
||||
URL: http://search.cpan.org/dist/IO-Compress/
|
||||
Source0: http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/IO-Compress-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
# Module Build
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: findutils
|
||||
BuildRequires: make
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl(Config)
|
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 5.16
|
||||
BuildRequires: perl(File::Copy)
|
||||
BuildRequires: perl(File::Spec::Functions)
|
||||
# Module Runtime
|
||||
@ -32,6 +24,7 @@ BuildRequires: perl(bytes)
|
||||
BuildRequires: perl(Carp)
|
||||
BuildRequires: perl(Compress::Raw::Bzip2) >= %{version}
|
||||
BuildRequires: perl(Compress::Raw::Zlib) >= %{version}
|
||||
BuildRequires: perl(Config)
|
||||
BuildRequires: perl(constant)
|
||||
BuildRequires: perl(Encode)
|
||||
BuildRequires: perl(Exporter)
|
||||
@ -49,20 +42,15 @@ BuildRequires: perl(utf8)
|
||||
BuildRequires: perl(warnings)
|
||||
# Test Suite
|
||||
BuildRequires: perl(File::Path)
|
||||
BuildRequires: perl(lib)
|
||||
BuildRequires: perl(threads::shared)
|
||||
%if %{with perl_IO_Compress_enables_optional_test}
|
||||
# Optional Tests
|
||||
BuildRequires: perl(bytes)
|
||||
BuildRequires: perl(Data::Dumper)
|
||||
BuildRequires: perl(File::Temp)
|
||||
BuildRequires: perl(lib)
|
||||
BuildRequires: perl(overload)
|
||||
# Dual-lived module needs building early in the boot process
|
||||
%if !%{defined perl_bootstrap}
|
||||
BuildRequires: perl(Test::NoWarnings)
|
||||
BuildRequires: perl(Test::Pod) >= 1.00
|
||||
%endif
|
||||
%endif
|
||||
BuildRequires: perl(threads::shared)
|
||||
# Runtime
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
Requires: perl(File::Glob)
|
||||
@ -99,15 +87,16 @@ chmod -c -x lib/IO/Uncompress/{Adapter/Identity,RawInflate}.pm
|
||||
find examples -type f -exec chmod -c -x {} \;
|
||||
|
||||
# Fix shellbangs in examples
|
||||
perl -MConfig -pi -e 's|^#!/usr/local/bin/perl\b|$Config{startperl}|' examples/io/anycat \
|
||||
perl -pi -e 's|^#!/usr/local/bin/perl\b|#!%{__perl}|' examples/io/anycat \
|
||||
examples/io/bzip2/* examples/io/gzip/* examples/compress-zlib/*
|
||||
|
||||
%build
|
||||
perl Makefile.PL NO_PACKLIST=1
|
||||
perl Makefile.PL
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make pure_install DESTDIR=%{buildroot} INSTALLDIRS=perl
|
||||
find %{buildroot} -type f -name .packlist -delete
|
||||
%{_fixperms} -c %{buildroot}
|
||||
|
||||
%check
|
||||
@ -117,7 +106,6 @@ make test COMPRESS_ZLIB_RUN_%{?with_long_tests:ALL}%{!?with_long_tests:MOST}=1
|
||||
|
||||
%files
|
||||
%doc Changes README examples/*
|
||||
%{_bindir}/streamzip
|
||||
%{_bindir}/zipdetails
|
||||
%{perl_privlib}/Compress/
|
||||
%{perl_privlib}/File/
|
||||
@ -136,7 +124,6 @@ make test COMPRESS_ZLIB_RUN_%{?with_long_tests:ALL}%{!?with_long_tests:MOST}=1
|
||||
%{perl_privlib}/IO/Compress/Zip.pm
|
||||
%{perl_privlib}/IO/Compress/Zlib/
|
||||
%{perl_privlib}/IO/Uncompress/
|
||||
%{_mandir}/man1/streamzip.1*
|
||||
%{_mandir}/man1/zipdetails.1*
|
||||
%{_mandir}/man3/Compress::Zlib.3*
|
||||
%{_mandir}/man3/File::GlobMapper.3*
|
||||
@ -144,80 +131,8 @@ make test COMPRESS_ZLIB_RUN_%{?with_long_tests:ALL}%{!?with_long_tests:MOST}=1
|
||||
%{_mandir}/man3/IO::Uncompress::*.3*
|
||||
|
||||
%changelog
|
||||
* Sun Dec 8 2019 Paul Howarth <paul@city-fan.org> - 2.093-1
|
||||
- 2.093 bump
|
||||
|
||||
* Thu Dec 05 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.092-1
|
||||
- 2.092 bump
|
||||
|
||||
* Sun Nov 24 2019 Paul Howarth <paul@city-fan.org> - 2.091-1
|
||||
- 2.091 bump
|
||||
|
||||
* Sun Nov 10 2019 Paul Howarth <paul@city-fan.org> - 2.090-1
|
||||
- 2.090 bump
|
||||
|
||||
* Sun Nov 3 2019 Paul Howarth <paul@city-fan.org> - 2.089-1
|
||||
- 2.089 bump
|
||||
|
||||
* Sun Nov 3 2019 Paul Howarth <paul@city-fan.org> - 2.088-1
|
||||
- 2.088 bump
|
||||
|
||||
* Mon Aug 12 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.087-1
|
||||
- 2.087 bump
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.086-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.086-3
|
||||
- Perl 5.30 re-rebuild of bootstrapped packages
|
||||
|
||||
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.086-2
|
||||
- Perl 5.30 rebuild
|
||||
|
||||
* Mon Apr 01 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.086-1
|
||||
- 2.086 bump
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.084-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Jan 7 2019 Paul Howarth <paul@city-fan.org> - 2.084-1
|
||||
- 2.084 bump
|
||||
|
||||
* Wed Jan 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.083-1
|
||||
- 2.083 bump
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.081-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Sat Jun 30 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.081-4
|
||||
- Perl 5.28 re-rebuild of bootstrapped packages
|
||||
|
||||
* Sat Jun 30 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.081-3
|
||||
- Perl 5.28 re-rebuild of bootstrapped packages
|
||||
|
||||
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.081-2
|
||||
- Perl 5.28 rebuild
|
||||
|
||||
* Mon Apr 09 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.081-1
|
||||
- 2.081 bump
|
||||
|
||||
* Wed Apr 4 2018 Paul Howarth <paul@city-fan.org> - 2.080-1
|
||||
- 2.080 bump
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.074-397
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Mon Dec 18 2017 Petr Pisar <ppisar@redhat.com> - 2.074-396
|
||||
- Rewrite shell bangs using running perl
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.074-395
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Wed Jun 07 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.074-394
|
||||
- Perl 5.26 re-rebuild of bootstrapped packages
|
||||
|
||||
* Sat Jun 03 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.074-393
|
||||
- Perl 5.26 rebuild
|
||||
* Fri Mar 29 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.074-2
|
||||
- Rebuild with enable hardening (bug #1636329)
|
||||
|
||||
* Mon Feb 20 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.074-1
|
||||
- 2.074 bump
|
5
plans/sanity.fmf
Normal file
5
plans/sanity.fmf
Normal file
@ -0,0 +1,5 @@
|
||||
summary: Sanity tests
|
||||
discover:
|
||||
how: fmf
|
||||
execute:
|
||||
how: tmt
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
||||
SHA1 (IO-Compress-2.074.tar.gz) = c22e79a1b955b1b7da4d29d9e0d9bf96e4fe95f3
|
4
tests/upstream-tests.fmf
Normal file
4
tests/upstream-tests.fmf
Normal file
@ -0,0 +1,4 @@
|
||||
summary: Upstream tests
|
||||
component: perl-IO-Compress
|
||||
require: perl-IO-Compress-tests
|
||||
test: /usr/libexec/perl-IO-Compress/test
|
Loading…
Reference in New Issue
Block a user