blob: 7bec9804d1b0c55c794907827d43aae3609e6d7e (
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
|
DESCRIPTION = "Oslo utils"
HOMEPAGE = "https://launchpad.net/oslo"
SECTION = "devel/python"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
SRCNAME = "oslo.utils"
SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/pike;protocol=https"
PV = "3.28.0+git${SRCPV}"
SRCREV = "8b3965b9bbe1e31a4939f2f69c5239d6d5c7f72c"
S = "${WORKDIR}/git"
# DEPENDS_default: python3-pip
inherit setuptools3
DEPENDS += " \
${PYTHON_PN}-pip \
${PYTHON_PN}-pbr \
"
# Satisfy setup.py 'setup_requires'
DEPENDS += " \
${PYTHON_PN}-pbr-native \
"
# RDEPENDS:default:
RDEPENDS:${PN} += " \
${PYTHON_PN}-pbr \
${PYTHON_PN}-six \
${PYTHON_PN}-iso8601 \
${PYTHON_PN}-oslo.i18n \
${PYTHON_PN}-pytz \
${PYTHON_PN}-netaddr \
${PYTHON_PN}-netifaces \
${PYTHON_PN}-debtcollector \
${PYTHON_PN}-pyparsing \
"
|