summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-rsa_4.6.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2020-08-12 13:27:24 +0300
committerKhem Raj <raj.khem@gmail.com>2020-08-13 22:32:07 -0700
commitaafa886ed1ecaa34b240696c06a0e8488054c741 (patch)
tree9ec99d7550500960c66b38a5e755c3611a0f1172 /meta-python/recipes-devtools/python/python3-rsa_4.6.bb
parent1d0f8442f50ea11daa5bd91e9f785411db248593 (diff)
downloadmeta-openembedded-aafa886ed1ecaa34b240696c06a0e8488054c741.tar.gz
python3-rsa: Upgrade 3.4.2 -> 4.6
Upgrade to release 4.6: - Rolled back the switch to Poetry, and reverted back to using Pipenv + setup.py for dependency management. There apparently is an issue no-binary installs of packages build with Poetry. - Limited SHA3 support to those Python versions (3.6+) that support it natively. The third-party library that adds support for this to Python 3.5 is a binary package, and thus breaks the pure-Python nature of Python-RSA. - To avoid older Python installations from trying to upgrade to RSA 4.4, this is now made explicit in the python_requires argument in setup.py The encrypt/decrypt-bigfile CLI commands have been removed in 2016 therefore the recipe has been updated accordingly. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-rsa_4.6.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-rsa_4.6.bb41
1 files changed, 41 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-rsa_4.6.bb b/meta-python/recipes-devtools/python/python3-rsa_4.6.bb
new file mode 100644
index 0000000000..d2b1086351
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-rsa_4.6.bb
@@ -0,0 +1,41 @@
1SUMMARY = "Pure-Python RSA implementation"
2SECTION = "devel/python"
3AUTHOR = "Sybren A. Stuvel"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=c403f6882d4f97a9cd927df987d55634"
6
7SRC_URI[md5sum] = "bbf1c954865319bd542600ab07f92aca"
8SRC_URI[sha256sum] = "109ea5a66744dd859bf16fe904b8d8b627adafb9408753161e766a92e7d681fa"
9
10inherit pypi setuptools3 update-alternatives
11
12ALTERNATIVE_${PN} = "\
13 pyrsa-decrypt \
14 pyrsa-encrypt \
15 pyrsa-keygen \
16 pyrsa-priv2pub \
17 pyrsa-sign \
18 pyrsa-verify \
19"
20
21ALTERNATIVE_LINK_NAME[pyrsa-decrypt] = "${bindir}/pyrsa-decrypt"
22ALTERNATIVE_LINK_NAME[pyrsa-encrypt] = "${bindir}/pyrsa-encrypt"
23ALTERNATIVE_LINK_NAME[pyrsa-keygen] = "${bindir}/pyrsa-keygen"
24ALTERNATIVE_LINK_NAME[pyrsa-priv2pub] = "${bindir}/pyrsa-priv2pub"
25ALTERNATIVE_LINK_NAME[pyrsa-sign] = "${bindir}/pyrsa-sign"
26ALTERNATIVE_LINK_NAME[pyrsa-verify] = "${bindir}/pyrsa-verify"
27ALTERNATIVE_PRIORITY = "30"
28
29
30RDEPENDS_${PN} += "\
31 ${PYTHON_PN}-compression \
32 ${PYTHON_PN}-crypt \
33 ${PYTHON_PN}-doctest \
34 ${PYTHON_PN}-logging \
35 ${PYTHON_PN}-math \
36 ${PYTHON_PN}-multiprocessing \
37 ${PYTHON_PN}-netclient \
38 ${PYTHON_PN}-pickle \
39"
40
41RDEPENDS_${PN} += "${PYTHON_PN}-pyasn1"