blob: b5ee113bfcb926cbb7acb1bafb715c0893116fee (
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
|
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.19+git${SRCPV}"
SRCREV = "51a1130f6cdcb029a51b6a75d43ac5e4cdde7072"
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-ovs \
python-routes \
python-six \
python-tinyrpc \
python-webob \
"
|