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 C50C6139085 for ; Tue, 24 Jan 2017 20:52:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7642E0C7A; Tue, 24 Jan 2017 20:52:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3D72E0C7A for ; Tue, 24 Jan 2017 20:52:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6258C34167D for ; Tue, 24 Jan 2017 20:52:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9DF92E18 for ; Tue, 24 Jan 2017 20:52:27 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1485291146.232a453d56aef326b5d36aed0b090754b12208ff.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/logilab-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/logilab-common/logilab-common-1.2.2.ebuild X-VCS-Directories: dev-python/logilab-common/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 232a453d56aef326b5d36aed0b090754b12208ff X-VCS-Branch: master Date: Tue, 24 Jan 2017 20:52:27 +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: cc661d95-3ca5-4e38-b0a9-80853b9be73a X-Archives-Hash: 7b9df67ca27eed701c07d0031380c94c commit: 232a453d56aef326b5d36aed0b090754b12208ff Author: Mike Gilbert gentoo org> AuthorDate: Tue Jan 24 20:51:40 2017 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Jan 24 20:52:26 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=232a453d dev-python/logilab-common: drop broken docs build Gentoo-Bug: https://bugs.gentoo.org/606538 Package-Manager: Portage-2.3.3_p39, Repoman-2.3.1_p32 .../logilab-common/logilab-common-1.2.2.ebuild | 24 ++-------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/dev-python/logilab-common/logilab-common-1.2.2.ebuild b/dev-python/logilab-common/logilab-common-1.2.2.ebuild index c4c00e4..b8e2a25 100644 --- a/dev-python/logilab-common/logilab-common-1.2.2.ebuild +++ b/dev-python/logilab-common/logilab-common-1.2.2.ebuild @@ -16,7 +16,7 @@ SRC_URI="ftp://ftp.logilab.org/pub/common/${P}.tar.gz mirror://pypi/${PN:0:1}/${ LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha amd64 ~arm ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="doc test" +IUSE="test" RDEPEND=">=dev-python/six-1.4.0[${PYTHON_USEDEP}] dev-python/setuptools[${PYTHON_USEDEP}]" @@ -25,34 +25,14 @@ DEPEND="${RDEPEND} $(python_gen_cond_dep 'dev-python/egenix-mx-base[${PYTHON_USEDEP}]' python2_7) dev-python/pytz[${PYTHON_USEDEP}] ) - doc? ( $(python_gen_cond_dep 'dev-python/epydoc[${PYTHON_USEDEP}]' python2_7) )" +" PATCHES=( "${FILESDIR}/${P}-test-namespace-fix.patch" ) -python_prepare_all() { - sed -i \ - -e 's:(CURDIR):{S}/${P}:' \ - doc/makefile || die - - distutils-r1_python_prepare_all -} - -python_compile_all() { - if use doc; then - # Based on the doc build in Arfrever's ebuild. It works - pushd doc > /dev/null - mkdir -p apidoc || die - epydoc --parse-only -o apidoc --html -v --no-private --exclude=__pkginfo__ --exclude=setup --exclude=test \ - -n "Logilab's common library" "$(ls -d ../build/lib/logilab/common/)" build \ - || die "Generation of documentation failed" - fi -} - python_install_all() { distutils-r1_python_install_all doman doc/pytest.1 - use doc && HTML_DOCS=( doc/apidoc/. ) } python_test() {