Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy3/
Date: Sat, 08 Apr 2017 05:42:53
Message-Id: 1491630160.4f1dd02f47a8605c40ef928226222d5b1984e0aa.mgorny@gentoo
1 commit: 4f1dd02f47a8605c40ef928226222d5b1984e0aa
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 7 19:58:54 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 8 05:42:40 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f1dd02f
7
8 dev-python/pypy3: Use usession*-0 rather than -current
9
10 Use the usession*-0 directory directly rather than relying on the
11 usession*-current symlink. As maffblaster reports, under some
12 circumstances the symlink is called differently which seems to render
13 the -0 name safer.
14
15 dev-python/pypy3/pypy3-5.5.0_alpha.ebuild | 4 ++--
16 dev-python/pypy3/pypy3-9999.ebuild | 4 ++--
17 2 files changed, 4 insertions(+), 4 deletions(-)
18
19 diff --git a/dev-python/pypy3/pypy3-5.5.0_alpha.ebuild b/dev-python/pypy3/pypy3-5.5.0_alpha.ebuild
20 index 1a436991436..3c4ac7df716 100644
21 --- a/dev-python/pypy3/pypy3-5.5.0_alpha.ebuild
22 +++ b/dev-python/pypy3/pypy3-5.5.0_alpha.ebuild
23 @@ -160,10 +160,10 @@ src_configure() {
24 }
25
26 src_compile() {
27 - emake -C "${T}"/usession*-current/testing_1
28 + emake -C "${T}"/usession*-0/testing_1
29
30 # copy back to make sys.prefix happy
31 - cp -p "${T}"/usession*-current/testing_1/{pypy-c,libpypy-c.so} . || die
32 + cp -p "${T}"/usession*-0/testing_1/{pypy-c,libpypy-c.so} . || die
33 pax-mark m pypy-c libpypy-c.so
34
35 #use doc && emake -C pypy/doc html
36
37 diff --git a/dev-python/pypy3/pypy3-9999.ebuild b/dev-python/pypy3/pypy3-9999.ebuild
38 index b399af1a9d4..8c0e93878b2 100644
39 --- a/dev-python/pypy3/pypy3-9999.ebuild
40 +++ b/dev-python/pypy3/pypy3-9999.ebuild
41 @@ -169,10 +169,10 @@ src_configure() {
42 }
43
44 src_compile() {
45 - emake -C "${T}"/usession*-current/testing_1
46 + emake -C "${T}"/usession*-0/testing_1
47
48 # copy back to make sys.prefix happy
49 - cp -p "${T}"/usession*-current/testing_1/{pypy-c,libpypy-c.so} . || die
50 + cp -p "${T}"/usession*-0/testing_1/{pypy-c,libpypy-c.so} . || die
51 pax-mark m pypy-c libpypy-c.so
52
53 #use doc && emake -C pypy/doc html