Compare commits
No commits in common. "c8-beta-stream-5.24" and "c8-stream-5.3" have entirely different histories.
c8-beta-st
...
c8-stream-
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/Config-Perl-V-0.27.tgz
|
||||
SOURCES/Config-Perl-V-0.31.tgz
|
||||
|
||||
@ -1 +1 @@
|
||||
69ca35b421a793ae36814fc5884c84998989e0c4 SOURCES/Config-Perl-V-0.27.tgz
|
||||
0d47e00ceb1672ba400b9d8fbf10cf8e951bae75 SOURCES/Config-Perl-V-0.31.tgz
|
||||
|
||||
25
SOURCES/Config-Perl-V-0.31-Upgrade-to-0.32.patch
Normal file
25
SOURCES/Config-Perl-V-0.31-Upgrade-to-0.32.patch
Normal file
@ -0,0 +1,25 @@
|
||||
From df89962a7df684f6dabb035a161e6bece2f8ee0f Mon Sep 17 00:00:00 2001
|
||||
From: Jitka Plesnikova <jplesnik@redhat.com>
|
||||
Date: Thu, 25 Apr 2019 15:51:26 +0200
|
||||
Subject: [PATCH] Upgrade to 0.32
|
||||
|
||||
---
|
||||
V.pm | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/V.pm b/V.pm
|
||||
index a738cbe..dbb0f88 100644
|
||||
--- a/V.pm
|
||||
+++ b/V.pm
|
||||
@@ -6,7 +6,7 @@ use warnings;
|
||||
use Config;
|
||||
use Exporter;
|
||||
use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS);
|
||||
-$VERSION = "0.31";
|
||||
+$VERSION = "0.32";
|
||||
@ISA = qw( Exporter );
|
||||
@EXPORT_OK = qw( plv2hash summary myconfig signature );
|
||||
%EXPORT_TAGS = (
|
||||
--
|
||||
2.20.1
|
||||
|
||||
@ -1,20 +1,22 @@
|
||||
%global base_version 0.31
|
||||
|
||||
Name: perl-Config-Perl-V
|
||||
Version: 0.27
|
||||
Release: 3%{?dist}
|
||||
Version: 0.32
|
||||
Release: 441%{?dist}
|
||||
Summary: Structured data retrieval of perl -V output
|
||||
License: GPL+ or Artistic
|
||||
Group: Development/Libraries
|
||||
URL: http://search.cpan.org/dist/Config-Perl-V/
|
||||
Source0: http://www.cpan.org/authors/id/H/HM/HMBRAND/Config-Perl-V-%{version}.tgz
|
||||
URL: https://metacpan.org/release/Config-Perl-V
|
||||
Source0: https://cpan.metacpan.org/authors/id/H/HM/HMBRAND/Config-Perl-V-%{base_version}.tgz
|
||||
# Correct example
|
||||
Patch0: Config-Perl-V-0.24-Remove-invalid-shellbang.patch
|
||||
# Unbundled from perl 5.29.10
|
||||
Patch1: Config-Perl-V-0.31-Upgrade-to-0.32.patch
|
||||
BuildArch: noarch
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: findutils
|
||||
BuildRequires: make
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||
BuildRequires: perl(strict)
|
||||
# Run-time:
|
||||
BuildRequires: perl(Config)
|
||||
@ -22,11 +24,15 @@ BuildRequires: perl(Exporter)
|
||||
BuildRequires: perl(vars)
|
||||
BuildRequires: perl(warnings)
|
||||
# Optional run-time:
|
||||
# Digest::MD5 not used at tests
|
||||
BuildRequires: perl(Digest::MD5)
|
||||
# Tests:
|
||||
BuildRequires: perl(Test::More)
|
||||
%if !%{defined perl_bootstrap}
|
||||
# Building core modules must not require non-core modules when bootstrapping
|
||||
BuildRequires: perl(Test::NoWarnings)
|
||||
%endif
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
Suggests: perl(Digest::MD5)
|
||||
Conflicts: perl < 4:5.22.0-347
|
||||
|
||||
%description
|
||||
@ -36,21 +42,22 @@ but only available to the perl binary itself. This package provides Perl
|
||||
module that will return you the output of "perl -V" in a structure.
|
||||
|
||||
%prep
|
||||
%setup -q -n Config-Perl-V-%{version}
|
||||
%setup -q -n Config-Perl-V-%{base_version}
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
chmod -x examples/*
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||
%{make_build}
|
||||
|
||||
%install
|
||||
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
||||
find $RPM_BUILD_ROOT -type f -name .packlist -delete
|
||||
%{make_install}
|
||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||
|
||||
%check
|
||||
make test
|
||||
# Building core modules must not require non-core modules when bootstrapping
|
||||
make test PERL_CORE=%{defined perl_bootstrap}
|
||||
|
||||
%files
|
||||
%doc Changelog CONTRIBUTING.md examples README
|
||||
@ -58,8 +65,59 @@ make test
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
* Fri Mar 29 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.27-3
|
||||
- Rebuild with enable hardening (bug #1636329)
|
||||
* Fri Sep 27 2019 Petr Pisar <ppisar@redhat.com> - 0.32-441
|
||||
- Indeed upgrade to 0.32
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.32-440
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.32-439
|
||||
- Perl 5.30 re-rebuild of bootstrapped packages
|
||||
|
||||
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.32-438
|
||||
- Increase release to favour standalone package
|
||||
|
||||
* Fri May 03 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.32-1
|
||||
- Upgrade to 0.32 as provided in perl-5.29.10
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.31-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Wed Dec 19 2018 Petr Pisar <ppisar@redhat.com> - 0.31-1
|
||||
- 0.31 bump
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Mon Jul 09 2018 Petr Pisar <ppisar@redhat.com> - 0.30-1
|
||||
- 0.30 bump
|
||||
|
||||
* Sat Jun 30 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.29-417
|
||||
- Perl 5.28 re-rebuild of bootstrapped packages
|
||||
|
||||
* Tue Jun 26 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.29-416
|
||||
- Increase release to favour standalone package
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.29-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Mon Oct 16 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.29-1
|
||||
- 0.29 bump
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.28-395
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Wed Jun 07 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.28-394
|
||||
- Perl 5.26 re-rebuild of bootstrapped packages
|
||||
|
||||
* Sat Jun 03 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.28-393
|
||||
- Perl 5.26 rebuild
|
||||
|
||||
* Fri May 12 2017 Petr Pisar <ppisar@redhat.com> - 0.28-2
|
||||
- Building core modules must not require non-core modules when bootstrapping
|
||||
|
||||
* Thu May 11 2017 Petr Pisar <ppisar@redhat.com> - 0.28-1
|
||||
- Upgrade to 0.28 as provided in perl-5.25.12
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.27-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
Loading…
Reference in New Issue
Block a user