Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/4] package/python-charset-normalizer: add host variant
@ 2021-11-27 10:02 James Hilliard
  2021-11-27 10:02 ` [Buildroot] [PATCH 2/4] package/python-idna: " James Hilliard
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: James Hilliard @ 2021-11-27 10:02 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard, Thomas Petazzoni, Asaf Kahlon

A host variant of the python-charset-normalizer package will be needed
for the host-python-requests package.

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

diff --git a/package/python-charset-normalizer/python-charset-normalizer.mk b/package/python-charset-normalizer/python-charset-normalizer.mk
index e1b805fbfb..7fe9f96996 100644
--- a/package/python-charset-normalizer/python-charset-normalizer.mk
+++ b/package/python-charset-normalizer/python-charset-normalizer.mk
@@ -10,5 +10,7 @@ PYTHON_CHARSET_NORMALIZER_SITE = https://files.pythonhosted.org/packages/9f/c5/3
 PYTHON_CHARSET_NORMALIZER_SETUP_TYPE = setuptools
 PYTHON_CHARSET_NORMALIZER_LICENSE = MIT
 PYTHON_CHARSET_NORMALIZER_LICENSE_FILES = LICENSE
+HOST_PYTHON_CHARSET_NORMALIZER_NEEDS_HOST_PYTHON = python3
 
 $(eval $(python-package))
+$(eval $(host-python-package))
-- 
2.25.1

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

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

* [Buildroot] [PATCH 2/4] package/python-idna: add host variant
  2021-11-27 10:02 [Buildroot] [PATCH 1/4] package/python-charset-normalizer: add host variant James Hilliard
@ 2021-11-27 10:02 ` James Hilliard
  2021-11-27 10:02 ` [Buildroot] [PATCH 3/4] package/python-urllib3: " James Hilliard
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: James Hilliard @ 2021-11-27 10:02 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard, Thomas Petazzoni, Asaf Kahlon

A host variant of the python-idna package will be needed for the
host-python-requests package.

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

diff --git a/package/python-idna/python-idna.mk b/package/python-idna/python-idna.mk
index 7314d85493..a2c842f1e7 100644
--- a/package/python-idna/python-idna.mk
+++ b/package/python-idna/python-idna.mk
@@ -10,5 +10,7 @@ PYTHON_IDNA_SITE = https://files.pythonhosted.org/packages/cb/38/4c4d00ddfa48abe
 PYTHON_IDNA_LICENSE = BSD-3-Clause
 PYTHON_IDNA_LICENSE_FILES = LICENSE.md
 PYTHON_IDNA_SETUP_TYPE = setuptools
+HOST_PYTHON_IDNA_NEEDS_HOST_PYTHON = python3
 
 $(eval $(python-package))
+$(eval $(host-python-package))
-- 
2.25.1

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

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

* [Buildroot] [PATCH 3/4] package/python-urllib3: add host variant
  2021-11-27 10:02 [Buildroot] [PATCH 1/4] package/python-charset-normalizer: add host variant James Hilliard
  2021-11-27 10:02 ` [Buildroot] [PATCH 2/4] package/python-idna: " James Hilliard
@ 2021-11-27 10:02 ` James Hilliard
  2021-11-27 10:02 ` [Buildroot] [PATCH 4/4] package/python-requests: add missing host dependencies James Hilliard
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: James Hilliard @ 2021-11-27 10:02 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard, Thomas Petazzoni, Asaf Kahlon

A host variant of the python-urllib3 package will be needed for the
host-python-requests package.

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

diff --git a/package/python-urllib3/python-urllib3.mk b/package/python-urllib3/python-urllib3.mk
index a1d22e023a..9580d9b6b9 100644
--- a/package/python-urllib3/python-urllib3.mk
+++ b/package/python-urllib3/python-urllib3.mk
@@ -12,5 +12,7 @@ PYTHON_URLLIB3_LICENSE_FILES = LICENSE.txt
 PYTHON_URLLIB3_CPE_ID_VENDOR = python
 PYTHON_URLLIB3_CPE_ID_PRODUCT = urllib3
 PYTHON_URLLIB3_SETUP_TYPE = setuptools
+HOST_PYTHON_URLLIB3_NEEDS_HOST_PYTHON = python3
 
 $(eval $(python-package))
+$(eval $(host-python-package))
-- 
2.25.1

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

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

* [Buildroot] [PATCH 4/4] package/python-requests: add missing host dependencies
  2021-11-27 10:02 [Buildroot] [PATCH 1/4] package/python-charset-normalizer: add host variant James Hilliard
  2021-11-27 10:02 ` [Buildroot] [PATCH 2/4] package/python-idna: " James Hilliard
  2021-11-27 10:02 ` [Buildroot] [PATCH 3/4] package/python-urllib3: " James Hilliard
@ 2021-11-27 10:02 ` James Hilliard
  2021-12-06 21:17 ` [Buildroot] [PATCH 1/4] package/python-charset-normalizer: add host variant Arnout Vandecappelle
  2022-01-14 15:46 ` Peter Korsgaard
  4 siblings, 0 replies; 6+ messages in thread
From: James Hilliard @ 2021-11-27 10:02 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard, Thomas Petazzoni, Asaf Kahlon

The following are runtime dependencies for host-python-requests:
host-python-certifi
host-python-charset-normalizer
host-python-idna
host-python-urllib3

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

diff --git a/package/python-requests/python-requests.mk b/package/python-requests/python-requests.mk
index 474d2033ac..74cc91ef01 100644
--- a/package/python-requests/python-requests.mk
+++ b/package/python-requests/python-requests.mk
@@ -13,6 +13,11 @@ PYTHON_REQUESTS_LICENSE_FILES = LICENSE
 PYTHON_REQUESTS_CPE_ID_VENDOR = python
 PYTHON_REQUESTS_CPE_ID_PRODUCT = requests
 HOST_PYTHON_REQUESTS_NEEDS_HOST_PYTHON = python3
+HOST_PYTHON_REQUESTS_DEPENDENCIES = \
+	host-python-certifi \
+	host-python-charset-normalizer \
+	host-python-idna \
+	host-python-urllib3
 
 $(eval $(python-package))
 $(eval $(host-python-package))
-- 
2.25.1

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

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

* Re: [Buildroot] [PATCH 1/4] package/python-charset-normalizer: add host variant
  2021-11-27 10:02 [Buildroot] [PATCH 1/4] package/python-charset-normalizer: add host variant James Hilliard
                   ` (2 preceding siblings ...)
  2021-11-27 10:02 ` [Buildroot] [PATCH 4/4] package/python-requests: add missing host dependencies James Hilliard
@ 2021-12-06 21:17 ` Arnout Vandecappelle
  2022-01-14 15:46 ` Peter Korsgaard
  4 siblings, 0 replies; 6+ messages in thread
From: Arnout Vandecappelle @ 2021-12-06 21:17 UTC (permalink / raw)
  To: James Hilliard, buildroot; +Cc: Asaf Kahlon, Thomas Petazzoni



On 27/11/2021 11:02, James Hilliard wrote:
> A host variant of the python-charset-normalizer package will be needed
> for the host-python-requests package.
> 
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>

  Series applied to master, thanks.

  Regards,
  Arnout

> ---
>   package/python-charset-normalizer/python-charset-normalizer.mk | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/package/python-charset-normalizer/python-charset-normalizer.mk b/package/python-charset-normalizer/python-charset-normalizer.mk
> index e1b805fbfb..7fe9f96996 100644
> --- a/package/python-charset-normalizer/python-charset-normalizer.mk
> +++ b/package/python-charset-normalizer/python-charset-normalizer.mk
> @@ -10,5 +10,7 @@ PYTHON_CHARSET_NORMALIZER_SITE = https://files.pythonhosted.org/packages/9f/c5/3
>   PYTHON_CHARSET_NORMALIZER_SETUP_TYPE = setuptools
>   PYTHON_CHARSET_NORMALIZER_LICENSE = MIT
>   PYTHON_CHARSET_NORMALIZER_LICENSE_FILES = LICENSE
> +HOST_PYTHON_CHARSET_NORMALIZER_NEEDS_HOST_PYTHON = python3
>   
>   $(eval $(python-package))
> +$(eval $(host-python-package))
> 
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/4] package/python-charset-normalizer: add host variant
  2021-11-27 10:02 [Buildroot] [PATCH 1/4] package/python-charset-normalizer: add host variant James Hilliard
                   ` (3 preceding siblings ...)
  2021-12-06 21:17 ` [Buildroot] [PATCH 1/4] package/python-charset-normalizer: add host variant Arnout Vandecappelle
@ 2022-01-14 15:46 ` Peter Korsgaard
  4 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2022-01-14 15:46 UTC (permalink / raw)
  To: James Hilliard; +Cc: Asaf Kahlon, Thomas Petazzoni, buildroot

>>>>> "James" == James Hilliard <james.hilliard1@gmail.com> writes:

 > A host variant of the python-charset-normalizer package will be needed
 > for the host-python-requests package.

 > Signed-off-by: James Hilliard <james.hilliard1@gmail.com>

Committed all 4 to 2021.11.x, thanks (no host-python-requests in 2021.02.x)

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-01-14 15:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-27 10:02 [Buildroot] [PATCH 1/4] package/python-charset-normalizer: add host variant James Hilliard
2021-11-27 10:02 ` [Buildroot] [PATCH 2/4] package/python-idna: " James Hilliard
2021-11-27 10:02 ` [Buildroot] [PATCH 3/4] package/python-urllib3: " James Hilliard
2021-11-27 10:02 ` [Buildroot] [PATCH 4/4] package/python-requests: add missing host dependencies James Hilliard
2021-12-06 21:17 ` [Buildroot] [PATCH 1/4] package/python-charset-normalizer: add host variant Arnout Vandecappelle
2022-01-14 15:46 ` Peter Korsgaard

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