Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-imonlcd/
Date: Sun, 03 Jul 2022 08:58:01
Message-Id: 1656838673.82a953c524d17d928132d00538cc75184805d2cc.juippis@gentoo
1 commit: 82a953c524d17d928132d00538cc75184805d2cc
2 Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net>
3 AuthorDate: Mon Jun 20 18:11:14 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 3 08:57:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82a953c5
7
8 media-plugins/vdr-imonlcd: fix current version
9
10 - EAPI 8
11 - fix QA issue about missing pkg_postrm function
12 - retirement of http://projects.vdr-developer.org: move HOMEPAGE
13 to github.com/vdr-projects
14
15 Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
16 Closes: https://github.com/gentoo/gentoo/pull/26007
17 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
18
19 media-plugins/vdr-imonlcd/metadata.xml | 3 +++
20 .../{vdr-imonlcd-1.0.3.ebuild => vdr-imonlcd-1.0.3-r1.ebuild} | 8 ++++++--
21 2 files changed, 9 insertions(+), 2 deletions(-)
22
23 diff --git a/media-plugins/vdr-imonlcd/metadata.xml b/media-plugins/vdr-imonlcd/metadata.xml
24 index b4dbb6eb43d2..69d5c1131185 100644
25 --- a/media-plugins/vdr-imonlcd/metadata.xml
26 +++ b/media-plugins/vdr-imonlcd/metadata.xml
27 @@ -13,4 +13,7 @@
28 <email>vdr@g.o</email>
29 <name>Gentoo VDR Project</name>
30 </maintainer>
31 + <upstream>
32 + <remote-id type="github">vdr-projects/vdr-plugin-imonlcd</remote-id>
33 + </upstream>
34 </pkgmetadata>
35
36 diff --git a/media-plugins/vdr-imonlcd/vdr-imonlcd-1.0.3.ebuild b/media-plugins/vdr-imonlcd/vdr-imonlcd-1.0.3-r1.ebuild
37 similarity index 90%
38 rename from media-plugins/vdr-imonlcd/vdr-imonlcd-1.0.3.ebuild
39 rename to media-plugins/vdr-imonlcd/vdr-imonlcd-1.0.3-r1.ebuild
40 index 05e6d56bd235..f9428c7ba1b4 100644
41 --- a/media-plugins/vdr-imonlcd/vdr-imonlcd-1.0.3.ebuild
42 +++ b/media-plugins/vdr-imonlcd/vdr-imonlcd-1.0.3-r1.ebuild
43 @@ -1,12 +1,12 @@
44 # Copyright 2021-2022 Gentoo Authors
45 # Distributed under the terms of the GNU General Public License v2
46
47 -EAPI=7
48 +EAPI=8
49
50 inherit linux-info toolchain-funcs udev vdr-plugin-2
51
52 DESCRIPTION="VDR Plugin: shows information about the current state of VDR on iMON LCD"
53 -HOMEPAGE="https://projects.vdr-developer.org/projects/plg-imonlcd/wiki"
54 +HOMEPAGE="https://github.com/vdr-projects/vdr-plugin-imonlcd/wiki"
55 SRC_URI="https://github.com/vdr-projects/vdr-plugin-imonlcd/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
56 S="${WORKDIR}/vdr-plugin-imonlcd-${PV}"
57
58 @@ -49,3 +49,7 @@ src_install() {
59 pkg_postinst() {
60 udev_reload
61 }
62 +
63 +pkg_postrm() {
64 + udev_reload
65 +}