mirror of
https://git.yoctoproject.org/meta-security
synced 2026-07-16 15:57:21 +00:00
70802667ab
Fixes build error: | Traceback (most recent call last): | File "setup.py", line 25, in <module> | from openscap_daemon import version | File "/buildarea/build/tmp/work/core2-64-poky-linux/openscap-daemon/0.1.10-r0/git/openscap_daemon/__init__.py", line 22, in <module> | from openscap_daemon.system import System | File "/buildarea/build/tmp/work/core2-64-poky-linux/openscap-daemon/0.1.10-r0/git/openscap_daemon/system.py", line 29 | from openscap_daemon import async | ^ | SyntaxError: invalid syntax Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
21 lines
654 B
BlitzBasic
21 lines
654 B
BlitzBasic
# Copyright (C) 2017 Armin Kuster <akuster808@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMARRY = "The OpenSCAP Daemon is a service that runs in the background."
|
|
HOME_URL = "https://www.open-scap.org/tools/openscap-daemon/"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=40d2542b8c43a3ec2b7f5da31a697b88"
|
|
LICENSE = "LGPL-2.1"
|
|
|
|
DEPENDS = "python3-dbus"
|
|
|
|
SRCREV = "f25b16afb6ac761fea13132ff406fba4cdfd2b76"
|
|
SRC_URI = "git://github.com/OpenSCAP/openscap-daemon.git \
|
|
file://0001-Renamed-module-and-variables-to-get-rid-of-async.patch \
|
|
"
|
|
|
|
inherit setuptools3
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
RDEPENDS_${PN} = "python"
|