diff options
| author | Martin Jansa <Martin.Jansa@gmail.com> | 2017-04-27 11:04:51 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-08-31 10:18:33 +0200 |
| commit | ec9e5ed06256ad92c818474cdb490dc0d3a0d0a3 (patch) | |
| tree | e16d2a838f4561d5538928a58f805e5f1373225a /meta-multimedia/recipes-dvb/tvheadend | |
| parent | 6775acb048dabd624c5c8197b683aba45ed91569 (diff) | |
| download | meta-openembedded-ec9e5ed06256ad92c818474cdb490dc0d3a0d0a3.tar.gz | |
recipes: remove blacklisted recipes
* as PNBLACKLIST message says, these recipes are blacklisted for long
time and nobody showed any interest to fix them
* remove all unused .patch and .inc files as well
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-dvb/tvheadend')
6 files changed, 0 insertions, 223 deletions
diff --git a/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-Fix-checks-for-sse2-mmx.patch b/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-Fix-checks-for-sse2-mmx.patch deleted file mode 100644 index 3283a5b6ad..0000000000 --- a/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-Fix-checks-for-sse2-mmx.patch +++ /dev/null | |||
| @@ -1,40 +0,0 @@ | |||
| 1 | From f0dab6d6fe4b0aae4394eee93be86e9747c6ed5c Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Tue, 22 Nov 2016 05:07:38 +0000 | ||
| 4 | Subject: [PATCH] Fix checks for sse2/mmx | ||
| 5 | |||
| 6 | Just checking for cmdline options is not enough | ||
| 7 | its better to check for builtin defines to be | ||
| 8 | sure, clang does not error out on sse2 options on | ||
| 9 | arm e.g. and it ends up doing SSE2 stuff for arm | ||
| 10 | which is not desired | ||
| 11 | |||
| 12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 13 | --- | ||
| 14 | configure | 10 ++++++++-- | ||
| 15 | 1 file changed, 8 insertions(+), 2 deletions(-) | ||
| 16 | |||
| 17 | diff --git a/configure b/configure | ||
| 18 | index 47d2cf2..4be000c 100755 | ||
| 19 | --- a/configure | ||
| 20 | +++ b/configure | ||
| 21 | @@ -118,8 +118,14 @@ fi | ||
| 22 | # Valiate compiler | ||
| 23 | check_cc || die 'No C compiler found' | ||
| 24 | check_cc_header execinfo | ||
| 25 | -check_cc_option mmx | ||
| 26 | -check_cc_option sse2 | ||
| 27 | +check_cc_snippet mmx '#ifndef __MMX__ | ||
| 28 | +error "MMX not supported" | ||
| 29 | +#endif | ||
| 30 | +' | ||
| 31 | +check_cc_snippet sse2 '#ifndef __SSE2__ | ||
| 32 | +error "SSE2 not supported" | ||
| 33 | +#endif | ||
| 34 | +' | ||
| 35 | |||
| 36 | if check_cc ' | ||
| 37 | #if !defined(__clang__) | ||
| 38 | -- | ||
| 39 | 1.9.1 | ||
| 40 | |||
diff --git a/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-Makefile-Ignore-warning-about-wrong-includes.patch b/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-Makefile-Ignore-warning-about-wrong-includes.patch deleted file mode 100644 index 248a5e6a8a..0000000000 --- a/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-Makefile-Ignore-warning-about-wrong-includes.patch +++ /dev/null | |||
| @@ -1,31 +0,0 @@ | |||
| 1 | From 7d672305c7ad2f716dfe1c487b525a1a92954d4a Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Tue, 22 Nov 2016 06:22:36 +0000 | ||
| 4 | Subject: [PATCH] Makefile: Ignore warning about wrong includes | ||
| 5 | |||
| 6 | It happens on musl especially | ||
| 7 | usr/include/sys/poll.h:1:2: error: redirecting incorrect #include <sys/poll.h> to <poll.h> [-Werror,-W#warnings] | ||
| 8 | | #warning redirecting incorrect #include <sys/poll.h> to <poll.h> | ||
| 9 | | ^ | ||
| 10 | | In file included from src/avahi.c:48: | ||
| 11 | |||
| 12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 13 | --- | ||
| 14 | Makefile | 1 + | ||
| 15 | 1 file changed, 1 insertion(+) | ||
| 16 | |||
| 17 | diff --git a/Makefile b/Makefile | ||
| 18 | index f41ef1a..cc7b249 100644 | ||
| 19 | --- a/Makefile | ||
| 20 | +++ b/Makefile | ||
| 21 | @@ -54,6 +54,7 @@ CFLAGS += -Wno-microsoft -Qunused-arguments -Wno-unused-function | ||
| 22 | CFLAGS += -Wno-unused-value -Wno-tautological-constant-out-of-range-compare | ||
| 23 | CFLAGS += -Wno-parentheses-equality -Wno-incompatible-pointer-types | ||
| 24 | CFLAGS += -Wno-error=varargs | ||
| 25 | +CFLAGS += -Wno-error=\#warnings | ||
| 26 | endif | ||
| 27 | |||
| 28 | ifeq ($(CONFIG_LIBFFMPEG_STATIC),yes) | ||
| 29 | -- | ||
| 30 | 1.8.3.1 | ||
| 31 | |||
diff --git a/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-disable-varargs-warning-on-clang.patch b/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-disable-varargs-warning-on-clang.patch deleted file mode 100644 index a4c4c4d0fd..0000000000 --- a/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-disable-varargs-warning-on-clang.patch +++ /dev/null | |||
| @@ -1,32 +0,0 @@ | |||
| 1 | From 906d95695af95970bf551ea55b6c3e70332c6b97 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Tue, 22 Nov 2016 05:22:32 +0000 | ||
| 4 | Subject: [PATCH] disable varargs warning on clang | ||
| 5 | |||
| 6 | The issue is that 'len' is an unsigned char and we violate the promotion rules | ||
| 7 | for passing the value to va_start. | ||
| 8 | |||
| 9 | passing an object that undergoes defau | ||
| 10 | lt argument promotion to 'va_start' has undefined behavior [-Wvarargs] | ||
| 11 | | va_start(ap, len); | ||
| 12 | |||
| 13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 14 | --- | ||
| 15 | Makefile | 1 + | ||
| 16 | 1 file changed, 1 insertion(+) | ||
| 17 | |||
| 18 | diff --git a/Makefile b/Makefile | ||
| 19 | index 8c5e380..f41ef1a 100644 | ||
| 20 | --- a/Makefile | ||
| 21 | +++ b/Makefile | ||
| 22 | @@ -53,6 +53,7 @@ ifeq ($(COMPILER), clang) | ||
| 23 | CFLAGS += -Wno-microsoft -Qunused-arguments -Wno-unused-function | ||
| 24 | CFLAGS += -Wno-unused-value -Wno-tautological-constant-out-of-range-compare | ||
| 25 | CFLAGS += -Wno-parentheses-equality -Wno-incompatible-pointer-types | ||
| 26 | +CFLAGS += -Wno-error=varargs | ||
| 27 | endif | ||
| 28 | |||
| 29 | ifeq ($(CONFIG_LIBFFMPEG_STATIC),yes) | ||
| 30 | -- | ||
| 31 | 1.9.1 | ||
| 32 | |||
diff --git a/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-dvr-Use-labs-instead-of-abs.patch b/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-dvr-Use-labs-instead-of-abs.patch deleted file mode 100644 index ea34cdb62c..0000000000 --- a/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-dvr-Use-labs-instead-of-abs.patch +++ /dev/null | |||
| @@ -1,37 +0,0 @@ | |||
| 1 | From a715671eadcbf989fdaf05f62e71b93ac1749615 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Tue, 22 Nov 2016 06:08:31 +0000 | ||
| 4 | Subject: [PATCH] dvr: Use labs() instead of abs() | ||
| 5 | |||
| 6 | Makes clang happy | ||
| 7 | |||
| 8 | dvr/dvr_db.c:853:10: error: absolute value function | ||
| 9 | 'abs' given an argument of type 'long' but has parameter of type 'int' which may cause truncation of value [-Werror,-Wabsolute-value] | ||
| 10 | if ((abs(de->de_start - e->start) < 600) && (abs(de->de_stop - e->stop) < 600)) { | ||
| 11 | |||
| 12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 13 | --- | ||
| 14 | src/dvr/dvr_db.c | 4 ++-- | ||
| 15 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
| 16 | |||
| 17 | diff --git a/src/dvr/dvr_db.c b/src/dvr/dvr_db.c | ||
| 18 | index 165caa6..5656569 100644 | ||
| 19 | --- a/src/dvr/dvr_db.c | ||
| 20 | +++ b/src/dvr/dvr_db.c | ||
| 21 | @@ -414,11 +414,11 @@ dvr_entry_fuzzy_match(dvr_entry_t *de, epg_broadcast_t *e) | ||
| 22 | /* Wrong length (+/-20%) */ | ||
| 23 | t1 = de->de_stop - de->de_start; | ||
| 24 | t2 = e->stop - e->start; | ||
| 25 | - if ( abs(t2 - t1) > (t1 / 5) ) | ||
| 26 | + if ( labs(t2 - t1) > (t1 / 5) ) | ||
| 27 | return 0; | ||
| 28 | |||
| 29 | /* Outside of window */ | ||
| 30 | - if (abs(e->start - de->de_start) > de->de_config->dvr_update_window) | ||
| 31 | + if (labs(e->start - de->de_start) > de->de_config->dvr_update_window) | ||
| 32 | return 0; | ||
| 33 | |||
| 34 | /* Title match (or contains?) */ | ||
| 35 | -- | ||
| 36 | 1.9.1 | ||
| 37 | |||
diff --git a/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-hdhomerun-Override-forced-overrdiing-og-CC-STRIP-and.patch b/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-hdhomerun-Override-forced-overrdiing-og-CC-STRIP-and.patch deleted file mode 100644 index 484e723d97..0000000000 --- a/meta-multimedia/recipes-dvb/tvheadend/tvheadend/0001-hdhomerun-Override-forced-overrdiing-og-CC-STRIP-and.patch +++ /dev/null | |||
| @@ -1,40 +0,0 @@ | |||
| 1 | From c3767e189e90965407937b6178adbbd8cdafe31d Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Tue, 22 Nov 2016 05:59:10 +0000 | ||
| 4 | Subject: [PATCH] hdhomerun: Override forced overrdiing og CC/STRIP and CFLAGS | ||
| 5 | |||
| 6 | This is required for cross compiling otherwise it ends up | ||
| 7 | using build host gcc | ||
| 8 | |||
| 9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 10 | --- | ||
| 11 | Makefile.hdhomerun | 6 ++++-- | ||
| 12 | 1 file changed, 4 insertions(+), 2 deletions(-) | ||
| 13 | |||
| 14 | diff --git a/Makefile.hdhomerun b/Makefile.hdhomerun | ||
| 15 | index 943ffec..8bd14ff 100644 | ||
| 16 | --- a/Makefile.hdhomerun | ||
| 17 | +++ b/Makefile.hdhomerun | ||
| 18 | @@ -18,8 +18,8 @@ | ||
| 19 | |||
| 20 | include $(dir $(lastword $(MAKEFILE_LIST))).config.mk | ||
| 21 | |||
| 22 | -unexport CFLAGS | ||
| 23 | -unexport LDFLAGS | ||
| 24 | +#unexport CFLAGS | ||
| 25 | +#unexport LDFLAGS | ||
| 26 | |||
| 27 | define DOWNLOAD | ||
| 28 | @mkdir -p $(LIBHDHRDIR)/build | ||
| 29 | @@ -75,6 +75,8 @@ $(LIBHDHRDIR)/$(LIBHDHR)/.tvh_download: | ||
| 30 | $(call DOWNLOAD,$(LIBHDHR_URL),$(LIBHDHRDIR)/$(LIBHDHR_TB),$(LIBHDHR_SHA1)) | ||
| 31 | $(call UNTAR,$(LIBHDHR_TB),z) | ||
| 32 | ln -sf libhdhomerun $(LIBHDHRDIR)/$(LIBHDHR) | ||
| 33 | + @sed -i -e "s/CC.*:=/CC ?=/" $(LIBHDHRDIR)/$(LIBHDHR)/Makefile | ||
| 34 | + @sed -i -e "s/STRIP.*:=/STRIP ?=/" $(LIBHDHRDIR)/$(LIBHDHR)/Makefile | ||
| 35 | @touch $@ | ||
| 36 | |||
| 37 | $(LIBHDHRDIR)/$(LIBHDHR)/.tvh_build: \ | ||
| 38 | -- | ||
| 39 | 1.9.1 | ||
| 40 | |||
diff --git a/meta-multimedia/recipes-dvb/tvheadend/tvheadend_git.bb b/meta-multimedia/recipes-dvb/tvheadend/tvheadend_git.bb deleted file mode 100644 index 3b73549d2d..0000000000 --- a/meta-multimedia/recipes-dvb/tvheadend/tvheadend_git.bb +++ /dev/null | |||
| @@ -1,43 +0,0 @@ | |||
| 1 | SUMMARY = "Tvheadend TV streaming server" | ||
| 2 | HOMEPAGE = "https://www.lonelycoder.com/redmine/projects/tvheadend" | ||
| 3 | |||
| 4 | DEPENDS = "avahi zlib openssl python-native dvb-apps" | ||
| 5 | |||
| 6 | LICENSE = "GPLv3+" | ||
| 7 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=9cae5acac2e9ee2fc3aec01ac88ce5db" | ||
| 8 | |||
| 9 | SRC_URI = "git://github.com/tvheadend/tvheadend.git;branch=release/4.0 \ | ||
| 10 | file://0001-Fix-checks-for-sse2-mmx.patch \ | ||
| 11 | file://0001-disable-varargs-warning-on-clang.patch \ | ||
| 12 | file://0001-hdhomerun-Override-forced-overrdiing-og-CC-STRIP-and.patch \ | ||
| 13 | file://0001-dvr-Use-labs-instead-of-abs.patch \ | ||
| 14 | file://0001-Makefile-Ignore-warning-about-wrong-includes.patch \ | ||
| 15 | " | ||
| 16 | SRCREV = "64fec8120158de585e18be705055259484518d94" | ||
| 17 | PV = "4.0.9+git${SRCREV}" | ||
| 18 | |||
| 19 | S = "${WORKDIR}/git" | ||
| 20 | |||
| 21 | PACKAGECONFIG ?= "" | ||
| 22 | PACKAGECONFIG[uriparser] = "--enable-uriparser,--disable-uriparser,uriparser" | ||
| 23 | |||
| 24 | do_configure() { | ||
| 25 | ./configure ${PACKAGECONFIG_CONFARGS} \ | ||
| 26 | --prefix=${prefix} \ | ||
| 27 | --libdir=${libdir} \ | ||
| 28 | --bindir=${bindir} \ | ||
| 29 | --datadir=${datadir} \ | ||
| 30 | --arch=${TARGET_ARCH} \ | ||
| 31 | --disable-dvbscan \ | ||
| 32 | --disable-bundle | ||
| 33 | } | ||
| 34 | |||
| 35 | do_install() { | ||
| 36 | oe_runmake install DESTDIR=${D} | ||
| 37 | } | ||
| 38 | |||
| 39 | FILES_${PN} += "${datadir}/${BPN}" | ||
| 40 | |||
| 41 | RDEPENDS_${PN} += "libdvben50221 libucsi libdvbapi" | ||
| 42 | |||
| 43 | PNBLACKLIST[tvheadend] ?= "Depends on blacklisted dvb-apps - the recipe will be removed on 2017-09-01 unless the issue is fixed" | ||
