diff options
Diffstat (limited to 'dev-python/flower/flower-0.9.1-r1.ebuild')
-rw-r--r-- | dev-python/flower/flower-0.9.1-r1.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/dev-python/flower/flower-0.9.1-r1.ebuild b/dev-python/flower/flower-0.9.1-r1.ebuild new file mode 100644 index 00000000000..c5b5750941f --- /dev/null +++ b/dev-python/flower/flower-0.9.1-r1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 systemd user + +DESCRIPTION="Real-time monitor and web admin for Celery distributed task queue" +HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/mher/${PN}/ https://pypi.python.org/pypi/${PN}" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="test" + +RDEPEND=">=dev-python/celery-3.1.0[${PYTHON_USEDEP}] + >=www-servers/tornado-4.2.0[${PYTHON_USEDEP}] + >=dev-python/pytz-2015.7[${PYTHON_USEDEP}] + >=dev-python/Babel-2.2.0[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}]" + +pkg_setup() { + enewgroup ${PN} + enewuser ${PN} -1 -1 /dev/null ${PN} +} + +src_prepare() { + eapply_user + sed -e 's:tornado==4.2.0:tornado>=4.2.0:' \ + -i requirements/default.txt || die +} + +src_install() { + distutils-r1_src_install + insinto /etc/flower + doins "${FILESDIR}/config.py" + newinitd "${FILESDIR}/${PN}.initd" "${PN}" + newconfd "${FILESDIR}/${PN}.confd" "${PN}" + systemd_dounit "${FILESDIR}/${PN}.service" + keepdir /var/log/${PN} + fowners ${PN}:${PN} /var/log/${PN} + insinto /etc/logrotate.d + newins "${FILESDIR}/${PN}.logrotated" "${PN}" +} + +python_install() { + distutils-r1_python_install --install-scripts "${EPREFIX}/usr/libexec/flower" +} + +python_test() { + esetup.py test || die +} |