From 03fa337577ea7ee1e0f5190e23855eab45a8a585 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Fri, 6 Sep 2024 16:12:11 -0700 Subject: [PATCH 01/18] package/linux-firmware: Add option for Rocketport 2 firmware Add an option to install the firmware file required by the Linux rp2 driver. Signed-off-by: Florian Fainelli [yann.morin.1998@free.fr: fix indentation in help text] Signed-off-by: Yann E. MORIN --- package/linux-firmware/Config.in | 10 ++++++++++ package/linux-firmware/linux-firmware.mk | 4 ++++ 2 files changed, 14 insertions(+) diff --git a/package/linux-firmware/Config.in b/package/linux-firmware/Config.in index 651ca4508764..4a17ceaf0bea 100644 --- a/package/linux-firmware/Config.in +++ b/package/linux-firmware/Config.in @@ -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 diff --git a/package/linux-firmware/linux-firmware.mk b/package/linux-firmware/linux-firmware.mk index e40eab8dc85f..ae10e160b97f 100644 --- a/package/linux-firmware/linux-firmware.mk +++ b/package/linux-firmware/linux-firmware.mk @@ -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 From 2ba879cc38733f5160b0729bac1b9e2f001f35e1 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sat, 7 Sep 2024 19:16:29 +0200 Subject: [PATCH 02/18] arch/Config.in.arc: fix indentation Signed-off-by: Yann E. MORIN --- arch/Config.in.arc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/Config.in.arc b/arch/Config.in.arc index 388d3496bcaf..f367c4913113 100644 --- a/arch/Config.in.arc +++ b/arch/Config.in.arc @@ -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" @@ -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 From a7552293bb01e6189d3bad14bbf071431510a1ad Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sat, 7 Sep 2024 19:17:14 +0200 Subject: [PATCH 03/18] package: fix a few Config.in indentation Signed-off-by: Yann E. MORIN --- package/kodi/Config.in | 2 +- package/mmc-utils/Config.in | 6 +++--- package/rauc/Config.in | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package/kodi/Config.in b/package/kodi/Config.in index 25c5758b8503..1977263db8eb 100644 --- a/package/kodi/Config.in +++ b/package/kodi/Config.in @@ -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 diff --git a/package/mmc-utils/Config.in b/package/mmc-utils/Config.in index d938b5dea34c..3275ba0d4417 100644 --- a/package/mmc-utils/Config.in +++ b/package/mmc-utils/Config.in @@ -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 diff --git a/package/rauc/Config.in b/package/rauc/Config.in index 01a321e3dda5..af0b99c36b29 100644 --- a/package/rauc/Config.in +++ b/package/rauc/Config.in @@ -33,7 +33,7 @@ config BR2_PACKAGE_RAUC_GPT select BR2_PACKAGE_UTIL_LINUX_LIBS select BR2_PACKAGE_UTIL_LINUX_LIBFDISK help - This option enables support for GPT partition tables. + This option enables support for GPT partition tables. config BR2_PACKAGE_RAUC_NETWORK bool "network support" From a87abcf6da65f3e6aa257aaab58a24eec32a5903 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sun, 9 Jun 2024 09:54:44 +0200 Subject: [PATCH 04/18] Makefile: run PPD and RPATH fixup in host-fialize Currently, the gdbinit is generated and installed during post install hooks, either from the gdb package, or from the external-toolchain package. When using per-package directories (PPD), the staging directory of the either package is stored in the generated gdbinit, which is not going to be valid when all the PPD staging dirs get merged into the final staging: it would lack any library installed afterwards, i.e. mostly everything would be missing (but the libraries from the C toolchain in the case of an external toolchain). Similarly, all the RPATH will point to various PPD drectories. This does not cause any issue when the final host is aggregated, because the PPD directories still exist when we call programs from there (e.g. from the fs infra, or from post-image scripts). However, we knew that would not always be possible to keep the PPD directories: we have the prepare-sdk rule that runs a cleanup pass on the RPATH, and also applies the generic PPD fixups. When we introduced prepare-sdk in c32ad51cbf2a (core/sdk: generate the SDK tarball ourselves), we did not yet have support for PPD for the host directory, and especially, we did not have the host-finalize rule, which was only introduced in d0f4f95e390b (Makefile: rework main directory creation logic) which kick-started the introduction of PPD. At that point, we did not realise that the rpath fixups from prepare-sdk, would be better moved to the new host-finalize rule, because that had no impact unless one would need an SDK. Later, in 25e60fbe1cab (Makefile: fix SDK relocation for per-package-dirs), we eventually introduced the PPD generic fixups in the prepare-sdk rule. Again, we did not realise that those fixups would be better placed in the host-finalize rule rather than the prepare-sdk. While fixing the RPATH in host-finalize is not critical, fixing up the PPD paths actually is, as the gdbinit case demonstrate. As such, move the PPD fixups to the host-finalize step, and while at it, also move the RPATH fixups. This now does not leave much to do in the prepare-sdk step, and that could very well be moved to the host-finalize rule as well. However, some people may have started to rely on prepare-sdk in its 6 years of existence, and the little script it installs is not needed unless one really needs an SDK. So leave it as it is for now. Reported-by: Casey Reeves Signed-off-by: Yann E. MORIN Tested-by: Casey Reeves Cc: Thomas Petazzoni Cc: Brandon Maier Tested-by: Brandon Maier Acked-by: TIAN Yuanhao --- Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index b134311cfa5d..24fe2f42c509 100644 --- a/Makefile +++ b/Makefile @@ -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 @@ -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) From 04eab07b0843e7a780fe78900d4865f4e9f33ea4 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 10:45:49 -0600 Subject: [PATCH 05/18] package/python-asyncssh: bump to version 2.17.0 Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-asyncssh/python-asyncssh.hash | 4 ++-- package/python-asyncssh/python-asyncssh.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/python-asyncssh/python-asyncssh.hash b/package/python-asyncssh/python-asyncssh.hash index f74cbe9c8369..6550b850ba08 100644 --- a/package/python-asyncssh/python-asyncssh.hash +++ b/package/python-asyncssh/python-asyncssh.hash @@ -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 diff --git a/package/python-asyncssh/python-asyncssh.mk b/package/python-asyncssh/python-asyncssh.mk index 1f6b9d79a256..b286fc42b22a 100644 --- a/package/python-asyncssh/python-asyncssh.mk +++ b/package/python-asyncssh/python-asyncssh.mk @@ -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 From 7011c7feb6875db0d13b148dbfd9aaaba92b517e Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 10:54:22 -0600 Subject: [PATCH 06/18] package/python-betterproto: bump to version 2.0.0b7 Add new python-typing-extensions runtime dependency. Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-betterproto/Config.in | 1 + package/python-betterproto/python-betterproto.hash | 4 ++-- package/python-betterproto/python-betterproto.mk | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/package/python-betterproto/Config.in b/package/python-betterproto/Config.in index 8548fd43ba6f..927fb6d2d6aa 100644 --- a/package/python-betterproto/Config.in +++ b/package/python-betterproto/Config.in @@ -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. diff --git a/package/python-betterproto/python-betterproto.hash b/package/python-betterproto/python-betterproto.hash index 8d23d2ae5671..2eed9a490d21 100644 --- a/package/python-betterproto/python-betterproto.hash +++ b/package/python-betterproto/python-betterproto.hash @@ -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 diff --git a/package/python-betterproto/python-betterproto.mk b/package/python-betterproto/python-betterproto.mk index 37f72f8166fd..70eb403f6e2d 100644 --- a/package/python-betterproto/python-betterproto.mk +++ b/package/python-betterproto/python-betterproto.mk @@ -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 From 1ec9d3200dd83cb5351b1638d63fdd732992af81 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 10:57:39 -0600 Subject: [PATCH 07/18] package/python-certifi: bump to version 2024.8.30 Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-certifi/python-certifi.hash | 4 ++-- package/python-certifi/python-certifi.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/python-certifi/python-certifi.hash b/package/python-certifi/python-certifi.hash index 0bb4a4fbc4c4..6f8e0241b56c 100644 --- a/package/python-certifi/python-certifi.hash +++ b/package/python-certifi/python-certifi.hash @@ -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 diff --git a/package/python-certifi/python-certifi.mk b/package/python-certifi/python-certifi.mk index 1c5d4d262d6a..7cdd65941af6 100644 --- a/package/python-certifi/python-certifi.mk +++ b/package/python-certifi/python-certifi.mk @@ -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 From 0a45679f8b43639c7746759253114c3c06c17ff5 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 11:42:28 -0600 Subject: [PATCH 08/18] package/python-dbus-fast: bump to version 2.12.1 Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-dbus-fast/python-dbus-fast.hash | 4 ++-- package/python-dbus-fast/python-dbus-fast.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/python-dbus-fast/python-dbus-fast.hash b/package/python-dbus-fast/python-dbus-fast.hash index 08d2675443e7..b6fea9a4b9a3 100644 --- a/package/python-dbus-fast/python-dbus-fast.hash +++ b/package/python-dbus-fast/python-dbus-fast.hash @@ -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 diff --git a/package/python-dbus-fast/python-dbus-fast.mk b/package/python-dbus-fast/python-dbus-fast.mk index 1456ce5e4c6c..4703009cd92a 100644 --- a/package/python-dbus-fast/python-dbus-fast.mk +++ b/package/python-dbus-fast/python-dbus-fast.mk @@ -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 From 8884bd4f62c0d15cff6b18ca5f052c8102002798 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 12:15:17 -0600 Subject: [PATCH 09/18] package/python-httpx: bump to version 0.27.2 Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-httpx/python-httpx.hash | 4 ++-- package/python-httpx/python-httpx.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/python-httpx/python-httpx.hash b/package/python-httpx/python-httpx.hash index 381439f464e8..3ffd491c9e48 100644 --- a/package/python-httpx/python-httpx.hash +++ b/package/python-httpx/python-httpx.hash @@ -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 diff --git a/package/python-httpx/python-httpx.mk b/package/python-httpx/python-httpx.mk index edba2dbb04ac..c6a298f1920c 100644 --- a/package/python-httpx/python-httpx.mk +++ b/package/python-httpx/python-httpx.mk @@ -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 From cdabacb266fddbe4ff8727eff50ef85be9bc53c5 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 12:18:20 -0600 Subject: [PATCH 10/18] package/python-idna: bump to version 3.8 Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-idna/python-idna.hash | 4 ++-- package/python-idna/python-idna.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/python-idna/python-idna.hash b/package/python-idna/python-idna.hash index 7b22841d885e..88459b38df10 100644 --- a/package/python-idna/python-idna.hash +++ b/package/python-idna/python-idna.hash @@ -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 diff --git a/package/python-idna/python-idna.mk b/package/python-idna/python-idna.mk index b3c012ed0d32..c9b83a5bffc3 100644 --- a/package/python-idna/python-idna.mk +++ b/package/python-idna/python-idna.mk @@ -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 From 8ba362bf9493583889e355817e2edc8e915154a8 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 12:30:00 -0600 Subject: [PATCH 11/18] package/python-lxml: bump to version 5.3.0 Replace deprecated --xslt-config build option with --with-xslt-config. Replace deprecated --xml2-config build option with --with-xml2-config. Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-lxml/python-lxml.hash | 2 +- package/python-lxml/python-lxml.mk | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package/python-lxml/python-lxml.hash b/package/python-lxml/python-lxml.hash index 3eb427a80d2c..059238ffab58 100644 --- a/package/python-lxml/python-lxml.hash +++ b/package/python-lxml/python-lxml.hash @@ -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 diff --git a/package/python-lxml/python-lxml.mk b/package/python-lxml/python-lxml.mk index 2a26c132a7fd..8604b5783a0f 100644 --- a/package/python-lxml/python-lxml.mk +++ b/package/python-lxml/python-lxml.mk @@ -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. @@ -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)) From 69167af68962b77697d23fcb64cf4b2d0c2edd43 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 12:57:45 -0600 Subject: [PATCH 12/18] package/python-pyyaml: bump to version 6.0.2 Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-pyyaml/python-pyyaml.hash | 4 ++-- package/python-pyyaml/python-pyyaml.mk | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package/python-pyyaml/python-pyyaml.hash b/package/python-pyyaml/python-pyyaml.hash index e1f9412c300d..47bd6d1ef902 100644 --- a/package/python-pyyaml/python-pyyaml.hash +++ b/package/python-pyyaml/python-pyyaml.hash @@ -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 diff --git a/package/python-pyyaml/python-pyyaml.mk b/package/python-pyyaml/python-pyyaml.mk index 40a1c25758a1..1101b5927631 100644 --- a/package/python-pyyaml/python-pyyaml.mk +++ b/package/python-pyyaml/python-pyyaml.mk @@ -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 From 7fafed72b345a55825ccec1f8fa14e40ca08ac4d Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 13:02:18 -0600 Subject: [PATCH 13/18] package/python-tomlkit: bump to version 0.13.2 Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-tomlkit/python-tomlkit.hash | 4 ++-- package/python-tomlkit/python-tomlkit.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/python-tomlkit/python-tomlkit.hash b/package/python-tomlkit/python-tomlkit.hash index 8c6d3c2377b7..21e61dd5fcd8 100644 --- a/package/python-tomlkit/python-tomlkit.hash +++ b/package/python-tomlkit/python-tomlkit.hash @@ -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 diff --git a/package/python-tomlkit/python-tomlkit.mk b/package/python-tomlkit/python-tomlkit.mk index ad82719ee2a3..99b974da5df9 100644 --- a/package/python-tomlkit/python-tomlkit.mk +++ b/package/python-tomlkit/python-tomlkit.mk @@ -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 From 86fe7ea20f7c2f2fe2e0061cc131ab7189211b53 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 13:07:02 -0600 Subject: [PATCH 14/18] package/python-tortoise-orm: bump to version 0.21.6 Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-tortoise-orm/python-tortoise-orm.hash | 4 ++-- package/python-tortoise-orm/python-tortoise-orm.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/python-tortoise-orm/python-tortoise-orm.hash b/package/python-tortoise-orm/python-tortoise-orm.hash index 4796c8277fc3..5a57e3af1107 100644 --- a/package/python-tortoise-orm/python-tortoise-orm.hash +++ b/package/python-tortoise-orm/python-tortoise-orm.hash @@ -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 diff --git a/package/python-tortoise-orm/python-tortoise-orm.mk b/package/python-tortoise-orm/python-tortoise-orm.mk index cc1c2126b7e8..eb8ba8e0533e 100644 --- a/package/python-tortoise-orm/python-tortoise-orm.mk +++ b/package/python-tortoise-orm/python-tortoise-orm.mk @@ -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 From 901d6fdd25bd6aaa8d2f8a23fa728ae89cca7283 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 13:11:18 -0600 Subject: [PATCH 15/18] package/python-urllib3: bump to version 2.2.2 Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-urllib3/python-urllib3.hash | 4 ++-- package/python-urllib3/python-urllib3.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/python-urllib3/python-urllib3.hash b/package/python-urllib3/python-urllib3.hash index 209cfe277eaa..c6ff8bd24940 100644 --- a/package/python-urllib3/python-urllib3.hash +++ b/package/python-urllib3/python-urllib3.hash @@ -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 diff --git a/package/python-urllib3/python-urllib3.mk b/package/python-urllib3/python-urllib3.mk index ba041082db36..55e2856545eb 100644 --- a/package/python-urllib3/python-urllib3.mk +++ b/package/python-urllib3/python-urllib3.mk @@ -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 From ef31c359a3dce3adf0d5380b22e22c95351f6be7 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 13:19:39 -0600 Subject: [PATCH 16/18] package/python-websockets: bump to version 13.0.1 Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-websockets/python-websockets.hash | 4 ++-- package/python-websockets/python-websockets.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/python-websockets/python-websockets.hash b/package/python-websockets/python-websockets.hash index 8d0bda501cba..33d28745b006 100644 --- a/package/python-websockets/python-websockets.hash +++ b/package/python-websockets/python-websockets.hash @@ -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 diff --git a/package/python-websockets/python-websockets.mk b/package/python-websockets/python-websockets.mk index 2b8761c0290b..00d69f9dddee 100644 --- a/package/python-websockets/python-websockets.mk +++ b/package/python-websockets/python-websockets.mk @@ -4,9 +4,9 @@ # ################################################################################ -PYTHON_WEBSOCKETS_VERSION = 12.0 +PYTHON_WEBSOCKETS_VERSION = 13.0.1 PYTHON_WEBSOCKETS_SOURCE = websockets-$(PYTHON_WEBSOCKETS_VERSION).tar.gz -PYTHON_WEBSOCKETS_SITE = https://files.pythonhosted.org/packages/2e/62/7a7874b7285413c954a4cca3c11fd851f11b2fe5b4ae2d9bee4f6d9bdb10 +PYTHON_WEBSOCKETS_SITE = https://files.pythonhosted.org/packages/8f/1c/78687e0267b09412409ac134f10fd14d14ac6475da892a8b09a02d0f6ae2 PYTHON_WEBSOCKETS_SETUP_TYPE = setuptools PYTHON_WEBSOCKETS_LICENSE = BSD-3-Clause PYTHON_WEBSOCKETS_LICENSE_FILES = LICENSE From f3a0da611bff2c18d6b10fc140c8686107d1daf1 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 14:09:14 -0600 Subject: [PATCH 17/18] package/python-fastapi: bump to version 0.114.0 Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-fastapi/python-fastapi.hash | 4 ++-- package/python-fastapi/python-fastapi.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/python-fastapi/python-fastapi.hash b/package/python-fastapi/python-fastapi.hash index 810f31023c17..061266cd6dd8 100644 --- a/package/python-fastapi/python-fastapi.hash +++ b/package/python-fastapi/python-fastapi.hash @@ -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 diff --git a/package/python-fastapi/python-fastapi.mk b/package/python-fastapi/python-fastapi.mk index 210abcfa3d06..b6332e9de5e3 100644 --- a/package/python-fastapi/python-fastapi.mk +++ b/package/python-fastapi/python-fastapi.mk @@ -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 From be5a0ce9bc52eb43d0c597097b6716809ed0098d Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 6 Sep 2024 14:11:29 -0600 Subject: [PATCH 18/18] package/python-starlette: bump to version 0.38.4 Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-starlette/python-starlette.hash | 4 ++-- package/python-starlette/python-starlette.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/python-starlette/python-starlette.hash b/package/python-starlette/python-starlette.hash index eca8cb8fd16c..b5ba43c06103 100644 --- a/package/python-starlette/python-starlette.hash +++ b/package/python-starlette/python-starlette.hash @@ -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 diff --git a/package/python-starlette/python-starlette.mk b/package/python-starlette/python-starlette.mk index bf38b1375bdb..1a2b7532f753 100644 --- a/package/python-starlette/python-starlette.mk +++ b/package/python-starlette/python-starlette.mk @@ -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