diff options
author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2017-08-04 14:14:02 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-20 22:31:56 +0000 |
commit | 7aaffbede46ce352b91c7a5c5f825a6f3b5b1c2e (patch) | |
tree | 80b839beeb0155bd3680d0e77053905eb22c5854 /meta/recipes-devtools/dnf | |
parent | 2afde7e7bd866c4d3d059229c3c2201b7096e5e6 (diff) | |
download | poky-7aaffbede46ce352b91c7a5c5f825a6f3b5b1c2e.tar.gz |
python: fix RDEPENDS on several recipes, due to non-existent packages
The packaging has been altered slightly so ensure the dependencies are all still
valid.
(From OE-Core rev: 3328211afdef8ffb00dd4dff1143959d5412b075)
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/dnf')
-rw-r--r-- | meta/recipes-devtools/dnf/dnf_2.7.5.bb | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/meta/recipes-devtools/dnf/dnf_2.7.5.bb b/meta/recipes-devtools/dnf/dnf_2.7.5.bb index fbd3bd4571..b88ddb445a 100644 --- a/meta/recipes-devtools/dnf/dnf_2.7.5.bb +++ b/meta/recipes-devtools/dnf/dnf_2.7.5.bb | |||
@@ -25,8 +25,30 @@ DEPENDS += "libdnf librepo libcomps python3-iniparse" | |||
25 | EXTRA_OECMAKE = " -DWITH_MAN=0 -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} -DPYTHON_DESIRED=3" | 25 | EXTRA_OECMAKE = " -DWITH_MAN=0 -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} -DPYTHON_DESIRED=3" |
26 | 26 | ||
27 | BBCLASSEXTEND = "native nativesdk" | 27 | BBCLASSEXTEND = "native nativesdk" |
28 | RDEPENDS_${PN}_class-target += "python3-core python3-codecs python3-netclient python3-email python3-threading python3-distutils librepo python3-shell python3-subprocess libcomps libdnf python3-sqlite3 python3-compression python3-rpm python3-iniparse python3-json python3-importlib python3-curses python3-argparse python3-misc python3-gpg" | 28 | |
29 | # Recommend gnupg so that GPG signature check on repository metadata is possible | 29 | RDEPENDS_${PN}_class-target += " \ |
30 | python3-core \ | ||
31 | python3-codecs \ | ||
32 | python3-netclient \ | ||
33 | python3-email \ | ||
34 | python3-threading \ | ||
35 | python3-distutils \ | ||
36 | python3-logging \ | ||
37 | python3-fcntl \ | ||
38 | librepo \ | ||
39 | python3-shell \ | ||
40 | libcomps \ | ||
41 | libdnf \ | ||
42 | python3-sqlite3 \ | ||
43 | python3-compression \ | ||
44 | python3-rpm \ | ||
45 | python3-iniparse \ | ||
46 | python3-json \ | ||
47 | python3-curses \ | ||
48 | python3-misc \ | ||
49 | python3-gpg \ | ||
50 | " | ||
51 | |||
30 | RRECOMMENDS_${PN}_class-target += "gnupg" | 52 | RRECOMMENDS_${PN}_class-target += "gnupg" |
31 | 53 | ||
32 | # Create a symlink called 'dnf' as 'make install' does not do it, but | 54 | # Create a symlink called 'dnf' as 'make install' does not do it, but |