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 D3F13138334 for ; Sun, 18 Nov 2018 11:20:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A78DFE0ECB; Sun, 18 Nov 2018 11:20:52 +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 7EF80E0ECB for ; Sun, 18 Nov 2018 11:20:52 +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 3D9DD335C5D for ; Sun, 18 Nov 2018 11:20:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D4F3245D for ; Sun, 18 Nov 2018 11:20:47 +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: <1542540035.a257dba8d22cc450b5f1535f19bf733088f8b546.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/fio/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/fio/fio-3.7.ebuild X-VCS-Directories: sys-block/fio/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: a257dba8d22cc450b5f1535f19bf733088f8b546 X-VCS-Branch: master Date: Sun, 18 Nov 2018 11:20:47 +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: b45687d4-63ff-4370-b0d3-da033d6c05ff X-Archives-Hash: 6f399993b068105ca9e63acf5a683e66 commit: a257dba8d22cc450b5f1535f19bf733088f8b546 Author: Justin Lecher gentoo org> AuthorDate: Sun Nov 18 11:10:04 2018 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Nov 18 11:20:35 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a257dba8 sys-block/fio: Fix shebang before replicating script Closes: https://bugs.gentoo.org/659556 Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: Justin Lecher gentoo.org> sys-block/fio/fio-3.7.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys-block/fio/fio-3.7.ebuild b/sys-block/fio/fio-3.7.ebuild index dd2a2649eca..b1d447a9098 100644 --- a/sys-block/fio/fio-3.7.ebuild +++ b/sys-block/fio/fio-3.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -87,6 +87,10 @@ src_install() { emake install DESTDIR="${D}" prefix="${EPREFIX}/usr" mandir="${EPREFIX}/usr/share/man" if use gnuplot ; then + sed -i 's:python2.7:python:g' \ + "${ED}/usr/bin/fio2gnuplot" \ + "${ED}/usr/bin/fiologparser_hist.py" \ + "${ED}/usr/bin/fiologparser.py" python_replicate_script \ "${ED}/usr/bin/fio2gnuplot" \ "${ED}/usr/bin/fiologparser_hist.py" \