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 827E0138334 for ; Tue, 11 Jun 2019 17:12:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 699EAE08C3; Tue, 11 Jun 2019 17:12:42 +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 47354E08C3 for ; Tue, 11 Jun 2019 17:12:42 +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 9BDED345E8C for ; Tue, 11 Jun 2019 17:12:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 903A9266 for ; Tue, 11 Jun 2019 17:12:38 +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: <1560273145.c9c76b9e95976ff1a55782b4c0f2c888323f50cd.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/llvm/llvm-9999.ebuild X-VCS-Directories: sys-devel/llvm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c9c76b9e95976ff1a55782b4c0f2c888323f50cd X-VCS-Branch: master Date: Tue, 11 Jun 2019 17:12:38 +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: 7804bcaa-d56d-4af5-853d-ddbb42045611 X-Archives-Hash: 631b1d97c0df2a43ab0144306021a54b commit: c9c76b9e95976ff1a55782b4c0f2c888323f50cd Author: Michał Górny gentoo org> AuthorDate: Tue Jun 11 17:09:20 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jun 11 17:12:25 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9c76b9e sys-devel/llvm: Enable Python 3 in -9999 Signed-off-by: Michał Górny gentoo.org> sys-devel/llvm/llvm-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-devel/llvm/llvm-9999.ebuild b/sys-devel/llvm/llvm-9999.ebuild index fe059751a9f..f194df95051 100644 --- a/sys-devel/llvm/llvm-9999.ebuild +++ b/sys-devel/llvm/llvm-9999.ebuild @@ -6,7 +6,7 @@ EAPI=6 : ${CMAKE_MAKEFILE_GENERATOR:=ninja} # (needed due to CMAKE_BUILD_TYPE != Gentoo) CMAKE_MIN_VERSION=3.7.0-r1 -PYTHON_COMPAT=( python2_7 ) +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} ) inherit cmake-utils eapi7-ver flag-o-matic git-r3 multilib-minimal \ multiprocessing pax-utils python-any-r1 toolchain-funcs @@ -288,7 +288,7 @@ multilib_src_install_all() { pkg_postinst() { elog "You can find additional opt-viewer utility scripts in:" elog " ${EROOT%/}/usr/lib/llvm/${SLOT}/share/opt-viewer" - elog "To use these scripts, you will need Python 2.7 along with the following" + elog "To use these scripts, you will need Python along with the following" elog "packages:" elog " dev-python/pygments (for opt-viewer)" elog " dev-python/pyyaml (for all of them)"