gatesgarth migration: features_check class replaces distro_features_check
The 'distro_features_check' class has had its functionality expanded, as a result the class has now been renamed to 'features_check' https://jira.digi.com/browse/DEL-7508 Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
This commit is contained in:
parent
526a0fbcc6
commit
4342546a01
|
|
@ -10,6 +10,6 @@ PACKAGECONFIG_remove = "qtwpe"
|
|||
|
||||
# We can't build the WebKit with fb images, so force wayland as a required
|
||||
# distro feature.
|
||||
inherit distro_features_check
|
||||
inherit features_check
|
||||
|
||||
REQUIRED_DISTRO_FEATURES = "wayland"
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ SRC_URI = "\
|
|||
"
|
||||
S = "${WORKDIR}/bluez-${PV}"
|
||||
|
||||
inherit autotools pkgconfig systemd update-rc.d distro_features_check ptest
|
||||
inherit autotools pkgconfig systemd update-rc.d features_check ptest
|
||||
|
||||
EXTRA_OECONF = "\
|
||||
--enable-tools \
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ IMAGE_LINGUAS = ""
|
|||
|
||||
inherit core-image
|
||||
inherit dey-image
|
||||
inherit distro_features_check
|
||||
inherit features_check
|
||||
|
||||
CONFLICT_DISTRO_FEATURES = "directfb"
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ RPROVIDES_${PN}_imxgpu3d += "imx-gpu-viv"
|
|||
|
||||
PE = "1"
|
||||
|
||||
inherit fsl-eula-unpack distro_features_check
|
||||
inherit fsl-eula-unpack features_check
|
||||
|
||||
REQUIRED_DISTRO_FEATURES_mx8 = "wayland"
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ S = "${WORKDIR}/git"
|
|||
|
||||
REQUIRED_DISTRO_FEATURES = "vulkan"
|
||||
|
||||
inherit cmake distro_features_check
|
||||
inherit cmake features_check
|
||||
ANY_OF_DISTRO_FEATURES = "x11 wayland"
|
||||
|
||||
FILES_${PN} += "${datadir}/vulkan/registry"
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ S = "${WORKDIR}/git"
|
|||
|
||||
REQUIRED_DISTRO_FEATURES = "vulkan"
|
||||
|
||||
inherit cmake distro_features_check python3native lib_package
|
||||
inherit cmake features_check python3native lib_package
|
||||
ANY_OF_DISTRO_FEATURES = "x11 wayland"
|
||||
|
||||
DEPENDS += "vulkan-headers"
|
||||
|
|
@ -35,4 +35,4 @@ UPSTREAM_CHECK_GITTAGREGEX = "sdk-(?P<pver>\d+(\.\d+)+)"
|
|||
# instead of -dev
|
||||
FILES_SOLIBSDEV = ""
|
||||
FILES_${PN} += "${libdir}/lib*${SOLIBSDEV}"
|
||||
INSANE_SKIP_${PN} += "dev-so"
|
||||
INSANE_SKIP_${PN} += "dev-so"
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ S = "${WORKDIR}/git"
|
|||
|
||||
REQUIRED_DISTRO_FEATURES = "vulkan"
|
||||
|
||||
inherit cmake python3native lib_package distro_features_check
|
||||
inherit cmake python3native lib_package features_check
|
||||
ANY_OF_DISTRO_FEATURES = "x11 wayland"
|
||||
|
||||
DEPENDS = "vulkan-headers vulkan-loader"
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ S = "${WORKDIR}/${XORG_PN}-${PV}"
|
|||
|
||||
inherit autotools pkgconfig
|
||||
|
||||
inherit distro_features_check
|
||||
inherit features_check
|
||||
REQUIRED_DISTRO_FEATURES = "x11"
|
||||
|
||||
LIB_DEPS = "pixman libxfont2 xtrans libxau libxext libxdmcp libdrm libxkbfile libpciaccess"
|
||||
|
|
|
|||
Loading…
Reference in New Issue