Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-systeminfo/files/
Date: Tue, 02 Feb 2021 21:38:48
Message-Id: 1612301909.180feae36daca72757a0cad01df30c677724e9a6.conikost@gentoo
1 commit: 180feae36daca72757a0cad01df30c677724e9a6
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue Feb 2 17:00:32 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 2 21:38:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=180feae3
7
8 media-plugins/vdr-systeminfo: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/19308
11 Package-Manager: Portage-3.0.14, Repoman-3.0.2
12 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 .../files/vdr-systeminfo-0.1.3_vdr-2.3.1.patch | 69 ----------------------
16 1 file changed, 69 deletions(-)
17
18 diff --git a/media-plugins/vdr-systeminfo/files/vdr-systeminfo-0.1.3_vdr-2.3.1.patch b/media-plugins/vdr-systeminfo/files/vdr-systeminfo-0.1.3_vdr-2.3.1.patch
19 deleted file mode 100644
20 index 4cadb0bc285..00000000000
21 --- a/media-plugins/vdr-systeminfo/files/vdr-systeminfo-0.1.3_vdr-2.3.1.patch
22 +++ /dev/null
23 @@ -1,69 +0,0 @@
24 -compilefix vdr-2.3.1
25 -http://www.vdr-portal.de/board1-news/board2-vdr-news/p1254237-announce-vdr-developer-version-2-3-1/#post1254237
26 -Signed-of-by: Joerg Bornkessel <hd_brummy@g.o> (25 Okt 2015)
27 -
28 ---- displayinfo.c 2008-11-09 10:31:23.000000000 +0100
29 -+++ displayinfo.c 2015-10-14 16:18:28.328868172 +0200
30 -@@ -224,7 +224,7 @@
31 - void cInfoLines::Action()
32 - {
33 - int line = 0;
34 -- Lock();
35 -+ cThread::Lock();
36 - Clear();
37 - Unlock();
38 - cString osdline = NULL;
39 -@@ -236,7 +236,7 @@
40 -
41 - osdline = PrepareInfoline(++line, &isStatic);
42 - if ((const char*)osdline) {
43 -- Lock();
44 -+ cThread::Lock();
45 - Add(new cInfoLine(osdline, isStatic));
46 - Unlock();
47 - }
48 -@@ -244,7 +244,7 @@
49 - while (Running() && NULL != (const char*)osdline && line <= MAX_LINES);
50 -
51 - if (!First()) {
52 -- Lock();
53 -+ cThread::Lock();
54 - osdline = tr("Error getting system information");
55 - Add(new cInfoLine(osdline, true));
56 - state++;
57 -@@ -252,7 +252,7 @@
58 - }
59 - else
60 - {
61 -- Lock();
62 -+ cThread::Lock();
63 - state++;
64 - Unlock();
65 - if (Running())
66 -@@ -260,7 +260,7 @@
67 -
68 - while (Running()) {
69 - cInfoLine * currentline = NULL;
70 -- Lock();
71 -+ cThread::Lock();
72 - if (OsdInitialized)
73 - firstDisplay = false;
74 - currentline = First();
75 -@@ -274,7 +274,7 @@
76 - if (!currentline || !currentline->isStatic()) {
77 - osdline = PrepareInfoline(line, &isStatic);
78 - if ((const char*)osdline) {
79 -- Lock();
80 -+ cThread::Lock();
81 - currentline->SetStr(osdline);
82 - Unlock();
83 - }
84 -@@ -283,7 +283,7 @@
85 - }
86 - while (Running() && NULL != currentline && line <= MAX_LINES);
87 -
88 -- Lock();
89 -+ cThread::Lock();
90 - state++;
91 - Unlock();
92 -