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 7393C138353 for ; Fri, 20 Mar 2020 09:58:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27757E0C3F; Fri, 20 Mar 2020 09:58:06 +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 083C4E0C37 for ; Fri, 20 Mar 2020 09:58:06 +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 42B1A34F317 for ; Fri, 20 Mar 2020 09:58:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5DCD8193 for ; Fri, 20 Mar 2020 09:58:01 +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: <1584698206.1754004d27f53b6b31d8f37fc67e8fce50cc85ad.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pkginfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pkginfo/pkginfo-1.2.1.ebuild X-VCS-Directories: dev-python/pkginfo/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 1754004d27f53b6b31d8f37fc67e8fce50cc85ad X-VCS-Branch: master Date: Fri, 20 Mar 2020 09:58:01 +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: bf1755c5-9e29-40d4-b26e-4d384a1beda5 X-Archives-Hash: 746718e5fe41b8c1966c2a47e06e92f2 commit: 1754004d27f53b6b31d8f37fc67e8fce50cc85ad Author: David Seifert gentoo org> AuthorDate: Fri Mar 20 09:56:46 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Mar 20 09:56:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1754004d dev-python/pkginfo: Replace distutils-r1 EXAMPLES use Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: David Seifert gentoo.org> dev-python/pkginfo/pkginfo-1.2.1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/pkginfo/pkginfo-1.2.1.ebuild b/dev-python/pkginfo/pkginfo-1.2.1.ebuild index 3ca490f830d..52800837a32 100644 --- a/dev-python/pkginfo/pkginfo-1.2.1.ebuild +++ b/dev-python/pkginfo/pkginfo-1.2.1.ebuild @@ -42,6 +42,10 @@ python_test() { python_install_all() { use doc && local HTML_DOCS=( docs/.build/html/. ) - use examples && local EXAMPLES=( docs/examples/. ) + if use examples; then + dodoc -r docs/examples + docompress -x /usr/share/doc/${PF}/examples + fi + distutils-r1_python_install_all }