[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_ARGON2_CFFI
bool "python-argon2-cffi"
depends on BR2_USE_MMU # python-argon2-cffi-bindings
depends on !BR2_STATIC_LIBS # python-argon2-cffi-bindings
select BR2_PACKAGE_PYTHON_ARGON2_CFFI_BINDINGS # runtime
help
The secure Argon2 password hashing algorithm.
https://argon2-cffi.readthedocs.io/

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/argon2-cffi/json
md5 b7843e8690c790f8e743d37bb75c25a8 argon2-cffi-21.3.0.tar.gz
sha256 d384164d944190a7dd7ef22c6aa3ff197da12962bd04b17f64d4e93d934dba5b argon2-cffi-21.3.0.tar.gz
# Locally computed sha256 checksums
sha256 bf659a28b49240602f56bbdf490cbe2ec509b15b98f99d7b19a52c740e327863 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-argon2-cffi
#
################################################################################
PYTHON_ARGON2_CFFI_VERSION = 21.3.0
PYTHON_ARGON2_CFFI_SOURCE = argon2-cffi-$(PYTHON_ARGON2_CFFI_VERSION).tar.gz
PYTHON_ARGON2_CFFI_SITE = https://files.pythonhosted.org/packages/3f/18/20bb5b6bf55e55d14558b57afc3d4476349ab90e0c43e60f27a7c2187289
PYTHON_ARGON2_CFFI_SETUP_TYPE = flit
PYTHON_ARGON2_CFFI_LICENSE = MIT
PYTHON_ARGON2_CFFI_LICENSE_FILES = LICENSE
$(eval $(python-package))