|
|
@ -1,5 +1,5 @@
|
|
|
|
%global cpan_version_major 0.42
|
|
|
|
%global cpan_version_major 0.42
|
|
|
|
%global cpan_version_minor 24
|
|
|
|
%global cpan_version_minor 31
|
|
|
|
%global cpan_version %{cpan_version_major}%{?cpan_version_minor}
|
|
|
|
%global cpan_version %{cpan_version_major}%{?cpan_version_minor}
|
|
|
|
|
|
|
|
|
|
|
|
# Run optional tests
|
|
|
|
# Run optional tests
|
|
|
@ -12,11 +12,15 @@
|
|
|
|
Name: perl-Module-Build
|
|
|
|
Name: perl-Module-Build
|
|
|
|
Epoch: 2
|
|
|
|
Epoch: 2
|
|
|
|
Version: %{cpan_version_major}%{?cpan_version_minor:.%cpan_version_minor}
|
|
|
|
Version: %{cpan_version_major}%{?cpan_version_minor:.%cpan_version_minor}
|
|
|
|
Release: 5%{?dist}
|
|
|
|
Release: 9%{?dist}
|
|
|
|
Summary: Build and install Perl modules
|
|
|
|
Summary: Build and install Perl modules
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
URL: http://search.cpan.org/dist/Module-Build/
|
|
|
|
URL: https://metacpan.org/release/Module-Build
|
|
|
|
Source0: http://www.cpan.org/authors/id/L/LE/LEONT/Module-Build-%{cpan_version}.tar.gz
|
|
|
|
Source0: https://cpan.metacpan.org/authors/id/L/LE/LEONT/Module-Build-%{cpan_version}.tar.gz
|
|
|
|
|
|
|
|
# Do not require a compiler if c_source is an empty list, bug #1547165,
|
|
|
|
|
|
|
|
# CPAN RT#124625,
|
|
|
|
|
|
|
|
# <https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org/message/UWQ6SDRKNTX6SM6RBJ35CDBGRCV3ZSKP/>
|
|
|
|
|
|
|
|
Patch0: Module-Build-0.4224-Do-not-need-a-compiler-if-c_source-is-an-empty-list.patch
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: coreutils
|
|
|
|
BuildRequires: coreutils
|
|
|
|
BuildRequires: perl-interpreter
|
|
|
|
BuildRequires: perl-interpreter
|
|
|
@ -25,6 +29,7 @@ BuildRequires: perl-generators
|
|
|
|
BuildRequires: perl(Archive::Tar)
|
|
|
|
BuildRequires: perl(Archive::Tar)
|
|
|
|
BuildRequires: perl(AutoSplit)
|
|
|
|
BuildRequires: perl(AutoSplit)
|
|
|
|
BuildRequires: perl(base)
|
|
|
|
BuildRequires: perl(base)
|
|
|
|
|
|
|
|
BuildRequires: perl(blib)
|
|
|
|
BuildRequires: perl(Carp)
|
|
|
|
BuildRequires: perl(Carp)
|
|
|
|
BuildRequires: perl(Config)
|
|
|
|
BuildRequires: perl(Config)
|
|
|
|
BuildRequires: perl(CPAN::Meta) >= 2.142060
|
|
|
|
BuildRequires: perl(CPAN::Meta) >= 2.142060
|
|
|
@ -82,7 +87,11 @@ Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
|
|
|
Requires: perl(CPAN::Meta) >= 2.142060
|
|
|
|
Requires: perl(CPAN::Meta) >= 2.142060
|
|
|
|
Requires: perl(CPAN::Meta::Converter) >= 2.141170
|
|
|
|
Requires: perl(CPAN::Meta::Converter) >= 2.141170
|
|
|
|
Requires: perl(CPAN::Meta::Merge)
|
|
|
|
Requires: perl(CPAN::Meta::Merge)
|
|
|
|
Requires: perl(ExtUtils::CBuilder) >= 0.27
|
|
|
|
# Do not hard-require ExtUtils::CBuilder to allow installing Module::Build
|
|
|
|
|
|
|
|
# without gcc, bug #1547165. Module::Build users have to require
|
|
|
|
|
|
|
|
# ExtUtils::CBuilder explicitly according to "XS Extensions" section in
|
|
|
|
|
|
|
|
# Module::Build::Authoring POD.
|
|
|
|
|
|
|
|
Recommends: perl(ExtUtils::CBuilder) >= 0.27
|
|
|
|
Requires: perl(ExtUtils::Install) >= 0.3
|
|
|
|
Requires: perl(ExtUtils::Install) >= 0.3
|
|
|
|
Requires: perl(ExtUtils::Manifest) >= 1.54
|
|
|
|
Requires: perl(ExtUtils::Manifest) >= 1.54
|
|
|
|
Requires: perl(ExtUtils::Mkbootstrap)
|
|
|
|
Requires: perl(ExtUtils::Mkbootstrap)
|
|
|
@ -128,6 +137,7 @@ works fine on perl 5.005 if you can install a few additional modules.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%prep
|
|
|
|
%setup -q -n Module-Build-%{cpan_version}
|
|
|
|
%setup -q -n Module-Build-%{cpan_version}
|
|
|
|
|
|
|
|
%patch0 -p1
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%build
|
|
|
|
perl Build.PL installdirs=vendor
|
|
|
|
perl Build.PL installdirs=vendor
|
|
|
@ -150,8 +160,63 @@ LANG=C TEST_SIGNATURE=1 MB_TEST_EXPERIMENTAL=1 ./Build test
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
* Wed Jul 26 2023 MSVSphere Packaging Team <packager@msvsphere.ru> - 2:0.42.24-5
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2:0.42.31-9
|
|
|
|
- Rebuilt for MSVSphere 8.8
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2:0.42.31-8
|
|
|
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.42.31-7
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Dec 11 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2:0.42.31-6
|
|
|
|
|
|
|
|
- Disable optional tests on RHEL
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.42.31-5
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jun 26 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2:0.42.31-4
|
|
|
|
|
|
|
|
- Perl 5.32 re-rebuild of bootstrapped packages
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2:0.42.31-3
|
|
|
|
|
|
|
|
- Perl 5.32 rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Mar 10 2020 Paul Howarth <paul@city-fan.org> - 2:0.42.31-2
|
|
|
|
|
|
|
|
- BR: perl(blib), needed for t/xs.t
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jan 29 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2:0.42.31-1
|
|
|
|
|
|
|
|
- 0.4231 bump
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.42.29-4
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2:0.42.29-3
|
|
|
|
|
|
|
|
- Perl 5.30 re-rebuild of bootstrapped packages
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2:0.42.29-2
|
|
|
|
|
|
|
|
- Perl 5.30 rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Apr 16 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2:0.42.29-1
|
|
|
|
|
|
|
|
- 0.4229 bump
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.42.24-11
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.42.24-10
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Jul 01 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2:0.42.24-9
|
|
|
|
|
|
|
|
- Perl 5.28 re-rebuild of bootstrapped packages
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2:0.42.24-8
|
|
|
|
|
|
|
|
- Perl 5.28 rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Mar 01 2018 Petr Pisar <ppisar@redhat.com> - 2:0.42.24-7
|
|
|
|
|
|
|
|
- Do not require a compiler if c_source is an empty list (bug #1547165)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Feb 23 2018 Petr Pisar <ppisar@redhat.com> - 2:0.42.24-6
|
|
|
|
|
|
|
|
- Do not hard-require ExtUtils::CBuilder (bug #1547165)
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.42.24-5
|
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.42.24-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|