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:
Siggi (OpenClaw Agent)
2026-03-01 20:58:18 +00:00
commit 16accb6b24
15086 changed files with 1292356 additions and 0 deletions

View File

@@ -0,0 +1,66 @@
Build compressed archives with -n
The compressed archives contain a header with the field MTIME
(Modification Time) which is initialized from the built date.
As a consequence, two separate builds generate compressed archives
whose checksum differs. Such behavior prevents reproducible builds.
Adding the -n option to gzip while compressing the archive does
not save the original time stamp by default hence making
reproducible build.
Upstream-Status: Inappropriate
Signed-off-by: Jean-Marc BOUCHE <jean-marc.bouche@foss.st.com>
Index: terminus-font-4.49.1/Makefile
===================================================================
--- terminus-font-4.49.1.orig/Makefile
+++ terminus-font-4.49.1/Makefile
@@ -92,9 +92,9 @@ otbdir = $(prefix)/share/fonts/terminus
install: $(PSF) $(PCF)
mkdir -p $(DESTDIR)$(psfdir)
- for i in $(PSF) ; do gzip -c $$i > $(DESTDIR)$(psfdir)/$$i.gz ; done
+ for i in $(PSF) ; do gzip -c -n $$i > $(DESTDIR)$(psfdir)/$$i.gz ; done
mkdir -p $(DESTDIR)$(x11dir)
- for i in $(PCF) ; do gzip -c $$i > $(DESTDIR)$(x11dir)/$$i.gz ; done
+ for i in $(PCF) ; do gzip -c -n $$i > $(DESTDIR)$(x11dir)/$$i.gz ; done
uninstall:
for i in $(PSF) ; do rm -f $(DESTDIR)$(psfdir)/$$i.gz ; done
@@ -193,7 +193,7 @@ psf: $(PSF)
install-psf: $(PSF)
mkdir -p $(DESTDIR)$(psfdir)
- for i in $(PSF) ; do gzip -c $$i > $(DESTDIR)$(psfdir)/$$i.gz ; done
+ for i in $(PSF) ; do gzip -c -n $$i > $(DESTDIR)$(psfdir)/$$i.gz ; done
uninstall-psf:
for i in $(PSF) ; do rm -f $(DESTDIR)$(psfdir)/$$i.gz ; done
@@ -202,7 +202,7 @@ psf-vgaw: $(PSF_VGAW)
install-psf-vgaw: $(PSF_VGAW)
mkdir -p $(DESTDIR)$(psfdir)
- for i in $(PSF_VGAW) ; do gzip -c $$i > $(DESTDIR)$(psfdir)/$$i.gz ; done
+ for i in $(PSF_VGAW) ; do gzip -c -n $$i > $(DESTDIR)$(psfdir)/$$i.gz ; done
uninstall-psf-vgaw:
for i in $(PSF_VGAW) ; do rm -f $(DESTDIR)$(psfdir)/$$i.gz ; done
@@ -279,7 +279,7 @@ pcf: $(PCF)
install-pcf: $(PCF)
mkdir -p $(DESTDIR)$(x11dir)
- for i in $(PCF) ; do gzip -c $$i > $(DESTDIR)$(x11dir)/$$i.gz ; done
+ for i in $(PCF) ; do gzip -c -n $$i > $(DESTDIR)$(x11dir)/$$i.gz ; done
uninstall-pcf:
for i in $(PCF) ; do rm -f $(DESTDIR)$(x11dir)/$$i.gz ; done
@@ -288,7 +288,7 @@ pcf-8bit: $(PCF_8BIT)
install-pcf-8bit: $(PCF_8BIT)
mkdir -p $(DESTDIR)$(x11dir)
- for i in $(PCF_8BIT) ; do gzip -c $$i > $(DESTDIR)$(x11dir)/$$i.gz ; done
+ for i in $(PCF_8BIT) ; do gzip -c -n $$i > $(DESTDIR)$(x11dir)/$$i.gz ; done
uninstall-pcf-8bit:
for i in $(PCF_8BIT) ; do rm -f $(DESTDIR)$(x11dir)/$$i.gz ; done

View File

@@ -0,0 +1,46 @@
SUMMARY = "Terminus fonts packages (console and X11)"
DESCRIPTION = "Terminus Font is a clean, fixed width bitmap font, designed for \
long (8 and more hours per day) work with computers."
HOMEPAGE = "http://terminus-font.sourceforge.net/"
SECTION = "fonts"
LICENSE = "OFL-1.1"
LIC_FILES_CHKSUM = "file://OFL.TXT;md5=f57e6cca943dbc6ef83dc14f1855bdcc"
DEPENDS = "hostperl-runtime-native gzip-native bdftopcf-native"
SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \
file://use-no-name-option-for-gzip.patch \
"
SRC_URI[md5sum] = "1b6acbd221957e33c8a792ebfaf3a659"
SRC_URI[sha256sum] = "d961c1b781627bf417f9b340693d64fc219e0113ad3a3af1a3424c7aa373ef79"
inherit allarch fontcache
PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}"
PACKAGECONFIG[x11] = ""
# Don't use font cache mecanism for console packages
FONT_PACKAGES = "${@bb.utils.contains('PACKAGECONFIG', 'x11', '${PN}-pcf', '', d)}"
# Hand made configure script. Don't need oe_runconf
do_configure() {
chmod +x ${S}/configure
${S}/configure --prefix=${prefix} \
--psfdir=${datadir}/consolefonts \
--acmdir=${datadir}/consoletrans \
--x11dir=${datadir}/fonts/terminus
}
do_compile() {
oe_runmake DESTDIR=${D} psf ${@bb.utils.contains('PACKAGECONFIG', 'x11', 'pcf', '', d)}
}
do_install() {
oe_runmake DESTDIR=${D} install-psf ${@bb.utils.contains('PACKAGECONFIG', 'x11', 'install-pcf', '', d)}
}
PACKAGES += "${PN}-consolefonts ${PN}-consoletrans ${PN}-pcf"
FILES:${PN}-consolefonts = "${datadir}/consolefonts"
FILES:${PN}-consoletrans = "${datadir}/consoletrans"
FILES:${PN}-pcf = "${datadir}/fonts/terminus"