Compare commits
No commits in common. "c8-stream-5.3" and "c8-stream-5.32" have entirely different histories.
c8-stream-
...
c8-stream-
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
|
||||
Version: 2.14
|
||||
Release: 440%{?dist}
|
||||
Version: 2.20
|
||||
Release: 1%{?dist}
|
||||
Summary: Install Perl files from here to there
|
||||
License: GPL+ or Artistic
|
||||
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
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: make
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||
BuildRequires: perl(lib)
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: sed
|
||||
# Run-time:
|
||||
BuildRequires: perl(AutoSplit)
|
||||
BuildRequires: perl(Carp)
|
||||
@ -35,26 +27,19 @@ BuildRequires: perl(File::Find)
|
||||
BuildRequires: perl(File::Path)
|
||||
BuildRequires: perl(File::Spec)
|
||||
# POSIX is optional
|
||||
BuildRequires: perl(vars)
|
||||
# VMS::Filespec not used
|
||||
# Win32API::File not used
|
||||
# Tests:
|
||||
BuildRequires: perl(diagnostics)
|
||||
# ExtUtils::CBuilder not used
|
||||
BuildRequires: perl(ExtUtils::MM)
|
||||
BuildRequires: perl(File::Temp)
|
||||
BuildRequires: perl(Test::More)
|
||||
# VMS::DCLsymnot used
|
||||
# Unbundled tests:
|
||||
# Test::Builder not used
|
||||
%if %{with perl_ExtUtils_Install_enables_optional_test}
|
||||
# Optional testes:
|
||||
%if !%{defined perl_bootstrap}
|
||||
BuildRequires: perl(Test::Pod) >= 1.14
|
||||
# Optional tests:
|
||||
# Test::Pod 1.14 not used
|
||||
# Test::Pod::Coverage 1.08 not used
|
||||
# Pod::Coverage 0.17 not used
|
||||
%endif
|
||||
%endif
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
Requires: perl(AutoSplit)
|
||||
Requires: perl(Data::Dumper)
|
||||
@ -64,24 +49,22 @@ Recommends: perl(POSIX)
|
||||
%{?perl_default_filter}
|
||||
|
||||
%description
|
||||
Handles the installing and uninstalling of Perl modules, scripts, man
|
||||
Handles the installing and uninstalling of Perl modules, scripts, manual
|
||||
pages, etc.
|
||||
|
||||
%prep
|
||||
%setup -q -n ExtUtils-Install-%{version}
|
||||
# Remove bundled modules
|
||||
rm -rf t/lib/Test
|
||||
sed -i -e '/^t\/lib\/Test\//d' MANIFEST
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
|
||||
make %{?_smp_mflags}
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||
%{make_build}
|
||||
|
||||
%install
|
||||
make pure_install DESTDIR=%{buildroot}
|
||||
%{make_install}
|
||||
%{_fixperms} %{buildroot}
|
||||
|
||||
%check
|
||||
unset AUTHOR_TESTING PERL_CORE
|
||||
make test
|
||||
|
||||
%files
|
||||
@ -90,6 +73,27 @@ make test
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
* 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
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user