From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0B58B1382C5 for ; Wed, 10 Jun 2020 20:50:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40803E095F; Wed, 10 Jun 2020 20:50:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 26A22E095F for ; Wed, 10 Jun 2020 20:50:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 15E5034F22C for ; Wed, 10 Jun 2020 20:50:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 67915292 for ; Wed, 10 Jun 2020 20:50:24 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1591822216.a779af2a12a67d632696e68b355a54f00d3b0ffd.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/beautifulsoup/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/beautifulsoup/beautifulsoup-4.8.2.ebuild X-VCS-Directories: dev-python/beautifulsoup/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a779af2a12a67d632696e68b355a54f00d3b0ffd X-VCS-Branch: master Date: Wed, 10 Jun 2020 20:50:24 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3f08cb30-cff3-4c51-b68e-160b74b383be X-Archives-Hash: d7225cfd9465d4a91f9e9baca739f8e0 commit: a779af2a12a67d632696e68b355a54f00d3b0ffd Author: Michał Górny gentoo org> AuthorDate: Wed Jun 10 20:37:06 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 10 20:50:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a779af2a dev-python/beautifulsoup: Fix doc build Closes: https://bugs.gentoo.org/715064 Signed-off-by: Michał Górny gentoo.org> dev-python/beautifulsoup/beautifulsoup-4.8.2.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-python/beautifulsoup/beautifulsoup-4.8.2.ebuild b/dev-python/beautifulsoup/beautifulsoup-4.8.2.ebuild index 8bfe741fc28..67171073bb4 100644 --- a/dev-python/beautifulsoup/beautifulsoup-4.8.2.ebuild +++ b/dev-python/beautifulsoup/beautifulsoup-4.8.2.ebuild @@ -13,6 +13,7 @@ MY_P="${MY_PN}-${PV}" DESCRIPTION="Pythonic idioms for iterating, searching, and modifying an HTML/XML parse tree" HOMEPAGE="https://www.crummy.com/software/BeautifulSoup/bs4/" SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="4" @@ -25,10 +26,8 @@ RDEPEND=" " BDEPEND="${RDEPEND}" -S="${WORKDIR}/${MY_P}" - distutils_enable_tests nose -distutils_enable_sphinx doc/source --no-autodoc +distutils_enable_sphinx doc/source python_test() { nosetests --verbose -w "${BUILD_DIR}"/lib || die "Tests fail with ${EPYTHON}"