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 599111382C5 for ; Thu, 14 Jan 2021 14:37:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9240CE0975; Thu, 14 Jan 2021 14:37:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 7A80AE0975 for ; Thu, 14 Jan 2021 14:37:34 +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 DC939340AE2 for ; Thu, 14 Jan 2021 14:37:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 743FE4B for ; Thu, 14 Jan 2021 14:37:31 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1610635025.3fe8932064015c6f559f0614e8321074c8e06f32.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/tuned/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/tuned/tuned-2.15.0.ebuild X-VCS-Directories: sys-apps/tuned/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 3fe8932064015c6f559f0614e8321074c8e06f32 X-VCS-Branch: master Date: Thu, 14 Jan 2021 14:37:31 +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: 3b1cb02d-7b81-40ec-8057-0285aabdb529 X-Archives-Hash: 761060b2444b2863d00a79831dc4d8f3 commit: 3fe8932064015c6f559f0614e8321074c8e06f32 Author: Yixun Lan gentoo org> AuthorDate: Thu Jan 14 14:35:40 2021 +0000 Commit: Yixun Lan gentoo org> CommitDate: Thu Jan 14 14:37:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fe89320 sys-apps/tuned: fix python shebang error Closes: https://bugs.gentoo.org/765391 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Yixun Lan gentoo.org> sys-apps/tuned/tuned-2.15.0.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/sys-apps/tuned/tuned-2.15.0.ebuild b/sys-apps/tuned/tuned-2.15.0.ebuild index 9c35900cbdd..58b76e9dde2 100644 --- a/sys-apps/tuned/tuned-2.15.0.ebuild +++ b/sys-apps/tuned/tuned-2.15.0.ebuild @@ -41,6 +41,7 @@ src_prepare() { default sed -i \ + -e "/^PYTHON/s:/usr/bin/python3:${EPYTHON}:" \ -e "/^export DOCDIR/s/$/&\-\$(VERSION)/g" \ -e "/\$(DESTDIR)\/run\/tuned/d" \ -e "/\$(DESTDIR)\/var\/lib\/tuned/d" \