summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Muskee <wimmuskee@gmail.com>2016-12-16 20:49:17 +0100
committerPatrice Clement <monsieurp@gentoo.org>2016-12-16 23:22:23 +0100
commit3497e99e2aa00cfb43454b636162162967c82daa (patch)
tree05dbc5d87baba16158f17cfc5fedc8b9febf4f5d /dev-python
parentnet-misc/openvpn: Version bump to 2.3.14 (diff)
downloadgentoo-3497e99e2aa00cfb43454b636162162967c82daa.tar.gz
gentoo-3497e99e2aa00cfb43454b636162162967c82daa.tar.bz2
gentoo-3497e99e2aa00cfb43454b636162162967c82daa.zip
dev-python/paramiko: install examples in the right place.
Gentoo-Bug: https://bugs.gentoo.org/595088 Closes: https://github.com/gentoo/gentoo/pull/3135
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/paramiko/paramiko-2.0.2.ebuild6
1 files changed, 5 insertions, 1 deletions
diff --git a/dev-python/paramiko/paramiko-2.0.2.ebuild b/dev-python/paramiko/paramiko-2.0.2.ebuild
index 6a5d2e62f679..c0d0a40c11e1 100644
--- a/dev-python/paramiko/paramiko-2.0.2.ebuild
+++ b/dev-python/paramiko/paramiko-2.0.2.ebuild
@@ -33,7 +33,11 @@ python_test() {
python_install_all() {
use doc && local HTML_DOCS=( docs/. )
- use examples && local EXAMPLES=( demos/. )
distutils-r1_python_install_all
+
+ if use examples; then
+ insinto /usr/share/doc/${PF}/examples
+ doins demos/*
+ fi
}