* [Buildroot] [PATCH 1/1] package/python-grpc-requests: bump to version 0.1.20
@ 2024-09-15 7:38 James Hilliard
2024-09-15 8:35 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 2+ messages in thread
From: James Hilliard @ 2024-09-15 7:38 UTC (permalink / raw)
To: buildroot; +Cc: James Hilliard, Asaf Kahlon
Add new python-protobuf runtime dependency.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
package/python-grpc-requests/Config.in | 1 +
package/python-grpc-requests/python-grpc-requests.hash | 4 ++--
package/python-grpc-requests/python-grpc-requests.mk | 4 ++--
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/package/python-grpc-requests/Config.in b/package/python-grpc-requests/Config.in
index 1cdd0d3f67..ad29617795 100644
--- a/package/python-grpc-requests/Config.in
+++ b/package/python-grpc-requests/Config.in
@@ -7,6 +7,7 @@ config BR2_PACKAGE_PYTHON_GRPC_REQUESTS
select BR2_PACKAGE_PYTHON_GOOGLE_API_CORE # runtime
select BR2_PACKAGE_PYTHON_GRPCIO # runtime
select BR2_PACKAGE_PYTHON_GRPCIO_REFLECTION # runtime
+ select BR2_PACKAGE_PYTHON_PROTOBUF # runtime
help
grpc for Humans. grpc reflection support client.
diff --git a/package/python-grpc-requests/python-grpc-requests.hash b/package/python-grpc-requests/python-grpc-requests.hash
index c816a65b50..aeb5336a4c 100644
--- a/package/python-grpc-requests/python-grpc-requests.hash
+++ b/package/python-grpc-requests/python-grpc-requests.hash
@@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/grpc-requests/json
-md5 39f0d7ef45ab3620d8b63c2408af35b0 grpc_requests-0.1.13.tar.gz
-sha256 30a00493b206156b94be21f641edcbef5ea69fb43daf503390da661123520521 grpc_requests-0.1.13.tar.gz
+md5 6d63bed1f4a80fc3e59191ce69903d31 grpc_requests-0.1.20.tar.gz
+sha256 a76744d781c5a7bf3abde8dc778d24c4e17deb39d173d85096ff3caee3d15250 grpc_requests-0.1.20.tar.gz
# Locally computed sha256 checksums
sha256 c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 LICENSE
diff --git a/package/python-grpc-requests/python-grpc-requests.mk b/package/python-grpc-requests/python-grpc-requests.mk
index 9ffd73d424..7fecdf5a3c 100644
--- a/package/python-grpc-requests/python-grpc-requests.mk
+++ b/package/python-grpc-requests/python-grpc-requests.mk
@@ -4,9 +4,9 @@
#
################################################################################
-PYTHON_GRPC_REQUESTS_VERSION = 0.1.13
+PYTHON_GRPC_REQUESTS_VERSION = 0.1.20
PYTHON_GRPC_REQUESTS_SOURCE = grpc_requests-$(PYTHON_GRPC_REQUESTS_VERSION).tar.gz
-PYTHON_GRPC_REQUESTS_SITE = https://files.pythonhosted.org/packages/46/51/8981bce4ca61bce1c7b7a12dd04f6cbd35c4ea874842b06283f6bbc9a0e8
+PYTHON_GRPC_REQUESTS_SITE = https://files.pythonhosted.org/packages/92/84/f5a3874a6e10448d8c198253d2c79f7b34a23fb4a96b78a648dc468913a6
PYTHON_GRPC_REQUESTS_SETUP_TYPE = setuptools
PYTHON_GRPC_REQUESTS_LICENSE = Apache-2.0
PYTHON_GRPC_REQUESTS_LICENSE_FILES = LICENSE
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/python-grpc-requests: bump to version 0.1.20
2024-09-15 7:38 [Buildroot] [PATCH 1/1] package/python-grpc-requests: bump to version 0.1.20 James Hilliard
@ 2024-09-15 8:35 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-09-15 8:35 UTC (permalink / raw)
To: James Hilliard; +Cc: Asaf Kahlon, buildroot
Hello James,
On Sun, 15 Sep 2024 01:38:05 -0600
James Hilliard <james.hilliard1@gmail.com> wrote:
> Add new python-protobuf runtime dependency.
>
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> ---
> package/python-grpc-requests/Config.in | 1 +
> package/python-grpc-requests/python-grpc-requests.hash | 4 ++--
> package/python-grpc-requests/python-grpc-requests.mk | 4 ++--
> 3 files changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/package/python-grpc-requests/Config.in b/package/python-grpc-requests/Config.in
> index 1cdd0d3f67..ad29617795 100644
> --- a/package/python-grpc-requests/Config.in
> +++ b/package/python-grpc-requests/Config.in
> @@ -7,6 +7,7 @@ config BR2_PACKAGE_PYTHON_GRPC_REQUESTS
> select BR2_PACKAGE_PYTHON_GOOGLE_API_CORE # runtime
> select BR2_PACKAGE_PYTHON_GRPCIO # runtime
> select BR2_PACKAGE_PYTHON_GRPCIO_REFLECTION # runtime
> + select BR2_PACKAGE_PYTHON_PROTOBUF # runtime
You're adding a select, but not propagating the "depends on" of
BR2_PACKAGE_PYTHON_PROTOBUF. In this case, I have already done so as
part of your previous google-api-core bump, which selected
python-proto-plus, which selected python-protobuf, and therefore also
had this dependency. But if possible try to be careful when adding
select, and think about those dependencies.
So here, I have just updated the comment next to the
BR2_PACKAGE_HOST_PROTOBUF_ARCH_SUPPORTS depency:
- depends on BR2_PACKAGE_HOST_PROTOBUF_ARCH_SUPPORTS # python-google-api-core
+ depends on BR2_PACKAGE_HOST_PROTOBUF_ARCH_SUPPORTS # python-google-api-core, python-protobuf
Thanks!
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-09-15 8:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-15 7:38 [Buildroot] [PATCH 1/1] package/python-grpc-requests: bump to version 0.1.20 James Hilliard
2024-09-15 8:35 ` Thomas Petazzoni via buildroot
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.