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 5CF2B1382C5 for ; Fri, 11 Dec 2020 21:56:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C430E0849; Fri, 11 Dec 2020 21:56:58 +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 87349E0849 for ; Fri, 11 Dec 2020 21:56:58 +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 55FAB340FF1 for ; Fri, 11 Dec 2020 21:56:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EE4563A6 for ; Fri, 11 Dec 2020 21:56:55 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1607723814.082d3da15bc57f7b1f7027f1c0a33f2f6e4a47d7.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/python-exec/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/python-exec/python-exec-2.4.6-r2.ebuild dev-lang/python-exec/python-exec-2.4.6-r3.ebuild X-VCS-Directories: dev-lang/python-exec/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 082d3da15bc57f7b1f7027f1c0a33f2f6e4a47d7 X-VCS-Branch: master Date: Fri, 11 Dec 2020 21:56:55 +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: 538c0742-d892-4902-aeae-3dc65684237d X-Archives-Hash: 748bd67373bb1fcdcea7fce860c51c3e commit: 082d3da15bc57f7b1f7027f1c0a33f2f6e4a47d7 Author: Mike Gilbert gentoo org> AuthorDate: Fri Dec 11 21:55:03 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri Dec 11 21:56:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=082d3da1 dev-lang/python-exec: call internal _python_export to avoid warning Signed-off-by: Mike Gilbert gentoo.org> dev-lang/python-exec/python-exec-2.4.6-r2.ebuild | 2 +- dev-lang/python-exec/python-exec-2.4.6-r3.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-lang/python-exec/python-exec-2.4.6-r2.ebuild b/dev-lang/python-exec/python-exec-2.4.6-r2.ebuild index 9bd729c8519..3a975edc8d5 100644 --- a/dev-lang/python-exec/python-exec-2.4.6-r2.ebuild +++ b/dev-lang/python-exec/python-exec-2.4.6-r2.ebuild @@ -21,7 +21,7 @@ src_configure() { local pyimpls=() i EPYTHON for i in "${_PYTHON_ALL_IMPLS[@]}"; do if use "python_targets_${i}"; then - python_export "${i}" EPYTHON + _python_export "${i}" EPYTHON pyimpls+=( "${EPYTHON}" ) fi done diff --git a/dev-lang/python-exec/python-exec-2.4.6-r3.ebuild b/dev-lang/python-exec/python-exec-2.4.6-r3.ebuild index d049c3fb76d..6869fd24d05 100644 --- a/dev-lang/python-exec/python-exec-2.4.6-r3.ebuild +++ b/dev-lang/python-exec/python-exec-2.4.6-r3.ebuild @@ -21,7 +21,7 @@ src_configure() { local pyimpls=() i EPYTHON for i in "${_PYTHON_ALL_IMPLS[@]}"; do if use "python_targets_${i}"; then - python_export "${i}" EPYTHON + _python_export "${i}" EPYTHON pyimpls+=( "${EPYTHON}" ) fi done