diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python-cryptography.inc')
-rw-r--r-- | meta-python/recipes-devtools/python/python-cryptography.inc | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/meta-python/recipes-devtools/python/python-cryptography.inc b/meta-python/recipes-devtools/python/python-cryptography.inc deleted file mode 100644 index 5acd02d67d..0000000000 --- a/meta-python/recipes-devtools/python/python-cryptography.inc +++ /dev/null | |||
@@ -1,58 +0,0 @@ | |||
1 | SUMMARY = "Provides cryptographic recipes and primitives to python developers" | ||
2 | HOMEPAGE = "https://cryptography.io/" | ||
3 | LICENSE = "Apache-2.0 | BSD" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=097f805837700cfac572ac274cd38124" | ||
5 | |||
6 | LDSHARED += "-pthread" | ||
7 | |||
8 | DEPENDS += " \ | ||
9 | ${PYTHON_PN}-cffi \ | ||
10 | ${PYTHON_PN}-cffi-native \ | ||
11 | ${PYTHON_PN}-asn1crypto \ | ||
12 | ${PYTHON_PN}-six \ | ||
13 | " | ||
14 | |||
15 | SRC_URI[md5sum] = "77730058b556c6d9838679a94c6229ce" | ||
16 | SRC_URI[sha256sum] = "3cda1f0ed8747339bbdf71b9f38ca74c7b592f24f65cdb3ab3765e4b02871651" | ||
17 | |||
18 | RDEPENDS_${PN} += " \ | ||
19 | ${PYTHON_PN}-cffi \ | ||
20 | ${PYTHON_PN}-idna \ | ||
21 | ${PYTHON_PN}-asn1crypto \ | ||
22 | ${PYTHON_PN}-setuptools \ | ||
23 | ${PYTHON_PN}-six \ | ||
24 | " | ||
25 | |||
26 | RDEPENDS_${PN}_class-target += " \ | ||
27 | ${PYTHON_PN}-cffi \ | ||
28 | ${PYTHON_PN}-idna \ | ||
29 | ${PYTHON_PN}-numbers \ | ||
30 | ${PYTHON_PN}-asn1crypto \ | ||
31 | ${PYTHON_PN}-setuptools \ | ||
32 | ${PYTHON_PN}-six \ | ||
33 | ${PYTHON_PN}-threading \ | ||
34 | " | ||
35 | |||
36 | RDEPENDS_${PN}-ptest += " \ | ||
37 | ${PN} \ | ||
38 | ${PYTHON_PN}-cryptography-vectors \ | ||
39 | ${PYTHON_PN}-iso8601 \ | ||
40 | ${PYTHON_PN}-pretend \ | ||
41 | ${PYTHON_PN}-pytest \ | ||
42 | ${PYTHON_PN}-pytz \ | ||
43 | " | ||
44 | |||
45 | inherit ptest | ||
46 | |||
47 | do_install_ptest() { | ||
48 | install -d ${D}${PTEST_PATH}/tests | ||
49 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
50 | install -d ${D}${PTEST_PATH}/tests/hazmat | ||
51 | cp -rf ${S}/tests/hazmat/* ${D}${PTEST_PATH}/tests/hazmat/ | ||
52 | } | ||
53 | |||
54 | FILES_${PN}-dbg += " \ | ||
55 | ${libdir}/${PYTHON_PN}2.7/site-packages/${SRCNAME}/hazmat/bindings/.debug \ | ||
56 | " | ||
57 | |||
58 | BBCLASSEXTEND = "native nativesdk" | ||