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 DFA351382C5 for ; Mon, 10 May 2021 20:52:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 217E2E07DB; Mon, 10 May 2021 20:52:02 +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 01A7DE07DB for ; Mon, 10 May 2021 20:52:01 +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 69610335DAB for ; Mon, 10 May 2021 20:51:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD4134A0 for ; Mon, 10 May 2021 20:51:57 +0000 (UTC) From: "Stephan Hartmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Stephan Hartmann" Message-ID: <1620679912.cd54effccee98ffbc1c12655fae6893ee55e6bb6.sultan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/chromium-90.0.4430.93.ebuild www-client/chromium/chromium-91.0.4472.38.ebuild www-client/chromium/chromium-92.0.4496.0.ebuild X-VCS-Directories: www-client/chromium/ X-VCS-Committer: sultan X-VCS-Committer-Name: Stephan Hartmann X-VCS-Revision: cd54effccee98ffbc1c12655fae6893ee55e6bb6 X-VCS-Branch: master Date: Mon, 10 May 2021 20:51:57 +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: c3b675c9-8d72-4714-ac22-97139bcbc6ae X-Archives-Hash: a64678eb84a353d0569b57fa62e9e212 commit: cd54effccee98ffbc1c12655fae6893ee55e6bb6 Author: Stephan Hartmann gentoo org> AuthorDate: Mon May 10 20:50:40 2021 +0000 Commit: Stephan Hartmann gentoo org> CommitDate: Mon May 10 20:51:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd54effc www-client/chromium: don't inherit PYTHONPATH from environment Closes: https://bugs.gentoo.org/789021 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Stephan Hartmann gentoo.org> www-client/chromium/chromium-90.0.4430.93.ebuild | 3 ++- www-client/chromium/chromium-91.0.4472.38.ebuild | 3 ++- www-client/chromium/chromium-92.0.4496.0.ebuild | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/www-client/chromium/chromium-90.0.4430.93.ebuild b/www-client/chromium/chromium-90.0.4430.93.ebuild index ff4555efaf8..02f536bbf2e 100644 --- a/www-client/chromium/chromium-90.0.4430.93.ebuild +++ b/www-client/chromium/chromium-90.0.4430.93.ebuild @@ -781,7 +781,8 @@ src_compile() { python_setup # https://bugs.gentoo.org/717456 - local -x PYTHONPATH="${WORKDIR}/setuptools-44.1.0:${PYTHONPATH+:}${PYTHONPATH}" + # don't inherit PYTHONPATH from environment, bug #789021 + local -x PYTHONPATH="${WORKDIR}/setuptools-44.1.0" #"${EPYTHON}" tools/clang/scripts/update.py --force-local-build --gcc-toolchain /usr --skip-checkout --use-system-cmake --without-android || die diff --git a/www-client/chromium/chromium-91.0.4472.38.ebuild b/www-client/chromium/chromium-91.0.4472.38.ebuild index 0c19e8a896b..e3aafc961b9 100644 --- a/www-client/chromium/chromium-91.0.4472.38.ebuild +++ b/www-client/chromium/chromium-91.0.4472.38.ebuild @@ -779,7 +779,8 @@ src_compile() { python_setup # https://bugs.gentoo.org/717456 - local -x PYTHONPATH="${WORKDIR}/setuptools-44.1.0:${PYTHONPATH+:}${PYTHONPATH}" + # don't inherit PYTHONPATH from environment, bug #789021 + local -x PYTHONPATH="${WORKDIR}/setuptools-44.1.0" #"${EPYTHON}" tools/clang/scripts/update.py --force-local-build --gcc-toolchain /usr --skip-checkout --use-system-cmake --without-android || die diff --git a/www-client/chromium/chromium-92.0.4496.0.ebuild b/www-client/chromium/chromium-92.0.4496.0.ebuild index 0b017ced49a..fd45bf86b04 100644 --- a/www-client/chromium/chromium-92.0.4496.0.ebuild +++ b/www-client/chromium/chromium-92.0.4496.0.ebuild @@ -785,7 +785,8 @@ src_compile() { python_setup # https://bugs.gentoo.org/717456 - local -x PYTHONPATH="${WORKDIR}/setuptools-44.1.0:${PYTHONPATH+:}${PYTHONPATH}" + # don't inherit PYTHONPATH from environment, bug #789021 + local -x PYTHONPATH="${WORKDIR}/setuptools-44.1.0" #"${EPYTHON}" tools/clang/scripts/update.py --force-local-build --gcc-toolchain /usr --skip-checkout --use-system-cmake --without-android || die