You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
56 lines
1.4 KiB
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/restkit/restkit-4.2.1-r1.ebuild,v 1.8 2014/08/10 21:21:08 slyfox Exp $
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python{2_6,2_7} pypy pypy2_0 )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A HTTP ressource kit for Python"
|
|
HOMEPAGE="http://github.com/benoitc/restkit http://benoitc.github.com/restkit/ http://pypi.python.org/pypi/restkit"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
|
|
IUSE="+cli doc examples test"
|
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
|
doc? ( dev-python/sphinx
|
|
dev-python/epydoc )
|
|
test? ( dev-python/webob
|
|
>=dev-python/socketpool-0.5.0
|
|
>=dev-python/http-parser-0.7.7 )"
|
|
RDEPEND="cli? ( dev-python/ipython
|
|
dev-python/setuptools[${PYTHON_USEDEP}] )
|
|
dev-python/webob
|
|
>=dev-python/socketpool-0.5.0
|
|
>=dev-python/http-parser-0.7.7"
|
|
|
|
PATCHES=( "${FILESDIR}/${PN}-exclude-tests.patch" )
|
|
|
|
python_compile_all() {
|
|
if use doc ; then
|
|
pushd doc > /dev/null
|
|
PYTHONPATH="${S}" emake html
|
|
popd > /dev/null
|
|
fi
|
|
}
|
|
|
|
python_test() {
|
|
nosetests -v tests || die "Tests fail with ${EPYTHON}"
|
|
}
|
|
|
|
python_install_all() {
|
|
use cli || rm "${ED}"/usr/bin/restcli*
|
|
|
|
use doc && dohtml -r doc/_build/html/
|
|
if use examples ; then
|
|
insinto /usr/share/doc/${PF}
|
|
doins -r examples
|
|
fi
|
|
distutils-r1_python_install_all
|
|
}
|