diff options
author | Kai Kang <kai.kang@windriver.com> | 2023-11-02 14:29:24 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-11-02 10:39:36 -0700 |
commit | 3e26d8deeba0318fe574f53ac798b55062999dfb (patch) | |
tree | 51f65cb3968adfb132fb85368b3019d90a9a7c8e /meta-python/recipes-extended/python-blivet/python3-blivetgui/0001-Use-setuptools-instead-of-distutils-in-setup.py.patch | |
parent | d6b19d69b285a26b7d7a318ded42b04ccfb0a4a6 (diff) | |
download | meta-openembedded-3e26d8deeba0318fe574f53ac798b55062999dfb.tar.gz |
python3-blivetgui: 2.3.0 -> 2.4.2
Update python3-blivetgui from 2.3.0 to 2.4.2
* drop patches that there are not needed any more
* not set var `B` that out of source tree build is supported
* inherit setuptools3 rather than setuptools3_legacy
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-extended/python-blivet/python3-blivetgui/0001-Use-setuptools-instead-of-distutils-in-setup.py.patch')
-rw-r--r-- | meta-python/recipes-extended/python-blivet/python3-blivetgui/0001-Use-setuptools-instead-of-distutils-in-setup.py.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/meta-python/recipes-extended/python-blivet/python3-blivetgui/0001-Use-setuptools-instead-of-distutils-in-setup.py.patch b/meta-python/recipes-extended/python-blivet/python3-blivetgui/0001-Use-setuptools-instead-of-distutils-in-setup.py.patch deleted file mode 100644 index c88912bfa0..0000000000 --- a/meta-python/recipes-extended/python-blivet/python3-blivetgui/0001-Use-setuptools-instead-of-distutils-in-setup.py.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | From 54014061be2fed20d6c35aba9719ea70a9fea9ea Mon Sep 17 00:00:00 2001 | ||
2 | From: Vojtech Trefny <vtrefny@redhat.com> | ||
3 | Date: Wed, 1 Sep 2021 08:59:19 +0200 | ||
4 | Subject: [PATCH] Use setuptools instead of distutils in setup.py | ||
5 | |||
6 | The distutils module is deprecated and will be removed in Python | ||
7 | 3.12. | ||
8 | |||
9 | Upstream-Status: Backport [https://github.com/kraj/blivet-gui/commit/54014061be2fed20d6c35aba9719ea70a9fea9ea] | ||
10 | --- | ||
11 | setup.py | 4 ++-- | ||
12 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
13 | |||
14 | diff --git a/setup.py b/setup.py | ||
15 | index aa8ef57..77849a1 100644 | ||
16 | --- a/setup.py | ||
17 | +++ b/setup.py | ||
18 | @@ -1,7 +1,7 @@ | ||
19 | from __future__ import print_function | ||
20 | |||
21 | -from distutils.core import setup | ||
22 | -from distutils.command.sdist import sdist | ||
23 | +from setuptools import setup | ||
24 | +from setuptools.command.sdist import sdist | ||
25 | import glob | ||
26 | import sys | ||
27 | |||
28 | -- | ||
29 | 2.35.1 | ||
30 | |||