From 7986607944106bdb9a22dd5cbee3ad5debcd2334 Mon Sep 17 00:00:00 2001 From: eabdullin Date: Wed, 14 May 2025 17:31:33 +0000 Subject: [PATCH] import UBI perl-Tie-RefHash-1.40-511.el10 --- .gitignore | 2 +- .perl-Tie-RefHash.metadata | 1 - SPECS/perl-Tie-RefHash.spec | 85 --------------------- perl-Tie-RefHash.spec | 148 ++++++++++++++++++++++++++++++++++++ sources | 1 + 5 files changed, 150 insertions(+), 87 deletions(-) delete mode 100644 .perl-Tie-RefHash.metadata delete mode 100644 SPECS/perl-Tie-RefHash.spec create mode 100644 perl-Tie-RefHash.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index a757c7f..cda764f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -SOURCES/Tie-RefHash-1.40.tar.gz +Tie-RefHash-1.40.tar.gz diff --git a/.perl-Tie-RefHash.metadata b/.perl-Tie-RefHash.metadata deleted file mode 100644 index 0dc6180..0000000 --- a/.perl-Tie-RefHash.metadata +++ /dev/null @@ -1 +0,0 @@ -f2406372e048e49f56f23d1d83327bad9adc61dc SOURCES/Tie-RefHash-1.40.tar.gz diff --git a/SPECS/perl-Tie-RefHash.spec b/SPECS/perl-Tie-RefHash.spec deleted file mode 100644 index ff0cd29..0000000 --- a/SPECS/perl-Tie-RefHash.spec +++ /dev/null @@ -1,85 +0,0 @@ -# Perform optional tests -%bcond_without perl_Tie_RefHash_enables_optional_test - -Name: perl-Tie-RefHash -Version: 1.40 -Release: 4%{?dist} -Summary: Use references as hash keys -License: GPL+ or Artistic -URL: https://metacpan.org/release/Tie-RefHash -Source0: https://cpan.metacpan.org/authors/id/E/ET/ETHER/Tie-RefHash-%{version}.tar.gz -BuildArch: noarch -BuildRequires: coreutils -BuildRequires: make -BuildRequires: perl-generators -BuildRequires: perl-interpreter -BuildRequires: perl(:VERSION) >= 5.6 -BuildRequires: perl(Config) -BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76 -BuildRequires: perl(strict) -BuildRequires: perl(warnings) -# Run-time: -BuildRequires: perl(Carp) -# Scalar::Util || overload -BuildRequires: perl(overload) -# Scalar::Util skipped to exhibit overload fallback -BuildRequires: perl(Tie::Hash) -# Tests: -BuildRequires: perl(File::Spec) -BuildRequires: perl(Storable) -BuildRequires: perl(Test::More) -%if %{with perl_Tie_RefHash_enables_optional_test} -# Optional tests: -BuildRequires: perl(Data::Dumper) -BuildRequires: perl(threads) -%endif -Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) -Requires: perl(overload) -Suggests: perl(Scalar::Util) >= 1.01 -Conflicts: perl-interpreter < 4:5.30.1-451 - -%description -This module provides the ability to use references as hash keys if you first -"tie" the hash variable to this module. Normally, only the keys of the tied -hash itself are preserved as references; to use references as keys in -hashes-of-hashes, use Tie::RefHash::Nestable, included as part of -Tie::RefHash. - -%prep -%setup -q -n Tie-RefHash-%{version} -%if !%{with perl_Tie_RefHash_enables_optional_test} -rm t/refhash.t -perl -i -ne 'print $_ unless m{^t/refhash\.t}' MANIFEST -%endif - -%build -perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 -%{make_build} - -%install -%{make_install} -%{_fixperms} $RPM_BUILD_ROOT/* - -%check -unset PERL_CORE -make test - -%files -%license LICENCE -%doc Changes CONTRIBUTING README -%{perl_vendorlib}/* -%{_mandir}/man3/* - -%changelog -* Mon Aug 09 2021 Mohan Boddu - 1.40-4 -- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags - Related: rhbz#1991688 - -* Fri Apr 16 2021 Mohan Boddu - 1.40-3 -- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937 - -* Wed Jan 27 2021 Fedora Release Engineering - 1.40-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Tue Oct 13 2020 Petr Pisar 1.40-1 -- Specfile autogenerated by cpanspec 1.78. diff --git a/perl-Tie-RefHash.spec b/perl-Tie-RefHash.spec new file mode 100644 index 0000000..cbb8838 --- /dev/null +++ b/perl-Tie-RefHash.spec @@ -0,0 +1,148 @@ +# Perform optional tests +%bcond_without perl_Tie_RefHash_enables_optional_test + +Name: perl-Tie-RefHash +Version: 1.40 +Release: 511%{?dist} +Summary: Use references as hash keys +License: GPL-1.0-or-later OR Artistic-1.0-Perl +URL: https://metacpan.org/release/Tie-RefHash +Source0: https://cpan.metacpan.org/authors/id/E/ET/ETHER/Tie-RefHash-%{version}.tar.gz +BuildArch: noarch +BuildRequires: coreutils +BuildRequires: make +BuildRequires: perl-generators +BuildRequires: perl-interpreter +BuildRequires: perl(:VERSION) >= 5.6 +BuildRequires: perl(Config) +BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76 +BuildRequires: perl(strict) +BuildRequires: perl(warnings) +# Run-time: +BuildRequires: perl(Carp) +# Scalar::Util || overload +BuildRequires: perl(overload) +# Scalar::Util skipped to exhibit overload fallback +BuildRequires: perl(Tie::Hash) +# Tests: +BuildRequires: perl(File::Spec) +BuildRequires: perl(Storable) +BuildRequires: perl(Test::More) +%if %{with perl_Tie_RefHash_enables_optional_test} +# Optional tests: +BuildRequires: perl(Data::Dumper) +BuildRequires: perl(threads) +%endif +Requires: perl(overload) +Suggests: perl(Scalar::Util) >= 1.01 +Conflicts: perl-interpreter < 4:5.30.1-451 + +%description +This module provides the ability to use references as hash keys if you first +"tie" the hash variable to this module. Normally, only the keys of the tied +hash itself are preserved as references; to use references as keys in +hashes-of-hashes, use Tie::RefHash::Nestable, included as part of +Tie::RefHash. + +%package tests +Summary: Tests for %{name} +Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release} +Requires: perl-Test-Harness +Requires: perl(threads) + +%description tests +Tests from %{name}. Execute them +with "%{_libexecdir}/%{name}/test". + +%prep +%setup -q -n Tie-RefHash-%{version} +%if !%{with perl_Tie_RefHash_enables_optional_test} +rm t/refhash.t +perl -i -ne 'print $_ unless m{^t/refhash\.t}' MANIFEST +%endif + +# Help generators to recognize Perl scripts +for F in t/*.t; do + perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F" + chmod +x "$F" +done + +%build +perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 +%{make_build} + +%install +%{make_install} +%{_fixperms} %{buildroot}/* +# Install tests +mkdir -p %{buildroot}%{_libexecdir}/%{name} +cp -a t %{buildroot}%{_libexecdir}/%{name} +cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF' +#!/bin/sh +cd %{_libexecdir}/%{name} && exec prove -I . -r -j "$(getconf _NPROCESSORS_ONLN)" +EOF +chmod +x %{buildroot}%{_libexecdir}/%{name}/test + +%check +unset PERL_CORE +export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}') +make test + +%files +%license LICENCE +%doc Changes CONTRIBUTING README +%{perl_vendorlib}/* +%{_mandir}/man3/* + +%files tests +%{_libexecdir}/%{name} + +%changelog +* Tue Oct 29 2024 Troy Dawson - 1.40-511 +- Bump release for October 2024 mass rebuild: + Resolves: RHEL-64018 + +* Thu Jul 18 2024 Jitka Plesnikova - 1.40-510 +- Increase release to favour standalone package + +* Mon Jun 24 2024 Troy Dawson - 1.40-504 +- Bump release for June 2024 mass rebuild + +* Thu Feb 01 2024 Jitka Plesnikova - 1.40-503 +- Package tests + +* Thu Jan 25 2024 Fedora Release Engineering - 1.40-502 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 1.40-501 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Jul 21 2023 Fedora Release Engineering - 1.40-500 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Tue Jul 11 2023 Jitka Plesnikova - 1.40-499 +- Increase release to favour standalone package + +* Fri Jan 20 2023 Fedora Release Engineering - 1.40-490 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Fri Jul 22 2022 Fedora Release Engineering - 1.40-489 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon May 30 2022 Jitka Plesnikova - 1.40-488 +- Increase release to favour standalone package + +* Fri Jan 21 2022 Fedora Release Engineering - 1.40-479 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering - 1.40-478 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri May 21 2021 Jitka Plesnikova - 1.40-477 +- Increase release to favour standalone package + +* Wed Jan 27 2021 Fedora Release Engineering - 1.40-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Tue Oct 13 2020 Petr Pisar 1.40-1 +- Specfile autogenerated by cpanspec 1.78. diff --git a/sources b/sources new file mode 100644 index 0000000..558da40 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (Tie-RefHash-1.40.tar.gz) = 92fd68ad98a7cf0a7b907cf32b6460a90ec23db71114d5e5144541041204ce241236584b30a241c955608ba2823f87e21262fed56d9ee4675666152e88d3666b