* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-epgsync/files/
@ 2017-01-15 10:25 David Seifert
0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2017-01-15 10:25 UTC (permalink / raw
To: gentoo-commits
commit: 33a378ca030ce05c55ebb3e63cc6808bd59c9c36
Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Thu Jan 5 18:35:49 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jan 15 10:24:02 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33a378ca
media-plugins/vdr-epgsync: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/3338
.../vdr-epgsync/files/vdr-epgsync-0.0.2-include.patch | 12 ------------
.../vdr-epgsync/files/vdr-epgsync-0.0.3-Makefile.diff | 11 -----------
2 files changed, 23 deletions(-)
diff --git a/media-plugins/vdr-epgsync/files/vdr-epgsync-0.0.2-include.patch b/media-plugins/vdr-epgsync/files/vdr-epgsync-0.0.2-include.patch
deleted file mode 100644
index 682d05e..00000000
--- a/media-plugins/vdr-epgsync/files/vdr-epgsync-0.0.2-include.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -uNr epgsync-0.0.1.orig/thread.h epgsync-0.0.1/thread.h
---- epgsync-0.0.1.orig/thread.h 2006-07-15 14:15:48.000000000 +0200
-+++ epgsync-0.0.1/thread.h 2006-07-25 20:08:30.039828500 +0200
-@@ -10,7 +10,7 @@
- #include <vdr/thread.h>
- #include <vdr/tools.h>
- #include <vdr/plugin.h>
--#include "../svdrpservice/svdrpservice.h"
-+#include <svdrpservice/svdrpservice.h>
-
- class cEpgSyncThread: public cThread {
- private:
diff --git a/media-plugins/vdr-epgsync/files/vdr-epgsync-0.0.3-Makefile.diff b/media-plugins/vdr-epgsync/files/vdr-epgsync-0.0.3-Makefile.diff
deleted file mode 100644
index 6f109d3..00000000
--- a/media-plugins/vdr-epgsync/files/vdr-epgsync-0.0.3-Makefile.diff
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -Naur epgsync-0.0.3.orig/Makefile epgsync-0.0.3/Makefile
---- epgsync-0.0.3.orig/Makefile 2009-02-23 22:15:57.000000000 +0100
-+++ epgsync-0.0.3/Makefile 2009-02-23 22:16:15.000000000 +0100
-@@ -34,7 +34,7 @@
- APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h)
-
- ### Test whether VDR has locale support
--VDRLOCALE = $(shell grep '^LOCALEDIR' $(VDRDIR)/Makefile)
-+VDRLOCALE = $(shell grep '^LOCDIR' $(VDRDIR)/Make.config)
-
- ### The name of the distribution archive:
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-epgsync/files/
@ 2024-06-22 18:54 Conrad Kostecki
0 siblings, 0 replies; 2+ messages in thread
From: Conrad Kostecki @ 2024-06-22 18:54 UTC (permalink / raw
To: gentoo-commits
commit: a1b4b0387b19a1d4385c316fab6b05579d96b7f7
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Tue Jun 18 17:24:45 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Jun 22 18:50:39 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1b4b038
media-plugins/vdr-epgsync: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
.../files/vdr-epgsync-1.0.1_vdr-2.4.patch | 56 ----------------------
1 file changed, 56 deletions(-)
diff --git a/media-plugins/vdr-epgsync/files/vdr-epgsync-1.0.1_vdr-2.4.patch b/media-plugins/vdr-epgsync/files/vdr-epgsync-1.0.1_vdr-2.4.patch
deleted file mode 100644
index 9b3df4097fd4..000000000000
--- a/media-plugins/vdr-epgsync/files/vdr-epgsync-1.0.1_vdr-2.4.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-compilefix for media-video/vdr-2.4.1
-Suggested-by: MatthiasK @ vdr-portal.de
-
-Signed-off-by: Joerg Bornkessel <hd_brummy@gentoo.org> ( 27 Dec 2019 )
-diff -Naur epgsync-1.0.1.orig/thread.c epgsync-1.0.1/thread.c
---- epgsync-1.0.1.orig/thread.c 2019-12-26 00:12:49.124492713 +0100
-+++ epgsync-1.0.1/thread.c 2019-12-26 00:17:55.129492713 +0100
-@@ -42,9 +42,10 @@
- }
- }
-
--cChannel *GetChannelByName(const char* Name, const cChannel *IgnoreChannel = NULL, eChannelTypes Type = ctAll)
-+const cChannel *GetChannelByName(const char* Name, const cChannel *IgnoreChannel = NULL, eChannelTypes Type = ctAll)
- {
-- for (cChannel *channel = Channels.First(); channel; channel = Channels.Next(channel)) {
-+ LOCK_CHANNELS_READ;
-+ for (const cChannel *channel = Channels->First(); channel; channel = Channels->Next(channel)) {
- if (strcasecmp(Name, channel->Name()) == 0 || strcasecmp(Name, channel->ShortName()) == 0) {
- if (IsType(channel, Type) && channel != IgnoreChannel)
- return channel;
-@@ -95,20 +96,17 @@
- if (EpgSyncSetup.redirectChannels == rcmId) {
- // Direct import, no mapping:
- // loop through local channels, get channels by ID
-- cSchedulesLock *lock = NULL;
-- for (cChannel *channel = Channels.First(); channel && Running();
-- channel = Channels.Next(channel)) {
-- if (!lock)
-- lock = new cSchedulesLock();
-- if (cSchedules::Schedules(*lock)->GetSchedule(channel)) {
-- DELETENULL(lock);
-+ LOCK_CHANNELS_READ;
-+ for (const cChannel *channel = Channels->First(); channel && Running();
-+ channel = Channels->Next(channel)) {
-+ LOCK_SCHEDULES_READ;
-+ if (Schedules->GetSchedule(channel)) {
- if (CmdLSTE(f, *channel->GetChannelID().ToString())) {
- AddSchedule(f);
- }
- cCondWait::SleepMs(EPGSYNC_SLEEPMS);
- }
- }
-- DELETENULL(lock);
- }
- else {
- // Map channels by name:
-@@ -182,7 +180,8 @@
- targetChannel = NULL;
-
- const char* p = skipspace(s + 1);
-- cChannel *c = Channels.GetByChannelID(tChannelID::FromString(p));
-+ LOCK_CHANNELS_READ;
-+ const cChannel *c = Channels->GetByChannelID(tChannelID::FromString(p));
- bool cOk = IsType(c, (eChannelTypes) EpgSyncSetup.channelTypes);
-
- if (cOk && EpgSyncSetup.redirectChannels != rcmNameId) {
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-06-22 18:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-22 18:54 [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-epgsync/files/ Conrad Kostecki
-- strict thread matches above, loose matches on Subject: below --
2017-01-15 10:25 David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox