gentoo/dev-python/python-yadis/python-yadis-1.1.0-r2.ebuild
Robin H. Johnson 61b861acd7
Drop $Id$ per council decision in bug #611234.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2017-02-28 11:50:50 -08:00

34 lines
838 B
Bash

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
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"
}