All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/2] package/supervisor: bump version to run on Python3
@ 2019-10-26 16:22 Titouan Christophe
  2019-10-26 16:22 ` [Buildroot] [PATCH 1/2] package/supervisor: Bump to v4.1.0 Titouan Christophe
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Titouan Christophe @ 2019-10-26 16:22 UTC (permalink / raw)
  To: buildroot

In our efforts to follow the Python2 deprecation, this patchset makes
Supervisor able to run on Python3. This feature appeared upstream since the v4

Titouan Christophe (2):
  package/supervisor: Bump to v4.1.0
  package/supervisor: can now run on Python 3

 package/supervisor/Config.in       | 5 +++--
 package/supervisor/supervisor.hash | 2 +-
 package/supervisor/supervisor.mk   | 4 ++--
 3 files changed, 6 insertions(+), 5 deletions(-)

-- 
2.21.0

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

* [Buildroot] [PATCH 1/2] package/supervisor: Bump to v4.1.0
  2019-10-26 16:22 [Buildroot] [PATCH 0/2] package/supervisor: bump version to run on Python3 Titouan Christophe
@ 2019-10-26 16:22 ` Titouan Christophe
  2019-10-26 16:22 ` [Buildroot] [PATCH 2/2] package/supervisor: can now run on Python 3 Titouan Christophe
  2019-10-26 16:59 ` [Buildroot] [PATCH 0/2] package/supervisor: bump version to run on Python3 Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Titouan Christophe @ 2019-10-26 16:22 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>
---
 package/supervisor/supervisor.hash | 2 +-
 package/supervisor/supervisor.mk   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/supervisor/supervisor.hash b/package/supervisor/supervisor.hash
index 0ebc663be9..95d7dfb76b 100644
--- a/package/supervisor/supervisor.hash
+++ b/package/supervisor/supervisor.hash
@@ -1,4 +1,4 @@
 # Locally calculated
-sha256 82f75089f719a7a3ca87f35c89a03c20fd3c0912552c96eb6fa40274ced6604e  supervisor-3.1.4.tar.gz
+sha256 2dc86fe0476e945e61483d614ceb2cf4f93b95282eb243bdf792621994360383  supervisor-4.1.0.tar.gz
 sha256 a85a622378c6a892ead1ce5d0488e446e106bf014d3b763fdbc1ad1ae38ee491  COPYRIGHT.txt
 sha256 27ba0b2357ed6974d755ed53232c5ab8595622b3111bb91682708ea188cc3696  LICENSES.txt
diff --git a/package/supervisor/supervisor.mk b/package/supervisor/supervisor.mk
index 9b93b449a7..6cf5163096 100644
--- a/package/supervisor/supervisor.mk
+++ b/package/supervisor/supervisor.mk
@@ -4,8 +4,8 @@
 #
 ################################################################################
 
-SUPERVISOR_VERSION = 3.1.4
-SUPERVISOR_SITE = https://pypi.python.org/packages/12/50/cd330d1a0daffbbe54803cb0c4c1ada892b5d66db08befac385122858eee
+SUPERVISOR_VERSION = 4.1.0
+SUPERVISOR_SITE = https://files.pythonhosted.org/packages/de/87/ee1ad8fa533a4b5f2c7623f4a2b585d3c1947af7bed8e65bc7772274320e
 SUPERVISOR_LICENSE = BSD-like, rdflib (http_client.py), PSF (medusa), ZPL-2.1
 SUPERVISOR_LICENSE_FILES = COPYRIGHT.txt LICENSES.txt
 SUPERVISOR_SETUP_TYPE = setuptools
-- 
2.21.0

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

* [Buildroot] [PATCH 2/2] package/supervisor: can now run on Python 3
  2019-10-26 16:22 [Buildroot] [PATCH 0/2] package/supervisor: bump version to run on Python3 Titouan Christophe
  2019-10-26 16:22 ` [Buildroot] [PATCH 1/2] package/supervisor: Bump to v4.1.0 Titouan Christophe
@ 2019-10-26 16:22 ` Titouan Christophe
  2019-10-26 16:59 ` [Buildroot] [PATCH 0/2] package/supervisor: bump version to run on Python3 Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Titouan Christophe @ 2019-10-26 16:22 UTC (permalink / raw)
  To: buildroot

Supervisor introduced support for Python3 starting with version 4.

Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>
---
 package/supervisor/Config.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/package/supervisor/Config.in b/package/supervisor/Config.in
index 2ab0e048f6..623c3a836e 100644
--- a/package/supervisor/Config.in
+++ b/package/supervisor/Config.in
@@ -1,6 +1,6 @@
 config BR2_PACKAGE_SUPERVISOR
 	bool "supervisor"
-	depends on BR2_PACKAGE_PYTHON
+	depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
 	select BR2_PACKAGE_PYTHON_MELD3
 	select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime dependency
 	help
@@ -9,5 +9,6 @@ config BR2_PACKAGE_SUPERVISOR
 
 	  http://supervisord.org/
 
-comment "supervisor needs the python interpreter"
+comment "supervisor needs a python interpreter"
 	depends on !BR2_PACKAGE_PYTHON
+	depends on !BR2_PACKAGE_PYTHON3
-- 
2.21.0

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

* [Buildroot] [PATCH 0/2] package/supervisor: bump version to run on Python3
  2019-10-26 16:22 [Buildroot] [PATCH 0/2] package/supervisor: bump version to run on Python3 Titouan Christophe
  2019-10-26 16:22 ` [Buildroot] [PATCH 1/2] package/supervisor: Bump to v4.1.0 Titouan Christophe
  2019-10-26 16:22 ` [Buildroot] [PATCH 2/2] package/supervisor: can now run on Python 3 Titouan Christophe
@ 2019-10-26 16:59 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2019-10-26 16:59 UTC (permalink / raw)
  To: buildroot

Hello,

On Sat, 26 Oct 2019 18:22:17 +0200
Titouan Christophe <titouan.christophe@railnova.eu> wrote:

> Titouan Christophe (2):
>   package/supervisor: Bump to v4.1.0
>   package/supervisor: can now run on Python 3

Applied, 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-26 16:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-26 16:22 [Buildroot] [PATCH 0/2] package/supervisor: bump version to run on Python3 Titouan Christophe
2019-10-26 16:22 ` [Buildroot] [PATCH 1/2] package/supervisor: Bump to v4.1.0 Titouan Christophe
2019-10-26 16:22 ` [Buildroot] [PATCH 2/2] package/supervisor: can now run on Python 3 Titouan Christophe
2019-10-26 16:59 ` [Buildroot] [PATCH 0/2] package/supervisor: bump version to run on Python3 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.