mirror of
https://git.yoctoproject.org/poky
synced 2026-07-16 03:47:03 +00:00
1b94ea8b25
We've been removing PR values from recipes at upgrade time for a while. In general anyone maintaining a binary distro would end up having to curate these themselves so the values in OE-Core aren't really that useful anymore. In many ways it makes sense to clear out the remaining ones (which are mostly for 'config' recipes that are unlikely to increase in PV) and leave a clean slate for anyone implementing a binary distro config. References are left in meta-selftest since the tests there do involve them and their removal upon upgrade. (From OE-Core rev: d4c346e8ab8f3cae25d1b01c7331ed9f6d4f96ef) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
39 lines
976 B
BlitzBasic
39 lines
976 B
BlitzBasic
#
|
|
# Copyright (C) 2007 OpenedHand Ltd
|
|
#
|
|
|
|
SUMMARY = "Host packages for the standalone SDK or external toolchain"
|
|
|
|
inherit packagegroup nativesdk
|
|
|
|
PACKAGEGROUP_DISABLE_COMPLEMENTARY = "1"
|
|
|
|
# autoconf pulls in nativesdk-perl but perl-module-integer is needed to
|
|
# build some recent linux kernels (5.14+) for arm
|
|
RDEPENDS:${PN} = "\
|
|
nativesdk-pkgconfig \
|
|
nativesdk-qemu \
|
|
nativesdk-qemu-helper \
|
|
nativesdk-pseudo \
|
|
nativesdk-unfs3 \
|
|
nativesdk-opkg \
|
|
nativesdk-libtool \
|
|
nativesdk-autoconf \
|
|
nativesdk-automake \
|
|
nativesdk-shadow \
|
|
nativesdk-makedevs \
|
|
nativesdk-cmake \
|
|
nativesdk-meson \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'nativesdk-wayland-tools nativesdk-wayland-dev', '', d)} \
|
|
nativesdk-sdk-provides-dummy \
|
|
nativesdk-bison \
|
|
nativesdk-flex \
|
|
nativesdk-perl-module-integer \
|
|
"
|
|
|
|
RDEPENDS:${PN}:darwin = "\
|
|
nativesdk-pkgconfig \
|
|
nativesdk-opkg \
|
|
nativesdk-libtool \
|
|
"
|