summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python
diff options
context:
space:
mode:
authorMark Asselstine <asselsm@gmail.com>2016-02-03 20:41:15 -0500
committerBruce Ashfield <bruce.ashfield@windriver.com>2016-02-05 14:42:17 -0500
commit53e2faa09a03ece3c30f94ba652dd69a9334884f (patch)
tree456609d2c61813df49fc4015f13d8997d7bfa61b /meta-openstack/recipes-devtools/python
parentaee7381269b29cf8508f6708fb9985ed9cf95814 (diff)
downloadmeta-cloud-services-53e2faa09a03ece3c30f94ba652dd69a9334884f.tar.gz
python-aioeventlet: initial version
This package provides asyncio event loop scheduling callbacks in eventlet. This package is required by oslo.messaging. Signed-off-by: Mark Asselstine <asselsm@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python')
-rw-r--r--meta-openstack/recipes-devtools/python/python-aioeventlet/Makefile-skip-building-docs.patch33
-rw-r--r--meta-openstack/recipes-devtools/python/python-aioeventlet_0.4.bb27
2 files changed, 60 insertions, 0 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
new file mode 100644
index 0000000..a1c85a3
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-aioeventlet/Makefile-skip-building-docs.patch
@@ -0,0 +1,33 @@
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
diff --git a/meta-openstack/recipes-devtools/python/python-aioeventlet_0.4.bb b/meta-openstack/recipes-devtools/python/python-aioeventlet_0.4.bb
new file mode 100644
index 0000000..0841b9b
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-aioeventlet_0.4.bb
@@ -0,0 +1,27 @@
1DESCRIPTION = "Asyncio event loop scheduling callbacks in eventlet"
2HOMEPAGE = "http://aioeventlet.readthedocs.org/"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://COPYING;md5=8f7bb094c7232b058c7e9f2e431f389c"
6
7SRCNAME = "aioeventlet"
8
9SRC_URI = "https://pypi.python.org/packages/source/a/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
10 file://Makefile-skip-building-docs.patch \
11 "
12
13SRC_URI[md5sum] = "678ea30265ae0326bddc767f80efd144"
14SRC_URI[sha256sum] = "fe78c2b227ce077b1581e2ae2c071f351111d0878ec1b0216435f6a898df79a6"
15
16S = "${WORKDIR}/${SRCNAME}-${PV}"
17
18inherit setuptools
19
20DEPENDS += " \
21 python-pip \
22 "
23
24RDEPENDS_${PN} += " \
25 python-sphinx \
26 "
27