commit: 512747457ada2aba090f5828542f73b1016c2401
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 24 13:31:55 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Mon Oct 24 13:32:42 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51274745
dev-python/tagpy: Fix examples installation (#586038)
Package-Manager: portage-2.3.2
dev-python/tagpy/tagpy-2013.1.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/dev-python/tagpy/tagpy-2013.1.ebuild
b/dev-python/tagpy/tagpy-2013.1.ebuild
index 579986c..c6c1837 100644
--- a/dev-python/tagpy/tagpy-2013.1.ebuild
+++ b/dev-python/tagpy/tagpy-2013.1.ebuild
@@ -31,7 +31,10 @@ python_configure() {
}
python_install_all() {
- use examples && local EXAMPLES=( test/* )
+ if use examples; then
+ docinto examples
+ dodoc -r test/*
+ fi
distutils-r1_python_install_all
}