All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/python-asgiref: drop Python 2 support
@ 2019-10-20 15:11 Asaf Kahlon
  2019-10-20 15:11 ` [Buildroot] [PATCH 1/1] package/python-secretstorage: " Asaf Kahlon
  2019-10-21 18:46 ` [Buildroot] [PATCH 1/1] package/python-asgiref: " Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Asaf Kahlon @ 2019-10-20 15:11 UTC (permalink / raw)
  To: buildroot

Asgiref doesn't support Python 2 since version 2.0.0.
All the recursive reverse dependencies already support Python 3 only.

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
---
 package/python-asgiref/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/python-asgiref/Config.in b/package/python-asgiref/Config.in
index d0b816c369..71069bf48b 100644
--- a/package/python-asgiref/Config.in
+++ b/package/python-asgiref/Config.in
@@ -1,4 +1,5 @@
 config BR2_PACKAGE_PYTHON_ASGIREF
+	depends on BR2_PACKAGE_PYTHON3
 	bool "python-asgiref"
 	help
 	  ASGI is a standard for Python asynchronous web apps and
-- 
2.20.1

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

* [Buildroot] [PATCH 1/1] package/python-secretstorage: drop Python 2 support
  2019-10-20 15:11 [Buildroot] [PATCH 1/1] package/python-asgiref: drop Python 2 support Asaf Kahlon
@ 2019-10-20 15:11 ` Asaf Kahlon
  2019-10-21 18:46   ` Thomas Petazzoni
  2019-10-21 18:46 ` [Buildroot] [PATCH 1/1] package/python-asgiref: " Thomas Petazzoni
  1 sibling, 1 reply; 4+ messages in thread
From: Asaf Kahlon @ 2019-10-20 15:11 UTC (permalink / raw)
  To: buildroot

Since version 3.0.0, secretstorage doesn't support Python 2 anymore.
Update its reverese dependency (python-keyring) as well.

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
---
 package/python-keyring/Config.in       | 1 +
 package/python-secretstorage/Config.in | 1 +
 2 files changed, 2 insertions(+)

diff --git a/package/python-keyring/Config.in b/package/python-keyring/Config.in
index 23d86a4822..3961ee8b81 100644
--- a/package/python-keyring/Config.in
+++ b/package/python-keyring/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_PYTHON_KEYRING
 	bool "python-keyring"
+	depends BR2_PACKAGE_PYTHON3 # python-secretstorage
 	depends on BR2_INSTALL_LIBSTDCPP # python-secretstorage
 	select BR2_PACKAGE_PYTHON_SECRETSTORAGE # runtime
 	help
diff --git a/package/python-secretstorage/Config.in b/package/python-secretstorage/Config.in
index 87aaf6a728..78a0a2ae15 100644
--- a/package/python-secretstorage/Config.in
+++ b/package/python-secretstorage/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_PYTHON_SECRETSTORAGE
 	bool "python-secretstorage"
+	depends on BR2_PACKAGE_PYTHON3
 	depends on BR2_INSTALL_LIBSTDCPP # python-cryptography
 	select BR2_PACKAGE_PYTHON_CRYPTOGRAPHY # runtime
 	help
-- 
2.20.1

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

* [Buildroot] [PATCH 1/1] package/python-asgiref: drop Python 2 support
  2019-10-20 15:11 [Buildroot] [PATCH 1/1] package/python-asgiref: drop Python 2 support Asaf Kahlon
  2019-10-20 15:11 ` [Buildroot] [PATCH 1/1] package/python-secretstorage: " Asaf Kahlon
@ 2019-10-21 18:46 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2019-10-21 18:46 UTC (permalink / raw)
  To: buildroot

On Sun, 20 Oct 2019 18:11:25 +0300
Asaf Kahlon <asafka7@gmail.com> wrote:

> Asgiref doesn't support Python 2 since version 2.0.0.
> All the recursive reverse dependencies already support Python 3 only.
> 
> Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
> ---
>  package/python-asgiref/Config.in | 1 +
>  1 file changed, 1 insertion(+)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/1] package/python-secretstorage: drop Python 2 support
  2019-10-20 15:11 ` [Buildroot] [PATCH 1/1] package/python-secretstorage: " Asaf Kahlon
@ 2019-10-21 18:46   ` Thomas Petazzoni
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2019-10-21 18:46 UTC (permalink / raw)
  To: buildroot

On Sun, 20 Oct 2019 18:11:26 +0300
Asaf Kahlon <asafka7@gmail.com> wrote:

> Since version 3.0.0, secretstorage doesn't support Python 2 anymore.
> Update its reverese dependency (python-keyring) as well.
> 
> Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
> ---
>  package/python-keyring/Config.in       | 1 +
>  package/python-secretstorage/Config.in | 1 +
>  2 files changed, 2 insertions(+)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2019-10-21 18:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-20 15:11 [Buildroot] [PATCH 1/1] package/python-asgiref: drop Python 2 support Asaf Kahlon
2019-10-20 15:11 ` [Buildroot] [PATCH 1/1] package/python-secretstorage: " Asaf Kahlon
2019-10-21 18:46   ` Thomas Petazzoni
2019-10-21 18:46 ` [Buildroot] [PATCH 1/1] package/python-asgiref: " Thomas Petazzoni

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.