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 F0402138350 for ; Fri, 20 Mar 2020 09:58:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F33CDE0D2B; Fri, 20 Mar 2020 09:58:07 +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 D9B7FE0D2B for ; Fri, 20 Mar 2020 09:58:07 +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 7E25E34F0F0 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 E17A01A0 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: <1584698226.8ba5f0978f10c92489b3d7c988973fa27846eef1.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyglet/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyglet/pyglet-1.2.4.ebuild X-VCS-Directories: dev-python/pyglet/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 8ba5f0978f10c92489b3d7c988973fa27846eef1 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: 2788c3da-8165-4360-ac87-84d86bb90a52 X-Archives-Hash: 886891fc09b9516a2de1b8915410c0ed commit: 8ba5f0978f10c92489b3d7c988973fa27846eef1 Author: David Seifert gentoo org> AuthorDate: Fri Mar 20 09:57:06 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Mar 20 09:57:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ba5f097 dev-python/pyglet: Replace distutils-r1 EXAMPLES use Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: David Seifert gentoo.org> dev-python/pyglet/pyglet-1.2.4.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/pyglet/pyglet-1.2.4.ebuild b/dev-python/pyglet/pyglet-1.2.4.ebuild index 399948d3dbb..c207ab21ecb 100644 --- a/dev-python/pyglet/pyglet-1.2.4.ebuild +++ b/dev-python/pyglet/pyglet-1.2.4.ebuild @@ -36,6 +36,10 @@ python_test() { python_install_all() { DOCS=( NOTICE ) - use examples && EXAMPLES=( examples ) + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi + distutils-r1_python_install_all }