-
Notifications
You must be signed in to change notification settings - Fork 567
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade: perl-Crypt-OpenSSL-Guess to 0.15
- Loading branch information
Showing
3 changed files
with
101 additions
and
16 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
SPECS-EXTENDED/perl-Crypt-OpenSSL-Guess/perl-Crypt-OpenSSL-Guess.signatures.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"Signatures": { | ||
"perl-Crypt-OpenSSL-Guess-0.11.tar.gz": "aa6b18e38cb852cbad80a58cd90c395b40819d4d01e0ab37e7703149094d7167" | ||
"perl-Crypt-OpenSSL-Guess-0.15.tar.gz": "1c5033381819fdb4c9087dd291b90ec70e7810d31d57eade9b388eccfd70386d" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
Vendor: Microsoft Corporation | ||
Distribution: Azure Linux | ||
Name: perl-Crypt-OpenSSL-Guess | ||
Version: 0.11 | ||
Release: 8%{?dist} | ||
Version: 0.15 | ||
Release: 9%{?dist} | ||
Summary: Guess OpenSSL include path | ||
License: GPL+ or Artistic | ||
License: GPL-1.0-or-later OR Artistic-1.0-Perl | ||
Vendor: Microsoft Corporation | ||
Distribution: Azure Linux | ||
|
||
URL: https://metacpan.org/release/Crypt-OpenSSL-Guess/ | ||
Source0: https://cpan.metacpan.org/authors/id/A/AK/AKIYM/Crypt-OpenSSL-Guess-%{version}.tar.gz#/perl-Crypt-OpenSSL-Guess-%{version}.tar.gz | ||
BuildArch: noarch | ||
BuildRequires: coreutils | ||
BuildRequires: make | ||
BuildRequires: perl-generators | ||
BuildRequires: perl-interpreter | ||
|
@@ -16,14 +18,14 @@ BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76 | |
BuildRequires: perl(strict) | ||
# Run-time | ||
BuildRequires: perl(Config) | ||
BuildRequires: perl(English) | ||
BuildRequires: perl(Exporter) >= 5.57 | ||
BuildRequires: perl(ExtUtils::MM) | ||
BuildRequires: perl(File::Spec) | ||
BuildRequires: perl(Symbol) | ||
BuildRequires: perl(warnings) | ||
# Tests | ||
BuildRequires: perl(Test::More) >= 0.98 | ||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) | ||
Requires: perl(Exporter) >= 5.57 | ||
Recommends: openssl | ||
|
||
|
@@ -33,18 +35,43 @@ Recommends: openssl | |
Crypt::OpenSSL::Guess provides helpers to guess OpenSSL include path on any | ||
platforms. | ||
|
||
%package tests | ||
Summary: Tests for %{name} | ||
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release} | ||
Requires: perl-Test-Harness | ||
|
||
%description tests | ||
Tests from %{name}. Execute them | ||
with "%{_libexecdir}/%{name}/test". | ||
|
||
%prep | ||
%setup -q -n Crypt-OpenSSL-Guess-%{version} | ||
|
||
# Help file to recognise the 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 | ||
make %{?_smp_mflags} | ||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 | ||
%{make_build} | ||
|
||
%install | ||
make pure_install DESTDIR=$RPM_BUILD_ROOT | ||
%{_fixperms} $RPM_BUILD_ROOT/* | ||
%{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 . -j "$(getconf _NPROCESSORS_ONLN)" | ||
EOF | ||
chmod +x %{buildroot}%{_libexecdir}/%{name}/test | ||
|
||
%check | ||
export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}') | ||
make test | ||
|
||
%files | ||
|
@@ -53,9 +80,67 @@ make test | |
%{perl_vendorlib}/* | ||
%{_mandir}/man3/* | ||
|
||
%files tests | ||
%{_libexecdir}/%{name} | ||
|
||
%changelog | ||
* Fri Oct 15 2021 Pawel Winogrodzki <[email protected]> - 0.11-8 | ||
- Initial CBL-Mariner import from Fedora 32 (license: MIT). | ||
* Wed Dec 18 2024 Jyoti kanase <[email protected]> - 0.15 - 9 | ||
- Initial Azure Linux import from Fedora 41 (license: MIT). | ||
- License verified. | ||
|
||
* Thu Jul 18 2024 Fedora Release Engineering <[email protected]> - 0.15-8 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild | ||
|
||
* Thu Jan 25 2024 Fedora Release Engineering <[email protected]> - 0.15-7 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild | ||
|
||
* Sun Jan 21 2024 Fedora Release Engineering <[email protected]> - 0.15-6 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild | ||
|
||
* Thu Jul 20 2023 Fedora Release Engineering <[email protected]> - 0.15-5 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild | ||
|
||
* Fri Jan 20 2023 Fedora Release Engineering <[email protected]> - 0.15-4 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild | ||
|
||
* Fri Jul 22 2022 Fedora Release Engineering <[email protected]> - 0.15-3 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild | ||
|
||
* Mon May 30 2022 Jitka Plesnikova <[email protected]> - 0.15-2 | ||
- Perl 5.36 rebuild | ||
|
||
* Sun Feb 13 2022 Jitka Plesnikova <[email protected]> - 0.15-1 | ||
- 0.15 bump | ||
|
||
* Fri Jan 21 2022 Fedora Release Engineering <[email protected]> - 0.14-2 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild | ||
|
||
* Mon Nov 01 2021 Jitka Plesnikova <[email protected]> - 0.14-1 | ||
- 0.14 bump | ||
|
||
* Thu Jul 22 2021 Fedora Release Engineering <[email protected]> - 0.13-3 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild | ||
|
||
* Fri May 21 2021 Jitka Plesnikova <[email protected]> - 0.13-2 | ||
- Perl 5.34 rebuild | ||
|
||
* Tue May 04 2021 Jitka Plesnikova <[email protected]> - 0.13-1 | ||
- 0.13 bump | ||
|
||
* Tue Mar 09 2021 Jitka Plesnikova <[email protected]> - 0.12-2 | ||
- Package tests | ||
|
||
* Mon Mar 08 2021 Jitka Plesnikova <[email protected]> - 0.12-1 | ||
- 0.12 bump | ||
|
||
* Wed Jan 27 2021 Fedora Release Engineering <[email protected]> - 0.11-10 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild | ||
|
||
* Tue Jul 28 2020 Fedora Release Engineering <[email protected]> - 0.11-9 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild | ||
|
||
* Mon Jun 22 2020 Jitka Plesnikova <[email protected]> - 0.11-8 | ||
- Perl 5.32 rebuild | ||
|
||
* Wed Jan 29 2020 Fedora Release Engineering <[email protected]> - 0.11-7 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters