diff options
Diffstat (limited to 'dev-python/dap/dap-2.2.6.7-r1.ebuild')
-rw-r--r-- | dev-python/dap/dap-2.2.6.7-r1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/dap/dap-2.2.6.7-r1.ebuild b/dev-python/dap/dap-2.2.6.7-r1.ebuild new file mode 100644 index 00000000000..9a98974ed06 --- /dev/null +++ b/dev-python/dap/dap-2.2.6.7-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Data Access Protocol client and server" +HOMEPAGE="http://pydap.org http://pypi.python.org/pypi/dap http://pypi.python.org/pypi/Pydap" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" +IUSE="server" + +RDEPEND="dev-python/httplib2[${PYTHON_USEDEP}] + server? ( + dev-python/cheetah[${PYTHON_USEDEP}] + dev-python/paste[${PYTHON_USEDEP}] + dev-python/pastedeploy[${PYTHON_USEDEP}] + dev-python/pastescript[${PYTHON_USEDEP}] + )" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +DOCS=( docs/bugs docs/Changelog docs/history README TODO ) + +src_prepare() { + sed -e "s/'dap.plugins'/'dap', 'dap.plugins'/" -i setup.py || die "sed failed" + distutils-r1_src_prepare +} |