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
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_PYMYSQL
bool "python-pymysql"
depends on BR2_PACKAGE_PYTHON3
help
PyMySQL is a pure-Python MySQL client library. It follows
the DB-API 2.0.
https://pypi.python.org/pypi/PyMySQL/
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pymysql/json
md5 3fe6ff2eefb58af5c54d335c6e0216de PyMySQL-1.0.2.tar.gz
sha256 816927a350f38d56072aeca5dfb10221fe1dc653745853d30a216637f5d7ad36 PyMySQL-1.0.2.tar.gz
# Locally computed sha256 checksums
sha256 314120dc65f0800f738a4b31400c76ee14decd1fbe77ce9c3540a421b86ea7b6 LICENSE
+14
View File
@@ -0,0 +1,14 @@
################################################################################
#
# python-pymysql
#
################################################################################
PYTHON_PYMYSQL_VERSION = 1.0.2
PYTHON_PYMYSQL_SOURCE = PyMySQL-$(PYTHON_PYMYSQL_VERSION).tar.gz
PYTHON_PYMYSQL_SITE = https://files.pythonhosted.org/packages/60/ea/33b8430115d9b617b713959b21dfd5db1df77425e38efea08d121e83b712
PYTHON_PYMYSQL_LICENSE = MIT
PYTHON_PYMYSQL_LICENSE_FILES = LICENSE
PYTHON_PYMYSQL_SETUP_TYPE = setuptools
$(eval $(python-package))