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 B625D138334 for ; Fri, 31 May 2019 09:15:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C675EE088B; Fri, 31 May 2019 09:15:34 +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 A8740E088B for ; Fri, 31 May 2019 09:15:34 +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 29DA83442DF for ; Fri, 31 May 2019 09:15:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 77E82602 for ; Fri, 31 May 2019 09:15:30 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1559294126.e9de14ba9bc20dd2a4c1a45259984499f87af34d.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/prefix/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/prefix/make.defaults X-VCS-Directories: profiles/prefix/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: e9de14ba9bc20dd2a4c1a45259984499f87af34d X-VCS-Branch: master Date: Fri, 31 May 2019 09:15:30 +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: 01156e91-78a5-4421-bcdc-9a806b5b56a0 X-Archives-Hash: 0fe14305e12ebd49b4b0402408bc2425 commit: e9de14ba9bc20dd2a4c1a45259984499f87af34d Author: Fabian Groffen gentoo org> AuthorDate: Fri May 31 09:13:44 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Fri May 31 09:15:26 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9de14ba profiles/prefix/makde.defaults: drop python2_7 from PYTHON_TARGETS As per discussion on -alt ML, drop python2_7 from default, Prefix will use Python 3 only (with Python 2 being supported if the user wants it) Signed-off-by: Fabian Groffen gentoo.org> profiles/prefix/make.defaults | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/profiles/prefix/make.defaults b/profiles/prefix/make.defaults index a50334dc5a4..ac1d126eb4f 100644 --- a/profiles/prefix/make.defaults +++ b/profiles/prefix/make.defaults @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # Some USE-flags that only die-hards don't want: @@ -9,11 +9,11 @@ USE="readline zlib ncurses ssl" -# Python 3.6 is unmasked for us, build stuff by default with latest to -# avoid unnecessary builds +# In Prefix, aim for Python 3 only, leaving out 2 to avoid unnecessary +# builds # NOTE: Both are incremental variables: Need to drop obsolete base values. -PYTHON_TARGETS="python2_7 -python3_5 python3_6" -PYTHON_SINGLE_TARGET="-python3_5 python3_6" +PYTHON_TARGETS="-python2_7 python3_6" +PYTHON_SINGLE_TARGET="python3_6" # Move away from ruby22 fast forward to ruby24, we don't have ruby23 RUBY_TARGETS="ruby24"