mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2026-01-27 10:41:26 +01:00
Bumping conmon to version v2.1.3-280-g42da7ac, which comprises the following commits:
8debcb5 Move attach start message after failure check
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
31 lines
800 B
BlitzBasic
31 lines
800 B
BlitzBasic
SUMMARY = "An OCI container runtime monitor"
|
|
SECTION = "console/utils"
|
|
HOMEPAGE = "https://github.com/containers/conmon"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=61af0b6932ea7b12fb9142721043bc77"
|
|
|
|
inherit features_check
|
|
REQUIRED_DISTRO_FEATURES ?= "seccomp"
|
|
|
|
DEPENDS = "glib-2.0 go-md2man-native libseccomp"
|
|
|
|
SRCREV = "42da7ac3fe667a3369d54413ef92664043105f19"
|
|
SRC_URI = "\
|
|
git://github.com/containers/conmon.git;branch=main;protocol=https \
|
|
"
|
|
|
|
PV = "2.1.13+git"
|
|
|
|
inherit pkgconfig
|
|
|
|
export GOCACHE = "${B}/.cache"
|
|
|
|
EXTRA_OEMAKE = "PREFIX=${prefix} BINDIR=${bindir} LIBEXECDIR=${libexecdir}"
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
|
|
PACKAGECONFIG[systemd] = ",,systemd"
|
|
|
|
do_install() {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
}
|