* [Buildroot] [PATCH 1/2] package/python-brotli: drop C++ depends
@ 2024-01-07 21:42 James Hilliard
2024-01-07 21:42 ` [Buildroot] [PATCH 2/2] package/python-aiohttp: bump to version 3.9.1 James Hilliard
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: James Hilliard @ 2024-01-07 21:42 UTC (permalink / raw)
To: buildroot; +Cc: James Hilliard, Asaf Kahlon
C++ is no longer required for python-brotli as of version 1.1.0:
https://github.com/google/brotli/commit/c8df4b3049ff1283fc4525defbcd003188f88963
Drop python-brotli C++ depends comment from python-weasyprint
reverse dependency.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
package/python-brotli/Config.in | 4 ----
package/python-weasyprint/Config.in | 2 +-
2 files changed, 1 insertion(+), 5 deletions(-)
diff --git a/package/python-brotli/Config.in b/package/python-brotli/Config.in
index c31315392b..ca493bfeff 100644
--- a/package/python-brotli/Config.in
+++ b/package/python-brotli/Config.in
@@ -1,10 +1,6 @@
config BR2_PACKAGE_PYTHON_BROTLI
bool "python-brotli"
- depends on BR2_INSTALL_LIBSTDCPP
help
Python bindings for the Brotli compression library.
https://github.com/google/brotli
-
-comment "python-brotli needs a toolchain w/ C++"
- depends on !BR2_INSTALL_LIBSTDCPP
diff --git a/package/python-weasyprint/Config.in b/package/python-weasyprint/Config.in
index 18d72d742e..65210fb1eb 100644
--- a/package/python-weasyprint/Config.in
+++ b/package/python-weasyprint/Config.in
@@ -1,6 +1,6 @@
config BR2_PACKAGE_PYTHON_WEASYPRINT
bool "python-weasyprint"
- depends on BR2_INSTALL_LIBSTDCPP # python-brotli, python-zopfli
+ depends on BR2_INSTALL_LIBSTDCPP # python-zopfli
select BR2_PACKAGE_PYTHON_BROTLI # runtime
select BR2_PACKAGE_PYTHON_CFFI # runtime
select BR2_PACKAGE_PYTHON_CSSSELECT2 # runtime
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] package/python-aiohttp: bump to version 3.9.1
2024-01-07 21:42 [Buildroot] [PATCH 1/2] package/python-brotli: drop C++ depends James Hilliard
@ 2024-01-07 21:42 ` James Hilliard
2024-01-10 20:19 ` [Buildroot] [PATCH 1/2] package/python-brotli: drop C++ depends Thomas Petazzoni via buildroot
2024-01-13 20:04 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: James Hilliard @ 2024-01-07 21:42 UTC (permalink / raw)
To: buildroot; +Cc: James Hilliard, Asaf Kahlon
Drop python-chardet/python-cchardet runtime dependencies.
Drop python-typing-extensions runtime dependencies.
Add new python-brotli runtime dependency.
Add new python-frozenlist runtime dependency.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
package/python-aiohttp/Config.in | 5 ++---
package/python-aiohttp/python-aiohttp.hash | 4 ++--
package/python-aiohttp/python-aiohttp.mk | 4 ++--
3 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/package/python-aiohttp/Config.in b/package/python-aiohttp/Config.in
index 35c162b948..0507106fe7 100644
--- a/package/python-aiohttp/Config.in
+++ b/package/python-aiohttp/Config.in
@@ -4,10 +4,9 @@ config BR2_PACKAGE_PYTHON_AIOHTTP
select BR2_PACKAGE_PYTHON_AIOSIGNAL # runtime
select BR2_PACKAGE_PYTHON_ASYNC_TIMEOUT # runtime
select BR2_PACKAGE_PYTHON_ATTRS # runtime
- select BR2_PACKAGE_PYTHON_CCHARDET if BR2_INSTALL_LIBSTDCPP # runtime
- select BR2_PACKAGE_PYTHON_CHARDET if !BR2_INSTALL_LIBSTDCPP # runtime
+ select BR2_PACKAGE_PYTHON_BROTLI # runtime
+ select BR2_PACKAGE_PYTHON_FROZENLIST # runtime
select BR2_PACKAGE_PYTHON_MULTIDICT # runtime
- select BR2_PACKAGE_PYTHON_TYPING_EXTENSIONS # runtime
select BR2_PACKAGE_PYTHON_YARL # runtime
select BR2_PACKAGE_PYTHON3_ZLIB # runtime
help
diff --git a/package/python-aiohttp/python-aiohttp.hash b/package/python-aiohttp/python-aiohttp.hash
index 35c899cb0f..374e66ae8d 100644
--- a/package/python-aiohttp/python-aiohttp.hash
+++ b/package/python-aiohttp/python-aiohttp.hash
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/aiohttp/json
-md5 bdf57b82c0d1804f458e10320bb0dcd5 aiohttp-3.8.6.tar.gz
-sha256 b0cf2a4501bff9330a8a5248b4ce951851e415bdcce9dc158e76cfd55e15085c aiohttp-3.8.6.tar.gz
+md5 264e1b4fbe9f09050523c03f4d9b5ee2 aiohttp-3.9.1.tar.gz
+sha256 8fc49a87ac269d4529da45871e2ffb6874e87779c3d0e2ccd813c0899221239d aiohttp-3.9.1.tar.gz
# Locally computed sha256 checksums
sha256 9f80d0db7d755a941db4572172c270ecbd8f082ba215ddd095985942ed94a9eb LICENSE.txt
diff --git a/package/python-aiohttp/python-aiohttp.mk b/package/python-aiohttp/python-aiohttp.mk
index e814fc9224..2cb9058b97 100644
--- a/package/python-aiohttp/python-aiohttp.mk
+++ b/package/python-aiohttp/python-aiohttp.mk
@@ -4,9 +4,9 @@
#
################################################################################
-PYTHON_AIOHTTP_VERSION = 3.8.6
+PYTHON_AIOHTTP_VERSION = 3.9.1
PYTHON_AIOHTTP_SOURCE = aiohttp-$(PYTHON_AIOHTTP_VERSION).tar.gz
-PYTHON_AIOHTTP_SITE = https://files.pythonhosted.org/packages/fd/01/f180d31923751fd20185c96938994823f00918ee5ac7b058edc005382406
+PYTHON_AIOHTTP_SITE = https://files.pythonhosted.org/packages/54/07/9467d3f8dae29b14f423b414d9e67512a76743c5bb7686fb05fe10c9cc3e
PYTHON_AIOHTTP_SETUP_TYPE = setuptools
PYTHON_AIOHTTP_LICENSE = Apache-2.0
PYTHON_AIOHTTP_LICENSE_FILES = LICENSE.txt
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/python-brotli: drop C++ depends
2024-01-07 21:42 [Buildroot] [PATCH 1/2] package/python-brotli: drop C++ depends James Hilliard
2024-01-07 21:42 ` [Buildroot] [PATCH 2/2] package/python-aiohttp: bump to version 3.9.1 James Hilliard
@ 2024-01-10 20:19 ` Thomas Petazzoni via buildroot
2024-01-13 20:04 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-01-10 20:19 UTC (permalink / raw)
To: James Hilliard; +Cc: Asaf Kahlon, buildroot
On Sun, 7 Jan 2024 14:42:54 -0700
James Hilliard <james.hilliard1@gmail.com> wrote:
> C++ is no longer required for python-brotli as of version 1.1.0:
> https://github.com/google/brotli/commit/c8df4b3049ff1283fc4525defbcd003188f88963
>
> Drop python-brotli C++ depends comment from python-weasyprint
> reverse dependency.
>
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> ---
> package/python-brotli/Config.in | 4 ----
> package/python-weasyprint/Config.in | 2 +-
> 2 files changed, 1 insertion(+), 5 deletions(-)
Both patches applied to master, thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/python-brotli: drop C++ depends
2024-01-07 21:42 [Buildroot] [PATCH 1/2] package/python-brotli: drop C++ depends James Hilliard
2024-01-07 21:42 ` [Buildroot] [PATCH 2/2] package/python-aiohttp: bump to version 3.9.1 James Hilliard
2024-01-10 20:19 ` [Buildroot] [PATCH 1/2] package/python-brotli: drop C++ depends Thomas Petazzoni via buildroot
@ 2024-01-13 20:04 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2024-01-13 20:04 UTC (permalink / raw)
To: James Hilliard; +Cc: Asaf Kahlon, buildroot
>>>>> "James" == James Hilliard <james.hilliard1@gmail.com> writes:
> C++ is no longer required for python-brotli as of version 1.1.0:
> https://github.com/google/brotli/commit/c8df4b3049ff1283fc4525defbcd003188f88963
> Drop python-brotli C++ depends comment from python-weasyprint
> reverse dependency.
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Committed to 2023.11.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-01-13 20:04 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-07 21:42 [Buildroot] [PATCH 1/2] package/python-brotli: drop C++ depends James Hilliard
2024-01-07 21:42 ` [Buildroot] [PATCH 2/2] package/python-aiohttp: bump to version 3.9.1 James Hilliard
2024-01-10 20:19 ` [Buildroot] [PATCH 1/2] package/python-brotli: drop C++ depends Thomas Petazzoni via buildroot
2024-01-13 20:04 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox