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 0F260139694 for ; Wed, 28 Jun 2017 04:03:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26C7225403C; Wed, 28 Jun 2017 04:02:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 06E9825403C for ; Wed, 28 Jun 2017 04:02:59 +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 2DC8C3417A5 for ; Wed, 28 Jun 2017 04:02:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BED974B0 for ; Wed, 28 Jun 2017 04:02:54 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1498622416.b17c1f7d72833fc1ac7812d15ec1f1f3a75bff35.bicatali@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/h5py/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/h5py/h5py-2.7.0.ebuild X-VCS-Directories: dev-python/h5py/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: b17c1f7d72833fc1ac7812d15ec1f1f3a75bff35 X-VCS-Branch: master Date: Wed, 28 Jun 2017 04:02:54 +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-Archives-Salt: 88d3cf59-5e21-4191-9087-6228188cf4b6 X-Archives-Hash: a6071e4a699df0dfe1641abbb3bf9da9 commit: b17c1f7d72833fc1ac7812d15ec1f1f3a75bff35 Author: Sébastien Fabbro gentoo org> AuthorDate: Wed Jun 28 03:37:42 2017 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Wed Jun 28 04:00:16 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b17c1f7d dev-python/h5py: uncompress examples Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-python/h5py/h5py-2.7.0.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-python/h5py/h5py-2.7.0.ebuild b/dev-python/h5py/h5py-2.7.0.ebuild index 40e378e0f9c..d2c8e6af948 100644 --- a/dev-python/h5py/h5py-2.7.0.ebuild +++ b/dev-python/h5py/h5py-2.7.0.ebuild @@ -58,7 +58,10 @@ python_test() { python_install_all() { DOCS=( README.rst ANN.rst ) use doc && HTML_DOCS=( docs/_build/html/. ) - use examples && insinto /usr/share/doc/${PF} && doins -r examples + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi distutils-r1_python_install_all }