mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
Source: https://git.openembedded.org/openembedded-core MR: 108825 Type: Security Fix Disposition: Backport from https://git.openembedded.org/openembedded-core/commit/meta/recipes-core/dbus?id=bfaef91e77cd54e4f642e966903aac3f3291c325 ChangeID: bfaef91e77cd54e4f642e966903aac3f3291c325 Description: Bugz only update Includes fix for CVE-2020-35512 ab88811768 (HEAD, tag: dbus-1.12.20) v1.12.20 5757fd5480 Update NEWS f3b2574f0c userdb: Reference-count DBusUserInfo, DBusGroupInfo <- cve fix 37b36d49a6 userdb: Make lookups return a const pointer 732284d530 Solaris and derivatives do not adjust cmsg_len on MSG_CTRUNC 1f8c42c7cd Start 1.12.20 development (From OE-Core rev: bfaef91e77cd54e4f642e966903aac3f3291c325) (From OE-Core rev: 4cebabf1007762872510c5065a2a718a89687734) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit bfaef91e77cd54e4f642e966903aac3f3291c325) Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
65 lines
1.9 KiB
BlitzBasic
65 lines
1.9 KiB
BlitzBasic
SUMMARY = "D-Bus test package (for D-bus functionality testing only)"
|
|
HOMEPAGE = "http://dbus.freedesktop.org"
|
|
SECTION = "base"
|
|
|
|
require dbus.inc
|
|
|
|
SRC_URI += "file://run-ptest \
|
|
file://python-config.patch \
|
|
"
|
|
|
|
DEPENDS = "dbus glib-2.0"
|
|
|
|
RDEPENDS_${PN}-dev = ""
|
|
|
|
S="${WORKDIR}/dbus-${PV}"
|
|
FILESEXTRAPATHS =. "${FILE_DIRNAME}/dbus:"
|
|
|
|
inherit ptest
|
|
|
|
EXTRA_OECONF += "--enable-tests \
|
|
--enable-modular-tests \
|
|
--enable-installed-tests \
|
|
--enable-checks \
|
|
--enable-asserts \
|
|
--with-dbus-test-dir=${PTEST_PATH} \
|
|
--enable-embedded-tests \
|
|
"
|
|
|
|
do_install() {
|
|
:
|
|
}
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/test
|
|
l="shell printf refs syslog marshal syntax corrupt dbus-daemon dbus-daemon-eavesdrop loopback relay \
|
|
variant uid-permissions syntax spawn sd-activation names monitor message fdpass service shell-service"
|
|
for i in $l; do install ${B}/test/.libs/test-$i ${D}${PTEST_PATH}/test; done
|
|
|
|
l="bus bus-system bus-launch-helper"
|
|
for i in $l; do install ${B}/bus/.libs/test-$i ${D}${PTEST_PATH}/test; done
|
|
|
|
install -d ${D}${PTEST_PATH}/bus
|
|
install ${B}/bus/.libs/dbus-daemon-launch-helper-test ${D}${PTEST_PATH}/bus
|
|
|
|
install ${B}/test/test-segfault ${D}${PTEST_PATH}/test
|
|
|
|
cp -r ${B}/test/data ${D}${PTEST_PATH}/test
|
|
install ${B}/dbus/.libs/test-dbus ${D}${PTEST_PATH}/test
|
|
|
|
install -d ${D}${PTEST_PATH}/test/.libs
|
|
cp -a ${B}/dbus/.libs/*.so* ${D}${PTEST_PATH}/test/.libs
|
|
|
|
# Remove build host references...
|
|
find "${D}${PTEST_PATH}/test/data" \( -name *.service -o -name *.conf -o -name "*.aaprofile" \) -type f -exec \
|
|
sed -i \
|
|
-e 's:${B}:${PTEST_PATH}:g' \
|
|
{} +
|
|
sed -i -e 's;@PTEST_PATH@;${PTEST_PATH};g' ${D}${PTEST_PATH}/run-ptest
|
|
}
|
|
|
|
RDEPENDS_${PN}-ptest += "bash make dbus"
|
|
RDEPENDS_${PN}-ptest_remove = "${PN}"
|
|
|
|
PRIVATE_LIBS_${PN}-ptest = "libdbus-1.so.3"
|