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
+13
View File
@@ -0,0 +1,13 @@
config BR2_PACKAGE_PYTHON_GITDB2
bool "python-gitdb2"
depends on BR2_PACKAGE_PYTHON3
select BR2_PACKAGE_PYTHON_SMMAP2 # runtime
select BR2_PACKAGE_PYTHON3_ZLIB
help
GitDB allows you to access bare git repositories for reading
and writing. It aims at allowing full access to loose objects
as well as packs with performance and scalability in mind. It
operates exclusively on streams, allowing to handle large
objects with a small memory footprint.
https://github.com/gitpython-developers/gitdb
+5
View File
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/gitdb/json
md5 3f52187435ab0b6e64a15782ffaf29ab gitdb-4.0.7.tar.gz
sha256 96bf5c08b157a666fec41129e6d327235284cca4c81e92109260f353ba138005 gitdb-4.0.7.tar.gz
# Locally computed sha256 checksums
sha256 efd29f596a08e8857e68e7694a50bcda72839792da7c3f041bcbff5f18009239 LICENSE
+14
View File
@@ -0,0 +1,14 @@
################################################################################
#
# python-gitdb2
#
################################################################################
PYTHON_GITDB2_VERSION = 4.0.7
PYTHON_GITDB2_SOURCE = gitdb-$(PYTHON_GITDB2_VERSION).tar.gz
PYTHON_GITDB2_SITE = https://files.pythonhosted.org/packages/34/fe/9265459642ab6e29afe734479f94385870e8702e7f892270ed6e52dd15bf
PYTHON_GITDB2_SETUP_TYPE = setuptools
PYTHON_GITDB2_LICENSE = BSD-3-Clause
PYTHON_GITDB2_LICENSE_FILES = LICENSE
$(eval $(python-package))