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 | |
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')
18 files changed, 37 insertions, 29 deletions
diff --git a/meta/recipes-core/libxml/libxml2_2.9.7.bb b/meta/recipes-core/libxml/libxml2_2.9.7.bb index 85bfecae88..2fb90a68a8 100644 --- a/meta/recipes-core/libxml/libxml2_2.9.7.bb +++ b/meta/recipes-core/libxml/libxml2_2.9.7.bb | |||
@@ -40,7 +40,7 @@ inherit autotools pkgconfig binconfig-disabled ptest | |||
40 | 40 | ||
41 | inherit ${@bb.utils.contains('PACKAGECONFIG', 'python', 'python3native', '', d)} | 41 | inherit ${@bb.utils.contains('PACKAGECONFIG', 'python', 'python3native', '', d)} |
42 | 42 | ||
43 | RDEPENDS_${PN}-ptest += "make ${@bb.utils.contains('PACKAGECONFIG', 'python', 'libgcc python3-core python3-argparse python3-logging python3-shell python3-signal python3-stringold python3-threading python3-unittest ${PN}-python', '', d)}" | 43 | RDEPENDS_${PN}-ptest += "make ${@bb.utils.contains('PACKAGECONFIG', 'python', 'libgcc python3-core python3-logging python3-shell python3-stringold python3-threading python3-unittest ${PN}-python', '', d)}" |
44 | 44 | ||
45 | RDEPENDS_${PN}-python += "${@bb.utils.contains('PACKAGECONFIG', 'python', 'python3-core', '', d)}" | 45 | RDEPENDS_${PN}-python += "${@bb.utils.contains('PACKAGECONFIG', 'python', 'python3-core', '', d)}" |
46 | 46 | ||
diff --git a/meta/recipes-devtools/bootchart2/bootchart2_0.14.8.bb b/meta/recipes-devtools/bootchart2/bootchart2_0.14.8.bb index a3101351ee..c047be1e85 100644 --- a/meta/recipes-devtools/bootchart2/bootchart2_0.14.8.bb +++ b/meta/recipes-devtools/bootchart2/bootchart2_0.14.8.bb | |||
@@ -139,7 +139,7 @@ do_install () { | |||
139 | 139 | ||
140 | PACKAGES =+ "pybootchartgui" | 140 | PACKAGES =+ "pybootchartgui" |
141 | FILES_pybootchartgui += "${PYTHON_SITEPACKAGES_DIR}/pybootchartgui ${bindir}/pybootchartgui" | 141 | FILES_pybootchartgui += "${PYTHON_SITEPACKAGES_DIR}/pybootchartgui ${bindir}/pybootchartgui" |
142 | RDEPENDS_pybootchartgui = "python3-pycairo python3-compression python3-image python3-textutils python3-shell python3-compression python3-codecs" | 142 | RDEPENDS_pybootchartgui = "python3-pycairo python3-compression python3-image python3-shell python3-compression python3-codecs" |
143 | RDEPENDS_${PN}_class-target += "${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'sysvinit-pidof', 'procps', d)}" | 143 | RDEPENDS_${PN}_class-target += "${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'sysvinit-pidof', 'procps', d)}" |
144 | RDEPENDS_${PN}_class-target += "lsb" | 144 | RDEPENDS_${PN}_class-target += "lsb" |
145 | DEPENDS_append_class-native = " python3-pycairo-native" | 145 | DEPENDS_append_class-native = " python3-pycairo-native" |
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 |
diff --git a/meta/recipes-devtools/gdb/gdb-cross-canadian.inc b/meta/recipes-devtools/gdb/gdb-cross-canadian.inc index 3ff1989538..4fc6747d9d 100644 --- a/meta/recipes-devtools/gdb/gdb-cross-canadian.inc +++ b/meta/recipes-devtools/gdb/gdb-cross-canadian.inc | |||
@@ -13,9 +13,9 @@ GDBPROPREFIX = "--program-prefix='${TARGET_PREFIX}'" | |||
13 | # Overrides PACKAGECONFIG variables in gdb-common.inc | 13 | # Overrides PACKAGECONFIG variables in gdb-common.inc |
14 | PACKAGECONFIG ??= "python readline" | 14 | PACKAGECONFIG ??= "python readline" |
15 | PACKAGECONFIG[python] = "--with-python=${WORKDIR}/python,--without-python,nativesdk-python3, \ | 15 | PACKAGECONFIG[python] = "--with-python=${WORKDIR}/python,--without-python,nativesdk-python3, \ |
16 | nativesdk-python3-core nativesdk-python3-lang nativesdk-python3-re \ | 16 | nativesdk-python3-core \ |
17 | nativesdk-python3-codecs nativesdk-python3-netclient \ | 17 | nativesdk-python3-codecs nativesdk-python3-netclient \ |
18 | nativesdk-python3-importlib" | 18 | " |
19 | PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,nativesdk-readline" | 19 | PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,nativesdk-readline" |
20 | 20 | ||
21 | SSTATE_DUPWHITELIST += "${STAGING_DATADIR}/gdb" | 21 | SSTATE_DUPWHITELIST += "${STAGING_DATADIR}/gdb" |
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils_0.3.5.bb b/meta/recipes-devtools/opkg-utils/opkg-utils_0.3.5.bb index 514ba7912a..e9ba9de094 100644 --- a/meta/recipes-devtools/opkg-utils/opkg-utils_0.3.5.bb +++ b/meta/recipes-devtools/opkg-utils/opkg-utils_0.3.5.bb | |||
@@ -20,7 +20,7 @@ SRC_URI[sha256sum] = "7f4b08912e26a3f4f6f423f3b4e7157a73b1f3a7483fc59b216d1a80b5 | |||
20 | TARGET_CC_ARCH += "${LDFLAGS}" | 20 | TARGET_CC_ARCH += "${LDFLAGS}" |
21 | 21 | ||
22 | # For native builds we use the host Python | 22 | # For native builds we use the host Python |
23 | PYTHONRDEPS = "python3 python3-shell python3-io python3-math python3-crypt python3-logging python3-fcntl python3-subprocess python3-pickle python3-compression python3-textutils python3-stringold" | 23 | PYTHONRDEPS = "python3 python3-shell python3-io python3-math python3-crypt python3-logging python3-fcntl python3-pickle python3-compression python3-stringold" |
24 | PYTHONRDEPS_class-native = "" | 24 | PYTHONRDEPS_class-native = "" |
25 | 25 | ||
26 | PACKAGECONFIG = "python update-alternatives" | 26 | PACKAGECONFIG = "python update-alternatives" |
diff --git a/meta/recipes-devtools/python-numpy/python3-numpy_1.13.3.bb b/meta/recipes-devtools/python-numpy/python3-numpy_1.13.3.bb index 42b2a18a5b..277c21f9da 100644 --- a/meta/recipes-devtools/python-numpy/python3-numpy_1.13.3.bb +++ b/meta/recipes-devtools/python-numpy/python3-numpy_1.13.3.bb | |||
@@ -102,11 +102,9 @@ RDEPENDS_${PN} = "python3-unittest \ | |||
102 | python3-pydoc \ | 102 | python3-pydoc \ |
103 | python3-pkgutil \ | 103 | python3-pkgutil \ |
104 | python3-email \ | 104 | python3-email \ |
105 | python3-subprocess \ | ||
106 | python3-compression \ | 105 | python3-compression \ |
107 | python3-ctypes \ | 106 | python3-ctypes \ |
108 | python3-threading \ | 107 | python3-threading \ |
109 | python3-textutils \ | ||
110 | " | 108 | " |
111 | 109 | ||
112 | RDEPENDS_${PN}_class-native = "" | 110 | RDEPENDS_${PN}_class-native = "" |
diff --git a/meta/recipes-devtools/python/python-async.inc b/meta/recipes-devtools/python/python-async.inc index 0874667e0c..6664ab013c 100644 --- a/meta/recipes-devtools/python/python-async.inc +++ b/meta/recipes-devtools/python/python-async.inc | |||
@@ -9,6 +9,6 @@ inherit pypi | |||
9 | SRC_URI[md5sum] = "9b06b5997de2154f3bc0273f80bcef6b" | 9 | SRC_URI[md5sum] = "9b06b5997de2154f3bc0273f80bcef6b" |
10 | SRC_URI[sha256sum] = "ac6894d876e45878faae493b0cf61d0e28ec417334448ac0a6ea2229d8343051" | 10 | SRC_URI[sha256sum] = "ac6894d876e45878faae493b0cf61d0e28ec417334448ac0a6ea2229d8343051" |
11 | 11 | ||
12 | RDEPENDS_${PN} += "${PYTHON_PN}-threading ${PYTHON_PN}-lang" | 12 | RDEPENDS_${PN} += "${PYTHON_PN}-threading" |
13 | 13 | ||
14 | BBCLASSEXTEND = "nativesdk" | 14 | BBCLASSEXTEND = "nativesdk" |
diff --git a/meta/recipes-devtools/python/python-git.inc b/meta/recipes-devtools/python/python-git.inc index bef08eb74e..8d37693960 100644 --- a/meta/recipes-devtools/python/python-git.inc +++ b/meta/recipes-devtools/python/python-git.inc | |||
@@ -17,19 +17,14 @@ SRC_URI[sha256sum] = "ad61bc25deadb535b047684d06f3654c001d9415e1971e51c9c20f5b51 | |||
17 | 17 | ||
18 | DEPENDS = "${PYTHON_PN}-gitdb" | 18 | DEPENDS = "${PYTHON_PN}-gitdb" |
19 | 19 | ||
20 | RDEPENDS_${PN} += "${PYTHON_PN}-argparse \ | 20 | RDEPENDS_${PN} += " \ |
21 | ${PYTHON_PN}-datetime \ | 21 | ${PYTHON_PN}-datetime \ |
22 | ${PYTHON_PN}-enum \ | ||
23 | ${PYTHON_PN}-gitdb \ | 22 | ${PYTHON_PN}-gitdb \ |
24 | ${PYTHON_PN}-io \ | 23 | ${PYTHON_PN}-io \ |
25 | ${PYTHON_PN}-lang \ | ||
26 | ${PYTHON_PN}-logging \ | 24 | ${PYTHON_PN}-logging \ |
27 | ${PYTHON_PN}-math \ | 25 | ${PYTHON_PN}-math \ |
28 | ${PYTHON_PN}-netclient \ | 26 | ${PYTHON_PN}-netclient \ |
29 | ${PYTHON_PN}-re \ | ||
30 | ${PYTHON_PN}-shell \ | ||
31 | ${PYTHON_PN}-stringold \ | 27 | ${PYTHON_PN}-stringold \ |
32 | ${PYTHON_PN}-subprocess \ | ||
33 | ${PYTHON_PN}-unittest \ | 28 | ${PYTHON_PN}-unittest \ |
34 | ${PYTHON_PN}-unixadmin \ | 29 | ${PYTHON_PN}-unixadmin \ |
35 | git \ | 30 | git \ |
diff --git a/meta/recipes-devtools/python/python-gitdb.inc b/meta/recipes-devtools/python/python-gitdb.inc index b32b869a02..2d5292e5d4 100644 --- a/meta/recipes-devtools/python/python-gitdb.inc +++ b/meta/recipes-devtools/python/python-gitdb.inc | |||
@@ -17,7 +17,6 @@ RDEPENDS_${PN} += "${PYTHON_PN}-async \ | |||
17 | ${PYTHON_PN}-compression \ | 17 | ${PYTHON_PN}-compression \ |
18 | ${PYTHON_PN}-crypt \ | 18 | ${PYTHON_PN}-crypt \ |
19 | ${PYTHON_PN}-io \ | 19 | ${PYTHON_PN}-io \ |
20 | ${PYTHON_PN}-lang \ | ||
21 | ${PYTHON_PN}-mmap \ | 20 | ${PYTHON_PN}-mmap \ |
22 | ${PYTHON_PN}-shell \ | 21 | ${PYTHON_PN}-shell \ |
23 | ${PYTHON_PN}-smmap \ | 22 | ${PYTHON_PN}-smmap \ |
diff --git a/meta/recipes-devtools/python/python-scons_3.0.1.bb b/meta/recipes-devtools/python/python-scons_3.0.1.bb index 2f75b08d25..d5084b2d16 100644 --- a/meta/recipes-devtools/python/python-scons_3.0.1.bb +++ b/meta/recipes-devtools/python/python-scons_3.0.1.bb | |||
@@ -18,5 +18,4 @@ RDEPENDS_${PN} = "\ | |||
18 | python-subprocess \ | 18 | python-subprocess \ |
19 | python-shell \ | 19 | python-shell \ |
20 | python-pprint \ | 20 | python-pprint \ |
21 | python-importlib \ | ||
22 | " | 21 | " |
diff --git a/meta/recipes-devtools/python/python-setuptools.inc b/meta/recipes-devtools/python/python-setuptools.inc index d6eeeba2e3..54b7c300e0 100644 --- a/meta/recipes-devtools/python/python-setuptools.inc +++ b/meta/recipes-devtools/python/python-setuptools.inc | |||
@@ -30,15 +30,12 @@ RDEPENDS_${PN} = "\ | |||
30 | ${PYTHON_PN}-distutils \ | 30 | ${PYTHON_PN}-distutils \ |
31 | ${PYTHON_PN}-email \ | 31 | ${PYTHON_PN}-email \ |
32 | ${PYTHON_PN}-html \ | 32 | ${PYTHON_PN}-html \ |
33 | ${PYTHON_PN}-importlib \ | ||
34 | ${PYTHON_PN}-netserver \ | 33 | ${PYTHON_PN}-netserver \ |
35 | ${PYTHON_PN}-numbers \ | 34 | ${PYTHON_PN}-numbers \ |
36 | ${PYTHON_PN}-pkgutil \ | 35 | ${PYTHON_PN}-pkgutil \ |
37 | ${PYTHON_PN}-plistlib \ | 36 | ${PYTHON_PN}-plistlib \ |
38 | ${PYTHON_PN}-shell \ | 37 | ${PYTHON_PN}-shell \ |
39 | ${PYTHON_PN}-subprocess \ | ||
40 | ${PYTHON_PN}-stringold \ | 38 | ${PYTHON_PN}-stringold \ |
41 | ${PYTHON_PN}-textutils \ | ||
42 | ${PYTHON_PN}-threading \ | 39 | ${PYTHON_PN}-threading \ |
43 | ${PYTHON_PN}-unittest \ | 40 | ${PYTHON_PN}-unittest \ |
44 | ${PYTHON_PN}-xml \ | 41 | ${PYTHON_PN}-xml \ |
diff --git a/meta/recipes-devtools/python/python-smmap.inc b/meta/recipes-devtools/python/python-smmap.inc index 32438350c1..55aa516e0a 100644 --- a/meta/recipes-devtools/python/python-smmap.inc +++ b/meta/recipes-devtools/python/python-smmap.inc | |||
@@ -13,7 +13,6 @@ SRC_URI[md5sum] = "d7932d5ace206bf4ae15198cf36fb6ab" | |||
13 | SRC_URI[sha256sum] = "0e2b62b497bd5f0afebc002eda4d90df9d209c30ef257e8673c90a6b5c119d62" | 13 | SRC_URI[sha256sum] = "0e2b62b497bd5f0afebc002eda4d90df9d209c30ef257e8673c90a6b5c119d62" |
14 | 14 | ||
15 | RDEPENDS_${PN} += "${PYTHON_PN}-codecs \ | 15 | RDEPENDS_${PN} += "${PYTHON_PN}-codecs \ |
16 | ${PYTHON_PN}-lang \ | ||
17 | ${PYTHON_PN}-mmap \ | 16 | ${PYTHON_PN}-mmap \ |
18 | " | 17 | " |
19 | BBCLASSEXTEND = "nativesdk" | 18 | BBCLASSEXTEND = "nativesdk" |
diff --git a/meta/recipes-devtools/python/python3-pip_9.0.1.bb b/meta/recipes-devtools/python/python3-pip_9.0.1.bb index 4ce13da410..cd849eb08e 100644 --- a/meta/recipes-devtools/python/python3-pip_9.0.1.bb +++ b/meta/recipes-devtools/python/python3-pip_9.0.1.bb | |||
@@ -37,7 +37,6 @@ do_install_append() { | |||
37 | RDEPENDS_${PN} = "\ | 37 | RDEPENDS_${PN} = "\ |
38 | python3-compile \ | 38 | python3-compile \ |
39 | python3-io \ | 39 | python3-io \ |
40 | python3-enum \ | ||
41 | python3-html \ | 40 | python3-html \ |
42 | python3-json \ | 41 | python3-json \ |
43 | python3-netserver \ | 42 | python3-netserver \ |
diff --git a/meta/recipes-devtools/python/python3-pygobject_3.26.1.bb b/meta/recipes-devtools/python/python3-pygobject_3.26.1.bb index 0405b44f17..91f2d53d78 100644 --- a/meta/recipes-devtools/python/python3-pygobject_3.26.1.bb +++ b/meta/recipes-devtools/python/python3-pygobject_3.26.1.bb | |||
@@ -24,7 +24,7 @@ PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', [ 'directfb', 'wa | |||
24 | # we don't link against python3-pycairo -> RDEPENDS | 24 | # we don't link against python3-pycairo -> RDEPENDS |
25 | PACKAGECONFIG[cairo] = "--enable-cairo,--disable-cairo,cairo python3-pycairo, python3-pycairo" | 25 | PACKAGECONFIG[cairo] = "--enable-cairo,--disable-cairo,cairo python3-pycairo, python3-pycairo" |
26 | 26 | ||
27 | RDEPENDS_${PN} += "python3-setuptools python3-importlib" | 27 | RDEPENDS_${PN} += "python3-setuptools" |
28 | 28 | ||
29 | BBCLASSEXTEND = "native" | 29 | BBCLASSEXTEND = "native" |
30 | PACKAGECONFIG_class-native = "" | 30 | PACKAGECONFIG_class-native = "" |
diff --git a/meta/recipes-devtools/qemu/nativesdk-qemu-helper_1.0.bb b/meta/recipes-devtools/qemu/nativesdk-qemu-helper_1.0.bb index 943ca5f89d..1a9ad5cc2b 100644 --- a/meta/recipes-devtools/qemu/nativesdk-qemu-helper_1.0.bb +++ b/meta/recipes-devtools/qemu/nativesdk-qemu-helper_1.0.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | SUMMARY = "Qemu helper scripts" | 1 | SUMMARY = "Qemu helper scripts" |
2 | LICENSE = "GPLv2" | 2 | LICENSE = "GPLv2" |
3 | RDEPENDS_${PN} = "nativesdk-qemu nativesdk-python3-subprocess \ | 3 | RDEPENDS_${PN} = "nativesdk-qemu \ |
4 | nativesdk-python3-shell nativesdk-python3-fcntl \ | 4 | nativesdk-python3-shell nativesdk-python3-fcntl \ |
5 | " | 5 | " |
6 | 6 | ||
diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b/meta/recipes-graphics/piglit/piglit_git.bb index 06c5021eb7..2839f1d285 100644 --- a/meta/recipes-graphics/piglit/piglit_git.bb +++ b/meta/recipes-graphics/piglit/piglit_git.bb | |||
@@ -44,9 +44,9 @@ do_configure_prepend() { | |||
44 | OECMAKE_TARGET_INSTALL = "install/strip" | 44 | OECMAKE_TARGET_INSTALL = "install/strip" |
45 | 45 | ||
46 | RDEPENDS_${PN} = "waffle python3 python3-mako python3-json \ | 46 | RDEPENDS_${PN} = "waffle python3 python3-mako python3-json \ |
47 | python3-subprocess python3-misc python3-importlib \ | 47 | python3-misc \ |
48 | python3-unixadmin python3-xml python3-multiprocessing \ | 48 | python3-unixadmin python3-xml python3-multiprocessing \ |
49 | python3-six python3-shell python3-io python3-argparse \ | 49 | python3-six python3-shell python3-io \ |
50 | python3-netserver mesa-demos bash \ | 50 | python3-netserver mesa-demos bash \ |
51 | " | 51 | " |
52 | 52 | ||
diff --git a/meta/recipes-rt/rt-tests/hwlatdetect_1.1.bb b/meta/recipes-rt/rt-tests/hwlatdetect_1.1.bb index 012b2dd0a7..5f61c4ecdd 100644 --- a/meta/recipes-rt/rt-tests/hwlatdetect_1.1.bb +++ b/meta/recipes-rt/rt-tests/hwlatdetect_1.1.bb | |||
@@ -22,5 +22,5 @@ do_install() { | |||
22 | } | 22 | } |
23 | 23 | ||
24 | FILES_${PN} += "${libdir}/python${PYTHON_BASEVERSION}/dist-packages/hwlatdetect.py" | 24 | FILES_${PN} += "${libdir}/python${PYTHON_BASEVERSION}/dist-packages/hwlatdetect.py" |
25 | RDEPENDS_${PN} = "python3 python3-subprocess python3-textutils" | 25 | RDEPENDS_${PN} = "python3-core " |
26 | RRECOMMENDS_${PN} = "kernel-module-hwlat-detector" | 26 | RRECOMMENDS_${PN} = "kernel-module-hwlat-detector" |
diff --git a/meta/recipes-rt/rt-tests/rt-tests_1.1.bb b/meta/recipes-rt/rt-tests/rt-tests_1.1.bb index 4336c50d63..496f04fdba 100644 --- a/meta/recipes-rt/rt-tests/rt-tests_1.1.bb +++ b/meta/recipes-rt/rt-tests/rt-tests_1.1.bb | |||
@@ -26,6 +26,6 @@ do_install_ptest() { | |||
26 | cp ${WORKDIR}/rt_bmark.py ${D}${PTEST_PATH} | 26 | cp ${WORKDIR}/rt_bmark.py ${D}${PTEST_PATH} |
27 | } | 27 | } |
28 | 28 | ||
29 | RDEPENDS_${PN}-ptest += " stress python3 python3-subprocess python3-multiprocessing python3-datetime python3-re python3-lang python3-misc" | 29 | RDEPENDS_${PN}-ptest += " stress python3 python3-multiprocessing python3-datetime python3-misc" |
30 | 30 | ||
31 | FILES_${PN} += "${prefix}/src/backfire" | 31 | FILES_${PN} += "${prefix}/src/backfire" |