mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 07:37:14 +00:00
python3-blivetgui: 2.1.10 -> 2.2.1
Upgrade python3-blivetgui from 2.1.10 to 2.2.1. * drop backported patch 0001-Fix-return-type-of-BlivetUtils.get_disks-1658893.patch Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
This commit is contained in:
-32
@@ -1,32 +0,0 @@
|
|||||||
From 4d0f9f961704bc1dd83fdf6808fb6ab91dc6a768 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Vojtech Trefny <vtrefny@redhat.com>
|
|
||||||
Date: Thu, 13 Dec 2018 13:39:03 +0100
|
|
||||||
Subject: [PATCH] Fix return type of BlivetUtils.get_disks (#1658893)
|
|
||||||
|
|
||||||
This must be a list, not a generator, because we are iterating
|
|
||||||
over it multiple times in some cases.
|
|
||||||
|
|
||||||
Upstream-Status: Backport[git://github.com/rhinstaller/blivet-gui]
|
|
||||||
|
|
||||||
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
||||||
|
|
||||||
---
|
|
||||||
blivetgui/blivet_utils.py | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/blivetgui/blivet_utils.py b/blivetgui/blivet_utils.py
|
|
||||||
index e2bd802..ddb04fc 100644
|
|
||||||
--- a/blivetgui/blivet_utils.py
|
|
||||||
+++ b/blivetgui/blivet_utils.py
|
|
||||||
@@ -204,7 +204,7 @@ class BlivetUtils(object):
|
|
||||||
|
|
||||||
"""
|
|
||||||
|
|
||||||
- return (device for device in self.storage.disks if device.type != "mdarray")
|
|
||||||
+ return [device for device in self.storage.disks if device.type != "mdarray"]
|
|
||||||
|
|
||||||
def get_group_devices(self):
|
|
||||||
""" Return list of LVM2 Volume Group devices
|
|
||||||
--
|
|
||||||
2.7.4
|
|
||||||
|
|
||||||
+2
-4
@@ -8,10 +8,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
B = "${S}"
|
B = "${S}"
|
||||||
|
|
||||||
SRCREV = "67ec0b7a0e065ba24ab87963409bfb21b2aac6dd"
|
SRCREV = "adb6bd69fb3cfa709265db66ddcee04c0b5e070f"
|
||||||
SRC_URI = "git://github.com/rhinstaller/blivet-gui;branch=master \
|
SRC_URI = "git://github.com/storaged-project/blivet-gui.git"
|
||||||
file://0001-Fix-return-type-of-BlivetUtils.get_disks-1658893.patch \
|
|
||||||
"
|
|
||||||
|
|
||||||
inherit features_check
|
inherit features_check
|
||||||
REQUIRED_DISTRO_FEATURES = "x11 systemd"
|
REQUIRED_DISTRO_FEATURES = "x11 systemd"
|
||||||
Reference in New Issue
Block a user