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,45 @@
|
||||
Add target to only build tests (not run them)
|
||||
|
||||
Not sending upstream as this is only a start of a solution to
|
||||
installable tests: It's useful for us already as is.
|
||||
|
||||
Upstream-Status: Inappropriate [not a complete solution]
|
||||
|
||||
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
|
||||
Refactored for 3.4
|
||||
Signed-off-by: Armin Kuster <akuster@mvista.com>
|
||||
---
|
||||
Makefile.in | 3 +++
|
||||
testsuite/Makefile.in | 2 ++
|
||||
2 files changed, 5 insertions(+)
|
||||
|
||||
diff --git a/Makefile.in b/Makefile.in
|
||||
index e5ccfc7..15c9275 100644
|
||||
--- a/Makefile.in
|
||||
+++ b/Makefile.in
|
||||
@@ -52,6 +52,9 @@ clean distclean mostlyclean maintainer-clean tags:
|
||||
echo "Making $@ in $$d" ; (cd $$d && $(MAKE) $@); done
|
||||
$(MAKE) $@-here
|
||||
|
||||
+buildtest:
|
||||
+ echo "Making $@ in testsuite" ; (cd testsuite && $(MAKE) $@)
|
||||
+
|
||||
check-here:
|
||||
true
|
||||
|
||||
diff --git a/testsuite/Makefile.in b/testsuite/Makefile.in
|
||||
index 3f5e5f6..8fd68a3 100644
|
||||
--- a/testsuite/Makefile.in
|
||||
+++ b/testsuite/Makefile.in
|
||||
@@ -122,6 +122,8 @@ $(TARGETS) $(EXTRA_TARGETS): testutils.$(OBJEXT) ../nettle-internal.$(OBJEXT) \
|
||||
# data.
|
||||
VALGRIND = valgrind --error-exitcode=1 --leak-check=full --show-reachable=yes @IF_ASM@ --partial-loads-ok=yes
|
||||
|
||||
+buildtest: $(TS_ALL)
|
||||
+
|
||||
check: $(TS_ALL)
|
||||
TEST_SHLIB_DIR="$(TEST_SHLIB_DIR)" \
|
||||
srcdir="$(srcdir)" \
|
||||
--
|
||||
2.17.1
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
From ffee6b5f6204a0210f717968ec6ce514d70acca1 Mon Sep 17 00:00:00 2001
|
||||
From: Haiqing Bai <Haiqing.Bai@windriver.com>
|
||||
Date: Fri, 9 Dec 2016 15:23:17 +0800
|
||||
Subject: [PATCH] nettle: check header files of openssl only if
|
||||
'enable_openssl=yes'.
|
||||
|
||||
The original configure script checks openssl header files to generate
|
||||
config.h even if 'enable_openssl' is not set to yes, this made inconsistent
|
||||
building for nettle.
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Haiqing Bai <Haiqing.Bai@windriver.com>
|
||||
|
||||
refactored for 3.4. pending not in as of 3.4
|
||||
|
||||
Signed-off-by: Armin Kuster <akuster@mvista.com>
|
||||
|
||||
Index: nettle-3.4/configure.ac
|
||||
===================================================================
|
||||
--- nettle-3.4.orig/configure.ac
|
||||
+++ nettle-3.4/configure.ac
|
||||
@@ -185,9 +185,11 @@ AC_HEADER_TIME
|
||||
AC_CHECK_SIZEOF(long)
|
||||
AC_CHECK_SIZEOF(size_t)
|
||||
|
||||
-AC_CHECK_HEADERS([openssl/evp.h openssl/ecdsa.h],,
|
||||
-[enable_openssl=no
|
||||
- break])
|
||||
+if test "x$enable_openssl" = "xyes"; then
|
||||
+ AC_CHECK_HEADERS([openssl/evp.h openssl/ecdsa.h],,
|
||||
+ [enable_openssl=no
|
||||
+ break])
|
||||
+fi
|
||||
|
||||
# For use by the testsuite
|
||||
AC_CHECK_HEADERS([valgrind/memcheck.h])
|
||||
40
sources/poky/meta/recipes-support/nettle/nettle/run-ptest
Normal file
40
sources/poky/meta/recipes-support/nettle/nettle/run-ptest
Normal file
@@ -0,0 +1,40 @@
|
||||
#! /bin/sh
|
||||
|
||||
cd testsuite
|
||||
|
||||
failed=0
|
||||
all=0
|
||||
|
||||
for f in *-test; do
|
||||
case "$f" in
|
||||
"sha1-huge-test")
|
||||
echo "SKIP: $f (long run time)"
|
||||
;;
|
||||
"symbols-test")
|
||||
echo "SKIP: $f (needs static libraries)"
|
||||
;;
|
||||
*)
|
||||
"./$f"
|
||||
case "$?" in
|
||||
0)
|
||||
echo "PASS: $f"
|
||||
all=$((all + 1))
|
||||
;;
|
||||
77)
|
||||
echo "SKIP: $f"
|
||||
;;
|
||||
*)
|
||||
echo "FAIL: $f"
|
||||
failed=$((failed + 1))
|
||||
all=$((all + 1))
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [ "$failed" -eq 0 ] ; then
|
||||
echo "All $all tests passed"
|
||||
else
|
||||
echo "$failed of $all tests failed"
|
||||
fi
|
||||
61
sources/poky/meta/recipes-support/nettle/nettle_3.9.1.bb
Normal file
61
sources/poky/meta/recipes-support/nettle/nettle_3.9.1.bb
Normal file
@@ -0,0 +1,61 @@
|
||||
SUMMARY = "A low level cryptographic library"
|
||||
DESCRIPTION = "Nettle is a cryptographic library that is designed to fit easily in more or less any context: In crypto toolkits for object-oriented languages (C++, Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space."
|
||||
HOMEPAGE = "http://www.lysator.liu.se/~nisse/nettle/"
|
||||
DESCRIPTION = "It tries to solve a problem of providing a common set of \
|
||||
cryptographic algorithms for higher-level applications by implementing a \
|
||||
context-independent set of cryptographic algorithms"
|
||||
SECTION = "libs"
|
||||
LICENSE = "LGPL-3.0-or-later | GPL-2.0-or-later"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://COPYING.LESSERv3;md5=6a6a8e020838b23406c81b19c1d46df6 \
|
||||
file://COPYINGv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
||||
file://serpent-decrypt.c;beginline=14;endline=36;md5=ca0d220bc413e1842ecc507690ce416e \
|
||||
file://serpent-set-key.c;beginline=14;endline=36;md5=ca0d220bc413e1842ecc507690ce416e"
|
||||
|
||||
DEPENDS += "gmp"
|
||||
|
||||
SRC_URI = "${GNU_MIRROR}/${BPN}/${BP}.tar.gz \
|
||||
file://Add-target-to-only-build-tests-not-run-them.patch \
|
||||
file://run-ptest \
|
||||
file://check-header-files-of-openssl-only-if-enable_.patch \
|
||||
"
|
||||
|
||||
SRC_URI[sha256sum] = "ccfeff981b0ca71bbd6fbcb054f407c60ffb644389a5be80d6716d5b550c6ce3"
|
||||
|
||||
UPSTREAM_CHECK_REGEX = "nettle-(?P<pver>\d+(\.\d+)+)\.tar"
|
||||
|
||||
inherit autotools ptest multilib_header lib_package
|
||||
|
||||
EXTRA_AUTORECONF += "--exclude=aclocal"
|
||||
|
||||
EXTRA_OECONF = "--disable-openssl"
|
||||
|
||||
EXTRA_OECONF:append:armv7a = "${@bb.utils.contains("TUNE_FEATURES","neon",""," --disable-arm-neon --disable-fat",d)}"
|
||||
EXTRA_OECONF:append:armv7ve = "${@bb.utils.contains("TUNE_FEATURES","neon",""," --disable-arm-neon --disable-fat",d)}"
|
||||
|
||||
do_compile_ptest() {
|
||||
oe_runmake buildtest
|
||||
}
|
||||
|
||||
do_install:append() {
|
||||
oe_multilib_header nettle/version.h
|
||||
}
|
||||
|
||||
do_install_ptest() {
|
||||
install -d ${D}${PTEST_PATH}/testsuite/
|
||||
install ${B}/testsuite/*-test ${D}${PTEST_PATH}/testsuite/
|
||||
install ${S}/testsuite/*-test ${D}${PTEST_PATH}/testsuite/
|
||||
install ${S}/testsuite/gold-bug.txt ${D}${PTEST_PATH}/testsuite/
|
||||
|
||||
# Install a symlink for dlopen-test
|
||||
ln -sr ${D}${libdir}/libnettle.so.*.* ${D}${PTEST_PATH}/libnettle.so
|
||||
# These examples are needed for pkcs1-conv-test
|
||||
install ${B}/examples/rsa-sign ${B}/examples/rsa-verify ${D}${PTEST_PATH}/testsuite/
|
||||
# Fix build-time relative paths
|
||||
sed -i -e 's|../tools/|${bindir}/|g' ${D}${PTEST_PATH}/testsuite/*-test
|
||||
sed -i -e 's|../examples/|./|g' ${D}${PTEST_PATH}/testsuite/*-test
|
||||
}
|
||||
|
||||
RDEPENDS:${PN}-ptest += "${PN}-bin"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
Reference in New Issue
Block a user