gentoo/dev-python/python-yadis/python-yadis-1.1.0-r2.ebuild
Patrice Clement a926e531aa
dev-python/python-yadis: Disable tests altogether. Fixes bug 430092.
Package-Manager: portage-2.2.20.1
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
2016-01-01 16:15:02 +00:00

35 lines
845 B
Bash

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE="xml(+)"
inherit distutils-r1
DESCRIPTION="Yadis service discovery library"
HOMEPAGE="http://www.openidenabled.com/yadis/libraries/python/"
SRC_URI="http://www.openidenabled.com/resources/downloads/python-openid/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="dev-python/elementtree[${PYTHON_USEDEP}]
dev-python/python-urljr[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
test? ( >=dev-python/pyflakes-0.2.1[${PYTHON_USEDEP}] )"
# Fix broken test
PATCHES=( "${FILESDIR}/${P}-gentoo-test.patch" )
# Tests are broken.
RESTRICT='test'
python_test() {
./admin/runtests
einfo "The pyflake output about XML* redefinitions can be safely ignored"
}