diff options
author | Piotr Tworek <tworaz666@gmail.com> | 2018-09-21 23:48:51 +0200 |
---|---|---|
committer | Joe MacDonald <joe@deserted.net> | 2018-10-23 13:16:39 +0100 |
commit | 1fdd4c91d7374a3ea9fbaa7bbee64e0e6d02b482 (patch) | |
tree | f98afd6b3555d67d2a620cf2746fbb683a933662 | |
parent | 8ff95d5b2a693aeb4e791aacf83d24313ce35f3e (diff) | |
download | meta-selinux-1fdd4c91d7374a3ea9fbaa7bbee64e0e6d02b482.tar.gz meta-selinux-1fdd4c91d7374a3ea9fbaa7bbee64e0e6d02b482.tar.bz2 meta-selinux-1fdd4c91d7374a3ea9fbaa7bbee64e0e6d02b482.zip |
setools: Add missing python runtime deps.
The package needs logging, json and argparse modules to start.
Additionaly, it also needs libselinux-python in order to really work.
Without it it'll just print an error message instructing the user to
install it.
Signed-off-by: Piotr Tworek <tworaz666@gmail.com>
Signed-off-by: Joe MacDonald <joe@deserted.net>
-rw-r--r-- | recipes-security/setools/setools_4.1.1.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes-security/setools/setools_4.1.1.bb b/recipes-security/setools/setools_4.1.1.bb index 5b6d47d..c5a2d34 100644 --- a/recipes-security/setools/setools_4.1.1.bb +++ b/recipes-security/setools/setools_4.1.1.bb @@ -23,7 +23,8 @@ LIC_FILES_CHKSUM = "file://${S}/COPYING;md5=83a5eb6974c11f30785e90d0eeccf40c \ DEPENDS += "bison-native flex-native swig-native python libsepol" -RDEPENDS_${PN} += "python-networkx python-enum34 python-decorator python-setuptools" +RDEPENDS_${PN} += "python-networkx python-enum34 python-decorator python-setuptools \ + python-logging python-json python-argparse libselinux-python" RPROVIDES_${PN} += "${PN}-console" |