All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] boot/uboot: depend on host-python-setuptools
@ 2022-02-12 12:46 Arnout Vandecappelle (Essensium/Mind)
  2022-02-12 12:46 ` [Buildroot] [PATCH 2/2] package/python-regex: remove outdated comment Arnout Vandecappelle (Essensium/Mind)
  2022-02-12 13:48 ` [Buildroot] [PATCH 1/2] boot/uboot: depend on host-python-setuptools Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Arnout Vandecappelle (Essensium/Mind) @ 2022-02-12 12:46 UTC (permalink / raw)
  To: buildroot

host-python3-setuptools was removed, we should instead use plain
host-python-setuptools.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 boot/uboot/uboot.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk
index 9e569906ce..6750069173 100644
--- a/boot/uboot/uboot.mk
+++ b/boot/uboot/uboot.mk
@@ -208,7 +208,7 @@ UBOOT_DEPENDENCIES += host-dtc
 endif
 
 ifeq ($(BR2_TARGET_UBOOT_NEEDS_PYTHON3),y)
-UBOOT_DEPENDENCIES += host-python3 host-python3-setuptools
+UBOOT_DEPENDENCIES += host-python3 host-python-setuptools
 endif
 
 ifeq ($(BR2_TARGET_UBOOT_NEEDS_PYLIBFDT),y)
-- 
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-regex: remove outdated comment
  2022-02-12 12:46 [Buildroot] [PATCH 1/2] boot/uboot: depend on host-python-setuptools Arnout Vandecappelle (Essensium/Mind)
@ 2022-02-12 12:46 ` Arnout Vandecappelle (Essensium/Mind)
  2022-02-12 13:48   ` Peter Korsgaard
  2022-02-12 13:48 ` [Buildroot] [PATCH 1/2] boot/uboot: depend on host-python-setuptools Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Arnout Vandecappelle (Essensium/Mind) @ 2022-02-12 12:46 UTC (permalink / raw)
  To: buildroot

python3-regex no longer exists, so there's no need to keep in sync with
it.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/python-regex/python-regex.mk | 1 -
 1 file changed, 1 deletion(-)

diff --git a/package/python-regex/python-regex.mk b/package/python-regex/python-regex.mk
index a90fd579ac..b93607e40f 100644
--- a/package/python-regex/python-regex.mk
+++ b/package/python-regex/python-regex.mk
@@ -4,7 +4,6 @@
 #
 ################################################################################
 
-# Please keep in sync with package/python3-regex/python3-regex.mk
 PYTHON_REGEX_VERSION = 2021.4.4
 PYTHON_REGEX_SOURCE = regex-$(PYTHON_REGEX_VERSION).tar.gz
 PYTHON_REGEX_SITE = https://files.pythonhosted.org/packages/38/3f/4c42a98c9ad7d08c16e7d23b2194a0e4f3b2914662da8bc88986e4e6de1f
-- 
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] boot/uboot: depend on host-python-setuptools
  2022-02-12 12:46 [Buildroot] [PATCH 1/2] boot/uboot: depend on host-python-setuptools Arnout Vandecappelle (Essensium/Mind)
  2022-02-12 12:46 ` [Buildroot] [PATCH 2/2] package/python-regex: remove outdated comment Arnout Vandecappelle (Essensium/Mind)
@ 2022-02-12 13:48 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2022-02-12 13:48 UTC (permalink / raw)
  To: Arnout Vandecappelle (Essensium/Mind); +Cc: buildroot

>>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> writes:

 > host-python3-setuptools was removed, we should instead use plain
 > host-python-setuptools.

 > Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

Committed, 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

* Re: [Buildroot] [PATCH 2/2] package/python-regex: remove outdated comment
  2022-02-12 12:46 ` [Buildroot] [PATCH 2/2] package/python-regex: remove outdated comment Arnout Vandecappelle (Essensium/Mind)
@ 2022-02-12 13:48   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2022-02-12 13:48 UTC (permalink / raw)
  To: Arnout Vandecappelle (Essensium/Mind); +Cc: buildroot

>>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> writes:

 > python3-regex no longer exists, so there's no need to keep in sync with
 > it.

 > Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

Committed, 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:[~2022-02-12 13:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-12 12:46 [Buildroot] [PATCH 1/2] boot/uboot: depend on host-python-setuptools Arnout Vandecappelle (Essensium/Mind)
2022-02-12 12:46 ` [Buildroot] [PATCH 2/2] package/python-regex: remove outdated comment Arnout Vandecappelle (Essensium/Mind)
2022-02-12 13:48   ` Peter Korsgaard
2022-02-12 13:48 ` [Buildroot] [PATCH 1/2] boot/uboot: depend on host-python-setuptools Peter Korsgaard

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.