media-plugins/vdr-lcdproc: drop 0.0.10.9, 0.0.10.9-r1

Signed-off-by: Martin Dummer <martin.dummer@gmx.net>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Martin Dummer
2024-07-14 23:05:38 +02:00
committed by Conrad Kostecki
parent bcac8a2312
commit 1a44711c96
4 changed files with 0 additions and 97 deletions

View File

@@ -1,2 +1 @@
DIST vdr-lcdproc-0.0.10.9.tgz 40465 BLAKE2B c812c9efe57f5015450ebc7c91ba6ff107486b566fd46ccf60fe3251eac483d119d8c1caa41868536a6051d5f094a7b89f985609f60c13bb4fcbb31bdc8d631c SHA512 237726e6c7a3436e416596e2b85411edb5945a3feef809d2e86c3952673b2531077ab70f9bddbfc1bc12fa0b2f416f153bf1a12f91288ecbdee23553474e044a
DIST vdr-lcdproc-1.0.0.tgz 43485 BLAKE2B 8b6a8d8ee51c70ba5b364a74deb582321422f407be11e839a1fdc19a6e787ea821df84324480fbfc655969e877b1a854284e64c8a37de4f67e1d36bf470983ac SHA512 181ebe1339fa772ad0e89b6c84306aecf73f477ef51a6376718177a46d2cadd4b344c9d9e7fd8ae9a144aad2ccd6029a8ce3cb7f5eec091df2072d9239b49d69

View File

@@ -1,45 +0,0 @@
compilefix for vdr-2.4
Suggested-by: MatthiasK @ vdr-portal.de
fixed invalid suffix on literal; C++11 space issues
Signed-off-by: Joerg Bornkessel <hd_brummy@gentoo.org> ( 25 Dec 2019 )
diff -Naur lcdproc-0.0.10-jw9.orig/lcd.c lcdproc-0.0.10-jw9/lcd.c
--- lcdproc-0.0.10-jw9.orig/lcd.c 2019-12-25 22:53:55.187492713 +0100
+++ lcdproc-0.0.10-jw9/lcd.c 2019-12-25 22:54:33.075492713 +0100
@@ -808,7 +808,7 @@
cLcd::Write(LcdSetup.ShowTime?1:4," Welcome to V D R\0");
cLcd::Write(LcdSetup.ShowTime?2:3,"--------------------\0");
cLcd::Write(LcdSetup.ShowTime?3:1,"Video Disk Recorder\0");
- cLcd::Write(LcdSetup.ShowTime?4:2,"Version: "VDRVERSION"\0");
+ cLcd::Write(LcdSetup.ShowTime?4:2,"Version: " VDRVERSION "\0");
// Output init
if (LcdSetup.OutputNumber > 0){
@@ -850,11 +850,15 @@
}
if ( time(NULL) > nextLcdUpdate ) {
- cChannel *channel = Channels.GetByNumber(primaryDvbApi->CurrentChannel());
+// cChannel *channel = Channels.GetByNumber(primaryDvbApi->CurrentChannel());
+ LOCK_CHANNELS_READ;
+ const cChannel *channel = Channels->GetByNumber(primaryDvbApi->CurrentChannel());
const cEvent *Present = NULL;
- cSchedulesLock schedulesLock;
+/* cSchedulesLock schedulesLock;
const cSchedules *Schedules = cSchedules::Schedules(schedulesLock);
if (Schedules) {
+ const cSchedule *Schedule = Schedules->GetSchedule(channel->GetChannelID()); */
+ LOCK_SCHEDULES_READ;
const cSchedule *Schedule = Schedules->GetSchedule(channel->GetChannelID());
if (Schedule) {
const char *PresentTitle, *PresentSubtitle;
@@ -873,7 +877,7 @@
rtcycle = 10; // RT
lcrCycle = 10; // LCR
}
- }
+// }
if ( nextLcdUpdate <= time(NULL) )
nextLcdUpdate=(time(NULL)/60)*60+60;
}

View File

@@ -1,25 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit vdr-plugin-2
VERSION="932" # every bump, new version
MY_P=${PN}-$(ver_rs 3 -jw ${PV})
DESCRIPTION="VDR plugin: use LCD device for additional output"
HOMEPAGE="https://projects.vdr-developer.org/projects/plg-lcdproc"
SRC_URI="mirror://vdr-developerorg/${VERSION}/${MY_P}.tgz -> ${P}.tgz"
KEYWORDS="~amd64 ~x86"
SLOT="0"
LICENSE="GPL-2"
DEPEND=">=app-misc/lcdproc-0.4.3
>=media-video/vdr-2.4"
PATCHES=( "${FILESDIR}/vdr-2.4_lcdproc-0.0.10.9.patch" )
S=${WORKDIR}/${MY_P#vdr-}

View File

@@ -1,26 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit vdr-plugin-2
VERSION="932" # every bump, new version
MY_P=${PN}-$(ver_rs 3 -jw ${PV})
DESCRIPTION="VDR plugin: use LCD device for additional output"
HOMEPAGE="https://projects.vdr-developer.org/projects/plg-lcdproc"
SRC_URI="mirror://vdr-developerorg/${VERSION}/${MY_P}.tgz -> ${P}.tgz"
KEYWORDS="~amd64 ~x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
DEPEND=">=media-video/vdr-1.6
>=app-misc/lcdproc-0.4.3"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P#vdr-}