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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BCC881580FD for ; Sat, 28 Dec 2024 00:05:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E80DFE0858; Sat, 28 Dec 2024 00:05:46 +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 C93DDE0858 for ; Sat, 28 Dec 2024 00:05:46 +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 E373933BEFF for ; Sat, 28 Dec 2024 00:05:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0A63190F for ; Sat, 28 Dec 2024 00:05:37 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1735344289.28a61be5934124a3efc5d062e61067f073fd9614.asturm@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-r2.ebuild X-VCS-Directories: media-sound/vimpc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 28a61be5934124a3efc5d062e61067f073fd9614 X-VCS-Branch: master Date: Sat, 28 Dec 2024 00:05:37 +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: 8a14bdc1-600f-4143-9463-0e16a4793dcd X-Archives-Hash: b0523c220277a35fabd3bd1ceef4e299 commit: 28a61be5934124a3efc5d062e61067f073fd9614 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Dec 27 23:50:21 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 28 00:04:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28a61be5 media-sound/vimpc: drop 0.09.2-r2 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/vimpc/vimpc-0.09.2-r2.ebuild | 56 -------------------------------- 1 file changed, 56 deletions(-) diff --git a/media-sound/vimpc/vimpc-0.09.2-r2.ebuild b/media-sound/vimpc/vimpc-0.09.2-r2.ebuild deleted file mode 100644 index 42d1fa28e1f5..000000000000 --- a/media-sound/vimpc/vimpc-0.09.2-r2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="An ncurses based mpd client with vi-like key bindings" -HOMEPAGE="https://github.com/boysetsfrog/vimpc" -if [[ ${PV} == 9999 ]] ; then - EGIT_REPO_URI="https://github.com/boysetsfrog/${PN}.git" - inherit git-r3 -else - SRC_URI="https://github.com/boysetsfrog/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 x86" -fi - -LICENSE="GPL-3+" -SLOT="0" -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 - "${FILESDIR}"/${P}-wformat-security.patch -) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - # Tests here seem to make cppunit linked into the main vimpc binary - # Not clear how to run them either - econf \ - $(use_enable boost) \ - $(use_enable taglib) \ - --disable-test -} - -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 -}