From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1393991-garchives=archives.gentoo.org@lists.gentoo.org> 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 50299158090 for <garchives@archives.gentoo.org>; Sun, 8 May 2022 06:23:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87578E0831; Sun, 8 May 2022 06:23:20 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6A5F2E0831 for <gentoo-commits@lists.gentoo.org>; Sun, 8 May 2022 06:23:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 62611341610 for <gentoo-commits@lists.gentoo.org>; Sun, 8 May 2022 06:23:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED0DF439 for <gentoo-commits@lists.gentoo.org>; Sun, 8 May 2022 06:23:17 +0000 (UTC) From: "Miroslav Šulc" <fordfrog@gentoo.org> 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" <fordfrog@gentoo.org> Message-ID: <1651990991.1b194723444d6c65a10130d37c03e6581d9efac0.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/gkrellmpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/gkrellmpc/gkrellmpc-0.1_beta10.ebuild X-VCS-Directories: media-plugins/gkrellmpc/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 1b194723444d6c65a10130d37c03e6581d9efac0 X-VCS-Branch: master Date: Sun, 8 May 2022 06:23:17 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e4e4185f-ad06-4742-bf68-76cb4d3ef2cf X-Archives-Hash: d76596e90b4980a07fe235c78e83cb25 commit: 1b194723444d6c65a10130d37c03e6581d9efac0 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org> AuthorDate: Sun May 8 06:23:11 2022 +0000 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org> CommitDate: Sun May 8 06:23:11 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b194723 media-plugins/gkrellmpc: dropped obsolete 0.1_beta10 Bug: https://bugs.gentoo.org/843086 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org> .../gkrellmpc/gkrellmpc-0.1_beta10.ebuild | 41 ---------------------- 1 file changed, 41 deletions(-) diff --git a/media-plugins/gkrellmpc/gkrellmpc-0.1_beta10.ebuild b/media-plugins/gkrellmpc/gkrellmpc-0.1_beta10.ebuild deleted file mode 100644 index a309150dbc98..000000000000 --- a/media-plugins/gkrellmpc/gkrellmpc-0.1_beta10.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit gkrellm-plugin toolchain-funcs - -DESCRIPTION="A gkrellm plugin to control the MPD (Music Player Daemon)" -HOMEPAGE="http://mpd.wikia.com/wiki/Client:GKrellMPC" -SRC_URI="http://mina.naguib.ca/dist/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="threads" - -RDEPEND=" - app-admin/gkrellm:2[X] - net-misc/curl" -DEPEND="${RDEPEND}" - -# Will open gkrellm in X11 display -RESTRICT="test" - -src_prepare() { - use threads && eapply "${FILESDIR}"/${P}-mt.patch - eapply_user - - sed -i -e 's:gkrellm2 -p:gkrellm -p:' Makefile || die -} - -src_configure() { - tc-export CC -} - -pkg_postinst() { - if use threads; then - elog "If you can't connect MPD, please unset USE threads." - elog "See, https://bugs.gentoo.org/276970 for information." - fi -}