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 91E87138350 for ; Fri, 20 Mar 2020 09:58:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3BA63E0D49; Fri, 20 Mar 2020 09:58:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 20BADE0D43 for ; Fri, 20 Mar 2020 09:58:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2312234F32D for ; Fri, 20 Mar 2020 09:58:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81B6C1AA for ; Fri, 20 Mar 2020 09:58:02 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1584698250.a5ef1eb188701d6924e2cfa2e48a2c8da995c4cc.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/restkit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/restkit/restkit-4.2.2.ebuild X-VCS-Directories: dev-python/restkit/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: a5ef1eb188701d6924e2cfa2e48a2c8da995c4cc X-VCS-Branch: master Date: Fri, 20 Mar 2020 09:58:02 +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: ea9c6bc0-1905-42ae-997c-416fe304d61e X-Archives-Hash: 468d537f7e843240951731e35c4e8fb7 commit: a5ef1eb188701d6924e2cfa2e48a2c8da995c4cc Author: David Seifert gentoo org> AuthorDate: Fri Mar 20 09:57:30 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Mar 20 09:57:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5ef1eb1 dev-python/restkit: Replace distutils-r1 EXAMPLES use Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: David Seifert gentoo.org> dev-python/restkit/restkit-4.2.2.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/restkit/restkit-4.2.2.ebuild b/dev-python/restkit/restkit-4.2.2.ebuild index 3f05d766057..ba931dd23c9 100644 --- a/dev-python/restkit/restkit-4.2.2.ebuild +++ b/dev-python/restkit/restkit-4.2.2.ebuild @@ -46,6 +46,10 @@ python_test() { python_install_all() { use cli || rm "${D}"/usr/bin/restcli* || die use doc && local HTML_DOCS=( doc/_build/html/. ) - use examples && local EXAMPLES=( examples/. ) + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi + distutils-r1_python_install_all }