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 9D00E158004 for ; Fri, 8 Dec 2023 19:59:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE2182BC01C; Fri, 8 Dec 2023 19:59:10 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 B0FE02BC01C for ; Fri, 8 Dec 2023 19:59:10 +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 ECF59340BD3 for ; Fri, 8 Dec 2023 19:59:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E9E2146F for ; Fri, 8 Dec 2023 19:59:08 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1702065541.f6c9f73d6773444ad6c7eedddf5e13311e25a852.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-ffnetdev/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/vdr-ffnetdev/vdr-ffnetdev-0.1.2.ebuild X-VCS-Directories: media-plugins/vdr-ffnetdev/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: f6c9f73d6773444ad6c7eedddf5e13311e25a852 X-VCS-Branch: master Date: Fri, 8 Dec 2023 19:59:08 +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: 1b5d03c7-639d-4830-9f4d-659e6cfac071 X-Archives-Hash: fab732fffbd59fa58519b8dd7a4a9e86 commit: f6c9f73d6773444ad6c7eedddf5e13311e25a852 Author: Ulrich Müller gentoo org> AuthorDate: Fri Dec 8 19:51:33 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Dec 8 19:59:01 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6c9f73d media-plugins/vdr-ffnetdev: update EAPI 6 -> 8 Signed-off-by: Ulrich Müller gentoo.org> media-plugins/vdr-ffnetdev/vdr-ffnetdev-0.1.2.ebuild | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/media-plugins/vdr-ffnetdev/vdr-ffnetdev-0.1.2.ebuild b/media-plugins/vdr-ffnetdev/vdr-ffnetdev-0.1.2.ebuild index eef79330d3ec..a1438f6197f0 100644 --- a/media-plugins/vdr-ffnetdev/vdr-ffnetdev-0.1.2.ebuild +++ b/media-plugins/vdr-ffnetdev/vdr-ffnetdev-0.1.2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit vdr-plugin-2 @@ -10,19 +10,13 @@ VERSION="837" # every bump, new version DESCRIPTION="VDR Plugin: Provides an easy way of connecting possible streaming clients to VDR" HOMEPAGE="https://projects.vdr-developer.org/projects/plg-ffnetdev" SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tar.bz2" +S="${WORKDIR}/${P}" # override eclass default -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" - -S=${WORKDIR}/${P} DEPEND=">=media-video/vdr-1.6.0" RDEPEND="${DEPEND}" -src_prepare() { - epatch "${FILESDIR}/${P}_gettext.diff" - - vdr-plugin-2_src_prepare -} +PATCHES=( "${FILESDIR}/${P}_gettext.diff" )