import CS perl-Module-CoreList-5.20240609-1.el9
This commit is contained in:
parent
201e38e465
commit
185500af52
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/Module-CoreList-5.20210320.tar.gz
|
SOURCES/Module-CoreList-5.20240609.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
ae1b4a58ace3a3474c26b166ec2b2c449f4180fa SOURCES/Module-CoreList-5.20210320.tar.gz
|
9526482a0dd01b54f8b1a58de7b1097221745e5a SOURCES/Module-CoreList-5.20240609.tar.gz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
Name: perl-Module-CoreList
|
Name: perl-Module-CoreList
|
||||||
# Epoch to compete with perl.spec
|
# Epoch to compete with perl.spec
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 5.20210320
|
Version: 5.20240609
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: What modules are shipped with versions of perl
|
Summary: What modules are shipped with versions of perl
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: https://metacpan.org/release/Module-CoreList
|
URL: https://metacpan.org/release/Module-CoreList
|
||||||
@ -25,7 +25,6 @@ BuildRequires: perl(List::Util)
|
|||||||
BuildRequires: perl(version) >= 0.88
|
BuildRequires: perl(version) >= 0.88
|
||||||
# Tests:
|
# Tests:
|
||||||
BuildRequires: perl(Test::More)
|
BuildRequires: perl(Test::More)
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
|
||||||
Requires: perl(List::Util)
|
Requires: perl(List::Util)
|
||||||
Requires: perl(version) >= 0.88
|
Requires: perl(version) >= 0.88
|
||||||
|
|
||||||
@ -64,28 +63,22 @@ with "%{_libexecdir}/%{name}/test".
|
|||||||
|
|
||||||
# Help file to recognise the Perl scripts and normalize shebangs
|
# Help file to recognise the Perl scripts and normalize shebangs
|
||||||
for F in t/*.t; do
|
for F in t/*.t; do
|
||||||
if head -1 "$F" | grep -q -e '^#!.*perl' ; then
|
perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F"
|
||||||
perl -MConfig -pi -e 's|^#!.*perl\b|$Config{startperl}|' "$F"
|
|
||||||
else
|
|
||||||
perl -i -MConfig -ple 'print $Config{startperl} if $. == 1' "$F"
|
|
||||||
fi
|
|
||||||
chmod +x "$F"
|
chmod +x "$F"
|
||||||
done
|
done
|
||||||
|
|
||||||
# Remove release tests
|
|
||||||
rm t/pod.t
|
|
||||||
perl -i -ne 'print $_ unless m{^t/pod\.t}' MANIFEST
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||||
%{make_build}
|
%{make_build}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{make_install}
|
%{make_install}
|
||||||
|
%{_fixperms} %{buildroot}/*
|
||||||
|
|
||||||
# Install tests
|
# Install tests
|
||||||
mkdir -p %{buildroot}/%{_libexecdir}/%{name}
|
mkdir -p %{buildroot}/%{_libexecdir}/%{name}
|
||||||
cp -a t %{buildroot}/%{_libexecdir}/%{name}
|
cp -a t %{buildroot}/%{_libexecdir}/%{name}
|
||||||
|
rm -f %{buildroot}/%{_libexecdir}/%{name}/t/pod.t
|
||||||
cat > %{buildroot}/%{_libexecdir}/%{name}/test << 'EOF'
|
cat > %{buildroot}/%{_libexecdir}/%{name}/test << 'EOF'
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
unset PERL_CORE
|
unset PERL_CORE
|
||||||
@ -93,8 +86,6 @@ cd %{_libexecdir}/%{name} && exec prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
|
|||||||
EOF
|
EOF
|
||||||
chmod +x %{buildroot}/%{_libexecdir}/%{name}/test
|
chmod +x %{buildroot}/%{_libexecdir}/%{name}/test
|
||||||
|
|
||||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
unset PERL_CORE
|
unset PERL_CORE
|
||||||
export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}')
|
export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}')
|
||||||
@ -102,8 +93,8 @@ make test
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%doc Changes README
|
%doc Changes README
|
||||||
%{perl_vendorlib}/*
|
%{perl_vendorlib}/Module
|
||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/Module::CoreList*
|
||||||
|
|
||||||
%files tools
|
%files tools
|
||||||
%doc README
|
%doc README
|
||||||
@ -114,6 +105,9 @@ make test
|
|||||||
%{_libexecdir}/%{name}
|
%{_libexecdir}/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Nov 19 2024 Jitka Plesnikova <jplesnik@redhat.com> - 1:5.20240609
|
||||||
|
- Resolves: RHEL-5539 - 5.20240609 bump
|
||||||
|
|
||||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1:5.20210320-3
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1:5.20210320-3
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
Related: rhbz#1991688
|
Related: rhbz#1991688
|
||||||
|
Loading…
Reference in New Issue
Block a user