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,15 @@
|
||||
Upstream-Status: Submitted [https://bugs.freedesktop.org/show_bug.cgi?id=59097]
|
||||
|
||||
Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
|
||||
diff -Nurd startup-notification-0.12/configure.in startup-notification-0.12/configure.in
|
||||
--- startup-notification-0.12/configure.in 2011-05-16 17:29:20.000000000 +0300
|
||||
+++ startup-notification-0.12/configure.in 2013-01-07 06:00:48.921905409 +0200
|
||||
@@ -3,7 +3,7 @@
|
||||
AC_CONFIG_SRCDIR(libsn/sn-launchee.c)
|
||||
|
||||
AM_INIT_AUTOMAKE
|
||||
-AM_CONFIG_HEADER(config.h)
|
||||
+AC_CONFIG_HEADERS(config.h)
|
||||
|
||||
# Honor aclocal flags
|
||||
AC_SUBST(ACLOCAL_AMFLAGS, "\${ACLOCAL_FLAGS}")
|
||||
@@ -0,0 +1,108 @@
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
|
||||
From a7e49fefde18ea8d5bada8096d32f23bcfb5a6dc Mon Sep 17 00:00:00 2001
|
||||
From: "Federico G. Schwindt" <fgsch@openbsd.org>
|
||||
Date: Mon, 17 Feb 2014 15:48:12 +0100
|
||||
Subject: [PATCH 1/3] Fix crash on 32bit architectures where time_t is 64 bit
|
||||
|
||||
This is an ABI change on platforms where sizeof(time_t) doesn't equal
|
||||
sizeof(long). For most platforms this change shouldn't make a difference
|
||||
at present. OpenBSD recently switched to 64bit time_t on all architectures
|
||||
to avoid time_t overflow in 2038 on 32bit machines.
|
||||
|
||||
This fix extends to consumers of startup-notification, for instance
|
||||
the window manager of XFCE, which is how I got involved in this.
|
||||
See http://mail.xfce.org/pipermail/xfce4-dev/2014-February/030611.html
|
||||
and follow-ups. The XFCE devs pointed out that my patch to fix a
|
||||
crash in XFCE's window manager depends on this startup-notification patch.
|
||||
|
||||
Signed-off-by: Julien Danjou <julien@danjou.info>
|
||||
---
|
||||
libsn/sn-monitor.c | 8 ++++----
|
||||
libsn/sn-monitor.h | 8 ++++----
|
||||
2 files changed, 8 insertions(+), 8 deletions(-)
|
||||
|
||||
diff --git a/libsn/sn-monitor.c b/libsn/sn-monitor.c
|
||||
index 2a9ad16..f419bc1 100644
|
||||
--- a/libsn/sn-monitor.c
|
||||
+++ b/libsn/sn-monitor.c
|
||||
@@ -364,8 +364,8 @@ sn_startup_sequence_get_screen (SnStartupSequence *sequence)
|
||||
**/
|
||||
void
|
||||
sn_startup_sequence_get_initiated_time (SnStartupSequence *sequence,
|
||||
- long *tv_sec,
|
||||
- long *tv_usec)
|
||||
+ time_t *tv_sec,
|
||||
+ suseconds_t *tv_usec)
|
||||
{
|
||||
if (tv_sec)
|
||||
*tv_sec = sequence->initiation_time.tv_sec;
|
||||
@@ -386,8 +386,8 @@ sn_startup_sequence_get_initiated_time (SnStartupSequence *sequence,
|
||||
**/
|
||||
void
|
||||
sn_startup_sequence_get_last_active_time (SnStartupSequence *sequence,
|
||||
- long *tv_sec,
|
||||
- long *tv_usec)
|
||||
+ time_t *tv_sec,
|
||||
+ suseconds_t *tv_usec)
|
||||
{
|
||||
/* for now the same as get_initiated_time */
|
||||
if (tv_sec)
|
||||
diff --git a/libsn/sn-monitor.h b/libsn/sn-monitor.h
|
||||
index b58581f..2f639df 100644
|
||||
--- a/libsn/sn-monitor.h
|
||||
+++ b/libsn/sn-monitor.h
|
||||
@@ -77,11 +77,11 @@ const char* sn_startup_sequence_get_application_id (SnStartupSequence *se
|
||||
int sn_startup_sequence_get_screen (SnStartupSequence *sequence);
|
||||
|
||||
void sn_startup_sequence_get_initiated_time (SnStartupSequence *sequence,
|
||||
- long *tv_sec,
|
||||
- long *tv_usec);
|
||||
+ time_t *tv_sec,
|
||||
+ suseconds_t *tv_usec);
|
||||
void sn_startup_sequence_get_last_active_time (SnStartupSequence *sequence,
|
||||
- long *tv_sec,
|
||||
- long *tv_usec);
|
||||
+ time_t *tv_sec,
|
||||
+ suseconds_t *tv_usec);
|
||||
|
||||
void sn_startup_sequence_complete (SnStartupSequence *sequence);
|
||||
|
||||
--
|
||||
2.26.2
|
||||
|
||||
From ea9f7e4cc6fd8c08d175ed7774ed2c5bd11c8ef0 Mon Sep 17 00:00:00 2001
|
||||
From: Colin Walters <walters@verbum.org>
|
||||
Date: Mon, 17 Feb 2014 14:37:09 -0500
|
||||
Subject: [PATCH 2/3] Add include of <sys/select.h> for previous patch
|
||||
|
||||
Unfortunately while the standard says that <sys/types.h> is the
|
||||
correct header to get suseconds_t, at least with glibc, that requires
|
||||
-DXOPEN_SOURCE. Which is problematic for a public header, because
|
||||
then all *users* of startup-notification will be required to define
|
||||
that.
|
||||
|
||||
Poking around a bit, it looks like at least with glibc, <sys/select.h>
|
||||
will give us an unconditional define.
|
||||
|
||||
Signed-off-by: Julien Danjou <julien@danjou.info>
|
||||
---
|
||||
libsn/sn-monitor.h | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/libsn/sn-monitor.h b/libsn/sn-monitor.h
|
||||
index 2f639df..cea4e12 100644
|
||||
--- a/libsn/sn-monitor.h
|
||||
+++ b/libsn/sn-monitor.h
|
||||
@@ -28,6 +28,7 @@
|
||||
#define __SN_MONITOR_H__
|
||||
|
||||
#include <libsn/sn-common.h>
|
||||
+#include <sys/select.h>
|
||||
|
||||
SN_BEGIN_DECLS
|
||||
|
||||
--
|
||||
2.26.2
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
SUMMARY = "Enables monitoring and display of application startup"
|
||||
DESCRIPTION = "Contains a reference implementation of the startup notification protocol. \
|
||||
The reference implementation is mostly under an X Window System style license, and has \
|
||||
no special dependencies. "
|
||||
HOMEPAGE = "http://www.freedesktop.org/wiki/Software/startup-notification/"
|
||||
BUGTRACKER = "https://gitlab.freedesktop.org/xdg/startup-notification/-/issues"
|
||||
|
||||
# most files are under MIT, but libsn/sn-util.c is under LGPL, the
|
||||
# effective license is LGPL
|
||||
LICENSE = "LGPL-2.0-or-later"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=a2ae2cd47d6d2f238410f5364dfbc0f2 \
|
||||
file://libsn/sn-util.c;endline=18;md5=18a14dc1825d38e741d772311fea9ee1 \
|
||||
file://libsn/sn-common.h;endline=23;md5=6d05bc0ebdcf5513a6e77cb26e8cd7e2 \
|
||||
file://test/test-boilerplate.h;endline=23;md5=923e706b2a70586176eead261cc5bb98"
|
||||
|
||||
|
||||
SECTION = "libs"
|
||||
|
||||
|
||||
DEPENDS = "virtual/libx11 libsm xcb-util"
|
||||
|
||||
inherit autotools pkgconfig features_check
|
||||
# depends on virtual/libx11
|
||||
REQUIRED_DISTRO_FEATURES = "x11"
|
||||
|
||||
SRC_URI = "http://www.freedesktop.org/software/startup-notification/releases/${BPN}-${PV}.tar.gz \
|
||||
file://obsolete_automake_macros.patch \
|
||||
file://time_t.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "2cd77326d4dcaed9a5a23a1232fb38e9"
|
||||
SRC_URI[sha256sum] = "3c391f7e930c583095045cd2d10eb73a64f085c7fde9d260f2652c7cb3cfbe4a"
|
||||
Reference in New Issue
Block a user