Compare commits
No commits in common. "c8-stream-5.3" and "c8-beta-stream-5.24" have entirely different histories.
c8-stream-
...
c8-beta-st
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/ExtUtils-CBuilder-0.280231.tar.gz
|
||||
SOURCES/ExtUtils-CBuilder-0.280224.tar.gz
|
||||
|
||||
@ -1 +1 @@
|
||||
6c5957ef7c22dbba2dd4eebb256d514736d249ea SOURCES/ExtUtils-CBuilder-0.280231.tar.gz
|
||||
5dc79083f031fcb2d1e989e0bc00526885d851f7 SOURCES/ExtUtils-CBuilder-0.280224.tar.gz
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
From f55b546a261651ad76a2a339768a599a4d84b4f5 Mon Sep 17 00:00:00 2001
|
||||
From 0c575416d2889e92c6c0d487ec2b52b45882557a Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
||||
Date: Wed, 3 Jul 2013 11:01:02 +0200
|
||||
Subject: [PATCH] Link XS modules to libperl.so with EU::CBuilder on Linux
|
||||
@ -12,15 +12,15 @@ Content-Transfer-Encoding: 8bit
|
||||
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
||||
---
|
||||
MANIFEST | 1 +
|
||||
lib/ExtUtils/CBuilder/Platform/linux.pm | 25 +++++++++++++++++++++++++
|
||||
2 files changed, 26 insertions(+)
|
||||
lib/ExtUtils/CBuilder/Platform/linux.pm | 26 ++++++++++++++++++++++++++
|
||||
2 files changed, 27 insertions(+)
|
||||
create mode 100644 lib/ExtUtils/CBuilder/Platform/linux.pm
|
||||
|
||||
diff --git a/MANIFEST b/MANIFEST
|
||||
index fdc8bd9..a7de63a 100644
|
||||
index eb71c93..5be739e 100644
|
||||
--- a/MANIFEST
|
||||
+++ b/MANIFEST
|
||||
@@ -25,6 +25,7 @@ lib/ExtUtils/CBuilder/Platform/android.pm
|
||||
@@ -24,6 +24,7 @@ lib/ExtUtils/CBuilder/Platform/android.pm
|
||||
lib/ExtUtils/CBuilder/Platform/cygwin.pm
|
||||
lib/ExtUtils/CBuilder/Platform/darwin.pm
|
||||
lib/ExtUtils/CBuilder/Platform/dec_osf.pm
|
||||
@ -30,18 +30,19 @@ index fdc8bd9..a7de63a 100644
|
||||
t/01-basic.t
|
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/linux.pm b/lib/ExtUtils/CBuilder/Platform/linux.pm
|
||||
new file mode 100644
|
||||
index 0000000..823f852
|
||||
index 0000000..e3251c4
|
||||
--- /dev/null
|
||||
+++ b/lib/ExtUtils/CBuilder/Platform/linux.pm
|
||||
@@ -0,0 +1,25 @@
|
||||
@@ -0,0 +1,26 @@
|
||||
+package ExtUtils::CBuilder::Platform::linux;
|
||||
+
|
||||
+use strict;
|
||||
+use ExtUtils::CBuilder::Platform::Unix;
|
||||
+use File::Spec;
|
||||
+
|
||||
+our $VERSION = '0.280230';
|
||||
+our @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
|
||||
+use vars qw($VERSION @ISA);
|
||||
+$VERSION = '0.280206';
|
||||
+@ISA = qw(ExtUtils::CBuilder::Platform::Unix);
|
||||
+
|
||||
+sub link {
|
||||
+ my ($self, %args) = @_;
|
||||
@ -60,5 +61,5 @@ index 0000000..823f852
|
||||
+
|
||||
+1;
|
||||
--
|
||||
2.13.6
|
||||
1.9.3
|
||||
|
||||
254
SOURCES/ExtUtils-CBuilder-0.280224-Upgrade-to-0.280225.patch
Normal file
254
SOURCES/ExtUtils-CBuilder-0.280224-Upgrade-to-0.280225.patch
Normal file
@ -0,0 +1,254 @@
|
||||
diff --git a/Changes b/Changes
|
||||
index 27f3bc3..aaebade 100644
|
||||
--- a/Changes
|
||||
+++ b/Changes
|
||||
@@ -1,6 +1,12 @@
|
||||
Revision history for Perl extension ExtUtils::CBuilder.
|
||||
|
||||
-0.282224 - 2015-10-09
|
||||
+0.280225 - 2016-01-04
|
||||
+
|
||||
+ Fixed:
|
||||
+
|
||||
+ - New location of libperl on Win32 when building core (RT #126632)
|
||||
+
|
||||
+0.280224 - 2015-10-09
|
||||
|
||||
Enhncements:
|
||||
|
||||
diff --git a/Makefile.PL b/Makefile.PL
|
||||
index 820b294..44cb33a 100644
|
||||
--- a/Makefile.PL
|
||||
+++ b/Makefile.PL
|
||||
@@ -29,7 +29,7 @@ my %WriteMakefileArgs = (
|
||||
"TEST_REQUIRES" => {
|
||||
"Test::More" => "0.47"
|
||||
},
|
||||
- "VERSION" => "0.280224",
|
||||
+ "VERSION" => "0.280225",
|
||||
"test" => {
|
||||
"TESTS" => "t/*.t"
|
||||
}
|
||||
diff --git a/lib/ExtUtils/CBuilder.pm b/lib/ExtUtils/CBuilder.pm
|
||||
index abe976e..6ce0c68 100644
|
||||
--- a/lib/ExtUtils/CBuilder.pm
|
||||
+++ b/lib/ExtUtils/CBuilder.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder;
|
||||
-$ExtUtils::CBuilder::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::VERSION = '0.280225';
|
||||
use File::Spec ();
|
||||
use File::Path ();
|
||||
use File::Basename ();
|
||||
diff --git a/lib/ExtUtils/CBuilder/Base.pm b/lib/ExtUtils/CBuilder/Base.pm
|
||||
index eb4c175..60b2f43 100644
|
||||
--- a/lib/ExtUtils/CBuilder/Base.pm
|
||||
+++ b/lib/ExtUtils/CBuilder/Base.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder::Base;
|
||||
-$ExtUtils::CBuilder::Base::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::Base::VERSION = '0.280225';
|
||||
use strict;
|
||||
use warnings;
|
||||
use File::Spec;
|
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/Unix.pm b/lib/ExtUtils/CBuilder/Platform/Unix.pm
|
||||
index d6c1768..399e254 100644
|
||||
--- a/lib/ExtUtils/CBuilder/Platform/Unix.pm
|
||||
+++ b/lib/ExtUtils/CBuilder/Platform/Unix.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder::Platform::Unix;
|
||||
-$ExtUtils::CBuilder::Platform::Unix::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::Platform::Unix::VERSION = '0.280225';
|
||||
use warnings;
|
||||
use strict;
|
||||
use ExtUtils::CBuilder::Base;
|
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/VMS.pm b/lib/ExtUtils/CBuilder/Platform/VMS.pm
|
||||
index 194d888..e9d9f6f 100644
|
||||
--- a/lib/ExtUtils/CBuilder/Platform/VMS.pm
|
||||
+++ b/lib/ExtUtils/CBuilder/Platform/VMS.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder::Platform::VMS;
|
||||
-$ExtUtils::CBuilder::Platform::VMS::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::Platform::VMS::VERSION = '0.280225';
|
||||
use warnings;
|
||||
use strict;
|
||||
use ExtUtils::CBuilder::Base;
|
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/Windows.pm b/lib/ExtUtils/CBuilder/Platform/Windows.pm
|
||||
index b95592d..80b8f29 100644
|
||||
--- a/lib/ExtUtils/CBuilder/Platform/Windows.pm
|
||||
+++ b/lib/ExtUtils/CBuilder/Platform/Windows.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder::Platform::Windows;
|
||||
-$ExtUtils::CBuilder::Platform::Windows::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::Platform::Windows::VERSION = '0.280225';
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
@@ -151,7 +151,7 @@ sub link {
|
||||
# if running in perl source tree, look for libs there, not installed
|
||||
my $lddlflags = $cf->{lddlflags};
|
||||
my $perl_src = $self->perl_src();
|
||||
- $lddlflags =~ s/\Q$cf->{archlibexp}\E[\\\/]CORE/$perl_src/ if $perl_src;
|
||||
+ $lddlflags =~ s/\Q$cf->{archlibexp}\E[\\\/]CORE/$perl_src\/lib\/CORE/ if $perl_src;
|
||||
|
||||
my %spec = (
|
||||
srcdir => $to,
|
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm b/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
|
||||
index cd93b72..513c4ac 100644
|
||||
--- a/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
|
||||
+++ b/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder::Platform::Windows::BCC;
|
||||
-$ExtUtils::CBuilder::Platform::Windows::BCC::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::Platform::Windows::BCC::VERSION = '0.280225';
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm b/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
|
||||
index 5f219f2..19851df 100644
|
||||
--- a/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
|
||||
+++ b/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder::Platform::Windows::GCC;
|
||||
-$ExtUtils::CBuilder::Platform::Windows::GCC::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::Platform::Windows::GCC::VERSION = '0.280225';
|
||||
use warnings;
|
||||
use strict;
|
||||
|
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm b/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm
|
||||
index f14988e..c8d675f 100644
|
||||
--- a/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm
|
||||
+++ b/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder::Platform::Windows::MSVC;
|
||||
-$ExtUtils::CBuilder::Platform::Windows::MSVC::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::Platform::Windows::MSVC::VERSION = '0.280225';
|
||||
use warnings;
|
||||
use strict;
|
||||
|
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/aix.pm b/lib/ExtUtils/CBuilder/Platform/aix.pm
|
||||
index 949ef53..488d3e6 100644
|
||||
--- a/lib/ExtUtils/CBuilder/Platform/aix.pm
|
||||
+++ b/lib/ExtUtils/CBuilder/Platform/aix.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder::Platform::aix;
|
||||
-$ExtUtils::CBuilder::Platform::aix::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::Platform::aix::VERSION = '0.280225';
|
||||
use warnings;
|
||||
use strict;
|
||||
use ExtUtils::CBuilder::Platform::Unix;
|
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/android.pm b/lib/ExtUtils/CBuilder/Platform/android.pm
|
||||
index 5940922..b9e6af3 100644
|
||||
--- a/lib/ExtUtils/CBuilder/Platform/android.pm
|
||||
+++ b/lib/ExtUtils/CBuilder/Platform/android.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder::Platform::android;
|
||||
-$ExtUtils::CBuilder::Platform::android::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::Platform::android::VERSION = '0.280225';
|
||||
use warnings;
|
||||
use strict;
|
||||
use File::Spec;
|
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/cygwin.pm b/lib/ExtUtils/CBuilder/Platform/cygwin.pm
|
||||
index c020e44..339840f 100644
|
||||
--- a/lib/ExtUtils/CBuilder/Platform/cygwin.pm
|
||||
+++ b/lib/ExtUtils/CBuilder/Platform/cygwin.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder::Platform::cygwin;
|
||||
-$ExtUtils::CBuilder::Platform::cygwin::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::Platform::cygwin::VERSION = '0.280225';
|
||||
use warnings;
|
||||
use strict;
|
||||
use File::Spec;
|
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/darwin.pm b/lib/ExtUtils/CBuilder/Platform/darwin.pm
|
||||
index 324c268..04a87da 100644
|
||||
--- a/lib/ExtUtils/CBuilder/Platform/darwin.pm
|
||||
+++ b/lib/ExtUtils/CBuilder/Platform/darwin.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder::Platform::darwin;
|
||||
-$ExtUtils::CBuilder::Platform::darwin::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::Platform::darwin::VERSION = '0.280225';
|
||||
use warnings;
|
||||
use strict;
|
||||
use ExtUtils::CBuilder::Platform::Unix;
|
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/dec_osf.pm b/lib/ExtUtils/CBuilder/Platform/dec_osf.pm
|
||||
index 0eb098f..d503e86 100644
|
||||
--- a/lib/ExtUtils/CBuilder/Platform/dec_osf.pm
|
||||
+++ b/lib/ExtUtils/CBuilder/Platform/dec_osf.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder::Platform::dec_osf;
|
||||
-$ExtUtils::CBuilder::Platform::dec_osf::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::Platform::dec_osf::VERSION = '0.280225';
|
||||
use warnings;
|
||||
use strict;
|
||||
use ExtUtils::CBuilder::Platform::Unix;
|
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/os2.pm b/lib/ExtUtils/CBuilder/Platform/os2.pm
|
||||
index 19047b9..8d0e3eb 100644
|
||||
--- a/lib/ExtUtils/CBuilder/Platform/os2.pm
|
||||
+++ b/lib/ExtUtils/CBuilder/Platform/os2.pm
|
||||
@@ -1,5 +1,5 @@
|
||||
package ExtUtils::CBuilder::Platform::os2;
|
||||
-$ExtUtils::CBuilder::Platform::os2::VERSION = '0.280224';
|
||||
+$ExtUtils::CBuilder::Platform::os2::VERSION = '0.280225';
|
||||
use warnings;
|
||||
use strict;
|
||||
use ExtUtils::CBuilder::Platform::Unix;
|
||||
diff --git a/t/00-have-compiler.t b/t/00-have-compiler.t
|
||||
index 1661812..1073277 100644
|
||||
--- a/t/00-have-compiler.t
|
||||
+++ b/t/00-have-compiler.t
|
||||
@@ -26,14 +26,34 @@ ok( $b, "got CBuilder object" ) or diag $@;
|
||||
|
||||
# test missing compiler
|
||||
{
|
||||
-my $b1 = ExtUtils::CBuilder->new(quiet => 1);
|
||||
-configure_fake_missing_compilers($b1);
|
||||
-is( $b1->have_compiler, 0, "have_compiler: fake missing cc" );
|
||||
+
|
||||
+ my $b1 = ExtUtils::CBuilder->new(quiet => 1);
|
||||
+
|
||||
+ configure_fake_missing_compilers($b1);
|
||||
+
|
||||
+ # This will fork a child that will print
|
||||
+ # 'Can't exec "djaadjfkadjkfajdf"'
|
||||
+ # or similar on STDERR; so make sure fd2 is temporarily closed before
|
||||
+ # the fork
|
||||
+ open(my $orig_err, ">&", \*STDERR) or die "Can't dup STDERR: $!";
|
||||
+ close(STDERR);
|
||||
+ my $res = $b1->have_compiler;
|
||||
+ open(STDERR, ">&", $orig_err) or die "Can't dup \$orig_err $!";
|
||||
+ close($orig_err);
|
||||
+
|
||||
+ is($res, 0, "have_compiler: fake missing cc" );
|
||||
}
|
||||
{
|
||||
-my $b2 = ExtUtils::CBuilder->new(quiet => 1);
|
||||
-configure_fake_missing_compilers($b2);
|
||||
-is( $b2->have_cplusplus, 0, "have_cplusplus: fake missing c++" );
|
||||
+ my $b2 = ExtUtils::CBuilder->new(quiet => 1);
|
||||
+ configure_fake_missing_compilers($b2);
|
||||
+
|
||||
+ open(my $orig_err, ">&", \*STDERR) or die "Can't dup STDERR: $!";
|
||||
+ close(STDERR);
|
||||
+ my $res = $b2->have_cplusplus;
|
||||
+ open(STDERR, ">&", $orig_err) or die "Can't dup \$orig_err $!";
|
||||
+ close($orig_err);
|
||||
+
|
||||
+ is($res, 0, "have_cplusplus: fake missing c++" );
|
||||
}
|
||||
|
||||
# test found compiler
|
||||
diff --git a/t/02-link.t b/t/02-link.t
|
||||
index 31ee918..0c64619 100644
|
||||
--- a/t/02-link.t
|
||||
+++ b/t/02-link.t
|
||||
@@ -19,8 +19,8 @@ my ($source_file, $object_file, $exe_file);
|
||||
my $b = ExtUtils::CBuilder->new(quiet => $quiet);
|
||||
|
||||
# test plan
|
||||
-if ($^O eq 'MSWin32') {
|
||||
- plan skip_all => "link_executable() is not implemented yet on Win32";
|
||||
+if ($^O =~ / ^ ( MSWin32 | os390 ) $ /xi) {
|
||||
+ plan skip_all => "link_executable() is not implemented yet on $^O";
|
||||
}
|
||||
elsif ( ! $b->have_compiler ) {
|
||||
plan skip_all => "no compiler available for testing";
|
||||
@ -1,24 +1,28 @@
|
||||
%global base_version 0.280224
|
||||
Name: perl-ExtUtils-CBuilder
|
||||
# Compete with perl.spec
|
||||
Epoch: 1
|
||||
# Mimic perl.spec
|
||||
Version: 0.280231
|
||||
Release: 439%{?dist}
|
||||
Version: 0.280225
|
||||
Release: 367%{?dist}
|
||||
Summary: Compile and link C code for Perl modules
|
||||
License: GPL+ or Artistic
|
||||
URL: https://metacpan.org/release/ExtUtils-CBuilder
|
||||
Source0: https://cpan.metacpan.org/authors/id/A/AM/AMBS/ExtUtils-CBuilder-%{version}.tar.gz
|
||||
Group: Development/Libraries
|
||||
URL: http://search.cpan.org/dist/ExtUtils-CBuilder/
|
||||
Source0: http://www.cpan.org/authors/id/A/AM/AMBS/ExtUtils-CBuilder-%{base_version}.tar.gz
|
||||
# Link XS modules to libperl.so with EU::CBuilder on Linux, bug #960048
|
||||
Patch0: ExtUtils-CBuilder-0.280230-Link-XS-modules-to-libperl.so-with-EU-CBuilder-on-Li.patch
|
||||
Patch0: ExtUtils-CBuilder-0.280219-Link-XS-modules-to-libperl.so-with-EU-CBuilder-on-Li.patch
|
||||
# Unbundled from perl 5.24.0
|
||||
Patch1: ExtUtils-CBuilder-0.280224-Upgrade-to-0.280225.patch
|
||||
BuildArch: noarch
|
||||
BuildRequires: findutils
|
||||
BuildRequires: make
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(warnings)
|
||||
# Run-time:
|
||||
BuildRequires: perl-devel
|
||||
BuildRequires: perl(Config)
|
||||
BuildRequires: perl(Cwd)
|
||||
BuildRequires: perl(DynaLoader)
|
||||
@ -32,24 +36,17 @@ BuildRequires: perl(File::Temp)
|
||||
BuildRequires: perl(IPC::Cmd)
|
||||
BuildRequires: perl(Perl::OSType) >= 1
|
||||
BuildRequires: perl(Text::ParseWords)
|
||||
# Optional run-time:
|
||||
# C and C++ compilers are highly recommended because compiling code is the
|
||||
# purpose of ExtUtils::CBuilder, bug #1547165
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: perl(vars)
|
||||
BuildRequires: perl-devel
|
||||
# Tests:
|
||||
BuildRequires: perl(Test::More) >= 0.47
|
||||
# vmsish not used
|
||||
# C and C++ compilers are highly recommended because compiling code is the
|
||||
# purpose of ExtUtils::CBuilder, bug #1547165
|
||||
Requires: gcc
|
||||
Requires: gcc-c++
|
||||
Requires: perl-devel
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
Requires: perl(DynaLoader)
|
||||
Requires: perl(ExtUtils::Mksymlists) >= 6.30
|
||||
Requires: perl(File::Spec) >= 3.13
|
||||
Requires: perl(Perl::OSType) >= 1
|
||||
Requires: perl-devel
|
||||
|
||||
%{?perl_default_filter}
|
||||
# Remove under-specified dependencies
|
||||
@ -61,15 +58,17 @@ appropriate compilers and linkers in a cross-platform manner. It was motivated
|
||||
by the Module::Build project, but may be useful for other purposes as well.
|
||||
|
||||
%prep
|
||||
%setup -q -n ExtUtils-CBuilder-%{version}
|
||||
%setup -q -n ExtUtils-CBuilder-%{base_version}
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||
%{make_build}
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%{make_install}
|
||||
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
||||
find $RPM_BUILD_ROOT -type f -name .packlist -delete
|
||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||
|
||||
%check
|
||||
@ -82,41 +81,8 @@ make test
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.280231-439
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.280231-438
|
||||
- Increase release to favour standalone package
|
||||
|
||||
* Wed Apr 03 2019 Petr Pisar <ppisar@redhat.com> - 1:0.280231-1
|
||||
- 0.280231 bump
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.280230-418
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.280230-417
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.280230-416
|
||||
- Increase release to favour standalone package
|
||||
|
||||
* Fri Feb 23 2018 Petr Pisar <ppisar@redhat.com> - 1:0.280230-3
|
||||
- Add a dependency on gcc and gcc-c++ (bug #1547165)
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.280230-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Nov 23 2017 Petr Pisar <ppisar@redhat.com> - 1:0.280230-1
|
||||
- 0.280230 bump
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.280226-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Mon Jul 17 2017 Petr Pisar <ppisar@redhat.com> - 1:0.280226-1
|
||||
- 0.280226 bump
|
||||
|
||||
* Sat Jun 03 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.280225-393
|
||||
- Perl 5.26 rebuild
|
||||
* Fri Mar 29 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.280225-367
|
||||
- Rebuild with enable hardening (bug #1636329)
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.280225-366
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
Loading…
Reference in New Issue
Block a user