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 32495138350 for ; Fri, 20 Mar 2020 09:58:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 276A0E0C37; Fri, 20 Mar 2020 09:58:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 08B18E0C3F 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 40AF134F2B9 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 A8A08199 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: <1584698218.f27b9b4303d7c2e0f61d0a81c7c7920e75c3e09f.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycurl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pycurl/pycurl-7.43.0.ebuild X-VCS-Directories: dev-python/pycurl/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: f27b9b4303d7c2e0f61d0a81c7c7920e75c3e09f 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: bf8fc547-12c2-4a89-805e-e8501422d8bc X-Archives-Hash: 8c6a550a0cbca9ab28805487a8b0d630 commit: f27b9b4303d7c2e0f61d0a81c7c7920e75c3e09f Author: David Seifert gentoo org> AuthorDate: Fri Mar 20 09:56:58 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Mar 20 09:56:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f27b9b43 dev-python/pycurl: Replace distutils-r1 EXAMPLES use Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: David Seifert gentoo.org> dev-python/pycurl/pycurl-7.43.0.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/pycurl/pycurl-7.43.0.ebuild b/dev-python/pycurl/pycurl-7.43.0.ebuild index 709ce8c1f28..6d0938ac010 100644 --- a/dev-python/pycurl/pycurl-7.43.0.ebuild +++ b/dev-python/pycurl/pycurl-7.43.0.ebuild @@ -72,6 +72,10 @@ python_test() { python_install_all() { local HTML_DOCS=( doc/. ) - 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 }