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 9A854138BF2 for ; Mon, 24 Oct 2016 13:32:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C84BE08C1; Mon, 24 Oct 2016 13:32:50 +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 54E9FE08C1 for ; Mon, 24 Oct 2016 13:32:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4E48F341686 for ; Mon, 24 Oct 2016 13:32:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4568024A2 for ; Mon, 24 Oct 2016 13:32:47 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1477315962.512747457ada2aba090f5828542f73b1016c2401.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tagpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tagpy/tagpy-2013.1.ebuild X-VCS-Directories: dev-python/tagpy/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 512747457ada2aba090f5828542f73b1016c2401 X-VCS-Branch: master Date: Mon, 24 Oct 2016 13:32:47 +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: 2b93d4f1-de68-4811-8703-80cecad2d1a7 X-Archives-Hash: e4c123c374100c72a09ece495ded006e commit: 512747457ada2aba090f5828542f73b1016c2401 Author: Pacho Ramos gentoo org> AuthorDate: Mon Oct 24 13:31:55 2016 +0000 Commit: Pacho Ramos gentoo 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 }