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 0057E138350 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 DA7D8E0CBC; 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 BF37DE0CBC for ; Fri, 20 Mar 2020 09:58:06 +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 C4A7834F325 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 1285A1A3 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: <1584698232.c695a06ac4ab4ae77399c3d3d5bf0ea1280fd794.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyinotify/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyinotify/pyinotify-0.9.6.ebuild X-VCS-Directories: dev-python/pyinotify/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c695a06ac4ab4ae77399c3d3d5bf0ea1280fd794 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: 6c0e4a33-85c4-4642-8c68-8b4e1c32daa8 X-Archives-Hash: 3c43e464dd807348422d8473e7f44ebc commit: c695a06ac4ab4ae77399c3d3d5bf0ea1280fd794 Author: David Seifert gentoo org> AuthorDate: Fri Mar 20 09:57:12 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Mar 20 09:57:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c695a06a dev-python/pyinotify: Replace distutils-r1 EXAMPLES use Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: David Seifert gentoo.org> dev-python/pyinotify/pyinotify-0.9.6.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-python/pyinotify/pyinotify-0.9.6.ebuild b/dev-python/pyinotify/pyinotify-0.9.6.ebuild index cec4b5d13b2..126697e11ff 100644 --- a/dev-python/pyinotify/pyinotify-0.9.6.ebuild +++ b/dev-python/pyinotify/pyinotify-0.9.6.ebuild @@ -21,7 +21,10 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" RDEPEND="" python_install_all() { - use examples && local EXAMPLES=( python2/examples/. ) - EXAMPLES+=( python3/examples/. ) + if use examples; then + dodoc -r python3/examples + docompress -x /usr/share/doc/${PF}/examples + fi + distutils-r1_python_install_all }