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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2B74B15808B for ; Mon, 7 Mar 2022 18:19:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52501E076B; Mon, 7 Mar 2022 18:19:02 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 33547E076B for ; Mon, 7 Mar 2022 18:19:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 181AB343228 for ; Mon, 7 Mar 2022 18:19:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D4D42E0 for ; Mon, 7 Mar 2022 18:18:59 +0000 (UTC) From: "Nicolas Bock" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicolas Bock" Message-ID: <1646677130.3e17f8b5b798f756f723c61eb437c6bf11d7b6d5.nicolasbock@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/charliecloud/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/charliecloud/charliecloud-0.26-r1.ebuild sys-cluster/charliecloud/charliecloud-0.26.ebuild sys-cluster/charliecloud/charliecloud-9999.ebuild X-VCS-Directories: sys-cluster/charliecloud/ X-VCS-Committer: nicolasbock X-VCS-Committer-Name: Nicolas Bock X-VCS-Revision: 3e17f8b5b798f756f723c61eb437c6bf11d7b6d5 X-VCS-Branch: master Date: Mon, 7 Mar 2022 18:18:59 +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: c6937051-7182-4557-a3cf-98937388d832 X-Archives-Hash: a7ac9091bd44a2cfbf07eb4d6fb61eba commit: 3e17f8b5b798f756f723c61eb437c6bf11d7b6d5 Author: Oliver Freyermuth googlemail com> AuthorDate: Sun Mar 6 17:42:04 2022 +0000 Commit: Nicolas Bock gentoo org> CommitDate: Mon Mar 7 18:18:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e17f8b5 sys-cluster/charliecloud: Fix Python shebang. Previously, /usr/bin/env python3 was used (upstream default), which is generic and hence should not be used on Gentoo. Package-Manager: Portage-3.0.30, Repoman-3.0.3 Closes: https://github.com/gentoo/gentoo/pull/24425 Signed-off-by: Oliver Freyermuth googlemail.com> Signed-off-by: Nicolas Bock gentoo.org> .../{charliecloud-0.26.ebuild => charliecloud-0.26-r1.ebuild} | 2 ++ sys-cluster/charliecloud/charliecloud-9999.ebuild | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/sys-cluster/charliecloud/charliecloud-0.26.ebuild b/sys-cluster/charliecloud/charliecloud-0.26-r1.ebuild similarity index 97% rename from sys-cluster/charliecloud/charliecloud-0.26.ebuild rename to sys-cluster/charliecloud/charliecloud-0.26-r1.ebuild index 8ce74691fe62..14f8aa4a1aa5 100644 --- a/sys-cluster/charliecloud/charliecloud-0.26.ebuild +++ b/sys-cluster/charliecloud/charliecloud-0.26-r1.ebuild @@ -66,6 +66,8 @@ src_configure() { --enable-buggy-build # Do not use bundled version of dev-python/lark-parser. --disable-bundled-lark + # Use correct shebang. + --with-python=${PYTHON} ) econf "${econf_args[@]}" } diff --git a/sys-cluster/charliecloud/charliecloud-9999.ebuild b/sys-cluster/charliecloud/charliecloud-9999.ebuild index 8a596e2fb8a1..14f8aa4a1aa5 100644 --- a/sys-cluster/charliecloud/charliecloud-9999.ebuild +++ b/sys-cluster/charliecloud/charliecloud-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -66,6 +66,8 @@ src_configure() { --enable-buggy-build # Do not use bundled version of dev-python/lark-parser. --disable-bundled-lark + # Use correct shebang. + --with-python=${PYTHON} ) econf "${econf_args[@]}" }