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 DCE3B138334 for ; Mon, 2 Sep 2019 10:38:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0C22E077C; Mon, 2 Sep 2019 10:38:04 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C9065E077C for ; Mon, 2 Sep 2019 10:38:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2801934AA29 for ; Mon, 2 Sep 2019 10:38:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 77D21775 for ; Mon, 2 Sep 2019 10:38:01 +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: <1567420656.271730228bb4d0f0e824a3c9755ed9d178054198.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/numactl/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/numactl/numactl-2.0.12.ebuild sys-process/numactl/numactl-2.0.13.ebuild sys-process/numactl/numactl-9999.ebuild X-VCS-Directories: sys-process/numactl/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 271730228bb4d0f0e824a3c9755ed9d178054198 X-VCS-Branch: master Date: Mon, 2 Sep 2019 10:38:01 +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: 4a4ba15c-58b6-43dc-8b36-cb6c5de3a926 X-Archives-Hash: 9465b77f48c374380049f65fcd75d131 commit: 271730228bb4d0f0e824a3c9755ed9d178054198 Author: Lars Wendler gentoo org> AuthorDate: Mon Sep 2 10:37:36 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Sep 2 10:37:36 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27173022 sys-process/numactl: disable -flto Bug: https://bugs.gentoo.org/692254 Package-Manager: Portage-2.3.75, Repoman-2.3.17 Signed-off-by: Lars Wendler gentoo.org> sys-process/numactl/numactl-2.0.12.ebuild | 9 +++++++-- sys-process/numactl/numactl-2.0.13.ebuild | 7 ++++++- sys-process/numactl/numactl-9999.ebuild | 7 ++++++- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/sys-process/numactl/numactl-2.0.12.ebuild b/sys-process/numactl/numactl-2.0.12.ebuild index 382d2e6496e..76fe335d673 100644 --- a/sys-process/numactl/numactl-2.0.12.ebuild +++ b/sys-process/numactl/numactl-2.0.12.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit autotools toolchain-funcs multilib-minimal +inherit autotools flag-o-matic toolchain-funcs multilib-minimal DESCRIPTION="Utilities and libraries for NUMA systems" HOMEPAGE="https://github.com/numactl/numactl" @@ -26,6 +26,11 @@ PATCHES=( src_prepare() { default + + # lto not supported yet + # gcc-9 with -flto leads to link failures: #692254 + filter-flags -flto* + eautoreconf # We need to copy the sources or else tests will fail multilib_copy_sources diff --git a/sys-process/numactl/numactl-2.0.13.ebuild b/sys-process/numactl/numactl-2.0.13.ebuild index e38e4a77477..6bcda4fcddb 100644 --- a/sys-process/numactl/numactl-2.0.13.ebuild +++ b/sys-process/numactl/numactl-2.0.13.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools toolchain-funcs multilib-minimal +inherit autotools flag-o-matic toolchain-funcs multilib-minimal DESCRIPTION="Utilities and libraries for NUMA systems" HOMEPAGE="https://github.com/numactl/numactl" @@ -26,6 +26,11 @@ PATCHES=( src_prepare() { default + + # lto not supported yet + # gcc-9 with -flto leads to link failures: #692254 + filter-flags -flto* + eautoreconf # We need to copy the sources or else tests will fail multilib_copy_sources diff --git a/sys-process/numactl/numactl-9999.ebuild b/sys-process/numactl/numactl-9999.ebuild index e38e4a77477..6bcda4fcddb 100644 --- a/sys-process/numactl/numactl-9999.ebuild +++ b/sys-process/numactl/numactl-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools toolchain-funcs multilib-minimal +inherit autotools flag-o-matic toolchain-funcs multilib-minimal DESCRIPTION="Utilities and libraries for NUMA systems" HOMEPAGE="https://github.com/numactl/numactl" @@ -26,6 +26,11 @@ PATCHES=( src_prepare() { default + + # lto not supported yet + # gcc-9 with -flto leads to link failures: #692254 + filter-flags -flto* + eautoreconf # We need to copy the sources or else tests will fail multilib_copy_sources