[Buildroot] [git commit] package/python-secretstorage: drop Python 2 support

Thomas Petazzoni thomas.petazzoni at bootlin.com
Mon Oct 21 18:33:23 UTC 2019


commit: https://git.buildroot.net/buildroot/commit/?id=4cee5723e0a6552fead921b96647a74612e53e5e
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

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 at gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.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


More information about the buildroot mailing list