diff options
author | Ross Burton <ross.burton@arm.com> | 2022-03-07 17:01:00 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-03-09 07:37:04 -0800 |
commit | 56c3d5dfb1cc3af8bd074511ca128ac53e26d38e (patch) | |
tree | 6641046c4bc7c275ab4d83922745ab856d7f4ac4 /meta-python | |
parent | d5ee9d2d533936d1ea2115ced7197db2a0694285 (diff) | |
download | meta-openembedded-56c3d5dfb1cc3af8bd074511ca128ac53e26d38e.tar.gz |
python3-blivetgui: use setuptools_legacy
The setup.py installs to arbitrary target paths, so can't use the new
bdist_wheel installation method.
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-extended/python-blivet/python3-blivetgui_2.3.0.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-python/recipes-extended/python-blivet/python3-blivetgui_2.3.0.bb b/meta-python/recipes-extended/python-blivet/python3-blivetgui_2.3.0.bb index 995fb49622..c26ae1fe98 100644 --- a/meta-python/recipes-extended/python-blivet/python3-blivetgui_2.3.0.bb +++ b/meta-python/recipes-extended/python-blivet/python3-blivetgui_2.3.0.bb | |||
@@ -16,7 +16,9 @@ SRC_URI = "git://github.com/storaged-project/blivet-gui.git;branch=master;protoc | |||
16 | inherit features_check | 16 | inherit features_check |
17 | REQUIRED_DISTRO_FEATURES = "x11 systemd" | 17 | REQUIRED_DISTRO_FEATURES = "x11 systemd" |
18 | 18 | ||
19 | inherit setuptools3 python3native | 19 | inherit setuptools3_legacy python3native |
20 | |||
21 | PIP_INSTALL_PACKAGE = "blivet_gui" | ||
20 | 22 | ||
21 | RDEPENDS:${PN} = "python3-pygobject python3 \ | 23 | RDEPENDS:${PN} = "python3-pygobject python3 \ |
22 | python3-blivet gtk+3 \ | 24 | python3-blivet gtk+3 \ |