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/URI-1.76.tar.gz
|
SOURCES/URI-1.71.tar.gz
|
||||||
|
@ -1 +0,0 @@
|
|||||||
d75380f8b1ad792d230216d8712fd37533ebedf0 SOURCES/URI-1.76.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}
|
@ -2,19 +2,22 @@
|
|||||||
%bcond_without perl_URI_enables_Business_ISBN
|
%bcond_without perl_URI_enables_Business_ISBN
|
||||||
|
|
||||||
Name: perl-URI
|
Name: perl-URI
|
||||||
Version: 1.76
|
Version: 1.71
|
||||||
Release: 5%{?dist}
|
Release: 7%{?dist}
|
||||||
Summary: A Perl module implementing URI parsing and manipulation
|
Summary: A Perl module implementing URI parsing and manipulation
|
||||||
|
Group: Development/Libraries
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: https://metacpan.org/release/URI
|
URL: http://search.cpan.org/dist/URI/
|
||||||
Source0: https://cpan.metacpan.org/authors/id/O/OA/OALDERS/URI-%{version}.tar.gz
|
Source0: http://www.cpan.org/authors/id/E/ET/ETHER/URI-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# Module Build
|
# Module Build
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
|
BuildRequires: findutils
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
|
BuildRequires: perl
|
||||||
BuildRequires: perl-generators
|
BuildRequires: perl-generators
|
||||||
BuildRequires: perl-interpreter
|
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||||
|
BuildRequires: perl(utf8)
|
||||||
# Module Runtime
|
# Module Runtime
|
||||||
BuildRequires: perl(Carp)
|
BuildRequires: perl(Carp)
|
||||||
BuildRequires: perl(constant)
|
BuildRequires: perl(constant)
|
||||||
@ -29,17 +32,14 @@ BuildRequires: perl(overload)
|
|||||||
BuildRequires: perl(parent)
|
BuildRequires: perl(parent)
|
||||||
BuildRequires: perl(Scalar::Util)
|
BuildRequires: perl(Scalar::Util)
|
||||||
BuildRequires: perl(strict)
|
BuildRequires: perl(strict)
|
||||||
BuildRequires: perl(utf8)
|
|
||||||
BuildRequires: perl(warnings)
|
BuildRequires: perl(warnings)
|
||||||
# Test Suite
|
# Test Suite
|
||||||
BuildRequires: perl(Config)
|
BuildRequires: perl(Config)
|
||||||
BuildRequires: perl(File::Spec)
|
|
||||||
BuildRequires: perl(File::Spec::Functions)
|
BuildRequires: perl(File::Spec::Functions)
|
||||||
BuildRequires: perl(File::Temp)
|
BuildRequires: perl(File::Temp)
|
||||||
BuildRequires: perl(Storable)
|
BuildRequires: perl(Storable)
|
||||||
BuildRequires: perl(Test)
|
BuildRequires: perl(Test)
|
||||||
BuildRequires: perl(Test::More) >= 0.96
|
BuildRequires: perl(Test::More) >= 0.96
|
||||||
BuildRequires: perl(Test::Needs)
|
|
||||||
# Runtime
|
# Runtime
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
Requires: perl(Cwd)
|
Requires: perl(Cwd)
|
||||||
@ -47,7 +47,6 @@ Requires: perl(Data::Dumper)
|
|||||||
Requires: perl(Encode)
|
Requires: perl(Encode)
|
||||||
Requires: perl(MIME::Base64) >= 2
|
Requires: perl(MIME::Base64) >= 2
|
||||||
Requires: perl(Net::Domain)
|
Requires: perl(Net::Domain)
|
||||||
Requires: perl(utf8)
|
|
||||||
|
|
||||||
# Optional Functionality
|
# Optional Functionality
|
||||||
%if %{with perl_URI_enables_Business_ISBN}
|
%if %{with perl_URI_enables_Business_ISBN}
|
||||||
@ -69,19 +68,19 @@ updated by RFC 2732).
|
|||||||
chmod -c 644 uri-test
|
chmod -c 644 uri-test
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=perl NO_PACKLIST=true NO_PERLLOCAL=true
|
perl Makefile.PL INSTALLDIRS=perl NO_PACKLIST=true
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR=%{buildroot}
|
make pure_install DESTDIR=%{buildroot}
|
||||||
%{_fixperms} -c %{buildroot}
|
%{_fixperms} %{buildroot}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make test
|
make test
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc Changes CONTRIBUTING.md uri-test
|
%doc Changes README uri-test
|
||||||
%{perl_privlib}/URI.pm
|
%{perl_privlib}/URI.pm
|
||||||
%{perl_privlib}/URI/
|
%{perl_privlib}/URI/
|
||||||
%{_mandir}/man3/URI.3*
|
%{_mandir}/man3/URI.3*
|
||||||
@ -97,50 +96,8 @@ make test
|
|||||||
%{_mandir}/man3/URI::ldap.3*
|
%{_mandir}/man3/URI::ldap.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.76-5
|
* Fri Mar 29 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.71-7
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
- Rebuild with enable hardening (bug #1636329)
|
||||||
|
|
||||||
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.76-4
|
|
||||||
- Perl 5.30 re-rebuild of bootstrapped packages
|
|
||||||
|
|
||||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.76-3
|
|
||||||
- Perl 5.30 rebuild
|
|
||||||
|
|
||||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.76-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 10 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.76-1
|
|
||||||
- 1.76 bump
|
|
||||||
|
|
||||||
* Wed Jan 09 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.75-1
|
|
||||||
- 1.75 bump
|
|
||||||
|
|
||||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.74-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jun 30 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.74-3
|
|
||||||
- Perl 5.28 re-rebuild of bootstrapped packages
|
|
||||||
|
|
||||||
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.74-2
|
|
||||||
- Perl 5.28 rebuild
|
|
||||||
|
|
||||||
* Mon Apr 23 2018 Paul Howarth <paul@city-fan.org> - 1.74-1
|
|
||||||
- 1.74 bump
|
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.73-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jan 09 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.73-1
|
|
||||||
- 1.73 bump
|
|
||||||
|
|
||||||
* Wed Jul 26 2017 Paul Howarth <paul@city-fan.org> - 1.72-1
|
|
||||||
- 1.72 bump
|
|
||||||
|
|
||||||
* Wed Jun 07 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.71-8
|
|
||||||
- Perl 5.26 re-rebuild of bootstrapped packages
|
|
||||||
|
|
||||||
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.71-7
|
|
||||||
- Perl 5.26 rebuild
|
|
||||||
|
|
||||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.71-6
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.71-6
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
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 (URI-1.71.tar.gz) = c609c5830899176b61100fce8f10436128471064
|
4
tests/upstream-tests.fmf
Normal file
4
tests/upstream-tests.fmf
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
summary: Upstream tests
|
||||||
|
component: perl-URI
|
||||||
|
require: perl-URI-tests
|
||||||
|
test: /usr/libexec/perl-URI/test
|
Loading…
Reference in New Issue
Block a user