diff options
Diffstat (limited to 'app-admin/supervisor/supervisor-3.0_beta2-r1.ebuild')
-rw-r--r-- | app-admin/supervisor/supervisor-3.0_beta2-r1.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/app-admin/supervisor/supervisor-3.0_beta2-r1.ebuild b/app-admin/supervisor/supervisor-3.0_beta2-r1.ebuild new file mode 100644 index 000000000000..03a34deced5d --- /dev/null +++ b/app-admin/supervisor/supervisor-3.0_beta2-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/supervisor/supervisor-3.0_beta2-r1.ebuild,v 1.1 2013/06/11 07:48:47 dev-zero Exp $ + +EAPI="5" + +PYTHON_COMPAT=( python{2_5,2_6,2_7} ) +# xml.etree.ElementTree module required. +PYTHON_REQ_USE="xml" + +inherit distutils-r1 eutils + +MY_PV="${PV/_beta/b}" + +DESCRIPTION="A system for controlling process state under UNIX" +HOMEPAGE="http://supervisord.org/ http://pypi.python.org/pypi/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="test" + +RDEPEND=">=dev-python/meld3-0.6.10-r1[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + test? ( dev-python/mock[${PYTHON_USEDEP}] )" + +# package uses namespaces which makes tests use installed packages +RESTRICT="test" + +S="${WORKDIR}/${PN}-${MY_PV}" + +DOCS=( CHANGES.txt TODO.txt ) + +python_prepare_all() { + # write missing MANIFEST.in file, otherwise required files get lost due to + # egg_info being passed to setup.py + cat > MANIFEST.in << EOF +include supervisor/*.txt +recursive-include supervisor/skel *.conf +recursive-include supervisor/ui *.html *.css *.gif *.png +recursive-include supervisor/tests *.conf *.txt +EOF +} + +python_test() { + esetup.py test +} + +python_install_all() { + newinitd "${FILESDIR}/init.d-r1" supervisord + newconfd "${FILESDIR}/conf.d" supervisord +} |