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 4C8FD138350 for ; Fri, 20 Mar 2020 09:58:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F07AE0D8D; Fri, 20 Mar 2020 09:58:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 58AAFE0D8D for ; Fri, 20 Mar 2020 09:58:09 +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 2F79934F32E 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 942891AC 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: <1584698253.8babea42bb4154f06c92de98face4e83875b02e0.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/root_numpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/root_numpy/root_numpy-4.7.3-r1.ebuild X-VCS-Directories: dev-python/root_numpy/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 8babea42bb4154f06c92de98face4e83875b02e0 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: c9866f27-b688-4941-b5fd-172397115ccc X-Archives-Hash: 2ebaa165e5288030802eba247dee80e4 commit: 8babea42bb4154f06c92de98face4e83875b02e0 Author: David Seifert gentoo org> AuthorDate: Fri Mar 20 09:57:33 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Mar 20 09:57:33 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8babea42 dev-python/root_numpy: Replace distutils-r1 EXAMPLES use Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: David Seifert gentoo.org> dev-python/root_numpy/root_numpy-4.7.3-r1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-python/root_numpy/root_numpy-4.7.3-r1.ebuild b/dev-python/root_numpy/root_numpy-4.7.3-r1.ebuild index c5305f46891..8333f884197 100644 --- a/dev-python/root_numpy/root_numpy-4.7.3-r1.ebuild +++ b/dev-python/root_numpy/root_numpy-4.7.3-r1.ebuild @@ -36,6 +36,11 @@ python_test() { } python_install_all() { - use examples && local EXAMPLES=( tutorial/. ) + if use examples; then + docinto examples + dodoc -r tutorial/. + docompress -x /usr/share/doc/${PF}/examples + fi + distutils-r1_python_install_all }