mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@26c91a9
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
config BR2_PACKAGE_PYTHON_ARGON2_CFFI
|
||||
bool "python-argon2-cffi"
|
||||
select BR2_PACKAGE_PYTHON_CFFI # runtime
|
||||
select BR2_PACKAGE_PYTHON_ENUM34 if BR2_PACKAGE_PYTHON # runtime
|
||||
select BR2_PACKAGE_PYTHON_SIX # runtime
|
||||
help
|
||||
The secure Argon2 password hashing algorithm.
|
||||
|
||||
https://argon2-cffi.readthedocs.io/
|
||||
@@ -0,0 +1,5 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/argon2_cffi/json
|
||||
md5 e49ccb29351387fd853f31bf19b67f59 argon2-cffi-20.1.0.tar.gz
|
||||
sha256 d8029b2d3e4b4cea770e9e5a0104dd8fa185c1724a0f01528ae4826a6d25f97d argon2-cffi-20.1.0.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 bf659a28b49240602f56bbdf490cbe2ec509b15b98f99d7b19a52c740e327863 LICENSE
|
||||
@@ -0,0 +1,21 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-argon2-cffi
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_ARGON2_CFFI_VERSION = 20.1.0
|
||||
PYTHON_ARGON2_CFFI_SOURCE = argon2-cffi-$(PYTHON_ARGON2_CFFI_VERSION).tar.gz
|
||||
PYTHON_ARGON2_CFFI_SITE = https://files.pythonhosted.org/packages/74/fd/d78e003a79c453e8454197092fce9d1c6099445b7e7da0b04eb4fe1dbab7
|
||||
PYTHON_ARGON2_CFFI_SETUP_TYPE = setuptools
|
||||
PYTHON_ARGON2_CFFI_LICENSE = MIT
|
||||
PYTHON_ARGON2_CFFI_LICENSE_FILES = LICENSE
|
||||
PYTHON_ARGON2_CFFI_DEPENDENCIES = host-python-cffi
|
||||
|
||||
ifeq ($(BR2_X86_CPU_HAS_SSE2),y)
|
||||
PYTHON_ARGON2_CFFI_ENV = ARGON2_CFFI_USE_SSE2=1
|
||||
else
|
||||
PYTHON_ARGON2_CFFI_ENV = ARGON2_CFFI_USE_SSE2=0
|
||||
endif
|
||||
|
||||
$(eval $(python-package))
|
||||
Reference in New Issue
Block a user