blob: 526474c7ea5d555be94247ffdb3a993213c72b91 (
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
|
require python-setuptools.inc
PROVIDES = "python-distribute"
DEPENDS += "python"
DEPENDS_class-native += "python-native"
inherit distutils
DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${PYTHON_SITEPACKAGES_DIR}"
RDEPENDS_${PN} = "\
python-stringold \
python-email \
python-shell \
python-distutils \
python-compression \
python-pkgutil \
python-plistlib \
python-numbers \
python-html \
python-netserver \
python-ctypes \
python-subprocess \
python-unittest \
python-compile \
"
RDEPENDS_${PN}_class-native = "\
python-distutils \
python-compression \
"
RREPLACES_${PN} = "python-distribute"
RPROVIDES_${PN} = "python-distribute"
RCONFLICTS_${PN} = "python-distribute"
BBCLASSEXTEND = "native nativesdk"
|