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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C3075158094 for ; Wed, 5 Oct 2022 23:01:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3CFA8E07E1; Wed, 5 Oct 2022 23:01:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1C5F1E07E1 for ; Wed, 5 Oct 2022 23:01:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E0A47341035 for ; Wed, 5 Oct 2022 23:01:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31F9E601 for ; Wed, 5 Oct 2022 23:01:13 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1665010817.5376d73e86c4a8d618d5068dbfbafb2f55f4069f.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/liveice/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/liveice/liveice-2000530-r2.ebuild net-misc/liveice/liveice-2000530-r3.ebuild X-VCS-Directories: net-misc/liveice/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 5376d73e86c4a8d618d5068dbfbafb2f55f4069f X-VCS-Branch: master Date: Wed, 5 Oct 2022 23:01:13 +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: c709cd82-4daa-411d-8bd8-7da0148b9db5 X-Archives-Hash: 76a68874591017b451563426e9eaa8d9 commit: 5376d73e86c4a8d618d5068dbfbafb2f55f4069f Author: Ionen Wolkens gentoo org> AuthorDate: Wed Oct 5 22:38:09 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Wed Oct 5 23:00:17 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5376d73e net-misc/liveice: EAPI7->8, add missing ncurses dep Also drop dead HOMEPAGE. Signed-off-by: Ionen Wolkens gentoo.org> ...ce-2000530-r2.ebuild => liveice-2000530-r3.ebuild} | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/net-misc/liveice/liveice-2000530-r2.ebuild b/net-misc/liveice/liveice-2000530-r3.ebuild similarity index 74% rename from net-misc/liveice/liveice-2000530-r2.ebuild rename to net-misc/liveice/liveice-2000530-r3.ebuild index cc73e827d6ac..822c02d34884 100644 --- a/net-misc/liveice/liveice-2000530-r2.ebuild +++ b/net-misc/liveice/liveice-2000530-r3.ebuild @@ -1,13 +1,14 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools flag-o-matic toolchain-funcs DESCRIPTION="Live Source Client For IceCast" -HOMEPAGE="http://star.arm.ac.uk/~spm/software/liveice.html" +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" SRC_URI="mirror://gentoo/${P}.tar.gz" +S="${WORKDIR}/${PN}" LICENSE="GPL-2+" SLOT="0" @@ -15,20 +16,24 @@ KEYWORDS="~amd64 x86" RDEPEND=" media-sound/lame - media-sound/mpg123" + media-sound/mpg123 + sys-libs/ncurses:=" DEPEND="${RDEPEND}" -S="${WORKDIR}/${PN}" -PATCHES=( "${FILESDIR}"/${P}-build.patch ) +PATCHES=( + "${FILESDIR}"/${P}-build.patch +) src_prepare() { default + eautoreconf - tc-export CC } src_configure() { + tc-export CC append-flags -fcommon + default }