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 401FD158451 for ; Sun, 7 Jan 2024 13:46:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3712F2BC0D2; Sun, 7 Jan 2024 13:46:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 160D22BC0CC for ; Sun, 7 Jan 2024 13:46:08 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1B27D34325E for ; Sun, 7 Jan 2024 13:46:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8119B95D for ; Sun, 7 Jan 2024 13:46:05 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1704635161.7a5e93677abb73f11007158d1db7a8468b2d8e68.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/ncmpcpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/ncmpcpp/ncmpcpp-0.9.2-r2.ebuild X-VCS-Directories: media-sound/ncmpcpp/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7a5e93677abb73f11007158d1db7a8468b2d8e68 X-VCS-Branch: master Date: Sun, 7 Jan 2024 13:46:05 +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: be4926e2-903c-4675-b684-a15c4af81485 X-Archives-Hash: 1be249325b4d5a5e4d1522db9ae54770 commit: 7a5e93677abb73f11007158d1db7a8468b2d8e68 Author: Michał Górny gentoo org> AuthorDate: Sun Jan 7 13:43:57 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jan 7 13:46:01 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a5e9367 media-sound/ncmpcpp: Remove old Signed-off-by: Michał Górny gentoo.org> media-sound/ncmpcpp/ncmpcpp-0.9.2-r2.ebuild | 66 ----------------------------- 1 file changed, 66 deletions(-) diff --git a/media-sound/ncmpcpp/ncmpcpp-0.9.2-r2.ebuild b/media-sound/ncmpcpp/ncmpcpp-0.9.2-r2.ebuild deleted file mode 100644 index 8be959d503c7..000000000000 --- a/media-sound/ncmpcpp/ncmpcpp-0.9.2-r2.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -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" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86" -IUSE="clock lto outputs taglib visualizer" - -RDEPEND=" - >=media-libs/libmpdclient-2.1 - dev-libs/boost:=[icu,nls] - dev-libs/icu:= - net-misc/curl - sys-libs/ncurses:=[unicode(+)] - sys-libs/readline:= - taglib? ( media-libs/taglib ) - visualizer? ( sci-libs/fftw:3.0= ) -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -src_prepare() { - default - - sed -i -e '/^docdir/d' {,doc/}Makefile{.am,.in} || die - sed -i -e 's|COPYING||g' Makefile{.am,.in} || die -} - -src_configure() { - filter-lto - - econf \ - $(use_enable clock) \ - $(use_enable outputs) \ - $(use_enable visualizer) \ - $(use_with lto) \ - $(use_with taglib) \ - $(use_with visualizer fftw) -} - -src_install() { - default - - dodoc doc/{bindings,config} -} - -pkg_postinst() { - echo - elog "Example configuration files have been installed at" - elog "${EROOT}/usr/share/doc/${PF}" - elog "${P} uses ~/.ncmpcpp/config and ~/.ncmpcpp/bindings" - elog "as user configuration files." - echo - if use visualizer; then - elog "If you want to use the visualizer, you need mpd with fifo enabled." - echo - fi -}