Upgrade buildroot to 2023.05 (from 2021.08.2), kernel is upgraded to 6.3 (from 5.13.19).

This commit is contained in:
PartialVolume
2023-07-05 19:35:21 +01:00
parent 654cfca2bf
commit 2ad6760d0f
8544 changed files with 208276 additions and 109881 deletions

View File

@@ -0,0 +1,12 @@
config BR2_PACKAGE_PYTHON_GIT
bool "python-git"
depends on BR2_USE_MMU # git
select BR2_PACKAGE_GIT # runtime
select BR2_PACKAGE_PYTHON_GITDB2 # runtime
select BR2_PACKAGE_PYTHON_TYPING_EXTENSIONS # runtime
help
GitPython is a python library used to interact with git
repositories, high-level like git-porcelain, or low-level
like git-plumbing.
https://github.com/gitpython-developers/GitPython

View File

@@ -0,0 +1,3 @@
# locally computed hashes
sha256 8282d0d1169a3a98546979bfae1524608670fadc4ca7636517aadd428e0cfbeb python-git-3.1.24.tar.gz
sha256 fd657ffc2cef63d25c78cab7808d414dd03a282e63893491fd11c32f98be67fb LICENSE

View File

@@ -0,0 +1,13 @@
################################################################################
#
# python-git
#
################################################################################
PYTHON_GIT_VERSION = 3.1.24
PYTHON_GIT_SITE = $(call github,gitpython-developers,GitPython,$(PYTHON_GIT_VERSION))
PYTHON_GIT_LICENSE = BSD-3-Clause
PYTHON_GIT_LICENSE_FILES = LICENSE
PYTHON_GIT_SETUP_TYPE = setuptools
$(eval $(python-package))