diff options
author | Martin Dummer <martin.dummer@gmx.net> | 2024-07-14 23:14:18 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-07-21 17:07:57 +0200 |
commit | 0ec0559f813fbd81f0cbe223733e7df0d03e1586 (patch) | |
tree | 095738b71b1f8d43ea9aed19d08b0a391108ebf0 | |
parent | media-plugins/vdr-lcdproc: drop 0.0.10.9, 0.0.10.9-r1 (diff) | |
download | gentoo-0ec0559f813fbd81f0cbe223733e7df0d03e1586.tar.gz gentoo-0ec0559f813fbd81f0cbe223733e7df0d03e1586.tar.bz2 gentoo-0ec0559f813fbd81f0cbe223733e7df0d03e1586.zip |
media-plugins/vdr-mlist: update EAPI 7 -> 8
fix pkgcheck issues
Signed-off-by: Martin Dummer <martin.dummer@gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/37556
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r-- | media-plugins/vdr-mlist/metadata.xml | 3 | ||||
-rw-r--r-- | media-plugins/vdr-mlist/vdr-mlist-1.0.2.ebuild | 14 |
2 files changed, 9 insertions, 8 deletions
diff --git a/media-plugins/vdr-mlist/metadata.xml b/media-plugins/vdr-mlist/metadata.xml index c08751971fb3..47a159d8839a 100644 --- a/media-plugins/vdr-mlist/metadata.xml +++ b/media-plugins/vdr-mlist/metadata.xml @@ -13,4 +13,7 @@ <email>vdr@gentoo.org</email> <name>Gentoo VDR Project</name> </maintainer> + <upstream> + <remote-id type="github">jowi24/vdr-mlist</remote-id> + </upstream> </pkgmetadata> diff --git a/media-plugins/vdr-mlist/vdr-mlist-1.0.2.ebuild b/media-plugins/vdr-mlist/vdr-mlist-1.0.2.ebuild index c7348b5082b8..7e51373fd9eb 100644 --- a/media-plugins/vdr-mlist/vdr-mlist-1.0.2.ebuild +++ b/media-plugins/vdr-mlist/vdr-mlist-1.0.2.ebuild @@ -1,20 +1,18 @@ -# 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: Show a history of the last OSD message" HOMEPAGE="https://github.com/jowi24/vdr-mlist" SRC_URI="https://github.com/jowi24/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P}" -KEYWORDS="amd64 x86" -SLOT="0" LICENSE="GPL-2" -IUSE="" +SLOT="0" +KEYWORDS="amd64 x86" -DEPEND=">=media-video/vdr-2.0" +DEPEND="media-video/vdr" RDEPEND="${DEPEND}" - -S="${WORKDIR}/${P}" |