Add buildroot 2018-02

This commit is contained in:
Pascal Vizeli
2018-03-17 23:47:00 +00:00
parent 3776c47f83
commit 67742041ad
10007 changed files with 405098 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
config BR2_PACKAGE_PYTHON_KEYRING
bool "python-keyring"
depends on BR2_INSTALL_LIBSTDCPP # python-secretstorage
select BR2_PACKAGE_PYTHON_SECRETSTORAGE # runtime
help
The Python keyring lib provides a easy way to access the
system keyring service from Python.
https://pypi.python.org/pypi/keyring
comment "python-keyring needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP

View File

@@ -0,0 +1,4 @@
# md5 from https://pypi.python.org/pypi/keyring/json, sha256 locally computed
md5 9c53e4f2427ebaa59d304a826311fbcf keyring-10.5.0.tar.gz
sha256 0e6129e8c5bc80da34cc1942d30daad79ed40419fcaaa538278c3b2ff235b313 keyring-10.5.0.tar.gz
sha256 a55e2ffe9b44998e621d51d8c094bed09acc4b5236ee73d7df395a33ba3c18fd LICENSE

View File

@@ -0,0 +1,15 @@
################################################################################
#
# python-keyring
#
################################################################################
PYTHON_KEYRING_VERSION = 10.5.0
PYTHON_KEYRING_SOURCE = keyring-$(PYTHON_KEYRING_VERSION).tar.gz
PYTHON_KEYRING_SITE = https://pypi.python.org/packages/42/2e/51bd1739fe335095a2174db3f2f230346762e7e572471059540146a521f6
PYTHON_KEYRING_SETUP_TYPE = setuptools
PYTHON_KEYRING_LICENSE = MIT
PYTHON_KEYRING_LICENSE_FILES = LICENSE
PYTHON_KEYRING_DEPENDENCIES = host-python-setuptools-scm
$(eval $(python-package))