summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-oauth2_1.5.211.bb
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-oauth2_1.5.211.bb
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-oauth2_1.5.211.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-oauth2_1.5.211.bb24
1 files changed, 0 insertions, 24 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-oauth2_1.5.211.bb b/meta-openstack/recipes-devtools/python/python-oauth2_1.5.211.bb
deleted file mode 100644
index e84a9a9..0000000
--- a/meta-openstack/recipes-devtools/python/python-oauth2_1.5.211.bb
+++ /dev/null
@@ -1,24 +0,0 @@
1DESCRIPTION = "library for OAuth"
2HOMEPAGE = "https://pypi.python.org/pypi/oauth2"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://PKG-INFO;md5=15c871e114b5cb956dacad28f4db57c7"
6
7SRC_URI[md5sum] = "987ad7365a70e2286bd1cebb344debbc"
8SRC_URI[sha256sum] = "82a38f674da1fa496c0fc4df714cbb058540bed72a30c50a2e344b0d984c4d21"
9
10inherit setuptools3 pypi
11
12RDEPENDS:${PN} += "python-prettytable \
13 python-cmd2 \
14 python-pyparsing \
15 python-mccabe \
16 python-pep8 \
17 python-pyflakes"
18
19do_install:append() {
20 perm_files=$(find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "PKG-INFO")
21 for f in $perm_files; do
22 chmod 644 "${f}"
23 done
24}