diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-ecdsa_0.19.0.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-ecdsa_0.19.0.bb | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/meta-python/recipes-devtools/python/python3-ecdsa_0.19.0.bb b/meta-python/recipes-devtools/python/python3-ecdsa_0.19.0.bb deleted file mode 100644 index 8e967f9259..0000000000 --- a/meta-python/recipes-devtools/python/python3-ecdsa_0.19.0.bb +++ /dev/null | |||
@@ -1,36 +0,0 @@ | |||
1 | SUMMARY = "ECDSA cryptographic signature library (pure python)" | ||
2 | SECTION = "devel/python" | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=66ffc5e30f76cbb5358fe54b645e5a1d" | ||
5 | |||
6 | PYPI_PACKAGE = "ecdsa" | ||
7 | SRC_URI[sha256sum] = "60eaad1199659900dd0af521ed462b793bbdf867432b3948e87416ae4caf6bf8" | ||
8 | |||
9 | inherit pypi setuptools3 python3native ptest | ||
10 | |||
11 | SRC_URI += " \ | ||
12 | file://run-ptest \ | ||
13 | " | ||
14 | |||
15 | RDEPENDS:${PN}-ptest += " \ | ||
16 | python3-hypothesis \ | ||
17 | python3-pytest \ | ||
18 | python3-unittest-automake-output \ | ||
19 | " | ||
20 | |||
21 | do_install_ptest() { | ||
22 | install -d ${D}${PTEST_PATH}/tests | ||
23 | cp -rf ${S}/src/ecdsa/* ${D}${PTEST_PATH}/tests/ | ||
24 | } | ||
25 | |||
26 | RDEPENDS:${PN} += " \ | ||
27 | python3-gmpy2 \ | ||
28 | python3-json \ | ||
29 | python3-six \ | ||
30 | " | ||
31 | |||
32 | do_install:append() { | ||
33 | rm ${D}${PYTHON_SITEPACKAGES_DIR}/ecdsa/test_*.py | ||
34 | } | ||
35 | |||
36 | BBCLASSEXTEND = "native nativesdk" | ||