blob: ecc0672bb06ce8fda718b3c2cf6062b7a0d4b5e1 (
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
|
DESCRIPTION = "OpenStack test framework and test fixtures. \
The oslotest package can be cross-tested against its consuming projects to ensure \
that no changes to the library break the tests in those other projects."
HOMEPAGE = "https://pypi.python.org/pypi/oslotest"
SECTION = "devel/python"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
PV = "2.17.2+git${SRCPV}"
SRCREV = "54ac29c3edd46530c1ee90eb860a7e686d9a3740"
SRCNAME = "oslotest"
SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/pike"
S = "${WORKDIR}/git"
inherit setuptools3
DEPENDS += "\
python3-pbr \
"
# Satisfy setup.py 'setup_requires'
DEPENDS += " \
python3-pbr-native \
"
RDEPENDS_${PN} = "python3-fixtures \
python3-subunit \
python3-six \
python3-testrepository \
python3-testtools \
python3-mock \
python3-mox3 \
python3-os-client-config \
python3-debtcollector \
bash \
"
|