media-plugins/vdr-remoteosd: drop 1.0.0, 1.0.0-r1

Signed-off-by: Martin Dummer <martin.dummer@gmx.net>
Part-of: https://github.com/gentoo/gentoo/pull/44238
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Martin Dummer 2025-10-19 10:26:48 +02:00 committed by Sam James
parent 5fffd93385
commit afb264db39
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
4 changed files with 0 additions and 73 deletions

View File

@ -1,2 +1 @@
DIST vdr-remoteosd-1.0.0.tgz 20154 BLAKE2B e507b2ecdf74b69f946df23cd312a1bbc9370809ce6dc38bc1ea1a84c0ec08c4d93d06f7f6e6e7be7a67058165991b706173011d6ceeac41d5a0527187f7af1b SHA512 c5af72ac82e41af7d753f20230cf511cb95abad07906be96b14f26aacce3c461ef3b552a1f28dceecfa5b50023268bbf9bf41b71e66326af610ba113295e9056
DIST vdr-remoteosd-1.0.1.tar.gz 20300 BLAKE2B 5f06611bdfa1c9af6da42966558a3277c02093b6d8f0f2a575df77a33ccb66f63c1decbb31747628ddcf6ee0ad260b1551b5fc5a1ac7b2e59f3f7709f5203aa0 SHA512 f4a562d1e1e75e7eaed0f6a157ddf2adb4473f57a8e64f980529ced9e7fba3041150d14a4e158bc471ed6ae36072ca5b279b793c9ab86a5f7fdb3e089b7556af

View File

@ -1,38 +0,0 @@
compile fix for >=vdr-2.3.1
suggested by MatthiasK on vdr-portal.de
Signed-off-by: Joerg Bornkessel <hd_brummy@gentoo.org> ( 25 Dec 2019 )
diff -Naur remoteosd-1.0.0.orig/menu.c remoteosd-1.0.0/menu.c
--- remoteosd-1.0.0.orig/menu.c 2019-12-25 21:59:10.907492713 +0100
+++ remoteosd-1.0.0/menu.c 2019-12-25 22:01:09.717492713 +0100
@@ -69,7 +69,8 @@
}
if (RemoteOsdSetup.tuneServer) {
- cChannel *channel = Channels.GetByNumber(cDevice::CurrentChannel());
+ LOCK_CHANNELS_READ;
+ const cChannel *channel = Channels->GetByNumber(cDevice::CurrentChannel());
CmdCHAN(channel);
}
@@ -98,7 +99,7 @@
return cmd.responseCode;
}
-bool cRemoteOsdMenu::CmdCHAN(cChannel *Channel) {
+bool cRemoteOsdMenu::CmdCHAN(const cChannel *Channel) {
SvdrpCommand_v1_0 cmd;
cmd.command = cString::sprintf("CHAN %s\r\n", *Channel->GetChannelID().ToString());
cmd.handle = svdrp.handle;
diff -Naur remoteosd-1.0.0.orig/menu.h remoteosd-1.0.0/menu.h
--- remoteosd-1.0.0.orig/menu.h 2019-12-25 21:59:10.906492713 +0100
+++ remoteosd-1.0.0/menu.h 2019-12-25 22:01:37.733492713 +0100
@@ -27,7 +27,7 @@
bool isEmpty;
bool plugOsd;
- bool CmdCHAN(cChannel *Channel);
+ bool CmdCHAN(const cChannel *Channel);
bool CmdHITK(const char *Key);
bool CmdLSTO();
bool CmdOSDT();

View File

@ -1,18 +0,0 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit vdr-plugin-2
DESCRIPTION="VDR Plugin: server/client remoteosd"
HOMEPAGE="https://vdr.schmirler.de/"
SRC_URI="https://vdr.schmirler.de/remoteosd/${P}.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ~arm x86"
DEPEND=">=media-video/vdr-2.4"
PATCHES=( "${FILESDIR}/vdr-2.4_remoteosd-${PV}.patch" )

View File

@ -1,16 +0,0 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit vdr-plugin-2
DESCRIPTION="VDR Plugin: server/client remoteosd"
HOMEPAGE="https://vdr.schmirler.de/"
SRC_URI="https://vdr.schmirler.de/remoteosd/${P}.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ~arm x86"
DEPEND=">=media-video/vdr-2.0.0"