mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00

meta-selinux has always been a soft dependency of meta-virt, as such, it isn't in the layer dependencies. To avoid yocto compat errors, and keep the dependency soft, we add a skiprecip to udica if meta-selinux is not present. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
23 lines
789 B
BlitzBasic
23 lines
789 B
BlitzBasic
SUMMARY = "A tool for generating SELinux security policies for containers"
|
|
HOMEPAGE = "https://github.com/containers/udica"
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=1ebbd3e34237af26da5dc08a4e440464"
|
|
|
|
SRC_URI = "git://github.com/containers/udica;protocol=https;branch=main"
|
|
|
|
SRCREV = "4a64ff7c1b8116a1894e72eee2a19706e970001f"
|
|
PV = "0.2.7+git${SRCPV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
SRC_URI[md5sum] = "9cc5156a2ff6458a8f52114b9bbc0d7e"
|
|
SRC_URI[sha256sum] = "3e8bc47534e0ca9331d72c32f2881bb13b93ded0bcdeab3c833fb7cf61c0a9a5"
|
|
|
|
SKIP_RECIPE[python3-udica] ?= "${@bb.utils.contains('BBFILE_COLLECTIONS', 'selinux', '', 'Depends on libselinux from meta-selinux which is not included', d)}"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
selinux-python \
|
|
"
|
|
|
|
inherit setuptools3
|