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 EA5DD138350 for ; Thu, 16 Apr 2020 07:43:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E0E3E08E5; Thu, 16 Apr 2020 07:43:22 +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 F3735E08E5 for ; Thu, 16 Apr 2020 07:43:21 +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 076B434EF99 for ; Thu, 16 Apr 2020 07:43:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD72C1C5 for ; Thu, 16 Apr 2020 07:43:19 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1587022980.c53a6004192d8b595c7a7ad0b24e23ac2b922249.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/newlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/newlib/newlib-3.3.0.ebuild X-VCS-Directories: sys-libs/newlib/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: c53a6004192d8b595c7a7ad0b24e23ac2b922249 X-VCS-Branch: master Date: Thu, 16 Apr 2020 07:43:19 +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: a4be06a4-3318-4cd1-ab41-45366fd6670d X-Archives-Hash: 213e3718ecf1d023624168efc2852ce8 commit: c53a6004192d8b595c7a7ad0b24e23ac2b922249 Author: Sergei Trofimovich gentoo org> AuthorDate: Thu Apr 16 07:42:33 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Thu Apr 16 07:43:00 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c53a6004 sys-libs/newlib: add early error for msp430 Reported-by: tomtom69 Bug: https://bugs.gentoo.org/717610 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Sergei Trofimovich gentoo.org> sys-libs/newlib/newlib-3.3.0.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sys-libs/newlib/newlib-3.3.0.ebuild b/sys-libs/newlib/newlib-3.3.0.ebuild index db1a3fad9cf..95217157d87 100644 --- a/sys-libs/newlib/newlib-3.3.0.ebuild +++ b/sys-libs/newlib/newlib-3.3.0.ebuild @@ -48,6 +48,13 @@ pkg_setup() { *) die "Use sys-devel/crossdev to build a newlib toolchain" ;; esac fi + + case ${CTARGET} in + msp430*) + # bug #717610 + die "gcc on ${CTARGET} needs older newlib. Use newlib-3.1.0." + ;; + esac } src_configure() {