summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-dbus-deviation
diff options
context:
space:
mode:
authorLiu Yiding <liuyd.fnst@fujitsu.com>2026-02-13 18:10:04 +0800
committerKhem Raj <raj.khem@gmail.com>2026-02-16 00:34:04 -0800
commite7517b1d4c07c1d3075b54a8b35464da164564f5 (patch)
tree3daee494b942bc9570ede3af75a18b270d6a246b /meta-python/recipes-devtools/python/python3-dbus-deviation
parente2c07e4eb98dbf11950e686949e564be33bab3a1 (diff)
downloadmeta-openembedded-e7517b1d4c07c1d3075b54a8b35464da164564f5.tar.gz
python3-dbus-deviation: Add new recipe
Add this new recipe for runtime dependence of hotdoc. Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-dbus-deviation')
-rw-r--r--meta-python/recipes-devtools/python/python3-dbus-deviation/0001-Prevent-trying-to-donwload-requierment-which-will-ca.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-dbus-deviation/0001-Prevent-trying-to-donwload-requierment-which-will-ca.patch b/meta-python/recipes-devtools/python/python3-dbus-deviation/0001-Prevent-trying-to-donwload-requierment-which-will-ca.patch
new file mode 100644
index 0000000000..b163db772c
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-dbus-deviation/0001-Prevent-trying-to-donwload-requierment-which-will-ca.patch
@@ -0,0 +1,27 @@
1Subject: [PATCH] Prevent trying to donwload requierment which will cause
2 network error.
3
4'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f1e83062ad0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /simple/setuptools-git/
5
6Upstream-Status: Inappropriate [oe specific]
7
8Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com>
9---
10 setup.py | 1 -
11 1 file changed, 1 deletion(-)
12
13diff --git a/setup.py b/setup.py
14index 245193f..d899e4c 100755
15--- a/setup.py
16+++ b/setup.py
17@@ -92,7 +92,6 @@ setuptools.setup(
18 exclude_package_data={'': ['.gitignore']},
19 zip_safe=True,
20 setup_requires=[
21- 'setuptools_git >= 0.3',
22 'sphinx',
23 ],
24 install_requires=['lxml'],
25--
262.43.0
27