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 30F3B138350 for ; Wed, 25 Mar 2020 20:31:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E95BE0BF4; Wed, 25 Mar 2020 20:31:22 +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 2B2CAE0BF4 for ; Wed, 25 Mar 2020 20:31:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 EE07834FA1C for ; Wed, 25 Mar 2020 20:31:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E8CE186 for ; Wed, 25 Mar 2020 20:31:19 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1585168273.26c81aa26ce757615bd3273a8e48c6d825a08d24.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy3/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypy3/pypy3-7.3.0.ebuild X-VCS-Directories: dev-python/pypy3/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 26c81aa26ce757615bd3273a8e48c6d825a08d24 X-VCS-Branch: master Date: Wed, 25 Mar 2020 20:31:19 +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: 1ae00a6d-824b-4e55-9013-232f414cd3bc X-Archives-Hash: 7279353a9c4697972332661ad16cb7af commit: 26c81aa26ce757615bd3273a8e48c6d825a08d24 Author: Michał Górny gentoo org> AuthorDate: Wed Mar 25 20:08:55 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Mar 25 20:31:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26c81aa2 dev-python/pypy3: Fix install after eclass changes Signed-off-by: Michał Górny gentoo.org> dev-python/pypy3/pypy3-7.3.0.ebuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dev-python/pypy3/pypy3-7.3.0.ebuild b/dev-python/pypy3/pypy3-7.3.0.ebuild index 9ec506dc186..1c5dfb21018 100644 --- a/dev-python/pypy3/pypy3-7.3.0.ebuild +++ b/dev-python/pypy3/pypy3-7.3.0.ebuild @@ -207,17 +207,13 @@ src_install() { "${ED}${dest}"/lib-python/*3/test/test_{tcl,tk,ttk*}.py || die fi + local -x EPYTHON=pypy3 local -x PYTHON=${ED}${dest}/pypy3-c - # we can't use eclass function since PyPy is dumb and always gives - # paths relative to the interpreter - local PYTHON_SITEDIR=${EPREFIX}/usr/lib/pypy3.6/site-packages - python_export pypy3 EPYTHON echo "EPYTHON='${EPYTHON}'" > epython.py || die + python_moduleinto /usr/lib/pypy3.6/site-packages python_domodule epython.py einfo "Byte-compiling Python standard library..." - - # compile the installed modules python_optimize "${ED}${dest}" }