diff options
| author | Mark Asselstine <asselsm@gmail.com> | 2016-02-03 20:41:17 -0500 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2016-02-05 14:42:17 -0500 |
| commit | e35b871d263edc816da0b1b0ce4beba9d4d3a664 (patch) | |
| tree | 2991dce4fea47839294ea65642e1e961302796fe /meta-openstack/recipes-devtools/python | |
| parent | 460d5f940538a4958142cd34a6ee509bb3c0be0a (diff) | |
| download | meta-cloud-services-e35b871d263edc816da0b1b0ce4beba9d4d3a664.tar.gz | |
python-automaton: initial versioin
This package provides a friendly state machines for python.
This package is required by python-taskflow.
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-automaton_0.8.0.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-automaton_0.8.0.bb b/meta-openstack/recipes-devtools/python/python-automaton_0.8.0.bb new file mode 100644 index 0000000..185a7a5 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-automaton_0.8.0.bb | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | DESCRIPTION = "Friendly state machines for python" | ||
| 2 | HOMEPAGE = "https://pypi.python.org/pypi/automaton" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d2794c0df5b907fdace235a619d80314" | ||
| 6 | |||
| 7 | SRCNAME = "automaton" | ||
| 8 | |||
| 9 | SRC_URI = "https://pypi.python.org/packages/source/a/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
| 10 | |||
| 11 | SRC_URI[md5sum] = "230a7bd8bb9a4bc9ba5a3faf0de12c90" | ||
| 12 | SRC_URI[sha256sum] = "ca8bfbea03b9f39a536b4b261d90fbe8b1b0e1766bff5d8222e35691f8e11910" | ||
| 13 | |||
| 14 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 15 | |||
| 16 | inherit setuptools | ||
| 17 | |||
| 18 | DEPENDS += " \ | ||
| 19 | python-pip \ | ||
| 20 | " | ||
| 21 | |||
| 22 | RDEPENDS_${PN} += " \ | ||
| 23 | python-pbr \ | ||
| 24 | python-six \ | ||
| 25 | python-debtcollector \ | ||
| 26 | python-prettytable \ | ||
| 27 | " | ||
| 28 | |||
