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 D632A138334 for ; Sun, 21 Apr 2019 14:01:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D65EEE08A4; Sun, 21 Apr 2019 14:01:42 +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 BB0C6E08A4 for ; Sun, 21 Apr 2019 14:01:42 +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 89719341C7E for ; Sun, 21 Apr 2019 14:01:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9AC25B0 for ; Sun, 21 Apr 2019 14:01:38 +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: <1555855278.dde90b197cb109a8887c68e4fa7174a44e8fe8b6.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bluelet/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/bluelet/bluelet-0.2.0.ebuild X-VCS-Directories: dev-python/bluelet/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: dde90b197cb109a8887c68e4fa7174a44e8fe8b6 X-VCS-Branch: master Date: Sun, 21 Apr 2019 14:01:38 +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: 8ac2f485-d0d2-467e-884e-7042cab4cf95 X-Archives-Hash: ca7f14d85f71b61d76f9ae085911b43e commit: dde90b197cb109a8887c68e4fa7174a44e8fe8b6 Author: David Seifert gentoo org> AuthorDate: Sun Apr 21 14:01:18 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Apr 21 14:01:18 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dde90b19 dev-python/bluelet: [QA] Call distutils-r1_python_install_all * EAPI 7 Closes: https://bugs.gentoo.org/683200 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: David Seifert gentoo.org> dev-python/bluelet/bluelet-0.2.0.ebuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/dev-python/bluelet/bluelet-0.2.0.ebuild b/dev-python/bluelet/bluelet-0.2.0.ebuild index 946e4fbb69b..f3760dd89a3 100644 --- a/dev-python/bluelet/bluelet-0.2.0.ebuild +++ b/dev-python/bluelet/bluelet-0.2.0.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -PYTHON_COMPAT=( python{2_7,3_5,3_6} ) +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} ) inherit distutils-r1 @@ -16,12 +16,11 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="examples" -DEPEND="" -RDEPEND="${DEPEND}" - python_install_all() { + distutils-r1_python_install_all + if use examples; then - docompress -x usr/share/doc/${P}/demo - dodoc -r demo/ + dodoc -r demo + docompress -x /usr/share/doc/${PF}/demo fi }