mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
Fix the following error when attempting to use blivet-gui in anaconda:
Traceback (most recent call first):
File "/usr/lib64/python3.5/site-packages/blivetgui/blivetgui.py", line 153, in supported_filesystems
if self._supported_filesystems:
File "/usr/lib64/python3.5/site-packages/blivetgui/blivetgui.py", line 456, in add_device
supported_filesystems=self.supported_filesystems,
AttributeError: 'BlivetGUIAnaconda' object has no attribute '_supported_filesystems'
Reference:
https://github.com/storaged-project/blivet-gui/pull/100/
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
29 lines
762 B
BlitzBasic
29 lines
762 B
BlitzBasic
DESCRIPTION = "GUI tool for storage configuration using blivet library"
|
|
HOMEPAGE = "https://github.com/rhinstaller/blivet-gui"
|
|
LICENSE = "GPLv2+"
|
|
SECTION = "devel/python"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
S = "${WORKDIR}/git"
|
|
B = "${S}"
|
|
|
|
SRCREV = "a4fd427ee2acc5a8f5fb030bf7816917cee63bd8"
|
|
SRC_URI = "git://github.com/rhinstaller/blivet-gui;branch=master \
|
|
file://0001-Set-_supported_filesystems-in-BlivetGUIAnaconda-init.patch \
|
|
"
|
|
|
|
inherit distro_features_check
|
|
REQUIRED_DISTRO_FEATURES = "x11 systemd"
|
|
|
|
inherit setuptools3 python3native
|
|
|
|
RDEPENDS_${PN} = "python3-pygobject python3 \
|
|
python3-blivet gtk+3 \
|
|
python3-pid libreport \
|
|
"
|
|
|
|
FILES_${PN} += " \
|
|
${datadir}/* \
|
|
"
|