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 4E850158094 for ; Wed, 17 Aug 2022 16:21:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6EBBE0940; Wed, 17 Aug 2022 16:21:28 +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 B3D69E0938 for ; Wed, 17 Aug 2022 16:21:28 +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 C2D0A341395 for ; Wed, 17 Aug 2022 16:21:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D09459E for ; Wed, 17 Aug 2022 16:21:24 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1660753266.b7c99bf1f1e2a5b828cf94fef84177601d7a6837.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/vimpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/vimpc/vimpc-0.09.2.ebuild X-VCS-Directories: media-sound/vimpc/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: b7c99bf1f1e2a5b828cf94fef84177601d7a6837 X-VCS-Branch: master Date: Wed, 17 Aug 2022 16:21:24 +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: 77c50894-5a20-4fbe-b187-e13b641f0160 X-Archives-Hash: 06cbd28f0bedd1962be91c809b4d8bf6 commit: b7c99bf1f1e2a5b828cf94fef84177601d7a6837 Author: Matt Turner gentoo org> AuthorDate: Wed Aug 17 13:48:45 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Aug 17 16:21:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7c99bf1 media-sound/vimpc: Drop old versions Signed-off-by: Matt Turner gentoo.org> media-sound/vimpc/vimpc-0.09.2.ebuild | 42 ----------------------------------- 1 file changed, 42 deletions(-) diff --git a/media-sound/vimpc/vimpc-0.09.2.ebuild b/media-sound/vimpc/vimpc-0.09.2.ebuild deleted file mode 100644 index e6968fffae96..000000000000 --- a/media-sound/vimpc/vimpc-0.09.2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="An ncurses based mpd client with vi-like key bindings" -HOMEPAGE="https://github.com/boysetsfrog/vimpc" -SRC_URI="https://github.com/boysetsfrog/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="boost taglib" - -RDEPEND="dev-libs/libpcre - media-libs/libmpdclient - boost? ( dev-libs/boost:= ) - taglib? ( media-libs/taglib )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -DOCS=( AUTHORS README.md doc/vimpcrc.example ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - $(use_enable boost) \ - $(use_enable taglib) -} - -src_install() { - default - - # vimpc will look for help.txt - docompress -x /usr/share/doc/${PF}/help.txt -}