From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 54EB71397EC for ; Wed, 19 Aug 2015 10:07:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD5241424F; Wed, 19 Aug 2015 10:07:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 59F301424F for ; Wed, 19 Aug 2015 10:07:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4CD26340AA7 for ; Wed, 19 Aug 2015 10:07:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CEDC153 for ; Wed, 19 Aug 2015 10:07:46 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1439978731.c553a4a14ed8180d86daa7e26e840d07eeb0df7b.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rdflib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rdflib/rdflib-4.1.2.ebuild dev-python/rdflib/rdflib-4.2.0.ebuild X-VCS-Directories: dev-python/rdflib/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: c553a4a14ed8180d86daa7e26e840d07eeb0df7b X-VCS-Branch: master Date: Wed, 19 Aug 2015 10:07:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cd675fe4-c292-43d6-a64d-5ec0ec3f6ac2 X-Archives-Hash: 6e679a789b8d083fadf32f67b1857f8a commit: c553a4a14ed8180d86daa7e26e840d07eeb0df7b Author: Ian Delaney gentoo org> AuthorDate: Wed Aug 19 09:18:59 2015 +0000 Commit: Ian Delaney gentoo org> CommitDate: Wed Aug 19 10:05:31 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c553a4a1 dev-python/rdflib: take out doctests from test phase, fixes Bug #358189 Package-Manager: portage-2.2.20 dev-python/rdflib/rdflib-4.1.2.ebuild | 6 ++++++ dev-python/rdflib/rdflib-4.2.0.ebuild | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/dev-python/rdflib/rdflib-4.1.2.ebuild b/dev-python/rdflib/rdflib-4.1.2.ebuild index da5d385..ea599e2 100644 --- a/dev-python/rdflib/rdflib-4.1.2.ebuild +++ b/dev-python/rdflib/rdflib-4.1.2.ebuild @@ -1,3 +1,4 @@ + # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -36,6 +37,11 @@ DEPEND="${RDEPEND} python_prepare_all() { # Upstream manufactured .pyc files which promptly break distutils' src_test find -name "*.py[oc~]" -delete || die + + # Bug 358189; take out tests that attempt to connect to the network + sed -e "/'--with-doctest',/d" -e "/'--doctest-extension=.doctest',/d" \ + -e "/'--doctest-tests',/d" -i run_tests.py || die + distutils-r1_python_prepare_all } diff --git a/dev-python/rdflib/rdflib-4.2.0.ebuild b/dev-python/rdflib/rdflib-4.2.0.ebuild index 9ab1920..294c0a5 100644 --- a/dev-python/rdflib/rdflib-4.2.0.ebuild +++ b/dev-python/rdflib/rdflib-4.2.0.ebuild @@ -23,7 +23,7 @@ IUSE="berkdb examples mysql redland sqlite test" RDEPEND=" dev-python/isodate[${PYTHON_USEDEP}] - dev-python/html5lib[$(python_gen_usedep 'python2*')] + dev-python/html5lib[${PYTHON_USEDEP}] dev-python/pyparsing[${PYTHON_USEDEP}] berkdb? ( dev-python/bsddb3[${PYTHON_USEDEP}] ) mysql? ( dev-python/mysql-python[$(python_gen_usedep 'python2*')] ) @@ -36,6 +36,11 @@ DEPEND="${RDEPEND} python_prepare_all() { # Upstream manufactured .pyc files which promptly break distutils' src_test find -name "*.py[oc~]" -delete || die + + # Bug 358189; take out tests that attempt to connect to the network + sed -e "/'--with-doctest',/d" -e "/'--doctest-extension=.doctest',/d" \ + -e "/'--doctest-tests',/d" -i run_tests.py || die + distutils-r1_python_prepare_all }