diff options
author | Virgil Dupras <vdupras@gentoo.org> | 2018-10-12 08:24:36 -0400 |
---|---|---|
committer | Virgil Dupras <vdupras@gentoo.org> | 2018-10-12 08:24:36 -0400 |
commit | a5b0e9797df6d3ea7443d5d09c5b50d5da46295a (patch) | |
tree | 436aa34b58e71359e3e872889a5910bbd24fca6f /dev-python/python-openid | |
parent | net-im/skypeforlinux: remove old versions (diff) | |
download | gentoo-a5b0e9797df6d3ea7443d5d09c5b50d5da46295a.tar.gz gentoo-a5b0e9797df6d3ea7443d5d09c5b50d5da46295a.tar.bz2 gentoo-a5b0e9797df6d3ea7443d5d09c5b50d5da46295a.zip |
dev-python/python-openid: RESTRICT tests
Bug: https://bugs.gentoo.org/285169
Signed-off-by: Virgil Dupras <vdupras@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'dev-python/python-openid')
-rw-r--r-- | dev-python/python-openid/python-openid-2.2.5-r1.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/dev-python/python-openid/python-openid-2.2.5-r1.ebuild b/dev-python/python-openid/python-openid-2.2.5-r1.ebuild index 20929ce8d3ab..895572db7ae6 100644 --- a/dev-python/python-openid/python-openid-2.2.5-r1.ebuild +++ b/dev-python/python-openid/python-openid-2.2.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -20,11 +20,12 @@ IUSE="examples mysql postgres sqlite test" RDEPEND="mysql? ( >=dev-python/mysql-python-1.2.2[${PYTHON_USEDEP}] ) postgres? ( dev-python/psycopg[${PYTHON_USEDEP}] )" -DEPEND="${RDEPEND} - test? ( dev-python/twill - dev-python/pycurl )" +DEPEND="${RDEPEND}" S="${WORKDIR}/openid-python-openid-b666238" +# Tests depend on twill, a broken package. Bug #285169 +RESTRICT="test" + python_prepare_all() { local PATCHES=( # Patch to fix confusion with localhost/127.0.0.1 |