Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/python-dunamai: use poetry setup type
@ 2024-11-05 17:52 James Hilliard
  2024-11-06 20:19 ` Fiona Klute via buildroot
  2024-11-06 22:27 ` Thomas Petazzoni via buildroot
  0 siblings, 2 replies; 3+ messages in thread
From: James Hilliard @ 2024-11-05 17:52 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard, Fiona Klute, Asaf Kahlon

Use the new poetry setup type which automatically pulls in the
host-python-poetry-core dependency.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 package/python-dunamai/python-dunamai.mk | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/package/python-dunamai/python-dunamai.mk b/package/python-dunamai/python-dunamai.mk
index c3ab45fd6e..bd6c71fd6a 100644
--- a/package/python-dunamai/python-dunamai.mk
+++ b/package/python-dunamai/python-dunamai.mk
@@ -7,10 +7,9 @@
 PYTHON_DUNAMAI_VERSION = 1.22.0
 PYTHON_DUNAMAI_SOURCE = dunamai-$(PYTHON_DUNAMAI_VERSION).tar.gz
 PYTHON_DUNAMAI_SITE = https://files.pythonhosted.org/packages/a0/fe/aee602f08765de4dd753d2e5d6cbd480857182e345f161f7a19ad1979e4d
-PYTHON_DUNAMAI_SETUP_TYPE = pep517
+PYTHON_DUNAMAI_SETUP_TYPE = poetry
 PYTHON_DUNAMAI_LICENSE = MIT
 PYTHON_DUNAMAI_LICENSE_FILES = LICENSE
-HOST_PYTHON_DUNAMAI_DEPENDENCIES = host-python-poetry-core \
-	host-python-packaging
+HOST_PYTHON_DUNAMAI_DEPENDENCIES = host-python-packaging
 
 $(eval $(host-python-package))
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/python-dunamai: use poetry setup type
  2024-11-05 17:52 [Buildroot] [PATCH 1/1] package/python-dunamai: use poetry setup type James Hilliard
@ 2024-11-06 20:19 ` Fiona Klute via buildroot
  2024-11-06 22:27 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Fiona Klute via buildroot @ 2024-11-06 20:19 UTC (permalink / raw)
  To: James Hilliard, buildroot; +Cc: Asaf Kahlon

Am 05.11.24 um 18:52 schrieb James Hilliard:
> Use the new poetry setup type which automatically pulls in the
> host-python-poetry-core dependency.
>
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>

Tested-by: Fiona Klute (WIWA) <fiona.klute@gmx.de>
Reviewed-by: Fiona Klute (WIWA) <fiona.klute@gmx.de>

Thank you!

> ---
>   package/python-dunamai/python-dunamai.mk | 5 ++---
>   1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/package/python-dunamai/python-dunamai.mk b/package/python-dunamai/python-dunamai.mk
> index c3ab45fd6e..bd6c71fd6a 100644
> --- a/package/python-dunamai/python-dunamai.mk
> +++ b/package/python-dunamai/python-dunamai.mk
> @@ -7,10 +7,9 @@
>   PYTHON_DUNAMAI_VERSION = 1.22.0
>   PYTHON_DUNAMAI_SOURCE = dunamai-$(PYTHON_DUNAMAI_VERSION).tar.gz
>   PYTHON_DUNAMAI_SITE = https://files.pythonhosted.org/packages/a0/fe/aee602f08765de4dd753d2e5d6cbd480857182e345f161f7a19ad1979e4d
> -PYTHON_DUNAMAI_SETUP_TYPE = pep517
> +PYTHON_DUNAMAI_SETUP_TYPE = poetry
>   PYTHON_DUNAMAI_LICENSE = MIT
>   PYTHON_DUNAMAI_LICENSE_FILES = LICENSE
> -HOST_PYTHON_DUNAMAI_DEPENDENCIES = host-python-poetry-core \
> -	host-python-packaging
> +HOST_PYTHON_DUNAMAI_DEPENDENCIES = host-python-packaging
>
>   $(eval $(host-python-package))

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/python-dunamai: use poetry setup type
  2024-11-05 17:52 [Buildroot] [PATCH 1/1] package/python-dunamai: use poetry setup type James Hilliard
  2024-11-06 20:19 ` Fiona Klute via buildroot
@ 2024-11-06 22:27 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-11-06 22:27 UTC (permalink / raw)
  To: James Hilliard; +Cc: buildroot, Fiona Klute, Asaf Kahlon

On Tue,  5 Nov 2024 10:52:15 -0700
James Hilliard <james.hilliard1@gmail.com> wrote:

> Use the new poetry setup type which automatically pulls in the
> host-python-poetry-core dependency.
> 
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> ---
>  package/python-dunamai/python-dunamai.mk | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)

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] 3+ messages in thread

end of thread, other threads:[~2024-11-06 22:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-05 17:52 [Buildroot] [PATCH 1/1] package/python-dunamai: use poetry setup type James Hilliard
2024-11-06 20:19 ` Fiona Klute via buildroot
2024-11-06 22:27 ` Thomas Petazzoni via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox