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 E060F139085 for ; Mon, 6 Feb 2017 07:43:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FBB4E0DCE; Mon, 6 Feb 2017 07:43:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 DCE15E0DCE for ; Mon, 6 Feb 2017 07:43:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 BD7F4341655 for ; Mon, 6 Feb 2017 07:43:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB8FE3A86 for ; Mon, 6 Feb 2017 07:43:22 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1486366995.ef02ddd59d9fbf803bd5309ff649e5db9f036730.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pylint/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pylint/pylint-1.6.5.ebuild X-VCS-Directories: dev-python/pylint/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: ef02ddd59d9fbf803bd5309ff649e5db9f036730 X-VCS-Branch: master Date: Mon, 6 Feb 2017 07:43:22 +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: 72f79008-52b6-4d9a-b38a-1f5cf0bf4c5d X-Archives-Hash: d8f4f2105e763552828bd6bb58c1c178 commit: ef02ddd59d9fbf803bd5309ff649e5db9f036730 Author: Lars Wendler gentoo org> AuthorDate: Mon Feb 6 07:43:15 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Feb 6 07:43:15 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef02ddd5 dev-python/pylint: Don't use EXAMPLES in EAPI-6 ebuilds. Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-python/pylint/pylint-1.6.5.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-python/pylint/pylint-1.6.5.ebuild b/dev-python/pylint/pylint-1.6.5.ebuild index c3a3e05..6ec5a01 100644 --- a/dev-python/pylint/pylint-1.6.5.ebuild +++ b/dev-python/pylint/pylint-1.6.5.ebuild @@ -50,7 +50,10 @@ python_test() { python_install_all() { doman man/{pylint,pyreverse}.1 - use examples && local EXAMPLES=( examples/. ) + if use examples ; then + docinto examples + dodoc -r examples/. + fi use doc && local HTML_DOCS=( doc/_build/singlehtml/. ) distutils-r1_python_install_all }