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,27 @@
SUMMARY = "Text::CharWidth - Get number of occupied columns of a string on terminal."
DESCRIPTION = "This module supplies features similar as wcwidth(3) and wcswidth(3) \
in C language. \
Characters have its own width on terminal depending on locale. For \
example, ASCII characters occupy one column per character, east Asian \
fullwidth characters (like Hiragana or Han Ideograph) occupy two columns \
per character, and combining characters (apperaring in ISO-8859-11 Thai, \
Unicode, and so on) occupy zero columns per character. mbwidth() gives the \
width of the first character of the given string and mbswidth() gives the \
width of the whole given string."
SECTION = "libs"
HOMEPAGE = "http://search.cpan.org/~kubota/Text-CharWidth-${PV}/"
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
LIC_FILES_CHKSUM = "file://README;md5=d8d54c8c500cbdd57a4c15911d9d96db"
SRC_URI = "${CPAN_MIRROR}/authors/id/K/KU/KUBOTA/Text-CharWidth-${PV}.tar.gz"
SRC_URI[md5sum] = "37a723df0580c0758c0ee67b37336c15"
SRC_URI[sha256sum] = "abded5f4fdd9338e89fd2f1d8271c44989dae5bf50aece41b6179d8e230704f8"
S = "${WORKDIR}/Text-CharWidth-${PV}"
inherit cpan
BBCLASSEXTEND = "native"

View File

@@ -0,0 +1,19 @@
#!/bin/sh
for case in `find t -type f -name '*.t'`; do
perl $case >$case.output 2>&1
ret=$?
cat $case.output
if [ $ret -ne 0 ]; then
echo "FAIL: ${case%.t}"
elif grep -i 'SKIP' $case.output; then
echo "SKIP: ${case%.t}"
else
echo "PASS: ${case%.t}"
fi
rm -f $case.output
done

View File

@@ -0,0 +1,34 @@
SUMMARY = "Text::Diff - Perform diffs on files and record sets"
DESCRIPTION = "diff() provides a basic set of services akin to the GNU diff \
utility. It is not anywhere near as feature complete as GNU diff, but it is \
better integrated with Perl and available on all platforms. It is often \
faster than shelling out to a system's diff executable for small files, \
and generally slower on larger files."
SECTION = "libs"
HOMEPAGE = "http://search.cpan.org/~ovid/Text-Diff/"
LICENSE = "Artistic-1.0 | GPL-2.0-or-later"
LIC_FILES_CHKSUM = "file://LICENSE;md5=385c55653886acac3821999a3ccd17b3"
SRC_URI = "${CPAN_MIRROR}/authors/id/O/OV/OVID/Text-Diff-${PV}.tar.gz \
file://run-ptest \
"
SRC_URI[md5sum] = "30d56e6dd5551ca16b8e16cc7299dc21"
SRC_URI[sha256sum] = "a67f50a48e313c1680cc662109ce5f913ea71454db355d0cf4db87ac89d2d2fa"
S = "${WORKDIR}/Text-Diff-${PV}"
inherit cpan ptest
RDEPENDS:${PN}-ptest += "perl-module-test perl-module-test-more"
RDEPENDS:${PN} = " libalgorithm-diff-perl \
perl-module-extutils-makemaker \
perl-module-exporter \
"
do_install_ptest () {
cp -r ${B}/t ${D}${PTEST_PATH}
}
BBCLASSEXTEND = "native"

View File

@@ -0,0 +1,24 @@
SUMMARY = "Perl interface to iconv() codeset conversion function"
DESCRIPTION = "\
The Text::Iconv module provides a Perl interface to the iconv() \
function as defined by the Single UNIX Specification. The convert() \
method converts the encoding of characters in the input string from \
the fromcode codeset to the tocode codeset, and returns the result. \
Settings of fromcode and tocode and their permitted combinations are \
implementation-dependent. Valid values are specified in the system \
documentation."
SECTION = "libs"
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
LIC_FILES_CHKSUM = "file://README;beginline=3;endline=6;md5=fadf2919c7128e887d26b4d905f90649"
RRECOMMENDS:${PN}:append:libc-glibc = " glibc-gconvs"
SRC_URI = "http://search.cpan.org/CPAN/authors/id/M/MP/MPIOTR/Text-Iconv-${PV}.tar.gz"
SRC_URI[md5sum] = "81b26e069eaebb084e91ea3c009b67ae"
SRC_URI[sha256sum] = "5b80b7d5e709d34393bcba88971864a17b44a5bf0f9e4bcee383d029e7d2d5c3"
S = "${WORKDIR}/Text-Iconv-${PV}"
inherit cpan
FILES:${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/Text/Iconv/.debug/"

View File

@@ -0,0 +1,32 @@
SUMMARY = "Text::WrapI18N - Line wrapping module with support for multibyte, \
fullwidth, and combining characters and languages without whitespaces \
between words."
DESCRIPTION = "This module intends to be a better Text::Wrap module. This module is \
needed to support multibyte character encodings such as UTF-8, EUC-JP, \
EUC-KR, GB2312, and Big5. This module also supports characters with \
irregular widths, such as combining characters (which occupy zero columns \
on terminal, like diacritical marks in UTF-8) and fullwidth characters \
(which occupy two columns on terminal, like most of east Asian \
characters). Also, minimal handling of languages which doesn't use \
whitespaces between words (like Chinese and Japanese) is supported."
SECTION = "libs"
HOMEPAGE = "http://search.cpan.org/~kubota/Text-WrapI18N-${PV}/"
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
LIC_FILES_CHKSUM = "file://README;md5=080862e1e40cdcddef4393e137285858"
SRC_URI = "${CPAN_MIRROR}/authors/id/K/KU/KUBOTA/Text-WrapI18N-${PV}.tar.gz"
SRC_URI[md5sum] = "0799c16a00926e6c18d400c2e2861d5f"
SRC_URI[sha256sum] = "4bd29a17f0c2c792d12c1005b3c276f2ab0fae39c00859ae1741d7941846a488"
S = "${WORKDIR}/Text-WrapI18N-${PV}"
DEPENDS = "libtext-charwidth-perl"
RDEPENDS:${PN} = "libtext-charwidth-perl"
inherit cpan
BBCLASSEXTEND = "native"