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 BB5C61382C5 for ; Mon, 17 May 2021 06:53:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13464E07FA; Mon, 17 May 2021 06:53:34 +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 EAA3EE0869 for ; Mon, 17 May 2021 06:53:33 +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 967ED340FA6 for ; Mon, 17 May 2021 06:53:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BE09632 for ; Mon, 17 May 2021 06:53:30 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1621234404.275b749785420ef105c58483d38de49272eedf6d.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/ncmpcpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/ncmpcpp/metadata.xml media-sound/ncmpcpp/ncmpcpp-0.9.2.ebuild media-sound/ncmpcpp/ncmpcpp-9999.ebuild X-VCS-Directories: media-sound/ncmpcpp/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 275b749785420ef105c58483d38de49272eedf6d X-VCS-Branch: master Date: Mon, 17 May 2021 06:53:30 +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: 3948b42d-bad8-4a58-b040-4f34f3d09efd X-Archives-Hash: 28192ed1acd1f148076dbc4614efde5d commit: 275b749785420ef105c58483d38de49272eedf6d Author: Mikle Kolyada gentoo org> AuthorDate: Mon May 17 06:50:13 2021 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Mon May 17 06:53:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=275b7497 media-sound/ncmpcpp: get rid of lto automagic Closes: https://bugs.gentoo.org/769620 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Mikle Kolyada gentoo.org> media-sound/ncmpcpp/metadata.xml | 1 + media-sound/ncmpcpp/ncmpcpp-0.9.2.ebuild | 7 ++++++- media-sound/ncmpcpp/ncmpcpp-9999.ebuild | 8 ++++++-- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/media-sound/ncmpcpp/metadata.xml b/media-sound/ncmpcpp/metadata.xml index 9730a091cab..c43c71b3365 100644 --- a/media-sound/ncmpcpp/metadata.xml +++ b/media-sound/ncmpcpp/metadata.xml @@ -7,6 +7,7 @@ Enable clock screen + Build with link-time optimisation Enable outputs screen Enable visualizer screen with sound wave/frequency spectrum modes diff --git a/media-sound/ncmpcpp/ncmpcpp-0.9.2.ebuild b/media-sound/ncmpcpp/ncmpcpp-0.9.2.ebuild index 9f375cc8a75..443c52af76c 100644 --- a/media-sound/ncmpcpp/ncmpcpp-0.9.2.ebuild +++ b/media-sound/ncmpcpp/ncmpcpp-0.9.2.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit flag-o-matic + DESCRIPTION="featureful ncurses based MPD client inspired by ncmpc" HOMEPAGE="https://ncmpcpp.rybczak.net/ https://github.com/ncmpcpp/ncmpcpp" SRC_URI="https://rybczak.net/ncmpcpp/stable/${P}.tar.bz2" @@ -10,7 +12,7 @@ SRC_URI="https://rybczak.net/ncmpcpp/stable/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" -IUSE="clock outputs taglib visualizer" +IUSE="clock lto outputs taglib visualizer" RDEPEND=" !dev-libs/boost:0/1.57.0 @@ -34,10 +36,13 @@ src_prepare() { } src_configure() { + filter-flags '-flto*' + econf \ $(use_enable clock) \ $(use_enable outputs) \ $(use_enable visualizer) \ + $(use_with lto) \ $(use_with taglib) \ $(use_with visualizer fftw) } diff --git a/media-sound/ncmpcpp/ncmpcpp-9999.ebuild b/media-sound/ncmpcpp/ncmpcpp-9999.ebuild index 74f29afe4ab..967c9fff468 100644 --- a/media-sound/ncmpcpp/ncmpcpp-9999.ebuild +++ b/media-sound/ncmpcpp/ncmpcpp-9999.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools git-r3 DESCRIPTION="featureful ncurses based MPD client inspired by ncmpc" @@ -11,7 +12,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="clock outputs taglib visualizer" +IUSE="clock lto outputs taglib visualizer" RDEPEND=" !dev-libs/boost:0/1.57.0 @@ -39,10 +40,13 @@ src_prepare() { } src_configure() { + filter-flags '-flto*' + econf \ $(use_enable clock) \ $(use_enable outputs) \ $(use_enable visualizer) \ + $(use_with lto) \ $(use_with taglib) \ $(use_with visualizer fftw) }