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 4704415817D for ; Mon, 3 Jun 2024 07:56:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 592A0E2A2B; Mon, 3 Jun 2024 07:56:14 +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 3C60BE2A2B for ; Mon, 3 Jun 2024 07:56:14 +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 24CC7341B27 for ; Mon, 3 Jun 2024 07:56:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB1991587 for ; Mon, 3 Jun 2024 07:56:11 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1717401284.b7fa0e2364074119ac2e18fe85ac1ebacaae70e5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/playerctl/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/playerctl/playerctl-2.4.1.ebuild X-VCS-Directories: media-sound/playerctl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b7fa0e2364074119ac2e18fe85ac1ebacaae70e5 X-VCS-Branch: master Date: Mon, 3 Jun 2024 07:56:11 +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: cc90fc9e-5bda-4c58-a811-4ac367b96719 X-Archives-Hash: d5913bdc6823a854179d791746375fdc commit: b7fa0e2364074119ac2e18fe85ac1ebacaae70e5 Author: Sam James gentoo org> AuthorDate: Mon Jun 3 07:43:03 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jun 3 07:54:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7fa0e23 media-sound/playerctl: drop 2.4.1 Signed-off-by: Sam James gentoo.org> media-sound/playerctl/playerctl-2.4.1.ebuild | 54 ---------------------------- 1 file changed, 54 deletions(-) diff --git a/media-sound/playerctl/playerctl-2.4.1.ebuild b/media-sound/playerctl/playerctl-2.4.1.ebuild deleted file mode 100644 index 710b5c8ab50a..000000000000 --- a/media-sound/playerctl/playerctl-2.4.1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit bash-completion-r1 meson xdg - -DESCRIPTION="A CLI utility to control media players over MPRIS" -HOMEPAGE="https://github.com/acrisci/playerctl" -SRC_URI="https://github.com/acrisci/playerctl/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="doc introspection" -RESTRICT="test" # Seems to want a system bus, rather than a session one? - -RDEPEND=" - >=dev-libs/glib-2.38:2 - introspection? ( dev-libs/gobject-introspection:= ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - dev-util/gdbus-codegen - dev-util/glib-utils - virtual/pkgconfig - doc? ( dev-util/gtk-doc ) -" - -src_configure() { - local emesonargs=( - -Ddatadir=share - -Dbindir=bin - -Dbash-completions=false - -Dzsh-completions=false - $(meson_use doc gtk-doc) - $(meson_use introspection) - ) - - xdg_environment_reset # bug #596166 - meson_src_configure -} - -src_install() { - meson_src_install - - docinto examples - dodoc -r "${S}"/examples/. - docompress -x "/usr/share/doc/${PF}/examples" - - newbashcomp data/playerctl.bash "${PN}" - insinto /usr/share/zsh/site-functions - newins data/playerctl.zsh _playerctl -}