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,34 @@
|
||||
From f231cecc151930fd5b6309da317a8c5bc6001f38 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
||||
Date: Sat, 30 Oct 2021 15:10:28 +0200
|
||||
Subject: [PATCH] Add W_EXITCODE macro for non-glibc systems
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
||||
---
|
||||
src/terminal.cc | 5 +++++
|
||||
1 file changed, 5 insertions(+)
|
||||
|
||||
diff --git a/src/terminal.cc b/src/terminal.cc
|
||||
index 27ee91e..5f4d880 100644
|
||||
--- a/src/terminal.cc
|
||||
+++ b/src/terminal.cc
|
||||
@@ -47,6 +47,11 @@
|
||||
GS_DEFINE_CLEANUP_FUNCTION0(TerminalOptions*, gs_local_options_free, terminal_options_free)
|
||||
#define gs_free_options __attribute__ ((cleanup(gs_local_options_free)))
|
||||
|
||||
+/* fix for musl */
|
||||
+#ifndef W_EXITCODE
|
||||
+#define W_EXITCODE(ret, sig) ((ret) << 8 | (sig))
|
||||
+#endif
|
||||
+
|
||||
/* Wait-for-exit helper */
|
||||
|
||||
typedef struct {
|
||||
--
|
||||
2.31.1
|
||||
|
||||
@@ -0,0 +1,63 @@
|
||||
From 61668e1eb86a316d4ad9a6b9cacf8c8cc74a0c33 Mon Sep 17 00:00:00 2001
|
||||
From: Markus Volk <f_l_k@t-online.de>
|
||||
Date: Sun, 7 Jan 2024 10:40:31 +0100
|
||||
Subject: [PATCH] meson: add an option to set dbus_interface_dir
|
||||
|
||||
Add an option that allows to set the dbus_interface_dir path manually.
|
||||
This will help to cross-compile gnome-terminal on host systems that
|
||||
don't have gnome-shell installed.
|
||||
|
||||
Upstream-Status: Submitted [https://gitlab.gnome.org/GNOME/gnome-terminal/-/issues/8046]
|
||||
|
||||
Signed-off-by: Markus Volk <f_l_k@t-online.de>
|
||||
---
|
||||
meson_options.txt | 7 +++++++
|
||||
src/meson.build | 7 ++++++-
|
||||
2 files changed, 13 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/meson_options.txt b/meson_options.txt
|
||||
index b555ab66..8fece058 100644
|
||||
--- a/meson_options.txt
|
||||
+++ b/meson_options.txt
|
||||
@@ -13,6 +13,13 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this programme. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
+option(
|
||||
+ 'dbus_interface_dir',
|
||||
+ type: 'string',
|
||||
+ value: '',
|
||||
+ description: 'directory for D-Bus session interface files [$datadir/dbus-1/interfaces]',
|
||||
+)
|
||||
+
|
||||
option(
|
||||
'dbg',
|
||||
type: 'boolean',
|
||||
diff --git a/src/meson.build b/src/meson.build
|
||||
index 27ecd893..420ad45c 100644
|
||||
--- a/src/meson.build
|
||||
+++ b/src/meson.build
|
||||
@@ -185,6 +185,11 @@ server_sources = app_sources + client_util_sources + debug_sources + dbus_source
|
||||
|
||||
if get_option('search_provider')
|
||||
|
||||
+ dbus_interface_dir = get_option('dbus_interface_dir')
|
||||
+ if dbus_interface_dir == ''
|
||||
+ dbus_interface_dir = gt_prefix / gt_dbusinterfacedir
|
||||
+ endif
|
||||
+
|
||||
server_sources += files(
|
||||
'terminal-search-provider.cc',
|
||||
'terminal-search-provider.hh',
|
||||
@@ -192,7 +197,7 @@ if get_option('search_provider')
|
||||
|
||||
server_sources += gnome.gdbus_codegen(
|
||||
'terminal-search-provider-gdbus-generated',
|
||||
- gt_prefix / gt_dbusinterfacedir / 'org.gnome.ShellSearchProvider2.xml',
|
||||
+ dbus_interface_dir / 'org.gnome.ShellSearchProvider2.xml',
|
||||
autocleanup: 'none',
|
||||
install_header: false,
|
||||
interface_prefix: 'org.gnome.Shell',
|
||||
--
|
||||
2.43.0
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
SUMMARY = "GNOME terminal"
|
||||
LICENSE = "GPL-3.0-only & GFDL-1.3"
|
||||
LIC_FILES_CHKSUM = " \
|
||||
file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \
|
||||
file://COPYING.GFDL;md5=a22d0be1ce2284b67950a4d1673dd1b0 \
|
||||
"
|
||||
|
||||
inherit gnomebase pkgconfig gsettings gnome-help gettext itstool upstream-version-is-even
|
||||
|
||||
DEPENDS = " \
|
||||
glib-2.0 \
|
||||
docbook-xsl-stylesheets-native libxslt-native \
|
||||
desktop-file-utils-native \
|
||||
gtk+3 \
|
||||
gsettings-desktop-schemas \
|
||||
vte \
|
||||
dconf \
|
||||
libhandy \
|
||||
libpcre2 \
|
||||
"
|
||||
|
||||
SRC_URI = " \
|
||||
git://gitlab.gnome.org/GNOME/gnome-terminal.git;protocol=https;nobranch=1 \
|
||||
file://0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch \
|
||||
file://0001-meson-add-option-to-set-dbus_interfacedir.patch \
|
||||
"
|
||||
SRCREV = "5ac3b8e4bd6fa02651b3c23cedb0a7e1cd769655"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
PACKAGECONFIG ?= ""
|
||||
PACKAGECONFIG[nautilus] = "-Dnautilus_extension=true,-Dnautilus_extension=false,nautilus,nautilus"
|
||||
PACKAGECONFIG[search_provider] = "-Dsearch_provider=true -Ddbus_interface_dir=${STAGING_DATADIR}/dbus-1/interfaces,-Dsearch_provider=false,gnome-shell"
|
||||
|
||||
PACKAGE_DEBUG_SPLIT_STYLE = "debug-without-src"
|
||||
|
||||
FILES:${PN} += " \
|
||||
${datadir} \
|
||||
${libdir}/nautilus/extensions-4 \
|
||||
${systemd_user_unitdir} \
|
||||
"
|
||||
|
||||
RRECOMMENDS:${PN} += "vte-prompt gsettings-desktop-schemas"
|
||||
Reference in New Issue
Block a user