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 924AB1382C5 for ; Mon, 19 Mar 2018 16:51:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64EE1E088B; Mon, 19 Mar 2018 16:51:04 +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 3F4A3E088B for ; Mon, 19 Mar 2018 16:51:04 +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 14B06335D2D for ; Mon, 19 Mar 2018 16:51:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B7A525A for ; Mon, 19 Mar 2018 16:51:01 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1521478251.9392c7fa82bd89278b231f8517688c98c080d18c.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/clint/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/clint/clint-0.5.1.ebuild X-VCS-Directories: dev-python/clint/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 9392c7fa82bd89278b231f8517688c98c080d18c X-VCS-Branch: master Date: Mon, 19 Mar 2018 16:51:01 +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: 0a254bfb-170e-4717-9d71-0d35a6bab5ef X-Archives-Hash: 63639e02ae9e09a2361481108a5bfcee commit: 9392c7fa82bd89278b231f8517688c98c080d18c Author: Mikle Kolyada gentoo org> AuthorDate: Mon Mar 19 16:50:21 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Mon Mar 19 16:50:51 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9392c7fa dev-python/clint: Install examples properly Closes: https://bugs.gentoo.org/648520 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-python/clint/clint-0.5.1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-python/clint/clint-0.5.1.ebuild b/dev-python/clint/clint-0.5.1.ebuild index a7d30299689..31d0ad0583a 100644 --- a/dev-python/clint/clint-0.5.1.ebuild +++ b/dev-python/clint/clint-0.5.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -32,7 +32,10 @@ python_test() { python_install_all() { use doc && local HTML_DOCS=( docs/_build/html/. ) - use examples && local EXAMPLES=( examples/. ) + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples + fi distutils-r1_python_install_all }