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 9FAF0138335 for ; Tue, 24 Jul 2018 12:20:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F8A0E086F; Tue, 24 Jul 2018 12:20:15 +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 52361E086F for ; Tue, 24 Jul 2018 12:20:15 +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 7965533BE9A for ; Tue, 24 Jul 2018 12:20:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D9A0738A for ; Tue, 24 Jul 2018 12:19:59 +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: <1532434793.6fa1cc47a784fa68298e01fb431a02716336b226.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dbus-python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dbus-python/dbus-python-1.2.6-r2.ebuild X-VCS-Directories: dev-python/dbus-python/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6fa1cc47a784fa68298e01fb431a02716336b226 X-VCS-Branch: master Date: Tue, 24 Jul 2018 12:19:59 +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: fffde600-2638-4aab-b1cb-3d9a8a659b20 X-Archives-Hash: 83a8a5a9a04e3784f56dabe0bf6de6ad commit: 6fa1cc47a784fa68298e01fb431a02716336b226 Author: Michał Górny gentoo org> AuthorDate: Tue Jul 24 10:40:31 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jul 24 12:19:53 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fa1cc47 dev-python/dbus-python: Modernize doc install dev-python/dbus-python/dbus-python-1.2.6-r2.ebuild | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dev-python/dbus-python/dbus-python-1.2.6-r2.ebuild b/dev-python/dbus-python/dbus-python-1.2.6-r2.ebuild index 7e79f79b6ff..a79c851ba44 100644 --- a/dev-python/dbus-python/dbus-python-1.2.6-r2.ebuild +++ b/dev-python/dbus-python/dbus-python-1.2.6-r2.ebuild @@ -74,13 +74,10 @@ src_test() { src_install() { installing() { default - [[ ${EPYTHON/.*} = "python2" ]] && use doc && dohtml -r api/* + [[ ${EPYTHON/.*} = "python2" ]] && use doc && dodoc -r api } python_foreach_impl run_in_build_dir installing find "${D}" -name "*.la" -delete || die - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples - fi + use examples && dodoc -r examples }