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,28 @@
|
||||
From 123b5a4c5e09f4262d4545a0bc5edb01a19b6b76 Mon Sep 17 00:00:00 2001
|
||||
From: Markus Volk <f_l_k@t-online.de>
|
||||
Date: Mon, 21 Aug 2023 10:06:55 +0200
|
||||
Subject: [PATCH] meson.build: allow crosscompiling gir
|
||||
|
||||
Upstream-Status: Inappropriate [oe specific]
|
||||
|
||||
Signed-off-by: Markus Volk <f_l_k@t-online.de>
|
||||
---
|
||||
meson.build | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/meson.build b/meson.build
|
||||
index 39b739e..46f2252 100644
|
||||
--- a/meson.build
|
||||
+++ b/meson.build
|
||||
@@ -29,7 +29,7 @@ libosinfo_pkgconfdir = join_paths(libosinfo_libdir, 'pkgconfig')
|
||||
|
||||
# gobject introspection
|
||||
gir = find_program('g-ir-scanner', required: get_option('enable-introspection'))
|
||||
-enable_introspection = gir.found() and not meson.is_cross_build()
|
||||
+enable_introspection = gir.found()
|
||||
|
||||
# vala
|
||||
vapi_opt = get_option('enable-vala')
|
||||
--
|
||||
2.41.0
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
From 5bbdd06503456784c5ffa22409e8bab50470d673 Mon Sep 17 00:00:00 2001
|
||||
From: Michal Privoznik <mprivozn@redhat.com>
|
||||
Date: Mon, 27 Nov 2023 15:11:45 +0100
|
||||
Subject: [PATCH] osinfo: Make xmlError struct constant in
|
||||
propagate_libxml_error()
|
||||
|
||||
In libxml2 commit v2.12.0~14 the API changed so that
|
||||
xmlGetLastError() returns pointer to a constant xmlError struct.
|
||||
Reflect this change in our code.
|
||||
|
||||
Upstream-Status: Backport [https://gitlab.com/libosinfo/libosinfo/-/merge_requests/155]
|
||||
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
|
||||
---
|
||||
osinfo/osinfo_install_script.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/osinfo/osinfo_install_script.c b/osinfo/osinfo_install_script.c
|
||||
index 5800f37..303245a 100644
|
||||
--- a/osinfo/osinfo_install_script.c
|
||||
+++ b/osinfo/osinfo_install_script.c
|
||||
@@ -769,7 +769,7 @@ static void propagate_libxml_error(GError **error, const char *format, ...) G_GN
|
||||
|
||||
static void propagate_libxml_error(GError **error, const char *format, ...)
|
||||
{
|
||||
- xmlErrorPtr err = xmlGetLastError();
|
||||
+ const xmlError *err = xmlGetLastError();
|
||||
char *prefix;
|
||||
va_list ap;
|
||||
|
||||
--
|
||||
2.44.0
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
SUMMARY = "API for managing information about operating systems, hypervisors and the (virtual) hardware devices."
|
||||
HOMEPAGE = "https://libosinfo.org"
|
||||
|
||||
LICENSE = "LGPL-2.1-only & GPL-2.0-only"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=2b0e9926530c269f5ae95560370195af"
|
||||
LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c"
|
||||
|
||||
SRC_URI = " \
|
||||
git://gitlab.com/libosinfo/libosinfo.git;branch=main;protocol=https \
|
||||
file://0001-meson.build-allow-crosscompiling-gir.patch \
|
||||
file://0001-osinfo-Make-xmlError-struct-constant-in-propagate_li.patch \
|
||||
"
|
||||
|
||||
SRCREV = "ca9dd5b810dc04ea38048ae9be491654c8596ef9"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
inherit meson pkgconfig gtk-doc gobject-introspection vala
|
||||
|
||||
DEPENDS = "glib-2.0 libsoup libxslt"
|
||||
|
||||
VALA_MESON_OPTION = 'enable-vala'
|
||||
VALA_MESON_ENABLE_FLAG = 'enabled'
|
||||
VALA_MESON_DISABLE_FLAG = 'disabled'
|
||||
GIR_MESON_OPTION = "enable-introspection"
|
||||
GIR_MESON_ENABLE_FLAG = 'enabled'
|
||||
GIR_MESON_DISABLE_FLAG = 'disabled'
|
||||
GTKDOC_MESON_OPTION = "enable-gtk-doc"
|
||||
|
||||
EXTRA_OEMESON += " \
|
||||
-Dwith-pci-ids-path=${datadir}/hwdata/pci.ids \
|
||||
-Dwith-usb-ids-path=${datadir}/hwdata/usb.ids \
|
||||
"
|
||||
|
||||
RDEPENDS:${PN} = "hwdata"
|
||||
Reference in New Issue
Block a user