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 33D53138334 for ; Thu, 28 Jun 2018 19:18:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA2D3E0966; Thu, 28 Jun 2018 19:18:30 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE991E0964 for ; Thu, 28 Jun 2018 19:18:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 60032335C94 for ; Thu, 28 Jun 2018 19:18:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4AB1E353 for ; Thu, 28 Jun 2018 19:18:26 +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: <1530213469.f349b63c770c264b3d20cb88c36a7f968a9da944.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bokeh/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/bokeh/bokeh-0.12.6.ebuild X-VCS-Directories: dev-python/bokeh/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: f349b63c770c264b3d20cb88c36a7f968a9da944 X-VCS-Branch: master Date: Thu, 28 Jun 2018 19:18:26 +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: 7bb65478-3e56-4b3e-959c-f56915d0519a X-Archives-Hash: 4a8b8125543147aa55043e6065c3545a commit: f349b63c770c264b3d20cb88c36a7f968a9da944 Author: Pacho Ramos gentoo org> AuthorDate: Thu Jun 28 19:01:52 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Thu Jun 28 19:17:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f349b63c dev-python/bokeh: Fix examples installation (#659438) Package-Manager: Portage-2.3.41, Repoman-2.3.9 dev-python/bokeh/bokeh-0.12.6.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-python/bokeh/bokeh-0.12.6.ebuild b/dev-python/bokeh/bokeh-0.12.6.ebuild index 4e2f6972548..df90b6f1979 100644 --- a/dev-python/bokeh/bokeh-0.12.6.ebuild +++ b/dev-python/bokeh/bokeh-0.12.6.ebuild @@ -67,6 +67,9 @@ python_test() { } python_install_all() { - use examples && local EXAMPLES=( examples/. ) + if use examples; then + insinto "/usr/share/doc/${PF}/examples/" + doins examples/* + fi distutils-r1_python_install_all }