diff options
author | Louis Sautier <sbraz@gentoo.org> | 2019-07-17 16:42:21 +0200 |
---|---|---|
committer | Louis Sautier <sbraz@gentoo.org> | 2019-07-17 17:04:49 +0200 |
commit | 2f5cf88f6b58097e09886261d01a8a6b30a42928 (patch) | |
tree | 7e7dfb91fe9919a075670f692ad21303072e7c08 /app-admin/supervisor/supervisor-4.0.4.ebuild | |
parent | www-client/chromium: security cleanup (diff) | |
download | gentoo-2f5cf88f6b58097e09886261d01a8a6b30a42928.tar.gz gentoo-2f5cf88f6b58097e09886261d01a8a6b30a42928.tar.bz2 gentoo-2f5cf88f6b58097e09886261d01a8a6b30a42928.zip |
app-admin/supervisor: bump to 4.0.4
Switch to pytest because tests fail with "setup.py test".
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Louis Sautier <sbraz@gentoo.org>
Diffstat (limited to 'app-admin/supervisor/supervisor-4.0.4.ebuild')
-rw-r--r-- | app-admin/supervisor/supervisor-4.0.4.ebuild | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/app-admin/supervisor/supervisor-4.0.4.ebuild b/app-admin/supervisor/supervisor-4.0.4.ebuild new file mode 100644 index 000000000000..fe9a32ed05ea --- /dev/null +++ b/app-admin/supervisor/supervisor-4.0.4.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} ) +# xml.etree.ElementTree module required. +PYTHON_REQ_USE="xml(+)" + +inherit distutils-r1 systemd user + +MY_PV="${PV/_beta/b}" + +DESCRIPTION="A system for controlling process state under UNIX" +HOMEPAGE="http://supervisord.org/ https://pypi.org/project/supervisor/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz" + +LICENSE="repoze ZPL BSD HPND GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc test" + +RDEPEND=" + >=dev-python/meld3-1.0.0[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] +" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( + ${RDEPEND} + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + ) +" + +S="${WORKDIR}/${PN}-${MY_PV}" + +python_compile_all() { + if use doc; then + emake -C docs html + HTML_DOCS=( docs/.build/html/. ) + fi +} + +python_test() { + pytest -vv || die "tests failed with ${EPYTHON}" +} + +python_install_all() { + distutils-r1_python_install_all + newinitd "${FILESDIR}/init.d-r2" supervisord + newconfd "${FILESDIR}/conf.d-r1" supervisord + dodoc supervisor/skel/sample.conf + keepdir /etc/supervisord.d + insinto /etc + doins "${FILESDIR}/supervisord.conf" + keepdir /var/log/supervisor + systemd_dounit "${FILESDIR}/supervisord.service" +} + +pkg_preinst() { + enewgroup supervisor + fowners :supervisor /var/log/supervisor + fperms 750 /var/log/supervisor +} + +pkg_postinst() { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + # This is a new installation + elog "You may install your configuration files in ${EROOT%/}/etc/supervisord.d" + elog "For config examples, see ${EROOT%/}/usr/share/doc/${PF}/sample.conf.bz2" + elog "" + elog "By default, only members of the supervisor group can run supervisorctl." + fi +} |