package/supervisor: can now run on Python 3
authorTitouan Christophe <titouan.christophe@railnova.eu>
Sat, 26 Oct 2019 16:22:19 +0000 (18:22 +0200)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Sat, 26 Oct 2019 16:58:54 +0000 (18:58 +0200)
Supervisor introduced support for Python3 starting with version 4.

Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/supervisor/Config.in

index 2ab0e048f606061045f0cef3cbc46712e9f63808..623c3a836ea0a1d7af6e5112d5b680801bdca98e 100644 (file)
@@ -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