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,32 @@
|
||||
From 440f3f55739468cd26e22f31871eca8cbbd53294 Mon Sep 17 00:00:00 2001
|
||||
From: Oleksiy Obitotskyy <oobitots@cisco.com>
|
||||
Date: Wed, 6 Jan 2021 06:12:14 -0800
|
||||
Subject: [PATCH] Emit no #line directives if gen_line_dirs is false
|
||||
|
||||
If we set --noline we should not print line directives.
|
||||
But setting --noline means gen_line_dirs is false.
|
||||
|
||||
Upstream-Status: Submitted
|
||||
Signed-off-by: Oleksiy Obitotskyy <oobitots@cisco.com>
|
||||
---
|
||||
src/buf.c | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/buf.c b/src/buf.c
|
||||
index 185083c..4439e28 100644
|
||||
--- a/src/buf.c
|
||||
+++ b/src/buf.c
|
||||
@@ -95,8 +95,8 @@ struct Buf *buf_linedir (struct Buf *buf, const char* filename, int lineno)
|
||||
const char *src;
|
||||
size_t tsz;
|
||||
|
||||
- if (gen_line_dirs)
|
||||
- return buf;
|
||||
+ if (!gen_line_dirs)
|
||||
+ return buf;
|
||||
|
||||
tsz = strlen("#line \"\"\n") + /* constant parts */
|
||||
2 * strlen (filename) + /* filename with possibly all backslashes escaped */
|
||||
--
|
||||
2.26.2.Cisco
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
From ed1f7e9de0d6a1d5a9e581e02a63593d22cf1e52 Mon Sep 17 00:00:00 2001
|
||||
From: Explorer09 <explorer09@gmail.com>
|
||||
Date: Mon, 4 Sep 2017 10:47:33 +0800
|
||||
Subject: [PATCH] build: AC_USE_SYSTEM_EXTENSIONS in configure.ac.
|
||||
|
||||
This would, e.g. define _GNU_SOURCE in config.h, enabling the
|
||||
reallocarray() prototype in glibc 2.26+ on Linux systems with that
|
||||
version of glibc.
|
||||
|
||||
Fixes #241.
|
||||
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
---
|
||||
configure.ac | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 55e774b..c879fe1 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -25,8 +25,10 @@
|
||||
# autoconf requirements and initialization
|
||||
|
||||
AC_INIT([the fast lexical analyser generator],[2.6.4],[flex-help@lists.sourceforge.net],[flex])
|
||||
+AC_PREREQ([2.60])
|
||||
AC_CONFIG_SRCDIR([src/scan.l])
|
||||
AC_CONFIG_AUX_DIR([build-aux])
|
||||
+AC_USE_SYSTEM_EXTENSIONS
|
||||
LT_INIT
|
||||
AM_INIT_AUTOMAKE([1.11.3 -Wno-portability foreign check-news std-options dist-lzip parallel-tests subdir-objects])
|
||||
AC_CONFIG_HEADER([src/config.h])
|
||||
@@ -0,0 +1,28 @@
|
||||
From b4aa18d939fc0c8825fa584dfcee1a7da61099cf Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
Date: Thu, 10 Dec 2015 16:09:26 +0200
|
||||
Subject: [PATCH] tests: add a target for building tests without running them
|
||||
|
||||
Upstream-Status: Inappropriate [oe specific]
|
||||
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
---
|
||||
tests/Makefile.am | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/tests/Makefile.am b/tests/Makefile.am
|
||||
index 4ac3c17..0025cfe 100644
|
||||
--- a/tests/Makefile.am
|
||||
+++ b/tests/Makefile.am
|
||||
@@ -21,6 +21,9 @@
|
||||
|
||||
TESTS = $(check_PROGRAMS) options.cn
|
||||
|
||||
+# This allows building tests without running them
|
||||
+buildtests: $(TESTS)
|
||||
+
|
||||
# The script testwrapper.sh will run most tests as is. A couple tests
|
||||
# in the suite end in .reject, .table and the like so that we can pass
|
||||
# different arguments to the test runner. We list those extensions so
|
||||
--
|
||||
2.6.2
|
||||
|
||||
@@ -0,0 +1,67 @@
|
||||
Subject: build: Move dnl comments out of AC_CHECK_FUNCS
|
||||
|
||||
Due to a bug, autoheader (2.69) will treat M4 dnl comments in a quoted
|
||||
argument of AC_CHECK_FUNCS as function tokens and generate a lot of
|
||||
redundant and useless HAVE_* macros in config.h.in.
|
||||
(Examples: HAVE_DNL, HAVE_AVAILABLE_, HAVE_BY)
|
||||
|
||||
It seems to be this commit dbb4e94dc7bacbcfd4acef4f085ef752fe1aa03f of
|
||||
mine that revealed this autoheader bug, and the affected config.h.in
|
||||
had been shipped within flex-2.6.4 release tarball.
|
||||
|
||||
I have reported the autoheader bug here:
|
||||
<https://lists.gnu.org/archive/html/bug-autoconf/2018-02/msg00005.html>
|
||||
|
||||
As a workaround, let's move comments out of AC_CHECK_FUNCS.
|
||||
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
|
||||
Signed-off-by: Kang-Che Sung <explorer09@gmail.com>
|
||||
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
|
||||
---
|
||||
configure.ac | 28 +++++++++++++---------------
|
||||
1 file changed, 13 insertions(+), 15 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 55e774b..5ea3a93 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -153,21 +153,19 @@ AC_FUNC_REALLOC
|
||||
AS_IF([test "$cross_compiling" = yes],
|
||||
AC_MSG_WARN([result $ac_cv_func_realloc_0_nonnull guessed because of cross compilation]))
|
||||
|
||||
-AC_CHECK_FUNCS([dup2 dnl
|
||||
-memset dnl
|
||||
-regcomp dnl
|
||||
-strcasecmp dnl
|
||||
-strchr dnl
|
||||
-strdup dnl
|
||||
-strtol dnl
|
||||
-], [], [AC_MSG_ERROR(required library function not found on your system)])
|
||||
-
|
||||
-# Optional library functions
|
||||
-AC_CHECK_FUNCS([dnl
|
||||
-pow dnl Used only by "examples/manual/expr"
|
||||
-setlocale dnl Needed only if NLS is enabled
|
||||
-reallocarray dnl OpenBSD function. We have replacement if not available.
|
||||
-])
|
||||
+dnl Autoheader (<= 2.69) bug: "dnl" comments in a quoted argument of
|
||||
+dnl AC_CHECK_FUNCS will expand wierdly in config.h.in.
|
||||
+dnl (https://lists.gnu.org/archive/html/bug-autoconf/2018-02/msg00005.html)
|
||||
+
|
||||
+AC_CHECK_FUNCS([dup2 memset regcomp strcasecmp strchr strdup strtol], [],
|
||||
+ [AC_MSG_ERROR(required library function not found on your system)])
|
||||
+
|
||||
+# Optional library functions:
|
||||
+# pow - Used only by "examples/manual/expr".
|
||||
+# setlocale - Needed only if NLS is enabled.
|
||||
+# reallocarr - NetBSD function. Use reallocarray if not available.
|
||||
+# reallocarray - OpenBSD function. We have replacement if not available.
|
||||
+AC_CHECK_FUNCS([pow setlocale reallocarr reallocarray])
|
||||
|
||||
AC_CONFIG_FILES(
|
||||
Makefile
|
||||
--
|
||||
2.25.1
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
Due to automake stupidity the Makefile in tests/ has an 'all' target that
|
||||
depends on $(BUILD_SOURCES), which means when building flex parts of the test
|
||||
suite are built even if they're not needed, resulting in flex needing
|
||||
flex-native and bison-native to build.
|
||||
|
||||
This patch removes the tests directory from SUBDIRS and will be conditionally
|
||||
applied by the recipe.
|
||||
|
||||
Upstream-Status: Inappropriate
|
||||
Signed-off-by: Ross Burton <ross.burton@intel.com>
|
||||
|
||||
diff --git a/Makefile.am b/Makefile.am
|
||||
index 076ccad..0574d7b 100644
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -55,3 +55,2 @@ SUBDIRS = \
|
||||
po \
|
||||
- tests \
|
||||
tools
|
||||
5
sources/poky/meta/recipes-devtools/flex/flex/run-ptest
Executable file
5
sources/poky/meta/recipes-devtools/flex/flex/run-ptest
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
# make would want to rebuild some files with a compiler otherwise :-/
|
||||
make FLEX=/usr/bin/flex -t check-TESTS || true
|
||||
make FLEX=/usr/bin/flex abs_builddir=./ check-TESTS
|
||||
85
sources/poky/meta/recipes-devtools/flex/flex_2.6.4.bb
Normal file
85
sources/poky/meta/recipes-devtools/flex/flex_2.6.4.bb
Normal file
@@ -0,0 +1,85 @@
|
||||
SUMMARY = "Flex (The Fast Lexical Analyzer)"
|
||||
DESCRIPTION = "Flex is a fast lexical analyser generator. Flex is a tool for generating programs that recognize \
|
||||
lexical patterns in text."
|
||||
HOMEPAGE = "http://sourceforge.net/projects/flex/"
|
||||
SECTION = "devel"
|
||||
LICENSE = "BSD-3-Clause & LGPL-2.0-or-later"
|
||||
LICENSE:${PN}-libfl = "BSD-3-Clause"
|
||||
|
||||
DEPENDS = "${@bb.utils.contains('PTEST_ENABLED', '1', 'bison-native flex-native', '', d)}"
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=e4742cf92e89040b39486a6219b68067 \
|
||||
file://src/gettext.h;beginline=1;endline=17;md5=9c05dda2f58d89b850c399cf22e1a00c"
|
||||
|
||||
SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/flex-${PV}.tar.gz \
|
||||
file://run-ptest \
|
||||
file://0001-tests-add-a-target-for-building-tests-without-runnin.patch \
|
||||
${@bb.utils.contains('PTEST_ENABLED', '1', '', 'file://disable-tests.patch', d)} \
|
||||
file://0001-build-AC_USE_SYSTEM_EXTENSIONS-in-configure.ac.patch \
|
||||
file://check-funcs.patch \
|
||||
file://0001-Emit-no-line-directives-if-gen_line_dirs-is-false.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "2882e3179748cc9f9c23ec593d6adc8d"
|
||||
SRC_URI[sha256sum] = "e87aae032bf07c26f85ac0ed3250998c37621d95f8bd748b31f15b33c45ee995"
|
||||
|
||||
GITHUB_BASE_URI = "https://github.com/westes/flex/releases"
|
||||
|
||||
# https://github.com/westes/flex/issues/414
|
||||
CVE_STATUS[CVE-2019-6293] = "upstream-wontfix: \
|
||||
there is stack exhaustion but no bug and it is building the \
|
||||
parser, not running it, effectively similar to a compiler ICE. Upstream no plans to address this."
|
||||
|
||||
inherit autotools gettext texinfo ptest github-releases
|
||||
|
||||
M4 = "${bindir}/m4"
|
||||
M4:class-native = "${STAGING_BINDIR_NATIVE}/m4"
|
||||
EXTRA_OECONF += "ac_cv_path_M4=${M4} ac_cv_func_reallocarray=no"
|
||||
EXTRA_OEMAKE += "m4=${STAGING_BINDIR_NATIVE}/m4"
|
||||
|
||||
EXTRA_OEMAKE += "${@bb.utils.contains('PTEST_ENABLED', '1', 'FLEX=${STAGING_BINDIR_NATIVE}/flex', '', d)}"
|
||||
|
||||
do_install:append:class-native() {
|
||||
create_wrapper ${D}/${bindir}/flex M4=${M4}
|
||||
}
|
||||
|
||||
do_install:append:class-nativesdk() {
|
||||
create_wrapper ${D}/${bindir}/flex M4=${M4}
|
||||
}
|
||||
|
||||
PACKAGES =+ "${PN}-libfl"
|
||||
|
||||
FILES:${PN}-libfl = "${libdir}/libfl.so.* ${libdir}/libfl_pic.so.*"
|
||||
|
||||
RDEPENDS:${PN} += "m4"
|
||||
RDEPENDS:${PN}-ptest += "bash gawk make"
|
||||
|
||||
do_compile_ptest() {
|
||||
oe_runmake -C ${B}/tests -f ${B}/tests/Makefile top_builddir=${B} INCLUDES=-I${S}/src buildtests
|
||||
}
|
||||
PTEST_PARALLEL_MAKE = ""
|
||||
|
||||
do_install_ptest() {
|
||||
mkdir -p ${D}${PTEST_PATH}/build-aux/
|
||||
cp ${S}/build-aux/test-driver ${D}${PTEST_PATH}/build-aux/
|
||||
cp -r ${S}/tests/* ${D}${PTEST_PATH}
|
||||
cp -r ${B}/tests/* ${D}${PTEST_PATH}
|
||||
sed -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \
|
||||
-e 's|${DEBUG_PREFIX_MAP}||g' \
|
||||
-e 's:${HOSTTOOLS_DIR}/::g' \
|
||||
-e 's:\(^LDFLAGS_FOR_BUILD =\).*:\1:g' \
|
||||
-e 's:${RECIPE_SYSROOT_NATIVE}::g' \
|
||||
-e 's:${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}::g' \-e 's/^Makefile:/_Makefile:/' \
|
||||
-e 's/^srcdir = \(.*\)/srcdir = ./' -e 's/^top_srcdir = \(.*\)/top_srcdir = ./' \
|
||||
-e 's/^builddir = \(.*\)/builddir = ./' -e 's/^top_builddir = \(.*\)/top_builddir = ./' \
|
||||
-e 's:${UNINATIVE_LOADER}:${base_bindir}/false:g' \
|
||||
-i ${D}${PTEST_PATH}/Makefile
|
||||
}
|
||||
# The uninative loader is different on i386 & x86_64 hosts. Since it is only
|
||||
# being replaced with /bin/false anyway, it doesn't need to be part of the task
|
||||
# hash
|
||||
do_install_ptest[vardepsexclude] += "UNINATIVE_LOADER"
|
||||
|
||||
# Not Apache Flex, or Adobe Flex, or IBM Flex.
|
||||
CVE_PRODUCT = "flex_project:flex"
|
||||
Reference in New Issue
Block a user