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 511CA138350 for ; Fri, 20 Mar 2020 09:58:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56194E0C9E; 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 3E8E7E0C9E for ; Fri, 20 Mar 2020 09:58:06 +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 58E7834F31E 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 BB9E219B 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: <1584698220.57b66bba2a9f877e4204368e60de32a938cca71e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycxx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pycxx/pycxx-6.2.6.ebuild dev-python/pycxx/pycxx-7.1.2.ebuild X-VCS-Directories: dev-python/pycxx/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 57b66bba2a9f877e4204368e60de32a938cca71e 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: bfa7b23b-030a-4715-a1ad-32bf531167de X-Archives-Hash: 5e704dd46cc55554cfa0a8a25f89f913 commit: 57b66bba2a9f877e4204368e60de32a938cca71e Author: David Seifert gentoo org> AuthorDate: Fri Mar 20 09:57:00 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Mar 20 09:57:00 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57b66bba dev-python/pycxx: Replace distutils-r1 EXAMPLES use Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: David Seifert gentoo.org> dev-python/pycxx/pycxx-6.2.6.ebuild | 7 ++++++- dev-python/pycxx/pycxx-7.1.2.ebuild | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/dev-python/pycxx/pycxx-6.2.6.ebuild b/dev-python/pycxx/pycxx-6.2.6.ebuild index c90dbab688d..1baa0be8acc 100644 --- a/dev-python/pycxx/pycxx-6.2.6.ebuild +++ b/dev-python/pycxx/pycxx-6.2.6.ebuild @@ -31,6 +31,11 @@ python_prepare_all() { python_install_all() { use doc && local HTML_DOCS=( Doc/. ) - use examples && local EXAMPLES=( Demo/Python{2,3}/. ) + if use examples; then + docinto examples + dodoc -r Demo/Python{2,3}/. + docompress -x /usr/share/doc/${PF}/examples + fi + distutils-r1_python_install_all } diff --git a/dev-python/pycxx/pycxx-7.1.2.ebuild b/dev-python/pycxx/pycxx-7.1.2.ebuild index d9581f73d9f..9e61adbe736 100644 --- a/dev-python/pycxx/pycxx-7.1.2.ebuild +++ b/dev-python/pycxx/pycxx-7.1.2.ebuild @@ -25,6 +25,11 @@ python_prepare_all() { python_install_all() { use doc && local HTML_DOCS=( Doc/. ) - use examples && local EXAMPLES=( Demo/Python{2,3}/. ) + if use examples; then + docinto examples + dodoc -r Demo/Python{2,3}/. + docompress -x /usr/share/doc/${PF}/examples + fi + distutils-r1_python_install_all }