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 485C3138350 for ; Fri, 20 Mar 2020 09:58:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 877ABE0B35; Fri, 20 Mar 2020 09:58:04 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6B4E3E0B35 for ; Fri, 20 Mar 2020 09:58:04 +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 7225434F0F0 for ; Fri, 20 Mar 2020 09:58:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3A849C for ; Fri, 20 Mar 2020 09:58:00 +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: <1584698191.d52e13f11af10628d4b1bf0ec05222f48882f3f5.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/kid/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/kid/kid-0.9.6-r1.ebuild X-VCS-Directories: dev-python/kid/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: d52e13f11af10628d4b1bf0ec05222f48882f3f5 X-VCS-Branch: master Date: Fri, 20 Mar 2020 09:58:00 +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: cc5497df-050b-48c5-8b14-4e32b4e9de5c X-Archives-Hash: 0ff7c4d882f6b76819ac47963085883e commit: d52e13f11af10628d4b1bf0ec05222f48882f3f5 Author: David Seifert gentoo org> AuthorDate: Fri Mar 20 09:56:31 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Mar 20 09:56:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d52e13f1 dev-python/kid: Replace distutils-r1 EXAMPLES use Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: David Seifert gentoo.org> dev-python/kid/kid-0.9.6-r1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-python/kid/kid-0.9.6-r1.ebuild b/dev-python/kid/kid-0.9.6-r1.ebuild index 6a1ce66efaa..49769fe1615 100644 --- a/dev-python/kid/kid-0.9.6-r1.ebuild +++ b/dev-python/kid/kid-0.9.6-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -34,7 +34,10 @@ python_install_all() { # dobin bin/* use doc && local HTML_DOCS=( doc/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 }