initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 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
+5
View File
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/bottle/json
md5 50075544706b5e662a3fbd9a98e24b07 bottle-0.12.19.tar.gz
sha256 a9d73ffcbc6a1345ca2d7949638db46349f5b2b77dac65d6494d45c23628da2c bottle-0.12.19.tar.gz
# Locally computed sha256 checksums
sha256 d0e7211f1c3c1a1c56f39d18bcb07f27f480c8a9552617756dda3a335933b8a6 LICENSE
+16
View File
@@ -0,0 +1,16 @@
################################################################################
#
# python-bottle
#
################################################################################
PYTHON_BOTTLE_VERSION = 0.12.19
PYTHON_BOTTLE_SOURCE = bottle-$(PYTHON_BOTTLE_VERSION).tar.gz
PYTHON_BOTTLE_SITE = https://files.pythonhosted.org/packages/ea/80/3d2dca1562ffa1929017c74635b4cb3645a352588de89e90d0bb53af3317
PYTHON_BOTTLE_LICENSE = MIT
PYTHON_BOTTLE_LICENSE_FILES = LICENSE
PYTHON_BOTTLE_CPE_ID_VENDOR = bottlepy
PYTHON_BOTTLE_CPE_ID_PRODUCT = bottle
PYTHON_BOTTLE_SETUP_TYPE = setuptools
$(eval $(python-package))