summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/files
diff options
context:
space:
mode:
authorTim Orling <ticotimo@gmail.com>2024-02-02 21:59:16 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-02-05 14:06:09 +0000
commit61b199d10319746c3732dc82a4b15fe9ec85776a (patch)
treeb971c6cf9b2cde564cd4b12e393f1e890e44270e /meta/recipes-devtools/perl/files
parentb73804429ca04672232e52eaae3de089de99b18e (diff)
downloadpoky-61b199d10319746c3732dc82a4b15fe9ec85776a.tar.gz
libxml-parser-perl: upgrade 2.46 -> 2.47
* Drop CheckLib.pm patch; no longer applies * Change to CPAN_MIRROR for SRC_URI * Drop SRC_URI[md5sum] * Drop redundant ptest-perl/run-ptest; ptest-perl inherit does this * Drop sed for Expat/Makefile; no longer shipped * Inherit pkgconfig to find expat lib * Patch Makefile.PL to not try to load host expat License-Update: Use LICENSE file; change to Artistic-2.0 https://metacpan.org/dist/XML-Parser/changes 2.47 2023-12-28 (by Todd Rinaldo) - #84 use $fh instead of $foo - #85 Fix typo in documentation - #89 Devel::CheckLib to from 0.99 -> 1.14 - Devel::CheckLibn 1.16 - #91 POD fix for verbatim text - #97 Add a LICENSE file - #94 Don't ship Expat/Makefile - Various github workflow improvements. Windows is still not working. (From OE-Core rev: 5c51810772a6611a37b2c1b0a32d9558007c4cf7) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/perl/files')
-rw-r--r--meta/recipes-devtools/perl/files/0001-CheckLib.pm-do-not-attempt-to-run-a-cross-executable.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/meta/recipes-devtools/perl/files/0001-CheckLib.pm-do-not-attempt-to-run-a-cross-executable.patch b/meta/recipes-devtools/perl/files/0001-CheckLib.pm-do-not-attempt-to-run-a-cross-executable.patch
deleted file mode 100644
index c5bbe7888e..0000000000
--- a/meta/recipes-devtools/perl/files/0001-CheckLib.pm-do-not-attempt-to-run-a-cross-executable.patch
+++ /dev/null
@@ -1,24 +0,0 @@
1From a033c9ece12b6eead48eed63f106ccdec6159b0c Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Fri, 20 Dec 2019 16:26:55 +0100
4Subject: [PATCH] CheckLib.pm: do not attempt to run a cross executable
5
6Upstream-Status: Inappropriate [oe-core specific]
7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
8---
9 inc/Devel/CheckLib.pm | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/inc/Devel/CheckLib.pm b/inc/Devel/CheckLib.pm
13index 36a451a..b04acc1 100644
14--- a/inc/Devel/CheckLib.pm
15+++ b/inc/Devel/CheckLib.pm
16@@ -330,7 +330,7 @@ sub assert_lib {
17 push @missing, $lib if $rv != 0 || !-x $exefile;
18 my $absexefile = File::Spec->rel2abs($exefile);
19 $absexefile = '"' . $absexefile . '"' if $absexefile =~ m/\s/;
20- push @wrongresult, $lib if $rv == 0 && -x $exefile && system($absexefile) != 0;
21+ push @wrongresult, $lib if $rv == 0 && -x $exefile && 0 != 0;
22 unlink $ofile if -e $ofile;
23 _cleanup_exe($exefile);
24 }