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 DB1CB138350 for ; Fri, 20 Mar 2020 09:58:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1042E0D55; Fri, 20 Mar 2020 09:58:08 +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 89EA4E0D55 for ; Fri, 20 Mar 2020 09:58:08 +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 551D234F336 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 CB9871AF 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: <1584698262.012dd22d1dd5878dd9fed6a0ce265b4ceff5b51e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tweepy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tweepy/tweepy-3.5.0.ebuild X-VCS-Directories: dev-python/tweepy/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 012dd22d1dd5878dd9fed6a0ce265b4ceff5b51e 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: 7123e81e-abad-482d-9f74-ad47d8f4afc2 X-Archives-Hash: 66232627eaa1e7a62f84f97c696b14ec commit: 012dd22d1dd5878dd9fed6a0ce265b4ceff5b51e Author: David Seifert gentoo org> AuthorDate: Fri Mar 20 09:57:42 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Mar 20 09:57:42 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=012dd22d dev-python/tweepy: Replace distutils-r1 EXAMPLES use Closes: https://github.com/gentoo/gentoo/pull/15018 Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: David Seifert gentoo.org> dev-python/tweepy/tweepy-3.5.0.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/tweepy/tweepy-3.5.0.ebuild b/dev-python/tweepy/tweepy-3.5.0.ebuild index 603f325a84e..f5c8f65b38d 100644 --- a/dev-python/tweepy/tweepy-3.5.0.ebuild +++ b/dev-python/tweepy/tweepy-3.5.0.ebuild @@ -47,6 +47,10 @@ python_compile_all() { python_install_all() { use doc && local HTML_DOCS=( docs/_build/html/. ) - use examples && local EXAMPLES=( examples/. ) + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi + distutils-r1_python_install_all }