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 722FA158008 for ; Mon, 12 Jun 2023 06:47:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1196E0882; Mon, 12 Jun 2023 06:47:03 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A80AFE0882 for ; Mon, 12 Jun 2023 06:47:03 +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 BF284340CF8 for ; Mon, 12 Jun 2023 06:47:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 430C0A66 for ; Mon, 12 Jun 2023 06:47:01 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1686552413.4ed22bd1bbfededbc2a884eca03442bbc337586a.fordfrog@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-r1.ebuild X-VCS-Directories: media-sound/vimpc/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 4ed22bd1bbfededbc2a884eca03442bbc337586a X-VCS-Branch: master Date: Mon, 12 Jun 2023 06:47: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: 9dc0f40f-2075-4feb-90ff-5ebfb48b7dc5 X-Archives-Hash: 4ed790738a6a01abea6c559e04412a66 commit: 4ed22bd1bbfededbc2a884eca03442bbc337586a Author: Miroslav Šulc gentoo org> AuthorDate: Mon Jun 12 06:46:53 2023 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Mon Jun 12 06:46:53 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ed22bd1 media-sound/vimpc: dropped obsolete 0.09.2-r1 Bug: https://bugs.gentoo.org/908315 Signed-off-by: Miroslav Šulc gentoo.org> media-sound/vimpc/vimpc-0.09.2-r1.ebuild | 43 -------------------------------- 1 file changed, 43 deletions(-) diff --git a/media-sound/vimpc/vimpc-0.09.2-r1.ebuild b/media-sound/vimpc/vimpc-0.09.2-r1.ebuild deleted file mode 100644 index 06b1c98bc5b5..000000000000 --- a/media-sound/vimpc/vimpc-0.09.2-r1.ebuild +++ /dev/null @@ -1,43 +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" - -PATCHES=( "${FILESDIR}"/${P}-boost.patch ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - $(use_enable boost) \ - $(use_enable taglib) -} - -src_install() { - local DOCS=( AUTHORS README.md doc/vimpcrc.example ) - default - - # vimpc will look for help.txt - docompress -x /usr/share/doc/${PF}/help.txt -}