blob: 7ad8308545adbf025699b45af59d33d6c9063a3c (
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
|
DESCRIPTION = "Ryu component-based software defined networking framework"
HOMEPAGE = "http://osrg.github.io/ryu/"
SECTION = "devel/python"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
PV = "4.16+git${SRCPV}"
SRCREV = "6d950481f6fa048483f68e63a30f1cbeb70a7c3e"
SRCNAME = "ryu"
SRC_URI = "git://github.com/osrg/${SRCNAME}.git"
S = "${WORKDIR}/git"
inherit setuptools
FILES_${PN} += "${datadir}/etc/${SRCNAME}/*"
DEPENDS += " \
python-pip \
python-pbr \
"
RDEPENDS_${PN} += " \
python-eventlet \
python-msgpack \
python-netaddr \
python-oslo.config \
python-routes \
python-six \
python-tinyrpc \
python-webob \
"
|