summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Dummer <martin.dummer@gmx.net>2021-02-20 20:55:41 +0100
committerJoonas Niilola <juippis@gentoo.org>2021-02-28 11:03:06 +0200
commitaef5c3eb91a1e0f12396e0546f65109aa317864f (patch)
tree168880d6ef83002ab2ee2d17e8749c7d663ea3f1 /media-plugins/vdr-satip/files
parentmedia-plugins/vdr-satip: update SRC_URI and HOMEPAGE (diff)
downloadgentoo-aef5c3eb91a1e0f12396e0546f65109aa317864f.tar.gz
gentoo-aef5c3eb91a1e0f12396e0546f65109aa317864f.tar.bz2
gentoo-aef5c3eb91a1e0f12396e0546f65109aa317864f.zip
media-plugins/vdr-satip: remove old versions
Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Martin Dummer <martin.dummer@gmx.net> Closes: https://github.com/gentoo/gentoo/pull/19447 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'media-plugins/vdr-satip/files')
-rw-r--r--media-plugins/vdr-satip/files/vdr-satip-2.2.3_c++11.patch28
-rw-r--r--media-plugins/vdr-satip/files/vdr-satip-2.2.3_missinginclude.patch15
2 files changed, 0 insertions, 43 deletions
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
deleted file mode 100644
index 102e8e970b97..000000000000
--- a/media-plugins/vdr-satip/files/vdr-satip-2.2.3_c++11.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-common.h still use function typeof,
-this was never defined part of c++ and is
-not supported in c++11 anymore
-so we revert back to gnu++03 as it is not fixed by upstream
-Signed-of-by: Joerg Bornkessel <hd_brummy@gentoo.org> (2016/aug/01)
-diff -Naur satip-2.2.3.orig/Makefile satip-2.2.3/Makefile
---- satip-2.2.3.orig/Makefile 2016-08-03 23:17:36.769080128 +0200
-+++ satip-2.2.3/Makefile 2016-08-03 23:18:36.399080128 +0200
-@@ -32,6 +32,7 @@
-
- export CFLAGS = $(call PKGCFG,cflags)
- export CXXFLAGS = $(call PKGCFG,cxxflags)
-+export CXXFLAGS += -std=gnu++03
- STRIP = true
-
- ### The version number of VDR's plugin API:
-diff -Naur satip-2.2.3.orig/common.h satip-2.2.3/common.h
---- satip-2.2.3.orig/common.h 2016-08-07 02:54:27.290440336 +0200
-+++ satip-2.2.3/common.h 2016-08-07 02:54:53.193773669 +0200
-@@ -52,7 +52,7 @@
- do { \
- if (exp) { \
- char tmp[64]; \
-- esyslog("[%s,%d]: "errstr": %s", __FILE__, __LINE__, \
-+ esyslog("[%s,%d]: " errstr ": %s", __FILE__, __LINE__, \
- strerror_r(errno, tmp, sizeof(tmp))); \
- func; \
- ret; \
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
deleted file mode 100644
index 4d0b32329e23..000000000000
--- a/media-plugins/vdr-satip/files/vdr-satip-2.2.3_missinginclude.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-fix: isspace was not declared in this scope
-https://github.com/rofafor/vdr-plugin-satip/commit/c10372bb4f1
-
-Signed-of by: Joerg Bornkessel <hd_brummy@gentoo.org> (03/Sep/2018)
-diff -Naur satip-2.2.3.orig/satip.c satip-2.2.3/satip.c
---- satip-2.2.3.orig/satip.c 2018-09-03 13:00:20.000000000 +0200
-+++ satip-2.2.3/satip.c 2018-09-03 13:00:54.000000000 +0200
-@@ -5,6 +5,7 @@
- *
- */
-
-+#include <ctype.h>
- #include <getopt.h>
- #include <vdr/plugin.h>
- #include "common.h"