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:
88
sources/poky/meta/recipes-extended/cpio/cpio_2.15.bb
Normal file
88
sources/poky/meta/recipes-extended/cpio/cpio_2.15.bb
Normal file
@@ -0,0 +1,88 @@
|
||||
SUMMARY = "GNU cpio is a program to manage archives of files"
|
||||
DESCRIPTION = "GNU cpio is a tool for creating and extracting archives, or copying files from one place to \
|
||||
another. It handles a number of cpio formats as well as reading and writing tar files."
|
||||
HOMEPAGE = "http://www.gnu.org/software/cpio/"
|
||||
SECTION = "base"
|
||||
LICENSE = "GPL-3.0-only"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
|
||||
|
||||
SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \
|
||||
file://run-ptest \
|
||||
file://test.sh \
|
||||
"
|
||||
|
||||
SRC_URI[sha256sum] = "efa50ef983137eefc0a02fdb51509d624b5e3295c980aa127ceee4183455499e"
|
||||
|
||||
inherit autotools gettext texinfo ptest
|
||||
|
||||
CVE_STATUS[CVE-2010-4226] = "not-applicable-platform: Issue applies to use of cpio in SUSE/OBS"
|
||||
CVE_STATUS[CVE-2023-7216] = "disputed: intended behaviour, see https://lists.gnu.org/archive/html/bug-cpio/2024-03/msg00000.html"
|
||||
|
||||
EXTRA_OECONF += "DEFAULT_RMT_DIR=${sbindir}"
|
||||
|
||||
do_install () {
|
||||
autotools_do_install
|
||||
if [ "${base_bindir}" != "${bindir}" ]; then
|
||||
install -d ${D}${base_bindir}/
|
||||
mv "${D}${bindir}/cpio" "${D}${base_bindir}/cpio"
|
||||
if [ "${sbindir}" != "${bindir}" ]; then
|
||||
rmdir ${D}${bindir}/
|
||||
fi
|
||||
fi
|
||||
|
||||
# Avoid conflicts with the version from tar
|
||||
mv "${D}${mandir}/man8/rmt.8" "${D}${mandir}/man8/rmt-cpio.8"
|
||||
}
|
||||
|
||||
do_compile_ptest() {
|
||||
oe_runmake -C ${B}/gnu/ check
|
||||
oe_runmake -C ${B}/lib/ check
|
||||
oe_runmake -C ${B}/rmt/ check
|
||||
oe_runmake -C ${B}/src/ check
|
||||
oe_runmake -C ${B}/tests/ genfile
|
||||
}
|
||||
|
||||
do_install_ptest() {
|
||||
install -d ${D}${PTEST_PATH}/tests/
|
||||
sed -i "/abs_/d" ${B}/tests/atconfig
|
||||
install --mode=755 ${B}/tests/atconfig ${D}${PTEST_PATH}/tests/
|
||||
sed -i "s%${B}/tests:%%g" ${B}/tests/atlocal
|
||||
sed -i "s%${B}/src:%%g" ${B}/tests/atlocal
|
||||
install --mode=755 ${B}/tests/atlocal ${D}${PTEST_PATH}/tests/
|
||||
install --mode=755 ${B}/tests/genfile ${D}${PTEST_PATH}/tests/
|
||||
install --mode=755 ${S}/tests/testsuite ${D}${PTEST_PATH}/tests/
|
||||
install --mode=755 ${WORKDIR}/test.sh ${D}${PTEST_PATH}/test.sh
|
||||
sed -i "s#@PTEST_PATH@#${PTEST_PATH}#g" ${D}${PTEST_PATH}/test.sh
|
||||
}
|
||||
|
||||
# ptest.bbclass currently chowns the ptest directory explicitly, so we need to
|
||||
# change permission after that has happened so the ptest user can write a
|
||||
# temporary directory.
|
||||
do_install_ptest_base:append() {
|
||||
chgrp -R ptest ${D}${PTEST_PATH}/
|
||||
chmod -R g+w ${D}${PTEST_PATH}/
|
||||
}
|
||||
|
||||
# The tests need to run as a non-root user, so pull in the ptest user
|
||||
DEPENDS:append:class-target = "${@bb.utils.contains('PTEST_ENABLED', '1', ' ptest-runner', '', d)}"
|
||||
PACKAGE_WRITE_DEPS += "ptest-runner"
|
||||
|
||||
RDEPENDS:${PN}-ptest += "ptest-runner"
|
||||
|
||||
PACKAGES =+ "${PN}-rmt"
|
||||
|
||||
FILES:${PN}-rmt = "${sbindir}/rmt*"
|
||||
|
||||
inherit update-alternatives
|
||||
|
||||
ALTERNATIVE_PRIORITY = "100"
|
||||
|
||||
ALTERNATIVE:${PN} = "cpio"
|
||||
ALTERNATIVE:${PN}-rmt = "rmt"
|
||||
|
||||
ALTERNATIVE_LINK_NAME[cpio] = "${base_bindir}/cpio"
|
||||
|
||||
ALTERNATIVE_PRIORITY[rmt] = "50"
|
||||
ALTERNATIVE_LINK_NAME[rmt] = "${sbindir}/rmt"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
3
sources/poky/meta/recipes-extended/cpio/files/run-ptest
Executable file
3
sources/poky/meta/recipes-extended/cpio/files/run-ptest
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
su -c ./test.sh ptest
|
||||
10
sources/poky/meta/recipes-extended/cpio/files/test.sh
Normal file
10
sources/poky/meta/recipes-extended/cpio/files/test.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Define cpio test work dir
|
||||
WORKDIR=@PTEST_PATH@/tests/
|
||||
|
||||
# Run test
|
||||
cd ${WORKDIR}
|
||||
./atconfig ./atlocal ./testsuite
|
||||
|
||||
./testsuite 2>&1 | grep -E '[0-9]{1,3}: ' | sed -e 's/^.....//' -e '/[ok]$/s/^/PASS: /;/FAILED (.*)/s/^/FAIL: /;/skipped (.*)/s/^/SKIP: /;/expected failure/ s/^/PASS: /;/UNEXPECTED PASS/s/^/FAIL: /' -e 's/ok$//g' -e 's/FAILED.*//g' -e 's/skipped.*//g' -e 's/expected failure.*//g' -e 's/UNEXPECTED PASS.*//g'
|
||||
Reference in New Issue
Block a user