This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
config BR2_PACKAGE_PYTHON_PROMPT_TOOLKIT
bool "python-prompt-toolkit"
select BR2_PACKAGE_PYTHON_SIX # runtime
select BR2_PACKAGE_PYTHON_WCWIDTH # runtime
select BR2_PACKAGE_PYTHON_PYEXPAT if BR2_PACKAGE_PYTHON # runtime
select BR2_PACKAGE_PYTHON3_PYEXPAT if BR2_PACKAGE_PYTHON3 # runtime
help
Library for building powerful interactive command lines in
Python.
https://github.com/jonathanslenders/python-prompt-toolkit

View File

@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/prompt-toolkit/json
md5 091daddeec62015e0be36e8682d36562 prompt_toolkit-2.0.9.tar.gz
sha256 2519ad1d8038fd5fc8e770362237ad0364d16a7650fb5724af6997ed5515e3c1 prompt_toolkit-2.0.9.tar.gz
# Locally computed sha256 checksums
sha256 303574d9bdd85c757d6025017942bf17baeedf2778f62bd7f425d07d880f4c4a LICENSE

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-prompt-toolkit
#
################################################################################
PYTHON_PROMPT_TOOLKIT_VERSION = 2.0.9
PYTHON_PROMPT_TOOLKIT_SOURCE = prompt_toolkit-$(PYTHON_PROMPT_TOOLKIT_VERSION).tar.gz
PYTHON_PROMPT_TOOLKIT_SITE = https://files.pythonhosted.org/packages/94/a0/57dc47115621d9b3fcc589848cdbcbb6c4c130186e8fc4c4704766a7a699
PYTHON_PROMPT_TOOLKIT_SETUP_TYPE = setuptools
PYTHON_PROMPT_TOOLKIT_LICENSE = BSD-3-Clause
PYTHON_PROMPT_TOOLKIT_LICENSE_FILES = LICENSE
$(eval $(python-package))