2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-08-11 09:12:06 +02:00
|
|
|
#
|
2013-07-22 07:30:22 +02:00
|
|
|
# supervisor
|
2012-08-11 09:12:06 +02:00
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-08-11 09:12:06 +02:00
|
|
|
|
2015-10-23 13:03:47 +02:00
|
|
|
SUPERVISOR_VERSION = 3.1.3
|
2014-07-31 10:46:58 +02:00
|
|
|
SUPERVISOR_SITE = http://pypi.python.org/packages/source/s/supervisor
|
2015-10-23 13:03:48 +02:00
|
|
|
SUPERVISOR_LICENSE = BSD-like, rdflib (http_client.py), PSF (medusa), ZPL-2.1
|
|
|
|
SUPERVISOR_LICENSE_FILES = COPYRIGHT.txt LICENSES.txt
|
2013-12-11 21:26:55 +01:00
|
|
|
SUPERVISOR_SETUP_TYPE = setuptools
|
2012-08-11 09:12:06 +02:00
|
|
|
|
2013-12-11 21:26:55 +01:00
|
|
|
define SUPERVISOR_INSTALL_CONF_FILES
|
|
|
|
$(INSTALL) -d -m 755 $(TARGET_DIR)/etc/supervisor.d
|
|
|
|
$(INSTALL) -D -m 644 package/supervisor/supervisord.conf \
|
|
|
|
$(TARGET_DIR)/etc/supervisord.conf
|
2012-08-11 09:12:06 +02:00
|
|
|
endef
|
|
|
|
|
2013-12-11 21:26:55 +01:00
|
|
|
SUPERVISOR_POST_INSTALL_TARGET_HOOKS += SUPERVISOR_INSTALL_CONF_FILES
|
|
|
|
|
|
|
|
define SUPERVISOR_INSTALL_INIT_SYSV
|
|
|
|
$(INSTALL) -D -m 755 package/supervisor/S99supervisord \
|
|
|
|
$(TARGET_DIR)/etc/init.d/S99supervisord
|
2012-08-11 09:12:06 +02:00
|
|
|
endef
|
|
|
|
|
2015-05-23 12:14:18 +02:00
|
|
|
define SUPERVISOR_INSTALL_INIT_SYSTEMD
|
|
|
|
$(INSTALL) -D -m 644 package/supervisor/supervisord.service \
|
|
|
|
$(TARGET_DIR)/usr/lib/systemd/system/supervisord.service
|
|
|
|
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
|
|
|
ln -sf ../../../../usr/lib/systemd/system/supervisord.service \
|
|
|
|
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/supervisord.service
|
|
|
|
endef
|
|
|
|
|
2013-12-11 21:26:55 +01:00
|
|
|
$(eval $(python-package))
|