blob: a9c4c30a88ac64f2df9f705a9a3e5a67ece02d4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
DESCRIPTION = "A library to complete workflows/tasks in HA manner"
HOMEPAGE = "https://wiki.openstack.org/wiki/TaskFlow"
SECTION = "devel/python"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=4476c4be31402271e101d9a4a3430d52"
SRC_URI = "\
git://git.openstack.org/openstack/taskflow.git;branch=stable/pike \
"
PV="2.14.1+git${SRCPV}"
SRCREV="ed867c4fd17e4102a133c313a13af37baccf14a4"
S = "${WORKDIR}/git"
inherit setuptools3
DEPENDS += " \
python3-pip \
python3-pbr \
"
# Satisfy setup.py 'setup_requires'
DEPENDS += " \
python3-pbr-native \
"
RDEPENDS_${PN} += " \
python3-pbr \
python3-six \
python3-futurist \
python3-fasteners \
python3-networkx \
python3-contextlib2 \
python3-stevedore \
python3-jsonschema \
python3-automaton \
python3-oslo.utils \
python3-oslo.serialization \
python3-tenacity \
python3-cachetools \
python3-debtcollector \
"
|