Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from buildroot:master #169

Merged
merged 18 commits into from
Sep 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -597,14 +597,7 @@ world: target-post-image

.PHONY: prepare-sdk
prepare-sdk: world
@$(call MESSAGE,"Rendering the SDK relocatable")
PARALLEL_JOBS=$(PARALLEL_JOBS) \
PER_PACKAGE_DIR=$(PER_PACKAGE_DIR) \
$(TOPDIR)/support/scripts/fix-rpath host
PARALLEL_JOBS=$(PARALLEL_JOBS) \
PER_PACKAGE_DIR=$(PER_PACKAGE_DIR) \
$(TOPDIR)/support/scripts/fix-rpath staging
$(call ppd-fixup-paths,$(BASE_DIR))
@$(call MESSAGE,"Preparing the SDK")
$(INSTALL) -m 755 $(TOPDIR)/support/misc/relocate-sdk.sh $(HOST_DIR)/relocate-sdk.sh
mkdir -p $(HOST_DIR)/share/buildroot
echo $(HOST_DIR) > $(HOST_DIR)/share/buildroot/sdk-location
Expand Down Expand Up @@ -722,6 +715,13 @@ STAGING_DIR_FILES_LISTS = $(sort $(wildcard $(BUILD_DIR)/*/.files-list-staging.t
host-finalize: $(PACKAGES) $(HOST_DIR) $(HOST_DIR_SYMLINK)
@$(call MESSAGE,"Finalizing host directory")
$(call per-package-rsync,$(sort $(PACKAGES)),host,$(HOST_DIR),copy)
$(Q)PARALLEL_JOBS=$(PARALLEL_JOBS) \
PER_PACKAGE_DIR=$(PER_PACKAGE_DIR) \
$(TOPDIR)/support/scripts/fix-rpath host
$(Q)PARALLEL_JOBS=$(PARALLEL_JOBS) \
PER_PACKAGE_DIR=$(PER_PACKAGE_DIR) \
$(TOPDIR)/support/scripts/fix-rpath staging
$(call ppd-fixup-paths,$(BASE_DIR))

.PHONY: staging-finalize
staging-finalize: $(STAGING_DIR_SYMLINK)
Expand Down
6 changes: 3 additions & 3 deletions arch/Config.in.arc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ choice
default BR2_arc770d
depends on BR2_arc
help
Specific CPU to use
Specific CPU to use

config BR2_arc750d
bool "ARC 750D"
Expand Down Expand Up @@ -40,12 +40,12 @@ config BR2_archs38_full
config BR2_archs4x_rel31
bool "ARC HS48 rel 31"
help
Build for HS48 release 3.1
Build for HS48 release 3.1

config BR2_archs4x
bool "ARC HS48"
help
Latest release of HS48 processor
Latest release of HS48 processor
- Dual and Quad multiply and MAC operations
- Double-precision FPU

Expand Down
2 changes: 1 addition & 1 deletion package/kodi/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ config BR2_PACKAGE_KODI_BLUEZ
select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_AUDIO
select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HID
help
Enable bluetooth support
Enable bluetooth support

comment "bluetooth support needs a toolchain w/ headers >= 3.18"
depends on BR2_TOOLCHAIN_HAS_SYNC_4
Expand Down
10 changes: 10 additions & 0 deletions package/linux-firmware/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -706,4 +706,14 @@ config BR2_PACKAGE_LINUX_FIRMWARE_ARM_MALI_CSF

endmenu

menu "Serial adapters firmware"

config BR2_PACKAGE_LINUX_FIRMWARE_RP2
bool "Comtrol RocketPort EXPRESS/INFINITY firmware"
help
Firmware files for the Comtrol RocketPort EXPRESS/INFINITY
needed by the Linux rp2 kernel driver.

endmenu

endif
4 changes: 4 additions & 0 deletions package/linux-firmware/linux-firmware.mk
Original file line number Diff line number Diff line change
Expand Up @@ -910,6 +910,10 @@ LINUX_FIRMWARE_FILES += arm/mali/arch*/mali_csffw.bin
LINUX_FIRMWARE_ALL_LICENSE_FILES += LICENCE.mali_csffw
endif

ifeq ($(BR2_PACKAGE_LINUX_FIRMWARE_RP2),y)
LINUX_FIRMWARE_FILES += rp2.fw
endif

ifneq ($(LINUX_FIRMWARE_FILES)$(LINUX_FIRMWARE_DIRS),)

define LINUX_FIRMWARE_BUILD_CMDS
Expand Down
6 changes: 3 additions & 3 deletions package/mmc-utils/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ if BR2_PACKAGE_MMC_UTILS
config BR2_PACKAGE_MMC_UTILS_ENABLE_DANGEROUS_COMMANDS
bool "Enable dangerous commands"
help
Enable support for dangerous commands in mmc-utils. mmc-utils
considers turning on permanent write protection on a device a
"dangerous command" and doesn't offer it by default.
Enable support for dangerous commands in mmc-utils. mmc-utils
considers turning on permanent write protection on a device a
"dangerous command" and doesn't offer it by default.

endif

Expand Down
4 changes: 2 additions & 2 deletions package/python-asyncssh/python-asyncssh.hash
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# md5, sha256 from https://pypi.org/pypi/asyncssh/json
md5 3b22a39fa9d638b277c9441187b73c5c asyncssh-2.14.2.tar.gz
sha256 e956bf8988d07a06ba3305f6604e261f4ca014c4a232f0873f1c7692fbe3cfc2 asyncssh-2.14.2.tar.gz
md5 baadd6f26ddf3164ae5ae3c09a6b4e18 asyncssh-2.17.0.tar.gz
sha256 3b159c105aa388c1e2245c4faf483f540ada8cad99402281119100166e5edb3c asyncssh-2.17.0.tar.gz
# Locally computed sha256 checksums
sha256 0becf16567beb77fa252b7664631dd177c8f9a1889e48995b45379c7130e5303 LICENSE
sha256 68c286b0cf4507bec8922103efe861adb0bd3218003b1ec1b25e2e64bdd76bd3 COPYRIGHT
4 changes: 2 additions & 2 deletions package/python-asyncssh/python-asyncssh.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
################################################################################

PYTHON_ASYNCSSH_VERSION = 2.14.2
PYTHON_ASYNCSSH_VERSION = 2.17.0
PYTHON_ASYNCSSH_SOURCE = asyncssh-$(PYTHON_ASYNCSSH_VERSION).tar.gz
PYTHON_ASYNCSSH_SITE = https://files.pythonhosted.org/packages/6c/f9/849f158fe50cdb0b1bf75009861865c9a30c3b5a0d62ad43bb5e00b10feb
PYTHON_ASYNCSSH_SITE = https://files.pythonhosted.org/packages/32/34/007ba4c65dc15ad394ff50d6ce272bcc028a8824ab1658c5fe5c480be515
PYTHON_ASYNCSSH_SETUP_TYPE = setuptools
PYTHON_ASYNCSSH_LICENSE = EPL-2.0 or GPL-2.0+
PYTHON_ASYNCSSH_LICENSE_FILES = LICENSE COPYRIGHT
Expand Down
1 change: 1 addition & 0 deletions package/python-betterproto/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ config BR2_PACKAGE_PYTHON_BETTERPROTO
bool "python-betterproto"
select BR2_PACKAGE_PYTHON_DATEUTIL # runtime
select BR2_PACKAGE_PYTHON_GRPCLIB # runtime
select BR2_PACKAGE_PYTHON_TYPING_EXTENSIONS # runtime
help
A better Protobuf / gRPC generator & library.

Expand Down
4 changes: 2 additions & 2 deletions package/python-betterproto/python-betterproto.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/betterproto/json
md5 bd4192c2997959100097479c34ff87e6 betterproto-2.0.0b6.tar.gz
sha256 720ae92697000f6fcf049c69267d957f0871654c8b0d7458906607685daee784 betterproto-2.0.0b6.tar.gz
md5 de9a12d1943dfa266dc3cf489cd3c6fa betterproto-2.0.0b7.tar.gz
sha256 1b1458ca5278d519bcd62556a4c236f998a91d503f0f71c67b0b954747052af2 betterproto-2.0.0b7.tar.gz
# Locally computed sha256 checksums
sha256 a5b8df75467e4b57a308a94cce5fdae84808a83ee6cd5af7e175c6b9784a753f LICENSE.md
4 changes: 2 additions & 2 deletions package/python-betterproto/python-betterproto.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
################################################################################

PYTHON_BETTERPROTO_VERSION = 2.0.0b6
PYTHON_BETTERPROTO_VERSION = 2.0.0b7
PYTHON_BETTERPROTO_SOURCE = betterproto-$(PYTHON_BETTERPROTO_VERSION).tar.gz
PYTHON_BETTERPROTO_SITE = https://files.pythonhosted.org/packages/45/43/4c44efd75f2ef48a16b458c2fe2cff7aa74bab8fcadf2653bb5110a87f97
PYTHON_BETTERPROTO_SITE = https://files.pythonhosted.org/packages/4e/94/930a1368fbed92adc897a9a1fae282e3f9d608547dbf805034ca549f381a
PYTHON_BETTERPROTO_SETUP_TYPE = pep517
PYTHON_BETTERPROTO_LICENSE = MIT
PYTHON_BETTERPROTO_LICENSE_FILES = LICENSE.md
Expand Down
4 changes: 2 additions & 2 deletions package/python-certifi/python-certifi.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/certifi/json
md5 d138c6217784e19cda28770b003ab23b certifi-2024.6.2.tar.gz
sha256 3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516 certifi-2024.6.2.tar.gz
md5 f842fc7a8ef562539e07873475eed593 certifi-2024.8.30.tar.gz
sha256 bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9 certifi-2024.8.30.tar.gz
# Locally computed sha256 checksums
sha256 e93716da6b9c0d5a4a1df60fe695b370f0695603d21f6f83f053e42cfc10caf7 LICENSE
4 changes: 2 additions & 2 deletions package/python-certifi/python-certifi.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
################################################################################

PYTHON_CERTIFI_VERSION = 2024.6.2
PYTHON_CERTIFI_VERSION = 2024.8.30
PYTHON_CERTIFI_SOURCE = certifi-$(PYTHON_CERTIFI_VERSION).tar.gz
PYTHON_CERTIFI_SITE = https://files.pythonhosted.org/packages/07/b3/e02f4f397c81077ffc52a538e0aec464016f1860c472ed33bd2a1d220cc5
PYTHON_CERTIFI_SITE = https://files.pythonhosted.org/packages/b0/ee/9b19140fe824b367c04c5e1b369942dd754c4c5462d5674002f75c4dedc1
PYTHON_CERTIFI_SETUP_TYPE = setuptools
PYTHON_CERTIFI_LICENSE = ISC (Python code), MPL-2.0 (cacert.pem)
PYTHON_CERTIFI_LICENSE_FILES = LICENSE
Expand Down
4 changes: 2 additions & 2 deletions package/python-dbus-fast/python-dbus-fast.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/dbus-fast/json
md5 791ce3b0c04099959161a18ae983bf25 dbus_fast-2.12.0.tar.gz
sha256 849478e11d251fa4ebb99ce5bfee332cb6383c63ef0bc97bae23cef4e0badf9c dbus_fast-2.12.0.tar.gz
md5 32ff588b9ae1f26d652b6fdd07ec7066 dbus_fast-2.12.1.tar.gz
sha256 e91a7d43efbd9e0bcef755a53526afba506a74a0d43e0818c1e9b4d6b1396945 dbus_fast-2.12.1.tar.gz
# Locally computed sha256 checksums
sha256 c37e9c75110e01d1f0c5360dc7d7776a30ac5f70d2440db214423e4b7a77a6af LICENSE
4 changes: 2 additions & 2 deletions package/python-dbus-fast/python-dbus-fast.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
################################################################################

PYTHON_DBUS_FAST_VERSION = 2.12.0
PYTHON_DBUS_FAST_VERSION = 2.12.1
PYTHON_DBUS_FAST_SOURCE = dbus_fast-$(PYTHON_DBUS_FAST_VERSION).tar.gz
PYTHON_DBUS_FAST_SITE = https://files.pythonhosted.org/packages/f5/8c/220fcbe4337b842d730d5752f207fc8efd3a02405c71c329e61218e947b8
PYTHON_DBUS_FAST_SITE = https://files.pythonhosted.org/packages/1d/5f/f0757ce529d353739970ebc4a2d9b083b2dcbe0f737fc98706e36f4a0f96
PYTHON_DBUS_FAST_SETUP_TYPE = pep517
PYTHON_DBUS_FAST_LICENSE = MIT
PYTHON_DBUS_FAST_LICENSE_FILES = LICENSE
Expand Down
4 changes: 2 additions & 2 deletions package/python-fastapi/python-fastapi.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/fastapi/json
md5 c9d319aa5b12df82e51b77573e419e01 fastapi-0.112.2.tar.gz
sha256 3d4729c038414d5193840706907a41839d839523da6ed0c2811f1168cac1798c fastapi-0.112.2.tar.gz
md5 02d748d7fbc4a8e474c13471bb441cc1 fastapi-0.114.0.tar.gz
sha256 9908f2a5cc733004de6ca5e1412698f35085cefcbfd41d539245b9edf87b73c1 fastapi-0.114.0.tar.gz
# Locally computed sha256 checksums
sha256 4ec89ffc81485b97fec584b2d4a961032eeffe834453894fd9c1274906cc744e LICENSE
4 changes: 2 additions & 2 deletions package/python-fastapi/python-fastapi.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
################################################################################

PYTHON_FASTAPI_VERSION = 0.112.2
PYTHON_FASTAPI_VERSION = 0.114.0
PYTHON_FASTAPI_SOURCE = fastapi-$(PYTHON_FASTAPI_VERSION).tar.gz
PYTHON_FASTAPI_SITE = https://files.pythonhosted.org/packages/9c/11/4874d165e7ef97aa803a567a4be8f9c8b0bd7cced6d536d44033ef7d4bfa
PYTHON_FASTAPI_SITE = https://files.pythonhosted.org/packages/20/1b/fb621a3bab915ac1c9ad06943eb5a2b2aa01cd63228d524bd45261278787
PYTHON_FASTAPI_SETUP_TYPE = pep517
PYTHON_FASTAPI_LICENSE = MIT
PYTHON_FASTAPI_LICENSE_FILES = LICENSE
Expand Down
4 changes: 2 additions & 2 deletions package/python-httpx/python-httpx.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/httpx/json
md5 d6035d561136590900678ec6c78698cb httpx-0.27.0.tar.gz
sha256 a0cb88a46f32dc874e04ee956e4c2764aba2aa228f650b06788ba6bda2962ab5 httpx-0.27.0.tar.gz
md5 f29763f29da610b185d2ca33937c572f httpx-0.27.2.tar.gz
sha256 f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2 httpx-0.27.2.tar.gz
# Locally computed sha256 checksums
sha256 4ec59d544f12b5f539a3a716fd321ac58ccd8030b465221f2c880200cdf28d8d LICENSE.md
4 changes: 2 additions & 2 deletions package/python-httpx/python-httpx.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
################################################################################

PYTHON_HTTPX_VERSION = 0.27.0
PYTHON_HTTPX_VERSION = 0.27.2
PYTHON_HTTPX_SOURCE = httpx-$(PYTHON_HTTPX_VERSION).tar.gz
PYTHON_HTTPX_SITE = https://files.pythonhosted.org/packages/5c/2d/3da5bdf4408b8b2800061c339f240c1802f2e82d55e50bd39c5a881f47f0
PYTHON_HTTPX_SITE = https://files.pythonhosted.org/packages/78/82/08f8c936781f67d9e6b9eeb8a0c8b4e406136ea4c3d1f89a5db71d42e0e6
PYTHON_HTTPX_SETUP_TYPE = pep517
PYTHON_HTTPX_LICENSE = BSD-3-Clause
PYTHON_HTTPX_LICENSE_FILES = LICENSE.md
Expand Down
4 changes: 2 additions & 2 deletions package/python-idna/python-idna.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/idna/json
md5 31cc572cb7a6519159c927c998c64c79 idna-3.7.tar.gz
sha256 028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc idna-3.7.tar.gz
md5 4490e5070a3dcbf1a6cd178cb523cdfb idna-3.8.tar.gz
sha256 d838c2c0ed6fced7693d5e8ab8e734d5f8fda53a039c0164afb0b82e771e3603 idna-3.8.tar.gz
# Locally computed sha256 checksums
sha256 a59f0b0ef3635874109a4461ca44ff7a70d50696e814767bfaf721d4c9b0db0f LICENSE.md
4 changes: 2 additions & 2 deletions package/python-idna/python-idna.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
################################################################################

PYTHON_IDNA_VERSION = 3.7
PYTHON_IDNA_VERSION = 3.8
PYTHON_IDNA_SOURCE = idna-$(PYTHON_IDNA_VERSION).tar.gz
PYTHON_IDNA_SITE = https://files.pythonhosted.org/packages/21/ed/f86a79a07470cb07819390452f178b3bef1d375f2ec021ecfc709fc7cf07
PYTHON_IDNA_SITE = https://files.pythonhosted.org/packages/e8/ac/e349c5e6d4543326c6883ee9491e3921e0d07b55fdf3cce184b40d63e72a
PYTHON_IDNA_LICENSE = BSD-3-Clause
PYTHON_IDNA_LICENSE_FILES = LICENSE.md
PYTHON_IDNA_SETUP_TYPE = flit
Expand Down
2 changes: 1 addition & 1 deletion package/python-lxml/python-lxml.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# From https://pypi.org/project/lxml/
sha256 bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87 lxml-5.2.2.tar.gz
sha256 4e109ca30d1edec1ac60cdbe341905dc3b8f55b16855e03a54aaf59e51ec8c6f lxml-5.3.0.tar.gz
# Locally computed
sha256 41d49dd406aa0e1548a6d5f21a30d6bf638b3cd96eb7289dd348d83ed2e40392 LICENSES.txt
sha256 69edb445c1335a8312d4c09271847e9956d84f0d9f724d125340cc3fad767b2a doc/licenses/BSD.txt
Expand Down
12 changes: 6 additions & 6 deletions package/python-lxml/python-lxml.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#
################################################################################

PYTHON_LXML_VERSION = 5.2.2
PYTHON_LXML_SITE = https://files.pythonhosted.org/packages/63/f7/ffbb6d2eb67b80a45b8a0834baa5557a14a5ffce0979439e7cd7f0c4055b
PYTHON_LXML_VERSION = 5.3.0
PYTHON_LXML_SITE = https://files.pythonhosted.org/packages/e7/6b/20c3a4b24751377aaa6307eb230b66701024012c29dd374999cc92983269
PYTHON_LXML_SOURCE = lxml-$(PYTHON_LXML_VERSION).tar.gz

# Not including the GPL, because it is used only for the test scripts.
Expand All @@ -29,12 +29,12 @@ HOST_PYTHON_LXML_DEPENDENCIES = host-libxml2 host-libxslt host-zlib
# libxslt compiler and linker flags
PYTHON_LXML_BUILD_OPTS = \
--skip-dependency-check \
-C--build-option=--xslt-config=$(STAGING_DIR)/usr/bin/xslt-config \
-C--build-option=--xml2-config=$(STAGING_DIR)/usr/bin/xml2-config
-C--build-option=--with-xslt-config=$(STAGING_DIR)/usr/bin/xslt-config \
-C--build-option=--with-xml2-config=$(STAGING_DIR)/usr/bin/xml2-config
HOST_PYTHON_LXML_BUILD_OPTS = \
--skip-dependency-check \
-C--build-option=--xslt-config=$(HOST_DIR)/bin/xslt-config \
-C--build-option=--xml2-config=$(HOST_DIR)/bin/xml2-config
-C--build-option=--with-xslt-config=$(HOST_DIR)/bin/xslt-config \
-C--build-option=--with-xml2-config=$(HOST_DIR)/bin/xml2-config

$(eval $(python-package))
$(eval $(host-python-package))
4 changes: 2 additions & 2 deletions package/python-pyyaml/python-pyyaml.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/PyYAML/json
md5 c9246277af2d9a13b7018af267a0831a PyYAML-6.0.1.tar.gz
sha256 bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43 PyYAML-6.0.1.tar.gz
md5 9600ee49b2b4e1a0237cf4173b6dc594 pyyaml-6.0.2.tar.gz
sha256 d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e pyyaml-6.0.2.tar.gz
# Locally computed sha256 checksums
sha256 8d3928f9dc4490fd635707cb88eb26bd764102a7282954307d3e5167a577e8a4 LICENSE
6 changes: 3 additions & 3 deletions package/python-pyyaml/python-pyyaml.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
################################################################################

PYTHON_PYYAML_VERSION = 6.0.1
PYTHON_PYYAML_SOURCE = PyYAML-$(PYTHON_PYYAML_VERSION).tar.gz
PYTHON_PYYAML_SITE = https://files.pythonhosted.org/packages/cd/e5/af35f7ea75cf72f2cd079c95ee16797de7cd71f29ea7c68ae5ce7be1eda0
PYTHON_PYYAML_VERSION = 6.0.2
PYTHON_PYYAML_SOURCE = pyyaml-$(PYTHON_PYYAML_VERSION).tar.gz
PYTHON_PYYAML_SITE = https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17
PYTHON_PYYAML_SETUP_TYPE = setuptools
PYTHON_PYYAML_LICENSE = MIT
PYTHON_PYYAML_LICENSE_FILES = LICENSE
Expand Down
4 changes: 2 additions & 2 deletions package/python-starlette/python-starlette.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/starlette/json
md5 c56bd58a7ed1320677cff4b1055dff18 starlette-0.38.2.tar.gz
sha256 c7c0441065252160993a1a37cf2a73bb64d271b17303e0b0c1eb7191cfb12d75 starlette-0.38.2.tar.gz
md5 7861ee7609e649508792a4ece854406b starlette-0.38.4.tar.gz
sha256 53a7439060304a208fea17ed407e998f46da5e5d9b1addfea3040094512a6379 starlette-0.38.4.tar.gz
# Locally computed sha256 checksums
sha256 dcb95677a02240243187e964f941847d19b17821cf99e5afae684fab328c19bf LICENSE.md
4 changes: 2 additions & 2 deletions package/python-starlette/python-starlette.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
################################################################################

PYTHON_STARLETTE_VERSION = 0.38.2
PYTHON_STARLETTE_VERSION = 0.38.4
PYTHON_STARLETTE_SOURCE = starlette-$(PYTHON_STARLETTE_VERSION).tar.gz
PYTHON_STARLETTE_SITE = https://files.pythonhosted.org/packages/43/e2/d49a94ecb665b3a1c34b40c78165a737abc384fcabc843ccb14a3bd3dc37
PYTHON_STARLETTE_SITE = https://files.pythonhosted.org/packages/b4/9c/d85721508122ae927aa7064e10a3f47f8dabcd4fd162222afcecd0d8d7b7
PYTHON_STARLETTE_SETUP_TYPE = pep517
PYTHON_STARLETTE_LICENSE = BSD-3-Clause
PYTHON_STARLETTE_LICENSE_FILES = LICENSE.md
Expand Down
4 changes: 2 additions & 2 deletions package/python-tomlkit/python-tomlkit.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/tomlkit/json
md5 e182df9625d617692a9ae035266634fe tomlkit-0.12.4.tar.gz
sha256 7ca1cfc12232806517a8515047ba66a19369e71edf2439d0f5824f91032b6cc3 tomlkit-0.12.4.tar.gz
md5 0db1a3750c64b141720f05430df9b433 tomlkit-0.13.2.tar.gz
sha256 fff5fe59a87295b278abd31bec92c15d9bc4a06885ab12bcea52c71119392e79 tomlkit-0.13.2.tar.gz
# Locally computed sha256 checksums
sha256 f2f9b460ba719da6626add264d3782f275a4ff7aab677beda08b330911e23adb LICENSE
4 changes: 2 additions & 2 deletions package/python-tomlkit/python-tomlkit.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
################################################################################

PYTHON_TOMLKIT_VERSION = 0.12.4
PYTHON_TOMLKIT_VERSION = 0.13.2
PYTHON_TOMLKIT_SOURCE = tomlkit-$(PYTHON_TOMLKIT_VERSION).tar.gz
PYTHON_TOMLKIT_SITE = https://files.pythonhosted.org/packages/7d/49/4c0764898ee67618996148bdba4534a422c5e698b4dbf4001f7c6f930797
PYTHON_TOMLKIT_SITE = https://files.pythonhosted.org/packages/b1/09/a439bec5888f00a54b8b9f05fa94d7f901d6735ef4e55dcec9bc37b5d8fa
PYTHON_TOMLKIT_SETUP_TYPE = pep517
PYTHON_TOMLKIT_LICENSE = MIT
PYTHON_TOMLKIT_LICENSE_FILES = LICENSE
Expand Down
4 changes: 2 additions & 2 deletions package/python-tortoise-orm/python-tortoise-orm.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/tortoise-orm/json
md5 aa5efa50e69d0a67b75c187f7550acd7 tortoise_orm-0.20.0.tar.gz
sha256 283af584d685dcc58d6cc1da35b9115bb1e41c89075eae2a19c493b39b9b41f7 tortoise_orm-0.20.0.tar.gz
md5 6035547e880b23990fa1b0c7f030810b tortoise_orm-0.21.6.tar.gz
sha256 0fbc718001647bf282c01eaaa360f94f1432c9281701244180703d48d58a88ec tortoise_orm-0.21.6.tar.gz
# Locally computed sha256 checksums
sha256 f955d347b975d5867ee364f978476b3012878a706d468571b9758cac74de6041 LICENSE.txt
4 changes: 2 additions & 2 deletions package/python-tortoise-orm/python-tortoise-orm.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
################################################################################

PYTHON_TORTOISE_ORM_VERSION = 0.20.0
PYTHON_TORTOISE_ORM_VERSION = 0.21.6
PYTHON_TORTOISE_ORM_SOURCE = tortoise_orm-$(PYTHON_TORTOISE_ORM_VERSION).tar.gz
PYTHON_TORTOISE_ORM_SITE = https://files.pythonhosted.org/packages/3b/84/8ca142fe370d59c4e3135825b2822d199c4f885ae855657c1a7361e68511
PYTHON_TORTOISE_ORM_SITE = https://files.pythonhosted.org/packages/00/fc/8d70e3dbaa091986a0933a7941b73646c37792709443e701cb76d8a6e680
PYTHON_TORTOISE_ORM_SETUP_TYPE = pep517
PYTHON_TORTOISE_ORM_LICENSE = Apache-2.0
PYTHON_TORTOISE_ORM_LICENSE_FILES = LICENSE.txt
Expand Down
4 changes: 2 additions & 2 deletions package/python-urllib3/python-urllib3.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/urllib3/json
md5 5a264ef3ae827e5842bbc80536a343dd urllib3-2.0.7.tar.gz
sha256 c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84 urllib3-2.0.7.tar.gz
md5 efb79cfdef7b811687afe02ccaf67433 urllib3-2.2.2.tar.gz
sha256 dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168 urllib3-2.2.2.tar.gz
# Locally computed sha256 checksums
sha256 130e3a64d5fdd5d096a752694634a7d9df284469de86e5732100268041e3d686 LICENSE.txt
4 changes: 2 additions & 2 deletions package/python-urllib3/python-urllib3.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
################################################################################

PYTHON_URLLIB3_VERSION = 2.0.7
PYTHON_URLLIB3_VERSION = 2.2.2
PYTHON_URLLIB3_SOURCE = urllib3-$(PYTHON_URLLIB3_VERSION).tar.gz
PYTHON_URLLIB3_SITE = https://files.pythonhosted.org/packages/af/47/b215df9f71b4fdba1025fc05a77db2ad243fa0926755a52c5e71659f4e3c
PYTHON_URLLIB3_SITE = https://files.pythonhosted.org/packages/43/6d/fa469ae21497ddc8bc93e5877702dca7cb8f911e337aca7452b5724f1bb6
PYTHON_URLLIB3_LICENSE = MIT
PYTHON_URLLIB3_LICENSE_FILES = LICENSE.txt
PYTHON_URLLIB3_CPE_ID_VENDOR = python
Expand Down
4 changes: 2 additions & 2 deletions package/python-websockets/python-websockets.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/websockets/json
md5 49d033c8236aa56ba2524f65570a27c5 websockets-12.0.tar.gz
sha256 81df9cbcbb6c260de1e007e58c011bfebe2dafc8435107b0537f393dd38c8b1b websockets-12.0.tar.gz
md5 b3d1cc7a447c4f91b0c6f24beaf312cc websockets-13.0.1.tar.gz
sha256 4d6ece65099411cfd9a48d13701d7438d9c34f479046b34c50ff60bb8834e43e websockets-13.0.1.tar.gz
# Locally computed sha256 checksums
sha256 3d6a0c050d8bec52fabad502e45fb25bd02bcadbd70dea34d447b6a0ff4e6da8 LICENSE
Loading