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 35C70138359 for ; Fri, 18 Sep 2020 09:18:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21359E07F6; Fri, 18 Sep 2020 09:18:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 078FDE07F6 for ; Fri, 18 Sep 2020 09:18:23 +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 68F3F340F71 for ; Fri, 18 Sep 2020 09:18:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DFA8C353 for ; Fri, 18 Sep 2020 09:18:20 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1600420696.9468e0843d596ab84aae1195656b17d86bed5f77.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nose/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/nose/nose-1.3.7-r5.ebuild dev-python/nose/nose-1.3.7-r6.ebuild X-VCS-Directories: dev-python/nose/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9468e0843d596ab84aae1195656b17d86bed5f77 X-VCS-Branch: master Date: Fri, 18 Sep 2020 09:18:20 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6ce5da6a-44f1-4e72-a750-d616ca95c8f2 X-Archives-Hash: 9a181c9d5e706dd3ed6e05e8f1984b7f commit: 9468e0843d596ab84aae1195656b17d86bed5f77 Author: Michał Górny gentoo org> AuthorDate: Fri Sep 18 08:28:22 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Sep 18 09:18:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9468e084 dev-python/nose: Fix manpage install path Closes: https://bugs.gentoo.org/725382 Signed-off-by: Michał Górny gentoo.org> dev-python/nose/{nose-1.3.7-r5.ebuild => nose-1.3.7-r6.ebuild} | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-python/nose/nose-1.3.7-r5.ebuild b/dev-python/nose/nose-1.3.7-r6.ebuild similarity index 96% rename from dev-python/nose/nose-1.3.7-r5.ebuild rename to dev-python/nose/nose-1.3.7-r6.ebuild index 74706603636..8b847cf4513 100644 --- a/dev-python/nose/nose-1.3.7-r5.ebuild +++ b/dev-python/nose/nose-1.3.7-r6.ebuild @@ -61,6 +61,9 @@ python_prepare_all() { sed -e "/'nosetests%s = nose:run_exit' % py_vers_tag,/d" \ -i setup.py || die "sed2 failed" + # fix manpage install path + sed -i -e 's:man/:share/&:' setup.py || die + distutils-r1_python_prepare_all }