Package upgrade
(cherry picked from commit e9b0e13ffac7e00f442c9901240b837e22eebd0d)
This commit is contained in:
parent
eda05f353a
commit
e3eaf4e95c
@ -1,64 +0,0 @@
|
|||||||
From f55b546a261651ad76a2a339768a599a4d84b4f5 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
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
<https://bugzilla.redhat.com/show_bug.cgi?id=960048>
|
|
||||||
<http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=327585#50>
|
|
||||||
|
|
||||||
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
|
||||||
---
|
|
||||||
MANIFEST | 1 +
|
|
||||||
lib/ExtUtils/CBuilder/Platform/linux.pm | 25 +++++++++++++++++++++++++
|
|
||||||
2 files changed, 26 insertions(+)
|
|
||||||
create mode 100644 lib/ExtUtils/CBuilder/Platform/linux.pm
|
|
||||||
|
|
||||||
diff --git a/MANIFEST b/MANIFEST
|
|
||||||
index fdc8bd9..a7de63a 100644
|
|
||||||
--- a/MANIFEST
|
|
||||||
+++ b/MANIFEST
|
|
||||||
@@ -25,6 +25,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
|
|
||||||
+lib/ExtUtils/CBuilder/Platform/linux.pm
|
|
||||||
lib/ExtUtils/CBuilder/Platform/os2.pm
|
|
||||||
t/00-have-compiler.t
|
|
||||||
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
|
|
||||||
--- /dev/null
|
|
||||||
+++ b/lib/ExtUtils/CBuilder/Platform/linux.pm
|
|
||||||
@@ -0,0 +1,25 @@
|
|
||||||
+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);
|
|
||||||
+
|
|
||||||
+sub link {
|
|
||||||
+ my ($self, %args) = @_;
|
|
||||||
+ my $cf = $self->{config};
|
|
||||||
+
|
|
||||||
+ # Link XS modules to libperl.so explicitly because multiple
|
|
||||||
+ # dlopen(, RTLD_LOCAL) hides libperl symbols from XS module.
|
|
||||||
+ local $cf->{lddlflags} = $cf->{lddlflags};
|
|
||||||
+ if ($ENV{PERL_CORE}) {
|
|
||||||
+ $cf->{lddlflags} .= ' -L' . $self->perl_inc();
|
|
||||||
+ }
|
|
||||||
+ $cf->{lddlflags} .= ' -lperl';
|
|
||||||
+
|
|
||||||
+ return $self->SUPER::link(%args);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+1;
|
|
||||||
--
|
|
||||||
2.13.6
|
|
||||||
|
|
||||||
Binary file not shown.
BIN
ExtUtils-CBuilder-0.280236.tar.gz
Normal file
BIN
ExtUtils-CBuilder-0.280236.tar.gz
Normal file
Binary file not shown.
@ -1,11 +1,10 @@
|
|||||||
Name: perl-ExtUtils-CBuilder
|
Name: perl-ExtUtils-CBuilder
|
||||||
Version: 0.280230
|
Version: 0.280236
|
||||||
Release: 418
|
Release: 1
|
||||||
Summary: Build the C portions of Perl modules
|
Summary: Build the C portions of Perl modules
|
||||||
License: GPL+ or Artistic
|
License: GPL-1.0-or-later or Artistic-1.0
|
||||||
URL: https://metacpan.org/release/ExtUtils-CBuilder
|
URL: https://metacpan.org/release/ExtUtils-CBuilder
|
||||||
Source0: https://cpan.metacpan.org/authors/id/A/AM/AMBS/ExtUtils-CBuilder-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/A/AM/AMBS/ExtUtils-CBuilder-%{version}.tar.gz
|
||||||
Patch0001: ExtUtils-CBuilder-0.280230-Link-XS-modules-to-libperl.so-with-EU-CBuilder-on-Li.patch
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
BuildRequires: make perl-generators perl-interpreter perl(ExtUtils::MakeMaker) >= 6.76
|
BuildRequires: make perl-generators perl-interpreter perl(ExtUtils::MakeMaker) >= 6.76
|
||||||
@ -57,5 +56,8 @@ make test
|
|||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 14 2022 SimpleUpdate Robot <tc@openeuler.org> - 1:0.280236-1
|
||||||
|
- Upgrade to version 0.280236
|
||||||
|
|
||||||
* Wed Nov 27 2019 yanzhihua <yanzhihua4@huawei.com> - 1:0.280230-418
|
* Wed Nov 27 2019 yanzhihua <yanzhihua4@huawei.com> - 1:0.280230-418
|
||||||
- Package init
|
- Package init
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user