diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-uinput/0001-setup-use-setuptools-instead-of-distutils.patch')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-uinput/0001-setup-use-setuptools-instead-of-distutils.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/meta-python/recipes-devtools/python/python3-uinput/0001-setup-use-setuptools-instead-of-distutils.patch b/meta-python/recipes-devtools/python/python3-uinput/0001-setup-use-setuptools-instead-of-distutils.patch deleted file mode 100644 index b2e1b9cd82..0000000000 --- a/meta-python/recipes-devtools/python/python3-uinput/0001-setup-use-setuptools-instead-of-distutils.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | From 7a4dde83a9584adb42c7f810d882b1fbf5767e2c Mon Sep 17 00:00:00 2001 | ||
2 | From: Bartosz Golaszewski <brgl@bgdev.pl> | ||
3 | Date: Tue, 24 May 2022 21:43:35 +0200 | ||
4 | Subject: [PATCH] setup: use setuptools instead of distutils | ||
5 | |||
6 | The latter is deprecated, use setuptools instead. | ||
7 | |||
8 | Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> | ||
9 | --- | ||
10 | Upstream-Status: Pending | ||
11 | |||
12 | setup.py | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/setup.py b/setup.py | ||
16 | index 3fa3343..4900b8b 100644 | ||
17 | --- a/setup.py | ||
18 | +++ b/setup.py | ||
19 | @@ -3,7 +3,7 @@ | ||
20 | import errno | ||
21 | import subprocess | ||
22 | |||
23 | -from distutils.core import setup, Extension | ||
24 | +from setuptools import setup, Extension | ||
25 | |||
26 | libudev_so = "libudev.so.1" | ||
27 | |||
28 | -- | ||
29 | 2.34.1 | ||
30 | |||