Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-satip/files/, media-plugins/vdr-satip/
Date: Sun, 28 Feb 2021 09:03:25
Message-Id: 1614502986.aef5c3eb91a1e0f12396e0546f65109aa317864f.juippis@gentoo
1 commit: aef5c3eb91a1e0f12396e0546f65109aa317864f
2 Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net>
3 AuthorDate: Sat Feb 20 19:55:41 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 09:03:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aef5c3eb
7
8 media-plugins/vdr-satip: remove old versions
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
12 Closes: https://github.com/gentoo/gentoo/pull/19447
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 media-plugins/vdr-satip/Manifest | 2 --
16 .../vdr-satip/files/vdr-satip-2.2.3_c++11.patch | 28 -----------------
17 .../files/vdr-satip-2.2.3_missinginclude.patch | 15 ---------
18 media-plugins/vdr-satip/vdr-satip-2.2.3-r2.ebuild | 35 ---------------------
19 .../vdr-satip/vdr-satip-2.4.0_p20191027.ebuild | 36 ----------------------
20 5 files changed, 116 deletions(-)
21
22 diff --git a/media-plugins/vdr-satip/Manifest b/media-plugins/vdr-satip/Manifest
23 index 1df3d7a6399..5251b42f091 100644
24 --- a/media-plugins/vdr-satip/Manifest
25 +++ b/media-plugins/vdr-satip/Manifest
26 @@ -1,4 +1,2 @@
27 DIST vdr-plugin-satip-43b60b1566878104240cbae5b1e322bbacd380e1.tar.gz 74697 BLAKE2B a1e763e1837cf00718469333304a858cec9802bc65ca0e607664ce0bc0594d038586b10fdbe822cb62e8d9d68441bc39b9c4356ce88e328cc08e41a3e7e2c213 SHA512 6447d424d119e738b3dc747b9ec27c24ed15143bee176cca4cbd09d43a9c5cfd03bb1d39fa2c3b4409af583e25489872d5350d32570d0790e2327759a6181b2e
28 -DIST vdr-satip-2.2.3.tgz 62722 BLAKE2B 408fe520b4210fa24667d4244560d5132260ce08067d482a50b12446c42c0c34fd922b3429d00c4e3550a7b1dc1d21bfac534cae9de478594751b9cf0f558d52 SHA512 451606b52831c009aaec894f0547c59a9447279d7f96a4b2291614eab09a3539849abcb6974b7c2c4b34e7b43a2f9c782ab1ea6bfd4e35f9747349065fb6a5e7
29 DIST vdr-satip-2.2.5.tgz 74669 BLAKE2B e586297f0f0c1ca776d4c9f83b46da7f7afe82b80ac7e79ec2da7107c793f5c8a5092590ad23030a435e2d034b084373b9b069bac6ef81822723d33ff6c7fab2 SHA512 3f8ab1d9e84843e71bc6fc8f712d178fa3d304d0959ec977de1b11829e27b575feb78735c6770b15d4dfb8f4fce933aed7df07a6d9ba0b20e937aacd3c643a21
30 -DIST vdr-satip-2.4.0_p20191027.tar.gz 74205 BLAKE2B 06d847bdec0aa996b5a12df8effcbed1f6cb508664aceda67f6ca415b84646e2f116e329068abd735403c145971146335a004d43e38ede133db03e37ba5b3117 SHA512 087b767583393608995141bf15f02793fb48ee448fe5c3becad34e2e84a4dc8391feb00c1b68fd37377837bd4468f766a8a389e720be375bd2cb6847277e887c
31
32 diff --git a/media-plugins/vdr-satip/files/vdr-satip-2.2.3_c++11.patch b/media-plugins/vdr-satip/files/vdr-satip-2.2.3_c++11.patch
33 deleted file mode 100644
34 index 102e8e970b9..00000000000
35 --- a/media-plugins/vdr-satip/files/vdr-satip-2.2.3_c++11.patch
36 +++ /dev/null
37 @@ -1,28 +0,0 @@
38 -common.h still use function typeof,
39 -this was never defined part of c++ and is
40 -not supported in c++11 anymore
41 -so we revert back to gnu++03 as it is not fixed by upstream
42 -Signed-of-by: Joerg Bornkessel <hd_brummy@g.o> (2016/aug/01)
43 -diff -Naur satip-2.2.3.orig/Makefile satip-2.2.3/Makefile
44 ---- satip-2.2.3.orig/Makefile 2016-08-03 23:17:36.769080128 +0200
45 -+++ satip-2.2.3/Makefile 2016-08-03 23:18:36.399080128 +0200
46 -@@ -32,6 +32,7 @@
47 -
48 - export CFLAGS = $(call PKGCFG,cflags)
49 - export CXXFLAGS = $(call PKGCFG,cxxflags)
50 -+export CXXFLAGS += -std=gnu++03
51 - STRIP = true
52 -
53 - ### The version number of VDR's plugin API:
54 -diff -Naur satip-2.2.3.orig/common.h satip-2.2.3/common.h
55 ---- satip-2.2.3.orig/common.h 2016-08-07 02:54:27.290440336 +0200
56 -+++ satip-2.2.3/common.h 2016-08-07 02:54:53.193773669 +0200
57 -@@ -52,7 +52,7 @@
58 - do { \
59 - if (exp) { \
60 - char tmp[64]; \
61 -- esyslog("[%s,%d]: "errstr": %s", __FILE__, __LINE__, \
62 -+ esyslog("[%s,%d]: " errstr ": %s", __FILE__, __LINE__, \
63 - strerror_r(errno, tmp, sizeof(tmp))); \
64 - func; \
65 - ret; \
66
67 diff --git a/media-plugins/vdr-satip/files/vdr-satip-2.2.3_missinginclude.patch b/media-plugins/vdr-satip/files/vdr-satip-2.2.3_missinginclude.patch
68 deleted file mode 100644
69 index 4d0b32329e2..00000000000
70 --- a/media-plugins/vdr-satip/files/vdr-satip-2.2.3_missinginclude.patch
71 +++ /dev/null
72 @@ -1,15 +0,0 @@
73 -fix: isspace was not declared in this scope
74 -https://github.com/rofafor/vdr-plugin-satip/commit/c10372bb4f1
75 -
76 -Signed-of by: Joerg Bornkessel <hd_brummy@g.o> (03/Sep/2018)
77 -diff -Naur satip-2.2.3.orig/satip.c satip-2.2.3/satip.c
78 ---- satip-2.2.3.orig/satip.c 2018-09-03 13:00:20.000000000 +0200
79 -+++ satip-2.2.3/satip.c 2018-09-03 13:00:54.000000000 +0200
80 -@@ -5,6 +5,7 @@
81 - *
82 - */
83 -
84 -+#include <ctype.h>
85 - #include <getopt.h>
86 - #include <vdr/plugin.h>
87 - #include "common.h"
88
89 diff --git a/media-plugins/vdr-satip/vdr-satip-2.2.3-r2.ebuild b/media-plugins/vdr-satip/vdr-satip-2.2.3-r2.ebuild
90 deleted file mode 100644
91 index 805adb773dd..00000000000
92 --- a/media-plugins/vdr-satip/vdr-satip-2.2.3-r2.ebuild
93 +++ /dev/null
94 @@ -1,35 +0,0 @@
95 -# Copyright 1999-2018 Gentoo Foundation
96 -# Distributed under the terms of the GNU General Public License v2
97 -
98 -EAPI=7
99 -
100 -inherit vdr-plugin-2
101 -
102 -DESCRIPTION="VDR Plugin: integrates SAT>IP network devices seamlessly into VDR"
103 -HOMEPAGE="http://www.saunalahti.fi/~rahrenbe/vdr/satip/"
104 -SRC_URI="http://www.saunalahti.fi/~rahrenbe/vdr/satip/files/${P}.tgz"
105 -
106 -KEYWORDS="~amd64 ~arm ~x86"
107 -SLOT="0"
108 -LICENSE="GPL-2"
109 -IUSE=""
110 -
111 -DEPEND=">=media-video/vdr-2.2.0
112 - >=net-misc/curl-7.36
113 - || ( dev-libs/tinyxml
114 - dev-libs/pugixml )"
115 -RDEPEND="${DEPEND}"
116 -
117 -src_prepare() {
118 - vdr-plugin-2_src_prepare
119 -
120 - # c++11 compile fix
121 - eapply "${FILESDIR}/${P}_c++11.patch"
122 -
123 - #gcc 7 compile fix
124 - eapply "${FILESDIR}/${P}_missinginclude.patch"
125 -
126 - if has_version "dev-libs/tinyxml" ; then
127 - sed -e "s:#SATIP_USE_TINYXML:SATIP_USE_TINYXML:" -i Makefile
128 - fi
129 -}
130
131 diff --git a/media-plugins/vdr-satip/vdr-satip-2.4.0_p20191027.ebuild b/media-plugins/vdr-satip/vdr-satip-2.4.0_p20191027.ebuild
132 deleted file mode 100644
133 index cd4da2275d4..00000000000
134 --- a/media-plugins/vdr-satip/vdr-satip-2.4.0_p20191027.ebuild
135 +++ /dev/null
136 @@ -1,36 +0,0 @@
137 -# Copyright 2019 Gentoo Authors
138 -# Distributed under the terms of the GNU General Public License v2
139 -
140 -EAPI=7
141 -
142 -inherit vdr-plugin-2
143 -
144 -GIT_COMMIT="19e3057f34d9c097c8c6bad30188b14d80b7a242"
145 -MY_P="vdr-plugin-satip-${GIT_COMMIT}"
146 -
147 -DESCRIPTION="VDR Plugin: integrates SAT>IP network devices seamlessly into VDR"
148 -HOMEPAGE="http://www.saunalahti.fi/~rahrenbe/vdr/satip/"
149 -SRC_URI="https://github.com/rofafor/vdr-plugin-satip/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz"
150 -
151 -LICENSE="GPL-2"
152 -SLOT="0"
153 -KEYWORDS="~amd64 ~arm ~x86"
154 -
155 -DEPEND=">=media-video/vdr-2.4.0
156 - >=net-misc/curl-7.36
157 - || ( dev-libs/pugixml
158 - dev-libs/tinyxml )"
159 -RDEPEND="${DEPEND}"
160 -
161 -QA_FLAGS_IGNORED="
162 - usr/lib/vdr/plugins/libvdr-satip.*
163 - usr/lib64/vdr/plugins/libvdr-satip.*"
164 -S="${WORKDIR}/${MY_P}"
165 -
166 -src_prepare() {
167 - vdr-plugin-2_src_prepare
168 -
169 - if has_version "dev-libs/tinyxml" ; then
170 - sed -e "s:#SATIP_USE_TINYXML:SATIP_USE_TINYXML:" -i Makefile || die "sed failed"
171 - fi
172 -}