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 CB1ED139694 for ; Sat, 8 Apr 2017 05:42:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28A89E0828; Sat, 8 Apr 2017 05:42:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08288E0828 for ; Sat, 8 Apr 2017 05:42:53 +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 1DBC2341586 for ; Sat, 8 Apr 2017 05:42:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FDA6743C for ; Sat, 8 Apr 2017 05:42:49 +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: <1491630160.4f1dd02f47a8605c40ef928226222d5b1984e0aa.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-5.5.0_alpha.ebuild dev-python/pypy3/pypy3-9999.ebuild X-VCS-Directories: dev-python/pypy3/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4f1dd02f47a8605c40ef928226222d5b1984e0aa X-VCS-Branch: master Date: Sat, 8 Apr 2017 05:42:49 +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-Archives-Salt: ad8dfc31-8a0b-4356-b92a-ca9e370c00fa X-Archives-Hash: cc1aec2e7862bbb3ae9e084b7c191bd0 commit: 4f1dd02f47a8605c40ef928226222d5b1984e0aa Author: Michał Górny gentoo org> AuthorDate: Fri Apr 7 19:58:54 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Apr 8 05:42:40 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f1dd02f dev-python/pypy3: Use usession*-0 rather than -current Use the usession*-0 directory directly rather than relying on the usession*-current symlink. As maffblaster reports, under some circumstances the symlink is called differently which seems to render the -0 name safer. dev-python/pypy3/pypy3-5.5.0_alpha.ebuild | 4 ++-- dev-python/pypy3/pypy3-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/pypy3/pypy3-5.5.0_alpha.ebuild b/dev-python/pypy3/pypy3-5.5.0_alpha.ebuild index 1a436991436..3c4ac7df716 100644 --- a/dev-python/pypy3/pypy3-5.5.0_alpha.ebuild +++ b/dev-python/pypy3/pypy3-5.5.0_alpha.ebuild @@ -160,10 +160,10 @@ src_configure() { } src_compile() { - emake -C "${T}"/usession*-current/testing_1 + emake -C "${T}"/usession*-0/testing_1 # copy back to make sys.prefix happy - cp -p "${T}"/usession*-current/testing_1/{pypy-c,libpypy-c.so} . || die + cp -p "${T}"/usession*-0/testing_1/{pypy-c,libpypy-c.so} . || die pax-mark m pypy-c libpypy-c.so #use doc && emake -C pypy/doc html diff --git a/dev-python/pypy3/pypy3-9999.ebuild b/dev-python/pypy3/pypy3-9999.ebuild index b399af1a9d4..8c0e93878b2 100644 --- a/dev-python/pypy3/pypy3-9999.ebuild +++ b/dev-python/pypy3/pypy3-9999.ebuild @@ -169,10 +169,10 @@ src_configure() { } src_compile() { - emake -C "${T}"/usession*-current/testing_1 + emake -C "${T}"/usession*-0/testing_1 # copy back to make sys.prefix happy - cp -p "${T}"/usession*-current/testing_1/{pypy-c,libpypy-c.so} . || die + cp -p "${T}"/usession*-0/testing_1/{pypy-c,libpypy-c.so} . || die pax-mark m pypy-c libpypy-c.so #use doc && emake -C pypy/doc html