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 AB00E1391C4 for ; Tue, 25 Oct 2016 20:27:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D438FE0BEA; Tue, 25 Oct 2016 20:27:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE2F6E0BEA for ; Tue, 25 Oct 2016 20:27:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B5C6A34163C for ; Tue, 25 Oct 2016 20:27:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66FB024A2 for ; Tue, 25 Oct 2016 20:27:21 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1477427232.478b6318a767981c7f0b66b97ba578093d73f6bf.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pillow/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pillow/pillow-3.4.2.ebuild X-VCS-Directories: dev-python/pillow/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 478b6318a767981c7f0b66b97ba578093d73f6bf X-VCS-Branch: master Date: Tue, 25 Oct 2016 20:27:21 +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-Archives-Salt: e6aa82e4-1db0-4218-8fb7-ea253fb9f501 X-Archives-Hash: 3f8d349710f115d5a193acec68479d9f commit: 478b6318a767981c7f0b66b97ba578093d73f6bf Author: Lars Wendler gentoo org> AuthorDate: Tue Oct 25 20:18:14 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Oct 25 20:27:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=478b6318 dev-python/pillow: EXAMPLES variable is banned in EAPI-6 (bug #598090). Package-Manager: portage-2.3.2 Signed-off-by: Lars Wendler gentoo.org> dev-python/pillow/pillow-3.4.2.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/pillow/pillow-3.4.2.ebuild b/dev-python/pillow/pillow-3.4.2.ebuild index f2c1063..8545b44 100644 --- a/dev-python/pillow/pillow-3.4.2.ebuild +++ b/dev-python/pillow/pillow-3.4.2.ebuild @@ -88,7 +88,11 @@ python_install() { python_install_all() { use doc && local HTML_DOCS=( docs/_build/html/. ) - use examples && local EXAMPLES=( Scripts/. ) + if use examples ; then + docinto examples + dodoc Scripts/* + docompress -x /usr/share/doc/${PF}/examples + fi distutils-r1_python_install_all }