blob: d05391b0f36cf5673c2b594a69ab61d18adea2bc (
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
|
DESCRIPTION = "Python client for Mistral REST API"
HOMEPAGE = "https://github.com/openstack/python-mistralclient"
SECTION = "devel/python"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
DEPENDS += " \
python-pip \
python-pbr \
"
RDEPENDS_${PN} +=" \
python-cliff \
python-keystoneclient \
python-osc-lib \
python-oslo.utils \
python-pbr \
python-pyyaml \
python-requests \
python-six \
"
SRCNAME = "mistralclient"
SRC_URI = "git://github.com/openstack/${BPN}.git;branch=stable/newton"
PV = "2.1.2+git${SRCPV}"
SRCREV = "1dcfc2c096a4610d63611bfd7d98687f3e5e2da4"
S = "${WORKDIR}/git"
inherit setuptools
|