diff options
author | Sébastien Fabbro <bicatali@gentoo.org> | 2017-06-28 03:37:42 +0000 |
---|---|---|
committer | Sébastien Fabbro <bicatali@gentoo.org> | 2017-06-28 04:00:16 +0000 |
commit | b17c1f7d72833fc1ac7812d15ec1f1f3a75bff35 (patch) | |
tree | 3c3349bc2982a17089186a1665e7eebc4b72f205 /dev-python/h5py | |
parent | dev-python/blaze: version bump (diff) | |
download | gentoo-b17c1f7d72833fc1ac7812d15ec1f1f3a75bff35.tar.gz gentoo-b17c1f7d72833fc1ac7812d15ec1f1f3a75bff35.tar.bz2 gentoo-b17c1f7d72833fc1ac7812d15ec1f1f3a75bff35.zip |
dev-python/h5py: uncompress examples
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-python/h5py')
-rw-r--r-- | dev-python/h5py/h5py-2.7.0.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dev-python/h5py/h5py-2.7.0.ebuild b/dev-python/h5py/h5py-2.7.0.ebuild index 40e378e0f9c9..d2c8e6af9486 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 } |