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 99BFB58973 for ; Sat, 16 Jan 2016 12:37:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 330CA21C01B; Sat, 16 Jan 2016 12:37:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B73DF21C01B for ; Sat, 16 Jan 2016 12:37:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D697B340B07 for ; Sat, 16 Jan 2016 12:37:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 87729CF9 for ; Sat, 16 Jan 2016 12:37:17 +0000 (UTC) From: "Andrew Savchenko" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Savchenko" Message-ID: <1452947769.b58b23376de0416297be0d927973ff12e9befd6e.bircoph@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/root/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/root/root-6.02.05-r2.ebuild sci-physics/root/root-6.04.06.ebuild X-VCS-Directories: sci-physics/root/ X-VCS-Committer: bircoph X-VCS-Committer-Name: Andrew Savchenko X-VCS-Revision: b58b23376de0416297be0d927973ff12e9befd6e X-VCS-Branch: master Date: Sat, 16 Jan 2016 12:37:17 +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: 5ba41bec-9c29-4dd7-a3db-e0c8d52811d3 X-Archives-Hash: 1931bd125f0864a5bacac5f876cb8a0d commit: b58b23376de0416297be0d927973ff12e9befd6e Author: Andrew Savchenko gentoo org> AuthorDate: Sat Jan 16 12:36:09 2016 +0000 Commit: Andrew Savchenko gentoo org> CommitDate: Sat Jan 16 12:36:09 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b58b2337 sci-physics/root: refuse to build with gcc-5 ROOT-6 is not yet ready for gcc-5 due to lack of ABI tags support, see bug 564306 and root issues 7285, 7319, 7654, 7721, 7818, 7895. Package-Manager: portage-2.2.26 Signed-off-by: Andrew Savchenko gentoo.org> sci-physics/root/root-6.02.05-r2.ebuild | 18 ++++++++++++++++++ sci-physics/root/root-6.04.06.ebuild | 17 +++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/sci-physics/root/root-6.02.05-r2.ebuild b/sci-physics/root/root-6.02.05-r2.ebuild index 5bb8741..a410d12 100644 --- a/sci-physics/root/root-6.02.05-r2.ebuild +++ b/sci-physics/root/root-6.02.05-r2.ebuild @@ -140,6 +140,24 @@ check_compiler() { ;; *g++*) ver="$(gcc-version)" + # gcc-5 is not yet supported, bug 564306 + if version_is_at_least "5" "${ver}"; then + eerror "" + eerror "GCC-5 is not yet supported in ROOT-6." + eerror "The code may build for you, but will have run-time failures." + eerror "See the following bugs:" + eerror "https://sft.its.cern.ch/jira/browse/ROOT-7285" + eerror "https://sft.its.cern.ch/jira/browse/ROOT-7319" + eerror "https://sft.its.cern.ch/jira/browse/ROOT-7654" + eerror "https://sft.its.cern.ch/jira/browse/ROOT-7721" + eerror "https://sft.its.cern.ch/jira/browse/ROOT-7818" + eerror "https://sft.its.cern.ch/jira/browse/ROOT-7895" + eerror "https://bugs.gentoo.org/show_bug.cgi?id=564306" + eerror "" + eerror "Please use GCC-4.9 for now." + eerror "" + die "gcc-5 is not yet supported" + fi cur="$2" ;; *icc*|*icpc*) diff --git a/sci-physics/root/root-6.04.06.ebuild b/sci-physics/root/root-6.04.06.ebuild index 093ad9f..c3ef6fb 100644 --- a/sci-physics/root/root-6.04.06.ebuild +++ b/sci-physics/root/root-6.04.06.ebuild @@ -135,6 +135,23 @@ check_compiler() { ;; *g++*) ver="$(gcc-version)" + if version_is_at_least "5" "${ver}"; then + eerror "" + eerror "GCC-5 is not yet supported in ROOT-6." + eerror "The code may build for you, but will have run-time failures." + eerror "See the following bugs:" + eerror "https://sft.its.cern.ch/jira/browse/ROOT-7285" + eerror "https://sft.its.cern.ch/jira/browse/ROOT-7319" + eerror "https://sft.its.cern.ch/jira/browse/ROOT-7654" + eerror "https://sft.its.cern.ch/jira/browse/ROOT-7721" + eerror "https://sft.its.cern.ch/jira/browse/ROOT-7818" + eerror "https://sft.its.cern.ch/jira/browse/ROOT-7895" + eerror "https://bugs.gentoo.org/show_bug.cgi?id=564306" + eerror "" + eerror "Please use GCC-4.9 for now." + eerror "" + die "gcc-5 is not yet supported" + fi cur="$2" ;; *icc*|*icpc*)