Update buildroot to 2024.02.2, kernel to 6.6.2, GPU & DRM drivers, nwipe to v0.37 plus many others.

This commit is contained in:
PartialVolume
2024-05-17 17:38:43 +01:00
parent bb87d66c65
commit c000e2a83d
3975 changed files with 50769 additions and 113784 deletions

View File

@@ -0,0 +1,11 @@
config BR2_PACKAGE_PYTHON_HTTPX
bool "python-httpx"
select BR2_PACKAGE_PYTHON_ANYIO # runtime
select BR2_PACKAGE_PYTHON_CERTIFI # runtime
select BR2_PACKAGE_PYTHON_HTTPCORE # runtime
select BR2_PACKAGE_PYTHON_IDNA # runtime
select BR2_PACKAGE_PYTHON_SNIFFIO # runtime
help
The next generation HTTP client.
https://github.com/encode/httpx

View File

@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/httpx/json
md5 3785c8a8930a7c7280206f79c170658f httpx-0.26.0.tar.gz
sha256 451b55c30d5185ea6b23c2c793abf9bb237d2a7dfb901ced6ff69ad37ec1dfaf httpx-0.26.0.tar.gz
# Locally computed sha256 checksums
sha256 4ec59d544f12b5f539a3a716fd321ac58ccd8030b465221f2c880200cdf28d8d LICENSE.md

View File

@@ -0,0 +1,19 @@
################################################################################
#
# python-httpx
#
################################################################################
PYTHON_HTTPX_VERSION = 0.26.0
PYTHON_HTTPX_SOURCE = httpx-$(PYTHON_HTTPX_VERSION).tar.gz
PYTHON_HTTPX_SITE = https://files.pythonhosted.org/packages/bd/26/2dc654950920f499bd062a211071925533f821ccdca04fa0c2fd914d5d06
PYTHON_HTTPX_SETUP_TYPE = pep517
PYTHON_HTTPX_LICENSE = BSD-3-Clause
PYTHON_HTTPX_LICENSE_FILES = LICENSE.md
PYTHON_HTTPX_CPE_ID_VENDOR = encode
PYTHON_HTTPX_CPE_ID_PRODUCT = httpx
PYTHON_HTTPX_DEPENDENCIES = \
host-python-hatchling \
host-python-hatch-fancy-pypi-readme
$(eval $(python-package))