From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 886AF138262 for ; Wed, 18 May 2016 12:57:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B45D921C038; Wed, 18 May 2016 12:57:26 +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 6156921C038 for ; Wed, 18 May 2016 12:57:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EDF71340D03 for ; Wed, 18 May 2016 12:57:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB3FE7B for ; Wed, 18 May 2016 12:57:22 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1463576239.51c87724a8208bd891db27bb540f50a666297d35.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/boost-build/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/boost-build/boost-build-1.61.0.ebuild X-VCS-Directories: dev-util/boost-build/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 51c87724a8208bd891db27bb540f50a666297d35 X-VCS-Branch: master Date: Wed, 18 May 2016 12:57:22 +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: a4e41384-f9f6-492b-a3c4-acb09dcfc326 X-Archives-Hash: 368d0f916d47b9618b827f065c658a27 commit: 51c87724a8208bd891db27bb540f50a666297d35 Author: Lars Wendler gentoo org> AuthorDate: Wed May 18 12:57:04 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed May 18 12:57:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51c87724 dev-util/boost-build: Don't use python3 (bug #583406). Package-Manager: portage-2.2.28 Signed-off-by: Lars Wendler gentoo.org> dev-util/boost-build/boost-build-1.61.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-util/boost-build/boost-build-1.61.0.ebuild b/dev-util/boost-build/boost-build-1.61.0.ebuild index 70502d4..f0f588d 100644 --- a/dev-util/boost-build/boost-build-1.61.0.ebuild +++ b/dev-util/boost-build/boost-build-1.61.0.ebuild @@ -6,7 +6,7 @@ EAPI="6" RESTRICT="test" -PYTHON_COMPAT=( python{2_7,3_4,3_5} ) +PYTHON_COMPAT=( python2_7 ) inherit eutils flag-o-matic python-single-r1 toolchain-funcs versionator MY_PV="$(replace_all_version_separators _)" @@ -85,7 +85,7 @@ src_configure() { # replace versions by user-selected one (TODO: fix this when slot-op # deps are available to always match the best version available) sed -i \ - -e "s|2.7 2.6 2.5 2.4 2.3 2.2|${EPYTHON#python}|" \ + -e "s|27 26 25 24 23 22|${EPYTHON#python}|" \ engine/build.jam || die "sed failed" fi }