public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Conrad Kostecki" <conikost@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-lcdproc/, media-plugins/vdr-lcdproc/files/
Date: Sun, 21 Jul 2024 15:12:11 +0000 (UTC)	[thread overview]
Message-ID: <1721574477.1a44711c9695cd9e86ba6bb5b42816d8cf4f2bc5.conikost@gentoo> (raw)

commit:     1a44711c9695cd9e86ba6bb5b42816d8cf4f2bc5
Author:     Martin Dummer <martin.dummer <AT> gmx <DOT> net>
AuthorDate: Sun Jul 14 21:05:38 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jul 21 15:07:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a44711c

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

Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 media-plugins/vdr-lcdproc/Manifest                 |  1 -
 .../files/vdr-2.4_lcdproc-0.0.10.9.patch           | 45 ----------------------
 .../vdr-lcdproc/vdr-lcdproc-0.0.10.9-r1.ebuild     | 25 ------------
 .../vdr-lcdproc/vdr-lcdproc-0.0.10.9.ebuild        | 26 -------------
 4 files changed, 97 deletions(-)

diff --git a/media-plugins/vdr-lcdproc/Manifest b/media-plugins/vdr-lcdproc/Manifest
index 1f8707ff881e..63fe1d0de6df 100644
--- a/media-plugins/vdr-lcdproc/Manifest
+++ b/media-plugins/vdr-lcdproc/Manifest
@@ -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

diff --git a/media-plugins/vdr-lcdproc/files/vdr-2.4_lcdproc-0.0.10.9.patch b/media-plugins/vdr-lcdproc/files/vdr-2.4_lcdproc-0.0.10.9.patch
deleted file mode 100644
index 0d2bbe4bb69b..000000000000
--- a/media-plugins/vdr-lcdproc/files/vdr-2.4_lcdproc-0.0.10.9.patch
+++ /dev/null
@@ -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;
- 		  }

diff --git a/media-plugins/vdr-lcdproc/vdr-lcdproc-0.0.10.9-r1.ebuild b/media-plugins/vdr-lcdproc/vdr-lcdproc-0.0.10.9-r1.ebuild
deleted file mode 100644
index fa5d74a98f8d..000000000000
--- a/media-plugins/vdr-lcdproc/vdr-lcdproc-0.0.10.9-r1.ebuild
+++ /dev/null
@@ -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-}

diff --git a/media-plugins/vdr-lcdproc/vdr-lcdproc-0.0.10.9.ebuild b/media-plugins/vdr-lcdproc/vdr-lcdproc-0.0.10.9.ebuild
deleted file mode 100644
index 966c08c4fec9..000000000000
--- a/media-plugins/vdr-lcdproc/vdr-lcdproc-0.0.10.9.ebuild
+++ /dev/null
@@ -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-}


             reply	other threads:[~2024-07-21 15:12 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-21 15:12 Conrad Kostecki [this message]
  -- strict thread matches above, loose matches on Subject: below --
2019-12-25 22:12 [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-lcdproc/, media-plugins/vdr-lcdproc/files/ Jörg Bornkessel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1721574477.1a44711c9695cd9e86ba6bb5b42816d8cf4f2bc5.conikost@gentoo \
    --to=conikost@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox