[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,7 @@
config BR2_PACKAGE_PYTHON_BCRYPT
bool "python-bcrypt"
select BR2_PACKAGE_PYTHON_CFFI # runtime
help
Modern password hashing for your software and your servers.
https://github.com/pyca/bcrypt/

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/bcrypt/json
md5 fe31390dab603728f756cd3d6830c80a bcrypt-3.2.0.tar.gz
sha256 5b93c1726e50a93a033c36e5ca7fdcd29a5c7395af50a6892f5d9e7c6cfbfb29 bcrypt-3.2.0.tar.gz
# Locally computed sha256 checksums
sha256 8173d5c29b4f956d532781d2b86e4e30f83e6b7878dce18c919451d6ba707c90 LICENSE

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-bcrypt
#
################################################################################
PYTHON_BCRYPT_VERSION = 3.2.0
PYTHON_BCRYPT_SOURCE = bcrypt-$(PYTHON_BCRYPT_VERSION).tar.gz
PYTHON_BCRYPT_SITE = https://files.pythonhosted.org/packages/d8/ba/21c475ead997ee21502d30f76fd93ad8d5858d19a3fad7cd153de698c4dd
PYTHON_BCRYPT_SETUP_TYPE = setuptools
PYTHON_BCRYPT_LICENSE = Apache-2.0
PYTHON_BCRYPT_LICENSE_FILES = LICENSE
PYTHON_BCRYPT_DEPENDENCIES = host-python-cffi
$(eval $(python-package))