summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-aioeventlet
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2026-04-07 23:23:11 +0000
committerBruce Ashfield <bruce.ashfield@gmail.com>2026-04-07 23:23:11 +0000
commit40f907312497223c7f19d2a51eea4a4fc32e3948 (patch)
treec208c35ae70dc2dbb276513bed0e433377e4027c /meta-openstack/recipes-devtools/python/python-aioeventlet
parent2972131015673292cf63e29aaa45a091a5e5f334 (diff)
downloadmeta-cloud-services-40f907312497223c7f19d2a51eea4a4fc32e3948.tar.gz
meta-openstack: remove obsolete Python backport and dead project recipes
Remove 16 recipes for Python packages that are either built into Python 3 or are dead/deprecated upstream projects: Python 3 backports (unnecessary since Python 3.3+): ordereddict, pathlib, funcsigs, enum-compat, singledispatch, weakrefmethod, positional Dead/deprecated projects: aioeventlet, suds, suds-jurko, oauth2, trollius, pika-pool, requestsexceptions, dogpile.core, tempita No recipes in the layer depend on any of these packages. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-aioeventlet')
-rw-r--r--meta-openstack/recipes-devtools/python/python-aioeventlet/Makefile-skip-building-docs.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-aioeventlet/Makefile-skip-building-docs.patch b/meta-openstack/recipes-devtools/python/python-aioeventlet/Makefile-skip-building-docs.patch
deleted file mode 100644
index a1c85a3..0000000
--- a/meta-openstack/recipes-devtools/python/python-aioeventlet/Makefile-skip-building-docs.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1From e53f9da41a45f24329e42cef4796b68c70bfefcb Mon Sep 17 00:00:00 2001
2From: Mark Asselstine <mark.asselstine@windriver.com>
3Date: Fri, 13 Nov 2015 10:48:59 -0500
4Subject: [PATCH] Makefile: skip building docs
5
6We don't have cross build sphinx-build support in Poky so skip
7building the docs. The user can build the docs on the target, where we
8do have sphinx-build support available.
9
10Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
11---
12 Makefile | 5 -----
13 1 file changed, 5 deletions(-)
14
15diff --git a/Makefile b/Makefile
16index 40bccab..d93943f 100644
17--- a/Makefile
18+++ b/Makefile
19@@ -1,11 +1,6 @@
20-.PHONY: doc
21-
22 test:
23 tox
24-doc:
25- make -C doc html
26 clean:
27 rm -rf build dist aioeventlet.egg-info .tox
28 find -name "*.pyc" -delete
29 find -name "__pycache__" -exec rm -rf {} \;
30- make -C doc clean
31--
322.1.4
33