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 8BC8115817D for ; Thu, 13 Jun 2024 06:56:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A087E2AA5; Thu, 13 Jun 2024 06:56:09 +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 2FDC6E2AA5 for ; Thu, 13 Jun 2024 06:56:09 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1760C33BE4D for ; Thu, 13 Jun 2024 06:56:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73DFF1CD3 for ; Thu, 13 Jun 2024 06:56:06 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1718261763.3fbe23d84d8b3fecd7a1e9047c2f06bf2e02634a.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-calc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/vdr-calc/vdr-calc-0.0.1_rc5.ebuild X-VCS-Directories: media-plugins/vdr-calc/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 3fbe23d84d8b3fecd7a1e9047c2f06bf2e02634a X-VCS-Branch: master Date: Thu, 13 Jun 2024 06:56:06 +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: 7d9d52de-2620-4bb6-8e64-272dd4f0d85b X-Archives-Hash: 6c367af9aff812b6a80b4792962c4314 commit: 3fbe23d84d8b3fecd7a1e9047c2f06bf2e02634a Author: Martin Dummer gmx net> AuthorDate: Thu May 2 16:18:24 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Jun 13 06:56:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fbe23d8 media-plugins/vdr-calc: update EAPI 7 -> 8 fix pkgcheck issues Signed-off-by: Martin Dummer gmx.net> Signed-off-by: Joonas Niilola gentoo.org> media-plugins/vdr-calc/vdr-calc-0.0.1_rc5.ebuild | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/media-plugins/vdr-calc/vdr-calc-0.0.1_rc5.ebuild b/media-plugins/vdr-calc/vdr-calc-0.0.1_rc5.ebuild index 4b8c51e500ad..8463c752ae5e 100644 --- a/media-plugins/vdr-calc/vdr-calc-0.0.1_rc5.ebuild +++ b/media-plugins/vdr-calc/vdr-calc-0.0.1_rc5.ebuild @@ -1,22 +1,20 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit vdr-plugin-2 DESCRIPTION="VDR Plugin: OSD Calculator" HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" SRC_URI="http://vdr.websitec.de/download/${PN}/${PN}-0[1].0.1-rc5.tgz" +S=${WORKDIR}/${VDRPLUGIN}-0.0.1-rc5 -KEYWORDS="~amd64 x86" -SLOT="0" LICENSE="GPL-2" -IUSE="" +SLOT="0" +KEYWORDS="~amd64 x86" -DEPEND=">=media-video/vdr-1.3.7" +DEPEND="media-video/vdr" RDEPEND="${DEPEND}" -S=${WORKDIR}/${VDRPLUGIN}-0.0.1-rc5 - PATCHES=( "${FILESDIR}/${P}-gcc4.diff" )