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
+9
View File
@@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_BOTTLE
bool "python-bottle"
help
Bottle is a fast, simple and lightweight WSGI micro
web-framework for Python. It is distributed as a single file
module and has no dependencies other than the Python
Standard Library.
http://bottlepy.org
+3
View File
@@ -0,0 +1,3 @@
# md5 from https://pypi.python.org/pypi/bottle/json, sha256 locally computed
md5 d2fe1b48c1d49217e78bf326b1cad437 bottle-0.12.13.tar.gz
sha256 39b751aee0b167be8dffb63ca81b735bbf1dd0905b3bc42761efedee8f123355 bottle-0.12.13.tar.gz
+14
View File
@@ -0,0 +1,14 @@
################################################################################
#
# python-bottle
#
################################################################################
PYTHON_BOTTLE_VERSION = 0.12.13
PYTHON_BOTTLE_SOURCE = bottle-$(PYTHON_BOTTLE_VERSION).tar.gz
PYTHON_BOTTLE_SITE = https://pypi.python.org/packages/bd/99/04dc59ced52a8261ee0f965a8968717a255ea84a36013e527944dbf3468c
PYTHON_BOTTLE_LICENSE = MIT
# README.rst refers to the file "LICENSE" but it's not included
PYTHON_BOTTLE_SETUP_TYPE = setuptools
$(eval $(python-package))