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,18 @@
config BR2_PACKAGE_PYTHON_QRCODE
bool "python-qrcode"
help
Pure python QR Code generator
https://github.com/lincolnloop/python-qrcode
if BR2_PACKAGE_PYTHON_QRCODE
config BR2_PACKAGE_PYTHON_QRCODE_SVG
bool "SVG support"
select BR2_PACKAGE_PYTHON3_PYEXPAT
config BR2_PACKAGE_PYTHON_QRCODE_PIL
bool "PIL support"
select BR2_PACKAGE_PYTHON_PILLOW
endif

View File

@@ -0,0 +1,5 @@
# md5 from https://pypi.python.org/pypi/qrcode/json
md5 124103c685e96ba3b7a1616760f31c11 qrcode-7.3.1.tar.gz
sha256 375a6ff240ca9bd41adc070428b5dfc1dcfbb0f2507f1ac848f6cded38956578 qrcode-7.3.1.tar.gz
# Locally computed
sha256 40dfb903c94ee3f789500131311186548ecba5cefd3557623d7700e2522ab994 LICENSE

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-qrcode
#
################################################################################
PYTHON_QRCODE_VERSION = 7.3.1
PYTHON_QRCODE_SOURCE = qrcode-$(PYTHON_QRCODE_VERSION).tar.gz
PYTHON_QRCODE_SITE = https://files.pythonhosted.org/packages/94/9f/31f33cdf3cf8f98e64c42582fb82f39ca718264df61957f28b0bbb09b134
PYTHON_QRCODE_SETUP_TYPE = setuptools
PYTHON_QRCODE_LICENSE = BSD-3-Clause
PYTHON_QRCODE_LICENSE_FILES = LICENSE
$(eval $(python-package))