From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0D68B1388BF for ; Thu, 14 Jan 2016 09:54:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 226BA21C020; Thu, 14 Jan 2016 09:53:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1A5D321C020 for ; Thu, 14 Jan 2016 09:53:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2B583340B09 for ; Thu, 14 Jan 2016 09:53:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50806E6B for ; Thu, 14 Jan 2016 09:53:46 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1452765217.95bab145c37a568e38604686c060844c8761945c.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mock/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mock/mock-1.3.0-r1.ebuild dev-python/mock/mock-1.3.0-r2.ebuild X-VCS-Directories: dev-python/mock/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 95bab145c37a568e38604686c060844c8761945c X-VCS-Branch: master Date: Thu, 14 Jan 2016 09:53:46 +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: a1a800f9-40a6-455c-8dde-3730302ce758 X-Archives-Hash: f83006514a5be769440206fe43248017 commit: 95bab145c37a568e38604686c060844c8761945c Author: Justin Lecher gentoo org> AuthorDate: Thu Jan 14 08:59:12 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Jan 14 09:53:37 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95bab145 dev-python/mock: Fix doc installation Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=571744 Package-Manager: portage-2.2.26 Signed-off-by: Justin Lecher gentoo.org> dev-python/mock/{mock-1.3.0-r1.ebuild => mock-1.3.0-r2.ebuild} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/mock/mock-1.3.0-r1.ebuild b/dev-python/mock/mock-1.3.0-r2.ebuild similarity index 89% rename from dev-python/mock/mock-1.3.0-r1.ebuild rename to dev-python/mock/mock-1.3.0-r2.ebuild index 5407477..61ec52c 100644 --- a/dev-python/mock/mock-1.3.0-r1.ebuild +++ b/dev-python/mock/mock-1.3.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -37,6 +37,7 @@ python_test() { } python_install_all() { - local DOCS=( docs/. ) + local DOCS=( docs/{conf.py,index.txt} AUTHORS ChangeLog NEWS README.rst ) + distutils-r1_python_install_all }