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 900E81581F3 for ; Sun, 1 Dec 2024 11:54:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56E2AE0801; Sun, 1 Dec 2024 11:54:36 +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 39FF1E0801 for ; Sun, 1 Dec 2024 11:54:36 +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 56D88341C4B for ; Sun, 1 Dec 2024 11:54:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2E22F96 for ; Sun, 1 Dec 2024 11:54:33 +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: <1733053930.ffe86e04d795cb230a787543078e99b3fa9a3758.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-remote/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/vdr-remote/vdr-remote-0.7.0-r1.ebuild media-plugins/vdr-remote/vdr-remote-0.7.0-r2.ebuild X-VCS-Directories: media-plugins/vdr-remote/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ffe86e04d795cb230a787543078e99b3fa9a3758 X-VCS-Branch: master Date: Sun, 1 Dec 2024 11:54:33 +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: 7d05e51a-3b06-4347-96b5-ae69b6168f86 X-Archives-Hash: 8f0abf971f2e8f0db4821edfff55d79c commit: ffe86e04d795cb230a787543078e99b3fa9a3758 Author: Paul Zander gmail com> AuthorDate: Fri Apr 26 20:43:33 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Dec 1 11:52:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffe86e04 media-plugins/vdr-remote: [QA] BannedEapiCommand acct-user/vdr has the logic for this, so use it Signed-off-by: Paul Zander gmail.com> Signed-off-by: Sam James gentoo.org> ...-0.7.0-r1.ebuild => vdr-remote-0.7.0-r2.ebuild} | 25 +++++++++------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/media-plugins/vdr-remote/vdr-remote-0.7.0-r1.ebuild b/media-plugins/vdr-remote/vdr-remote-0.7.0-r2.ebuild similarity index 53% rename from media-plugins/vdr-remote/vdr-remote-0.7.0-r1.ebuild rename to media-plugins/vdr-remote/vdr-remote-0.7.0-r2.ebuild index 8dab4f28306a..96c77e0902ee 100644 --- a/media-plugins/vdr-remote/vdr-remote-0.7.0-r1.ebuild +++ b/media-plugins/vdr-remote/vdr-remote-0.7.0-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 2021 Gentoo Authors +# Copyright 2021-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit vdr-plugin-2 @@ -9,20 +9,15 @@ DESCRIPTION="VDR Plugin: use various devices for controlling vdr (keyboards, lir HOMEPAGE="http://www.escape-edv.de/endriss/vdr/" SRC_URI="http://www.escape-edv.de/endriss/vdr/${P}.tgz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="amd64 x86" IUSE="systemd" -DEPEND=">=media-video/vdr-2.2.0" - -pkg_setup() { - vdr-plugin-2_pkg_setup - - if use systemd; then - if ! getent group input | grep -q vdr; then - einfo "add user 'vdr' to group 'input' for full access to remote control device" - gpasswd -a vdr input - fi - fi -} +DEPEND=" + >=media-video/vdr-2.2.0 +" +RDEPEND=" + ${DEPEND} + systemd? ( acct-user/vdr[remote,systemd] ) +"