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 D97F4138334 for ; Wed, 25 Jul 2018 11:55:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7427E08D3; Wed, 25 Jul 2018 11:55:42 +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 848C5E08D3 for ; Wed, 25 Jul 2018 11:55:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 88BA3335C08 for ; Wed, 25 Jul 2018 11:55:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5882D353 for ; Wed, 25 Jul 2018 11:55:38 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1532519727.8b66dfac4898666bd95c77dde05e1f0b973f4b42.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/file/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/file/file-5.34.ebuild sys-apps/file/file-9999.ebuild X-VCS-Directories: sys-apps/file/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 8b66dfac4898666bd95c77dde05e1f0b973f4b42 X-VCS-Branch: master Date: Wed, 25 Jul 2018 11:55:38 +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: 2e549091-f865-41c7-a2da-a588aa008a1b X-Archives-Hash: 458146e048b8875b77d5e14285bf7921 commit: 8b66dfac4898666bd95c77dde05e1f0b973f4b42 Author: Lars Wendler gentoo org> AuthorDate: Wed Jul 25 11:55:27 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Jul 25 11:55:27 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b66dfac sys-apps/file: Fixed installation with USE="python" Closes: https://bugs.gentoo.org/662090 Package-Manager: Portage-2.3.43, Repoman-2.3.10 sys-apps/file/file-5.34.ebuild | 3 ++- sys-apps/file/file-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sys-apps/file/file-5.34.ebuild b/sys-apps/file/file-5.34.ebuild index 536dd456e9b..848fa28a482 100644 --- a/sys-apps/file/file-5.34.ebuild +++ b/sys-apps/file/file-5.34.ebuild @@ -40,7 +40,8 @@ src_prepare() { elibtoolize # don't let python README kill main README #60043 - mv python/README.md README.python.md || die + mv python/README.md python/README.python.md || die + sed 's@README.md@README.python.md@' -i python/setup.py || die #662090 } multilib_src_configure() { diff --git a/sys-apps/file/file-9999.ebuild b/sys-apps/file/file-9999.ebuild index f346e1b700a..8bdee5d348a 100644 --- a/sys-apps/file/file-9999.ebuild +++ b/sys-apps/file/file-9999.ebuild @@ -41,7 +41,8 @@ src_prepare() { elibtoolize # don't let python README kill main README #60043 - mv python/README.md README.python.md || die + mv python/README.md python/README.python.md || die + sed 's@README.md@README.python.md@' -i python/setup.py || die #662090 } multilib_src_configure() {