Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/prefix/
Date: Fri, 31 May 2019 09:15:35
Message-Id: 1559294126.e9de14ba9bc20dd2a4c1a45259984499f87af34d.grobian@gentoo
1 commit: e9de14ba9bc20dd2a4c1a45259984499f87af34d
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 31 09:13:44 2019 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Fri May 31 09:15:26 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9de14ba
7
8 profiles/prefix/makde.defaults: drop python2_7 from PYTHON_TARGETS
9
10 As per discussion on -alt ML, drop python2_7 from default, Prefix will
11 use Python 3 only (with Python 2 being supported if the user wants it)
12
13 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
14
15 profiles/prefix/make.defaults | 10 +++++-----
16 1 file changed, 5 insertions(+), 5 deletions(-)
17
18 diff --git a/profiles/prefix/make.defaults b/profiles/prefix/make.defaults
19 index a50334dc5a4..ac1d126eb4f 100644
20 --- a/profiles/prefix/make.defaults
21 +++ b/profiles/prefix/make.defaults
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2018 Gentoo Foundation
24 +# Copyright 1999-2019 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 # Some USE-flags that only die-hards don't want:
28 @@ -9,11 +9,11 @@
29 USE="readline zlib ncurses ssl"
30
31
32 -# Python 3.6 is unmasked for us, build stuff by default with latest to
33 -# avoid unnecessary builds
34 +# In Prefix, aim for Python 3 only, leaving out 2 to avoid unnecessary
35 +# builds
36 # NOTE: Both are incremental variables: Need to drop obsolete base values.
37 -PYTHON_TARGETS="python2_7 -python3_5 python3_6"
38 -PYTHON_SINGLE_TARGET="-python3_5 python3_6"
39 +PYTHON_TARGETS="-python2_7 python3_6"
40 +PYTHON_SINGLE_TARGET="python3_6"
41
42 # Move away from ruby22 fast forward to ruby24, we don't have ruby23
43 RUBY_TARGETS="ruby24"