Compare commits
No commits in common. "c8-stream-5.3" and "c9-beta" have entirely different histories.
c8-stream-
...
c9-beta
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/ExtUtils-Install-2.14.tar.gz
|
SOURCES/ExtUtils-Install-2.20.tar.gz
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
db491c4db50eef0dec9a660f226a5650259e8d67 SOURCES/ExtUtils-Install-2.14.tar.gz
|
9c0999192ac83ed8bef469f7a7c39297b5579f8a SOURCES/ExtUtils-Install-2.20.tar.gz
|
||||||
|
|||||||
@ -1,13 +1,6 @@
|
|||||||
# Run optional test
|
|
||||||
%if ! (0%{?rhel})
|
|
||||||
%bcond_without perl_ExtUtils_Install_enables_optional_test
|
|
||||||
%else
|
|
||||||
%bcond_with perl_ExtUtils_Install_enables_optional_test
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Name: perl-ExtUtils-Install
|
Name: perl-ExtUtils-Install
|
||||||
Version: 2.14
|
Version: 2.20
|
||||||
Release: 440%{?dist}
|
Release: 4%{?dist}
|
||||||
Summary: Install Perl files from here to there
|
Summary: Install Perl files from here to there
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: https://metacpan.org/release/ExtUtils-Install
|
URL: https://metacpan.org/release/ExtUtils-Install
|
||||||
@ -15,12 +8,11 @@ Source0: https://cpan.metacpan.org/authors/id/B/BI/BINGOS/ExtUtils-Instal
|
|||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: perl-interpreter
|
|
||||||
BuildRequires: perl-generators
|
BuildRequires: perl-generators
|
||||||
|
BuildRequires: perl-interpreter
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||||
BuildRequires: perl(lib)
|
BuildRequires: perl(lib)
|
||||||
BuildRequires: perl(strict)
|
BuildRequires: perl(strict)
|
||||||
BuildRequires: sed
|
|
||||||
# Run-time:
|
# Run-time:
|
||||||
BuildRequires: perl(AutoSplit)
|
BuildRequires: perl(AutoSplit)
|
||||||
BuildRequires: perl(Carp)
|
BuildRequires: perl(Carp)
|
||||||
@ -35,26 +27,19 @@ BuildRequires: perl(File::Find)
|
|||||||
BuildRequires: perl(File::Path)
|
BuildRequires: perl(File::Path)
|
||||||
BuildRequires: perl(File::Spec)
|
BuildRequires: perl(File::Spec)
|
||||||
# POSIX is optional
|
# POSIX is optional
|
||||||
BuildRequires: perl(vars)
|
|
||||||
# VMS::Filespec not used
|
# VMS::Filespec not used
|
||||||
# Win32API::File not used
|
# Win32API::File not used
|
||||||
# Tests:
|
# Tests:
|
||||||
BuildRequires: perl(diagnostics)
|
|
||||||
# ExtUtils::CBuilder not used
|
# ExtUtils::CBuilder not used
|
||||||
BuildRequires: perl(ExtUtils::MM)
|
BuildRequires: perl(ExtUtils::MM)
|
||||||
BuildRequires: perl(File::Temp)
|
BuildRequires: perl(File::Temp)
|
||||||
BuildRequires: perl(Test::More)
|
BuildRequires: perl(Test::More)
|
||||||
# VMS::DCLsymnot used
|
|
||||||
# Unbundled tests:
|
# Unbundled tests:
|
||||||
# Test::Builder not used
|
# Test::Builder not used
|
||||||
%if %{with perl_ExtUtils_Install_enables_optional_test}
|
# Optional tests:
|
||||||
# Optional testes:
|
# Test::Pod 1.14 not used
|
||||||
%if !%{defined perl_bootstrap}
|
|
||||||
BuildRequires: perl(Test::Pod) >= 1.14
|
|
||||||
# Test::Pod::Coverage 1.08 not used
|
# Test::Pod::Coverage 1.08 not used
|
||||||
# Pod::Coverage 0.17 not used
|
# Pod::Coverage 0.17 not used
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
Requires: perl(AutoSplit)
|
Requires: perl(AutoSplit)
|
||||||
Requires: perl(Data::Dumper)
|
Requires: perl(Data::Dumper)
|
||||||
@ -64,24 +49,22 @@ Recommends: perl(POSIX)
|
|||||||
%{?perl_default_filter}
|
%{?perl_default_filter}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Handles the installing and uninstalling of Perl modules, scripts, man
|
Handles the installing and uninstalling of Perl modules, scripts, manual
|
||||||
pages, etc.
|
pages, etc.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n ExtUtils-Install-%{version}
|
%setup -q -n ExtUtils-Install-%{version}
|
||||||
# Remove bundled modules
|
|
||||||
rm -rf t/lib/Test
|
|
||||||
sed -i -e '/^t\/lib\/Test\//d' MANIFEST
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
|
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||||
make %{?_smp_mflags}
|
%{make_build}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make pure_install DESTDIR=%{buildroot}
|
%{make_install}
|
||||||
%{_fixperms} %{buildroot}
|
%{_fixperms} %{buildroot}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset AUTHOR_TESTING PERL_CORE
|
||||||
make test
|
make test
|
||||||
|
|
||||||
%files
|
%files
|
||||||
@ -90,6 +73,37 @@ make test
|
|||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.20-4
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.20-3
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.20-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Dec 18 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.20-1
|
||||||
|
- 2.20 bump
|
||||||
|
|
||||||
|
* Wed Sep 16 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.18-1
|
||||||
|
- 2.18 bump
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.16-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 26 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.16-2
|
||||||
|
- Perl 5.32 re-rebuild of bootstrapped packages
|
||||||
|
|
||||||
|
* Mon Jun 22 2020 Petr Pisar <ppisar@redhat.com> - 2.16-1
|
||||||
|
- 2.16 bump
|
||||||
|
|
||||||
|
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.14-456
|
||||||
|
- Increase release to favour standalone package
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.14-441
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.14-440
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.14-440
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user