Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
From 75d974a58c461b3b5d35280e497810e46abae4ca Mon Sep 17 00:00:00 2001
|
||||
From: William Lyu <William.Lyu@windriver.com>
|
||||
Date: Wed, 4 Oct 2023 08:58:41 -0400
|
||||
Subject: [PATCH] Fix intermittent failure of test t/op/sigsystem.t
|
||||
|
||||
[Perl issue #21546] -- https://github.com/Perl/perl5/issues/21546
|
||||
|
||||
This fix addresses the intermittent failure of the test
|
||||
t/op/sigsystem.t by improving its robustness. Before the fix, this
|
||||
test waits a hard-coded amount of time in the parent process for the
|
||||
child process to exit, and the child process may not be able to exit
|
||||
soon enough. With this fix, the parent process in this test polls for
|
||||
whether the SIGCHLD handler reaped the child process for at most 25
|
||||
seconds.
|
||||
|
||||
Upstream-Status: Backport [commit ID: 75d974a]
|
||||
|
||||
Signed-off-by: William Lyu <William.Lyu@windriver.com>
|
||||
Signed-off-by: Randy MacLeod <randy.macleod@windriver.com>
|
||||
Reported-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
|
||||
|
||||
Committer: William Lyu is now a Perl author.
|
||||
---
|
||||
AUTHORS | 1 +
|
||||
t/op/sigsystem.t | 17 ++++++++++++++---
|
||||
2 files changed, 15 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/AUTHORS b/AUTHORS
|
||||
index 21948bfdc7..527dd992fd 100644
|
||||
--- a/AUTHORS
|
||||
+++ b/AUTHORS
|
||||
@@ -1443,6 +1443,7 @@ Wayne Scott <wscott@ichips.intel.com>
|
||||
Wayne Thompson <Wayne.Thompson@Ebay.sun.com>
|
||||
Wilfredo Sánchez <wsanchez@mit.edu>
|
||||
William J. Middleton <William.Middleton@oslo.mobil.telenor.no>
|
||||
+William Lyu <William.Lyu@windriver.com>
|
||||
William Mann <wmann@avici.com>
|
||||
William Middleton <wmiddlet@adobe.com>
|
||||
William R Ward <hermit@BayView.COM>
|
||||
diff --git a/t/op/sigsystem.t b/t/op/sigsystem.t
|
||||
index 25da854902..831feefb0f 100644
|
||||
--- a/t/op/sigsystem.t
|
||||
+++ b/t/op/sigsystem.t
|
||||
@@ -37,7 +37,15 @@ SKIP: {
|
||||
test_system('with reaper');
|
||||
|
||||
note("Waiting briefly for SIGCHLD...");
|
||||
- Time::HiRes::sleep(0.500);
|
||||
+
|
||||
+ # Wait at most 50 * 0.500 = 25.0 seconds for the child process to be
|
||||
+ # reaped. If the child process exits and gets reaped early, this polling
|
||||
+ # loop will exit early.
|
||||
+
|
||||
+ for (1..50) {
|
||||
+ last if @pids;
|
||||
+ Time::HiRes::sleep(0.500);
|
||||
+ }
|
||||
|
||||
ok(@pids == 1, 'Reaped only one process');
|
||||
ok($pids[0] == $pid, "Reaped the right process.") or diag(Dumper(\@pids));
|
||||
@@ -50,8 +58,11 @@ sub test_system {
|
||||
my $got_zeroes = 0;
|
||||
|
||||
# This test is looking for a race between system()'s waitpid() and a
|
||||
- # signal handler. Looping a few times increases the chances of
|
||||
- # catching the error.
|
||||
+ # signal handler. The system() call is expected to not interfere with the
|
||||
+ # SIGCHLD signal handler. In particular, the wait() called within system()
|
||||
+ # is expected to reap the child process forked by system() before the
|
||||
+ # SIGCHLD signal handler is called.
|
||||
+ # Looping a few times increases the chances of catching the error.
|
||||
|
||||
for (1..$expected_zeroes) {
|
||||
$got_zeroes++ unless system(TRUE);
|
||||
--
|
||||
2.25.1
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
From e8e095b9c71c58f8197d6315359446b6b084cb2b Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
Date: Tue, 5 Jun 2018 14:58:42 +0300
|
||||
Subject: [PATCH] Somehow this module breaks through the perl wrapper and
|
||||
declares perl binary to be 'perl.real'. This patch forces it back to perl.
|
||||
|
||||
Upstream-Status: Inappropriate [oe-core specific]
|
||||
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
---
|
||||
cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm
|
||||
index 948c476..f537526 100644
|
||||
--- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm
|
||||
+++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm
|
||||
@@ -1110,6 +1110,9 @@ WARNING
|
||||
}
|
||||
|
||||
foreach my $name (@$names){
|
||||
+ # Getting MakeMaker.pm use perl wrapper instead of 'perl.real' directly
|
||||
+ $name =~ s/perl\.real/perl/ if ($name =~ /perl\.real/);
|
||||
+
|
||||
my ($abs, $use_dir);
|
||||
if ($self->file_name_is_absolute($name)) { # /foo/bar
|
||||
$abs = $name;
|
||||
@@ -2006,6 +2009,7 @@ sub init_PERL {
|
||||
|
||||
$self->{PERL} ||=
|
||||
$self->find_perl(5.0, \@perls, \@defpath, $Verbose );
|
||||
+
|
||||
|
||||
my $perl = $self->{PERL};
|
||||
$perl =~ s/^"//;
|
||||
@@ -0,0 +1,36 @@
|
||||
From a73fff1fcf0def4ce93964f1b63fe3ad0967259d Mon Sep 17 00:00:00 2001
|
||||
From: Robert Yang <liezhi.yang@windriver.com>
|
||||
Date: Fri, 18 Feb 2022 09:44:26 +0000
|
||||
Subject: [PATCH] cpan/Sys-Syslog/Makefile.PL: Fix _PATH_LOG for deterministic
|
||||
|
||||
It checks host's path such as /dev/log and uses it, this doesn't make sense for
|
||||
cross build, and it causes undeterministic, for example, the contianer os
|
||||
usually doesn't have /dev/log which leads to a different build result since
|
||||
other host usually has /dev/log, so make it always use the default value to fix
|
||||
the issue.
|
||||
|
||||
Submitted a ticket to upstream: https://rt.cpan.org/Ticket/Display.html?id=141612
|
||||
|
||||
Upstream-Status: Inappropriate [OE specific]
|
||||
|
||||
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
|
||||
---
|
||||
cpan/Sys-Syslog/Makefile.PL | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/cpan/Sys-Syslog/Makefile.PL b/cpan/Sys-Syslog/Makefile.PL
|
||||
index d09ba69..d44e58c 100644
|
||||
--- a/cpan/Sys-Syslog/Makefile.PL
|
||||
+++ b/cpan/Sys-Syslog/Makefile.PL
|
||||
@@ -130,6 +130,8 @@ else {
|
||||
$_PATH_LOG = "";
|
||||
}
|
||||
|
||||
+# OE specific
|
||||
+$_PATH_LOG = "";
|
||||
|
||||
# if possible, generate the code that handles the constants with
|
||||
# ExtUtils::Constant, otherwise use cached copy in fallback/
|
||||
--
|
||||
2.31.1
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
From 260ebd15e16cd86b9b58e5c5f3a496b3853ca46d Mon Sep 17 00:00:00 2001
|
||||
From: Joshua Watt <JPEWhacker@gmail.com>
|
||||
Date: Mon, 17 Jun 2019 10:47:23 -0500
|
||||
Subject: [PATCH 2/2] Constant: Fix up shebang
|
||||
|
||||
The instructions indicate that the script should be explicitly passed to
|
||||
"perl -x", so automatically setting the #! to be ^X is unnecessary and
|
||||
makes the file non-reproducible when building because ^X could be the
|
||||
absolute path to miniperl.
|
||||
|
||||
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
|
||||
Upstream-Status: Submitted [https://rt.cpan.org/Public/Bug/Display.html?id=129866]
|
||||
---
|
||||
cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm b/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm
|
||||
index 14eb809714..d4d074e121 100644
|
||||
--- a/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm
|
||||
+++ b/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm
|
||||
@@ -219,7 +219,7 @@ sub dogfood {
|
||||
Regenerate these constant functions by feeding this entire source file to
|
||||
perl -x
|
||||
|
||||
-#!$^X -w
|
||||
+#!/usr/bin/env perl -x -w
|
||||
use ExtUtils::Constant qw (constant_types C_constant XS_constant);
|
||||
|
||||
EOT
|
||||
--
|
||||
2.21.0
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
Fixes to make the perl build reproducible:
|
||||
|
||||
a) Remove the \n from configure_attr.sh since it gets quoted differently depending on
|
||||
whether the shell is bash or dash which can cause the test result to be incorrect.
|
||||
Reported upstream: https://github.com/arsv/perl-cross/issues/87
|
||||
|
||||
b) Sort the order of the module lists from configure_mods.sh since otherwise
|
||||
the result isn't the same leading to makefile differences.
|
||||
Reported upstream: https://github.com/arsv/perl-cross/issues/88
|
||||
|
||||
c) Sort the Encode::Byte byte_t.fnm file output (and the makefile depends whilst
|
||||
there for good measure)
|
||||
Submitted to upstream perl: https://github.com/dankogai/p5-encode/pull/179
|
||||
|
||||
d) Use bash for perl-cross configure since otherwise trnl gets set to "\n" with bash
|
||||
and "" with dash
|
||||
Reported upstream: https://github.com/arsv/perl-cross/issues/87
|
||||
|
||||
RP 2020/2/7
|
||||
|
||||
Upstream-Status: Submitted [see links above]
|
||||
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org
|
||||
|
||||
Index: perl-5.30.1/cpan/Encode/Byte/Makefile.PL
|
||||
===================================================================
|
||||
--- perl-5.30.1.orig/cpan/Encode/Byte/Makefile.PL
|
||||
+++ perl-5.30.1/cpan/Encode/Byte/Makefile.PL
|
||||
@@ -171,7 +171,7 @@ sub postamble
|
||||
my $lengthsofar = length($str);
|
||||
my $continuator = '';
|
||||
$str .= "$table.c : $enc2xs Makefile.PL";
|
||||
- foreach my $file (@{$tables{$table}})
|
||||
+ foreach my $file (sort (@{$tables{$table}}))
|
||||
{
|
||||
$str .= $continuator.' '.$self->catfile($dir,$file);
|
||||
if ( length($str)-$lengthsofar > 128*$numlines )
|
||||
@@ -189,7 +189,7 @@ sub postamble
|
||||
qq{\n\t\$(PERL) $plib $enc2xs $ucopts -o \$\@ -f $table.fnm\n\n};
|
||||
open (FILELIST, ">$table.fnm")
|
||||
|| die "Could not open $table.fnm: $!";
|
||||
- foreach my $file (@{$tables{$table}})
|
||||
+ foreach my $file (sort (@{$tables{$table}}))
|
||||
{
|
||||
print FILELIST $self->catfile($dir,$file) . "\n";
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
The code is encoding host compiler parameters into target builds. Avoid
|
||||
this for our target builds (patch is target specific, not native)
|
||||
|
||||
Upstream-Status: Inappropriate [Cross compile hack]
|
||||
RP 2020/2/18
|
||||
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
||||
|
||||
Index: perl-5.30.1/cpan/Encode/bin/enc2xs
|
||||
===================================================================
|
||||
--- perl-5.30.1.orig/cpan/Encode/bin/enc2xs
|
||||
+++ perl-5.30.1/cpan/Encode/bin/enc2xs
|
||||
@@ -195,7 +195,7 @@ sub compiler_info {
|
||||
# above becomes false.
|
||||
my $sized = $declaration && !($compat && !$pedantic);
|
||||
|
||||
- return ($cpp, $static, $sized);
|
||||
+ return (0, 1, 1);
|
||||
}
|
||||
|
||||
|
||||
37
sources/poky/meta/recipes-devtools/perl/files/errno_ver.diff
Normal file
37
sources/poky/meta/recipes-devtools/perl/files/errno_ver.diff
Normal file
@@ -0,0 +1,37 @@
|
||||
From 8e1efba7560d8d55524c7a0f1b0539ddce419b86 Mon Sep 17 00:00:00 2001
|
||||
From: Brendan O'Dea <bod@debian.org>
|
||||
Date: Fri, 16 Dec 2005 01:32:14 +1100
|
||||
Subject: [PATCH 6/8] Remove Errno version check due to upgrade problems with
|
||||
long-running processes.
|
||||
|
||||
Bug-Debian: http://bugs.debian.org/343351
|
||||
|
||||
Remove version check which can cause problems for long running
|
||||
processes embedding perl when upgrading to a newer version,
|
||||
compatible, but built on a different machine.
|
||||
|
||||
Patch-Name: debian/errno_ver.diff
|
||||
Upstream-Status: Pending
|
||||
---
|
||||
ext/Errno/Errno_pm.PL | 5 -----
|
||||
1 file changed, 5 deletions(-)
|
||||
|
||||
diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL
|
||||
index 6251a3c..eeed445 100644
|
||||
--- a/ext/Errno/Errno_pm.PL
|
||||
+++ b/ext/Errno/Errno_pm.PL
|
||||
@@ -294,11 +294,6 @@ EDQ
|
||||
# they've already declared perl doesn't need to worry about this risk.
|
||||
if(!$ENV{'PERL_BUILD_EXPAND_CONFIG_VARS'}) {
|
||||
print <<"CONFIG_CHECK_END";
|
||||
-use Config;
|
||||
-"\$Config{'archname'}-\$Config{'osvers'}" eq
|
||||
-"$archname-$Config{'osvers'}" or
|
||||
- die "Errno architecture ($archname-$Config{'osvers'}) does not match executable architecture (\$Config{'archname'}-\$Config{'osvers'})";
|
||||
-
|
||||
CONFIG_CHECK_END
|
||||
}
|
||||
|
||||
--
|
||||
2.1.4
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
Upstream-Status: Inappropriate [embedded specific]
|
||||
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
|
||||
Index: perl-5.8.8/lib/ExtUtils/MM_Unix.pm
|
||||
===================================================================
|
||||
--- perl-5.12.3.orig/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm 2008-10-31 22:01:35.000000000 +0000
|
||||
+++ perl-5.12.3/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm 2008-10-31 22:01:35.000000000 +0000
|
||||
@@ -1597,6 +1597,19 @@
|
||||
$self->{PERL_LIB} ||= $Config{privlibexp};
|
||||
$self->{PERL_ARCHLIB} ||= $Config{archlibexp};
|
||||
$self->{PERL_INC} = $self->catdir("$self->{PERL_ARCHLIB}","CORE"); # wild guess for now
|
||||
+ # Check for environment override so we'll find the headers in the correct place
|
||||
+ if (defined $ENV{PERL_LIB})
|
||||
+ {
|
||||
+ $self->{PERL_LIB} = $ENV{PERL_LIB};
|
||||
+ }
|
||||
+ if (defined $ENV{PERL_ARCHLIB})
|
||||
+ {
|
||||
+ $self->{PERL_ARCHLIB} = $ENV{PERL_ARCHLIB};
|
||||
+ }
|
||||
+ if (defined $ENV{PERL_INC})
|
||||
+ {
|
||||
+ $self->{PERL_INC} = $ENV{PERL_INC};
|
||||
+ }
|
||||
my $perl_h;
|
||||
|
||||
if (not -f ($perl_h = $self->catfile($self->{PERL_INC},"perl.h"))
|
||||
@@ -0,0 +1,57 @@
|
||||
From c25d460a2f00e9af25087d40447fe1a81c89710c Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
Date: Sun, 27 May 2007 21:04:11 +0000
|
||||
Subject: [PATCH] perl: 5.8.7 -> 5.8.8 (from OE)
|
||||
|
||||
This patch is used for perl-native only. It enables the switching of
|
||||
configuration files between Config_heavy.pl and
|
||||
Config_heavy-target.pl by setting the environment variables
|
||||
PERLCONFIGTARGET - the later containing settings for the target while
|
||||
the former contains those for the host. This will allow cpan.bbclass
|
||||
to use the settings appropriate for the native and/or target builds
|
||||
as required. This also disables the use of the cache since the cached
|
||||
values would be valid for the host only.
|
||||
|
||||
Upstream-Status: Inappropriate [native]
|
||||
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
|
||||
---
|
||||
configpm | 18 ++++++++++++++++--
|
||||
1 file changed, 16 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/configpm b/configpm
|
||||
index 07219d8..01a23fa 100755
|
||||
--- a/configpm
|
||||
+++ b/configpm
|
||||
@@ -718,7 +718,7 @@ $config_txt .= uncomment <<'ENDOFEND';
|
||||
# my($self, $key) = @_;
|
||||
#
|
||||
# # check for cached value (which may be undef so we use exists not defined)
|
||||
-# return exists $self->{$key} ? $self->{$key} : $self->fetch_string($key);
|
||||
+# return $self->fetch_string($key);
|
||||
# }
|
||||
#
|
||||
ENDOFEND
|
||||
@@ -876,7 +876,21 @@ $config_txt .= sprintf uncomment <<'ENDOFTIE', $fast_config;
|
||||
# sub DESTROY { }
|
||||
#
|
||||
# sub AUTOLOAD {
|
||||
-# require 'Config_heavy.pl';
|
||||
+# my $cfgfile = 'Config_heavy.pl';
|
||||
+# if (defined $ENV{PERLCONFIGTARGET} and $ENV{PERLCONFIGTARGET} eq "yes")
|
||||
+# {
|
||||
+# $cfgfile = 'Config_heavy-target.pl';
|
||||
+# }
|
||||
+# if (defined $ENV{PERL_ARCHLIB})
|
||||
+# {
|
||||
+# push @INC, $ENV{PERL_ARCHLIB};
|
||||
+# require $cfgfile;
|
||||
+# pop @INC;
|
||||
+# }
|
||||
+# else
|
||||
+# {
|
||||
+# require $cfgfile;
|
||||
+# }
|
||||
# goto \&launcher unless $Config::AUTOLOAD =~ /launcher$/;
|
||||
# die "&Config::AUTOLOAD failed on $Config::AUTOLOAD";
|
||||
# }
|
||||
@@ -0,0 +1,38 @@
|
||||
Upstream-Status: Inappropriate [embedded specific]
|
||||
|
||||
Allow the location that .so files are searched for for dynamic
|
||||
loading to be changed via an environment variable. This is to allow
|
||||
us to load .so's from the host system while building for the target
|
||||
system.
|
||||
|
||||
Update by Nitin A Kamble <nitin.a.kamble@intel.com> 2011/04/21
|
||||
|
||||
Index: perl-5.24.1/dist/XSLoader/XSLoader_pm.PL
|
||||
===================================================================
|
||||
--- perl-5.24.1.orig/dist/XSLoader/XSLoader_pm.PL
|
||||
+++ perl-5.24.1/dist/XSLoader/XSLoader_pm.PL
|
||||
@@ -52,6 +52,24 @@ sub load {
|
||||
my ($caller, $modlibname) = caller();
|
||||
my $module = $caller;
|
||||
|
||||
+ # OE: Allow env to form dynamic loader to look in a different place
|
||||
+ # This is so it finds the host .so files, not the targets
|
||||
+ if (defined $ENV{PERLHOSTLIB})
|
||||
+ {
|
||||
+ my $hostlib = $ENV{PERLHOSTLIB};
|
||||
+ my $hostarchlib = $ENV{PERLHOSTARCHLIB};
|
||||
+ print STDERR "*** Module name IN: $modlibname\n";
|
||||
+ my ($p1, $p2, $p3, $p4, $p5, $p6, $p7) = $modlibname =~ m/(^(.*lib\w*\/)?)((perl5\/[0-9\.]*\/)?)(([^\/]*)\/)?(.*)$/;
|
||||
+ print STDERR "*** p1: $p1 p3: $p3 p5: $p5 p7: $p7\n";
|
||||
+ if ( $p1 ne "" ) {
|
||||
+ $modlibname = $hostlib.$p7;
|
||||
+ }
|
||||
+ if ( $p6 ne "" ) {
|
||||
+ $modlibname = $hostarchlib.$p7;
|
||||
+ }
|
||||
+ print STDERR "*** Module name OUT: $modlibname\n";
|
||||
+ }
|
||||
+
|
||||
if (@_) {
|
||||
$module = $_[0];
|
||||
} else {
|
||||
2338
sources/poky/meta/recipes-devtools/perl/files/perl-rdepends.txt
Normal file
2338
sources/poky/meta/recipes-devtools/perl/files/perl-rdepends.txt
Normal file
File diff suppressed because it is too large
Load Diff
2
sources/poky/meta/recipes-devtools/perl/files/run-ptest
Normal file
2
sources/poky/meta/recipes-devtools/perl/files/run-ptest
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
{ cd t && PERL_BUILD_PACKAGING=1 ./TEST || echo "FAIL: perl" ; } | sed -u -e 's|\(.*\) .* ok$|PASS: \1|' -e 's|\(.*\) .* skipped|SKIP: \1|' -e 's|\(.*\) \.\(.*\)|FAIL: \1|'
|
||||
Reference in New Issue
Block a user