diff options
author | 2020-04-27 00:33:20 +0200 | |
---|---|---|
committer | 2020-05-31 21:42:48 +0200 | |
commit | c904fd033c0d7d974a951d714ccf6fb83689374e (patch) | |
tree | 70e70140a5d571fc118b93783001ec0fec045062 | |
parent | 659a403f7aad317d5dda930802219f19e0137946 (diff) | |
download | buildroot-c904fd033c0d7d974a951d714ccf6fb83689374e.tar.gz buildroot-c904fd033c0d7d974a951d714ccf6fb83689374e.tar.bz2 |
package/python-pycryptodomex: add host variant
Adding a host variant will allow to replace host-python-pycrypto by
host-python-pycryptodomex for the crda and optee-os packages.
From [1]:
"PyCryptodome is a fork of PyCrypto, which is not maintained any more
(the last release dates back to 2013 [2]). It exposes almost the same
API, but there are a few incompatibilities [3]."
[1] https://github.com/OP-TEE/optee_os/commit/90ad2450436fdd9fc0d28a3f92f3fbcfd89a38f0
[2] https://pypi.org/project/pycrypto/#history
[3] https://pycryptodome.readthedocs.io/en/latest/src/vs_pycrypto.html
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 3db1e5fbcbde9f78f9cac99614fefc243545094e)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/python-pycryptodomex/python-pycryptodomex.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/python-pycryptodomex/python-pycryptodomex.mk b/package/python-pycryptodomex/python-pycryptodomex.mk index 3d3b97ca48..05239e10e5 100644 --- a/package/python-pycryptodomex/python-pycryptodomex.mk +++ b/package/python-pycryptodomex/python-pycryptodomex.mk @@ -15,3 +15,4 @@ PYTHON_PYCRYPTODOMEX_LICENSE = \ PYTHON_PYCRYPTODOMEX_LICENSE_FILES = LICENSE.rst Doc/LEGAL/COPYRIGHT.pycrypto $(eval $(python-package)) +$(eval $(host-python-package)) |