All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/tvheadend: Properly disable internal fetch of dvb-data
@ 2014-06-09 10:56 Bernd Kuhls
  2014-06-09 10:56 ` [Buildroot] [PATCH 2/2] package/tvheadend: Bump version Bernd Kuhls
  2014-06-09 14:04 ` [Buildroot] [PATCH 1/2] package/tvheadend: Properly disable internal fetch of dvb-data Yann E. MORIN
  0 siblings, 2 replies; 11+ messages in thread
From: Bernd Kuhls @ 2014-06-09 10:56 UTC (permalink / raw)
  To: buildroot

Fixes
http://autobuild.buildroot.net/results/a8a/a8a8e39d57b14f1a59c8e6322b511c761442ee3c/
http://autobuild.buildroot.net/results/227/2278a078af5cc2e9f36661ad11e70b7692481266/

Instead of patching the buildsystem just use the included option --disable-
dvbscan, therefore remove tvheadend-001-no-auto-download-dvbscans.patch

This should also point tvheadend to the right place for the dvb data according
to src/input/mpegts/scanfile.c:

  #if ENABLE_DVBSCAN
    path = "data/dvb-scan";
  #else
    path = "/usr/share/dvb";
  #endif

and the resulting binary:

strings tvheadend | grep "dvb-scan\|share\/dvb"
/usr/share/dvb

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 .../tvheadend-001-no-auto-download-dvbscans.patch  |   65 --------------------
 package/tvheadend/tvheadend.mk                     |    7 +--
 2 files changed, 1 insertion(+), 71 deletions(-)
 delete mode 100644 package/tvheadend/tvheadend-001-no-auto-download-dvbscans.patch

diff --git a/package/tvheadend/tvheadend-001-no-auto-download-dvbscans.patch b/package/tvheadend/tvheadend-001-no-auto-download-dvbscans.patch
deleted file mode 100644
index 18bff39..0000000
--- a/package/tvheadend/tvheadend-001-no-auto-download-dvbscans.patch
+++ /dev/null
@@ -1,65 +0,0 @@
-Do not download transponder data as part of the build
-
-If dvb-scan is enabled, tvheadend will download the transponders data
-from the dvb-apps package. This does not play well with buildroot.
-
-Instead, we rely on the dvb-apps package to install those files, so
-it is no longer needed to install those as part of tvheadend.
-
-Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
-
-diff -durN tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/configure tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/configure
---- tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/configure	2014-03-07 21:44:39.000000000 +0100
-+++ tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/configure	2014-03-09 14:44:09.350095543 +0100
-@@ -272,15 +272,16 @@
- #
- # DVB scan
- #
--if enabled dvbscan; then
--  printf "${TAB}" "fetching dvb-scan files ..."
--  "${ROOTDIR}/support/getmuxlist"
--  if [ $? -ne 0 ]; then
--    echo "fail"
--    die "Failed to fetch dvb-scan data (use --disable-dvbscan)"
--  fi
--  echo "ok"
--fi
-+# For buildroot, we already installed those files via the dvb-apps package
-+#if enabled dvbscan; then
-+#  printf "${TAB}" "fetching dvb-scan files ..."
-+#  "${ROOTDIR}/support/getmuxlist"
-+#  if [ $? -ne 0 ]; then
-+#    echo "fail"
-+#    die "Failed to fetch dvb-scan data (use --disable-dvbscan)"
-+#  fi
-+#  echo "ok"
-+#fi
- 
- #
- # epoll
-diff -durN tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/Makefile tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/Makefile
---- tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/Makefile	2014-03-07 21:44:39.000000000 +0100
-+++ tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/Makefile	2014-03-09 14:44:09.350095543 +0100
-@@ -255,7 +255,7 @@
- SRCS-${CONFIG_BUNDLE}     += bundle.c
- BUNDLES-yes               += docs/html docs/docresources src/webui/static
- BUNDLES-yes               += data/conf
--BUNDLES-${CONFIG_DVBSCAN} += data/dvb-scan
-+#BUNDLES-${CONFIG_DVBSCAN} += data/dvb-scan
- BUNDLES                    = $(BUNDLES-yes)
- 
- #
-diff -durN tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/support/posix.mk tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/support/posix.mk
---- tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/support/posix.mk	2014-03-07 21:44:39.000000000 +0100
-+++ tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/support/posix.mk	2014-03-09 14:44:09.350095543 +0100
-@@ -17,6 +17,10 @@
- 
- 	find ${DESTDIR}${datadir}/tvheadend -name .git -exec rm -rf {} \; &>/dev/null || /bin/true
- 
-+	mkdir -p ${DESTDIR}${datadir}/tvheadend/data
-+	rm -f ${DESTDIR}${datadir}/tvheadend/data/dvb-scan
-+	ln -sf /usr/share/dvb ${DESTDIR}${datadir}/tvheadend/data/dvb-scan
-+
- uninstall:
- 	rm -f ${DESTDIR}${bindir}/tvheadend
- 	rm -f ${DESTDIR}${mandir}/man1/tvheadend.1
diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
index f0bb834..86166cd 100644
--- a/package/tvheadend/tvheadend.mk
+++ b/package/tvheadend/tvheadend.mk
@@ -14,12 +14,6 @@ ifeq ($(BR2_PACKAGE_AVAHI),y)
 TVHEADEND_DEPENDENCIES += avahi
 endif
 
-#----------------------------------------------------------------------------
-# tvheadend is a little smuggler and thief! ;-)
-# During the ./configure, it downloads some files from the dtv-scan-tables
-# package, so it has a list of pre-scanned tunner configurations.
-# For buildroot, we add a patch that avoids doing that, but uses the
-# scan files installed by the dtv-scan-tables package
 TVHEADEND_DEPENDENCIES += dtv-scan-tables
 
 define TVHEADEND_CONFIGURE_CMDS
@@ -31,6 +25,7 @@ define TVHEADEND_CONFIGURE_CMDS
 	 --arch="$(ARCH)"			\
 	 --cpu="$(BR2_GCC_TARGET_CPU)"		\
 	 --python="$(HOST_DIR)/usr/bin/python"	\
+	 --disable-dvbscan			\
 	)
 endef
 
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 2/2] package/tvheadend: Bump version
  2014-06-09 10:56 [Buildroot] [PATCH 1/2] package/tvheadend: Properly disable internal fetch of dvb-data Bernd Kuhls
@ 2014-06-09 10:56 ` Bernd Kuhls
  2014-06-09 14:04   ` Yann E. MORIN
  2014-06-09 14:04 ` [Buildroot] [PATCH 1/2] package/tvheadend: Properly disable internal fetch of dvb-data Yann E. MORIN
  1 sibling, 1 reply; 11+ messages in thread
From: Bernd Kuhls @ 2014-06-09 10:56 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/tvheadend/tvheadend.mk |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
index 86166cd..c582c07 100644
--- a/package/tvheadend/tvheadend.mk
+++ b/package/tvheadend/tvheadend.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TVHEADEND_VERSION = 0ebca1b3dbb6a18d8adcf66a32b5922ce769b9b5
+TVHEADEND_VERSION = fd24558503967375d0b9058ac2a4c594de971cd2
 TVHEADEND_SITE = $(call github,tvheadend,tvheadend,$(TVHEADEND_VERSION))
 TVHEADEND_LICENSE = GPLv3+
 TVHEADEND_LICENSE_FILES = LICENSE.md
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 1/2] package/tvheadend: Properly disable internal fetch of dvb-data
  2014-06-09 10:56 [Buildroot] [PATCH 1/2] package/tvheadend: Properly disable internal fetch of dvb-data Bernd Kuhls
  2014-06-09 10:56 ` [Buildroot] [PATCH 2/2] package/tvheadend: Bump version Bernd Kuhls
@ 2014-06-09 14:04 ` Yann E. MORIN
  1 sibling, 0 replies; 11+ messages in thread
From: Yann E. MORIN @ 2014-06-09 14:04 UTC (permalink / raw)
  To: buildroot

Bernd, All,

On 2014-06-09 12:56 +0200, Bernd Kuhls spake thusly:
> Fixes
> http://autobuild.buildroot.net/results/a8a/a8a8e39d57b14f1a59c8e6322b511c761442ee3c/
> http://autobuild.buildroot.net/results/227/2278a078af5cc2e9f36661ad11e70b7692481266/
> 
> Instead of patching the buildsystem just use the included option --disable-
> dvbscan, therefore remove tvheadend-001-no-auto-download-dvbscans.patch
> 
> This should also point tvheadend to the right place for the dvb data according
> to src/input/mpegts/scanfile.c:
> 
>   #if ENABLE_DVBSCAN
>     path = "data/dvb-scan";
>   #else
>     path = "/usr/share/dvb";
>   #endif
> 
> and the resulting binary:
> 
> strings tvheadend | grep "dvb-scan\|share\/dvb"
> /usr/share/dvb
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  .../tvheadend-001-no-auto-download-dvbscans.patch  |   65 --------------------
>  package/tvheadend/tvheadend.mk                     |    7 +--
>  2 files changed, 1 insertion(+), 71 deletions(-)
>  delete mode 100644 package/tvheadend/tvheadend-001-no-auto-download-dvbscans.patch
> 
> diff --git a/package/tvheadend/tvheadend-001-no-auto-download-dvbscans.patch b/package/tvheadend/tvheadend-001-no-auto-download-dvbscans.patch
> deleted file mode 100644
> index 18bff39..0000000
> --- a/package/tvheadend/tvheadend-001-no-auto-download-dvbscans.patch
> +++ /dev/null
> @@ -1,65 +0,0 @@
> -Do not download transponder data as part of the build
> -
> -If dvb-scan is enabled, tvheadend will download the transponders data
> -from the dvb-apps package. This does not play well with buildroot.
> -
> -Instead, we rely on the dvb-apps package to install those files, so
> -it is no longer needed to install those as part of tvheadend.
> -
> -Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> -
> -diff -durN tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/configure tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/configure
> ---- tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/configure	2014-03-07 21:44:39.000000000 +0100
> -+++ tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/configure	2014-03-09 14:44:09.350095543 +0100
> -@@ -272,15 +272,16 @@
> - #
> - # DVB scan
> - #
> --if enabled dvbscan; then
> --  printf "${TAB}" "fetching dvb-scan files ..."
> --  "${ROOTDIR}/support/getmuxlist"
> --  if [ $? -ne 0 ]; then
> --    echo "fail"
> --    die "Failed to fetch dvb-scan data (use --disable-dvbscan)"
> --  fi
> --  echo "ok"
> --fi
> -+# For buildroot, we already installed those files via the dvb-apps package
> -+#if enabled dvbscan; then
> -+#  printf "${TAB}" "fetching dvb-scan files ..."
> -+#  "${ROOTDIR}/support/getmuxlist"
> -+#  if [ $? -ne 0 ]; then
> -+#    echo "fail"
> -+#    die "Failed to fetch dvb-scan data (use --disable-dvbscan)"
> -+#  fi
> -+#  echo "ok"
> -+#fi
> - 
> - #
> - # epoll
> -diff -durN tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/Makefile tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/Makefile
> ---- tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/Makefile	2014-03-07 21:44:39.000000000 +0100
> -+++ tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/Makefile	2014-03-09 14:44:09.350095543 +0100
> -@@ -255,7 +255,7 @@
> - SRCS-${CONFIG_BUNDLE}     += bundle.c
> - BUNDLES-yes               += docs/html docs/docresources src/webui/static
> - BUNDLES-yes               += data/conf
> --BUNDLES-${CONFIG_DVBSCAN} += data/dvb-scan
> -+#BUNDLES-${CONFIG_DVBSCAN} += data/dvb-scan
> - BUNDLES                    = $(BUNDLES-yes)
> - 
> - #
> -diff -durN tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/support/posix.mk tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/support/posix.mk
> ---- tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/support/posix.mk	2014-03-07 21:44:39.000000000 +0100
> -+++ tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/support/posix.mk	2014-03-09 14:44:09.350095543 +0100
> -@@ -17,6 +17,10 @@
> - 
> - 	find ${DESTDIR}${datadir}/tvheadend -name .git -exec rm -rf {} \; &>/dev/null || /bin/true
> - 
> -+	mkdir -p ${DESTDIR}${datadir}/tvheadend/data
> -+	rm -f ${DESTDIR}${datadir}/tvheadend/data/dvb-scan
> -+	ln -sf /usr/share/dvb ${DESTDIR}${datadir}/tvheadend/data/dvb-scan
> -+
> - uninstall:
> - 	rm -f ${DESTDIR}${bindir}/tvheadend
> - 	rm -f ${DESTDIR}${mandir}/man1/tvheadend.1
> diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
> index f0bb834..86166cd 100644
> --- a/package/tvheadend/tvheadend.mk
> +++ b/package/tvheadend/tvheadend.mk
> @@ -14,12 +14,6 @@ ifeq ($(BR2_PACKAGE_AVAHI),y)
>  TVHEADEND_DEPENDENCIES += avahi
>  endif
>  
> -#----------------------------------------------------------------------------
> -# tvheadend is a little smuggler and thief! ;-)
> -# During the ./configure, it downloads some files from the dtv-scan-tables
> -# package, so it has a list of pre-scanned tunner configurations.
> -# For buildroot, we add a patch that avoids doing that, but uses the
> -# scan files installed by the dtv-scan-tables package
>  TVHEADEND_DEPENDENCIES += dtv-scan-tables
>  
>  define TVHEADEND_CONFIGURE_CMDS
> @@ -31,6 +25,7 @@ define TVHEADEND_CONFIGURE_CMDS
>  	 --arch="$(ARCH)"			\
>  	 --cpu="$(BR2_GCC_TARGET_CPU)"		\
>  	 --python="$(HOST_DIR)/usr/bin/python"	\
> +	 --disable-dvbscan			\
>  	)
>  endef
>  
> -- 
> 1.7.10.4
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 2/2] package/tvheadend: Bump version
  2014-06-09 10:56 ` [Buildroot] [PATCH 2/2] package/tvheadend: Bump version Bernd Kuhls
@ 2014-06-09 14:04   ` Yann E. MORIN
  0 siblings, 0 replies; 11+ messages in thread
From: Yann E. MORIN @ 2014-06-09 14:04 UTC (permalink / raw)
  To: buildroot

Bernd, All,

On 2014-06-09 12:56 +0200, Bernd Kuhls spake thusly:
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/tvheadend/tvheadend.mk |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
> index 86166cd..c582c07 100644
> --- a/package/tvheadend/tvheadend.mk
> +++ b/package/tvheadend/tvheadend.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -TVHEADEND_VERSION = 0ebca1b3dbb6a18d8adcf66a32b5922ce769b9b5
> +TVHEADEND_VERSION = fd24558503967375d0b9058ac2a4c594de971cd2
>  TVHEADEND_SITE = $(call github,tvheadend,tvheadend,$(TVHEADEND_VERSION))
>  TVHEADEND_LICENSE = GPLv3+
>  TVHEADEND_LICENSE_FILES = LICENSE.md
> -- 
> 1.7.10.4
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 2/2] package/tvheadend: bump version
  2019-10-19  8:18 ` [Buildroot] [PATCH 2/2] package/tvheadend: " Bernd Kuhls
@ 2019-10-19 18:34   ` Arnout Vandecappelle
  0 siblings, 0 replies; 11+ messages in thread
From: Arnout Vandecappelle @ 2019-10-19 18:34 UTC (permalink / raw)
  To: buildroot



On 19/10/2019 10:18, Bernd Kuhls wrote:
> Removed patch applied upstream:
> https://github.com/tvheadend/tvheadend/commit/d1fc95a8ad4320054b5f1aa0d4398d193eba246e
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

 Both applied to master, thanks.

 Regards,
 Arnout

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 2/2] package/tvheadend: bump version
  2019-10-19  8:18 [Buildroot] [PATCH 1/2] package/dtv-scan-tables: " Bernd Kuhls
@ 2019-10-19  8:18 ` Bernd Kuhls
  2019-10-19 18:34   ` Arnout Vandecappelle
  0 siblings, 1 reply; 11+ messages in thread
From: Bernd Kuhls @ 2019-10-19  8:18 UTC (permalink / raw)
  To: buildroot

Removed patch applied upstream:
https://github.com/tvheadend/tvheadend/commit/d1fc95a8ad4320054b5f1aa0d4398d193eba246e

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 .../0002-tvhcsa.c-include-stdio.h.patch       | 40 -------------------
 package/tvheadend/tvheadend.hash              |  2 +-
 package/tvheadend/tvheadend.mk                |  2 +-
 3 files changed, 2 insertions(+), 42 deletions(-)
 delete mode 100644 package/tvheadend/0002-tvhcsa.c-include-stdio.h.patch

diff --git a/package/tvheadend/0002-tvhcsa.c-include-stdio.h.patch b/package/tvheadend/0002-tvhcsa.c-include-stdio.h.patch
deleted file mode 100644
index a1e80568fb..0000000000
--- a/package/tvheadend/0002-tvhcsa.c-include-stdio.h.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 693e3a3fe281dd618dd244b245c9bb0a00c7d893 Mon Sep 17 00:00:00 2001
-From: Bernd Kuhls <bernd.kuhls@t-online.de>
-Date: Sat, 6 Jul 2019 08:36:11 +0200
-Subject: [PATCH] tvhcsa.c: include stdio.h
-
-Fixes uclibc build error:
-
-CC              src/descrambler/tvhcsa.o
-In file included from /home/buildroot/autobuild/instance-0/output/build/tvheadend-8f1de1621d78c91431238176bf4f6290870a031a/src/tvhlog.h:30:0,
-                 from src/descrambler/tvhcsa.h:30,
-                 from src/descrambler/tvhcsa.c:19:
-/home/buildroot/autobuild/instance-0/output/build/tvheadend-8f1de1621d78c91431238176bf4f6290870a031a/src/tvh_thread.h:163:25:
- error: unknown type name '__do_not_use_pthread_mutex_t'
- #define pthread_mutex_t __do_not_use_pthread_mutex_t
-
-detected by buildroot autobuilder:
-http://autobuild.buildroot.net/results/627/627e7080e655005d6724b9977670cc73059d6281/
-
-Patch sent upstream: https://github.com/tvheadend/tvheadend/pull/1285
-
-Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
----
- src/descrambler/tvhcsa.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/descrambler/tvhcsa.c b/src/descrambler/tvhcsa.c
-index 1deefc50f..e97c14e99 100644
---- a/src/descrambler/tvhcsa.c
-+++ b/src/descrambler/tvhcsa.c
-@@ -16,6 +16,7 @@
-  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
-  */
- 
-+#include <stdio.h>
- #include "tvhcsa.h"
- #include "input.h"
- #include "input/mpegts/tsdemux.h"
--- 
-2.20.1
-
diff --git a/package/tvheadend/tvheadend.hash b/package/tvheadend/tvheadend.hash
index 8928a42dd0..5202ac8cd9 100644
--- a/package/tvheadend/tvheadend.hash
+++ b/package/tvheadend/tvheadend.hash
@@ -1,3 +1,3 @@
 # Locally computed
-sha256 313267b2e2752e5a150e225ec735e7cb9e9af8bb7e9bd05391262f0df01d1437  tvheadend-baf746bc1d420e7d628994922df0ddcb665f698f.tar.gz
+sha256 9c7888ec3754e20a728dcc06e69c8fa53fd085879ee5191bbcf35105f82cc1d2  tvheadend-6fbb30d039c763268b3e9017e062b0c9ec6bebeb.tar.gz
 sha256 54dc3cbc00bf126bcba43e2af7f3ad1dc00f335985da1409fa943c7b7256d942  LICENSE.md
diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
index 377c224192..4ad6317ff1 100644
--- a/package/tvheadend/tvheadend.mk
+++ b/package/tvheadend/tvheadend.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TVHEADEND_VERSION = baf746bc1d420e7d628994922df0ddcb665f698f
+TVHEADEND_VERSION = 6fbb30d039c763268b3e9017e062b0c9ec6bebeb
 TVHEADEND_SITE = $(call github,tvheadend,tvheadend,$(TVHEADEND_VERSION))
 TVHEADEND_LICENSE = GPL-3.0+
 TVHEADEND_LICENSE_FILES = LICENSE.md
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 2/2] package/tvheadend: bump version
  2016-10-29 12:11 [Buildroot] [PATCH 1/2] package/dtv-scan-tables: " Bernd Kuhls
@ 2016-10-29 12:11 ` Bernd Kuhls
  0 siblings, 0 replies; 11+ messages in thread
From: Bernd Kuhls @ 2016-10-29 12:11 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/tvheadend/tvheadend.hash | 2 +-
 package/tvheadend/tvheadend.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/tvheadend/tvheadend.hash b/package/tvheadend/tvheadend.hash
index 0479971..ca10dc3 100644
--- a/package/tvheadend/tvheadend.hash
+++ b/package/tvheadend/tvheadend.hash
@@ -1,2 +1,2 @@
 # Locally computed
-sha256	b6035c0eedfdcbec965116248471c23bed7f8b7f899e403d670495325002ba78	tvheadend-8e637f9f903f6d820f701a1461b144e67665c6fa.tar.gz
+sha256 71dd3d8efa32d592342ff6955cc2cd317f07e74d2d546977eb9bc45136dd5de6  tvheadend-50a370707aedf5c127e92bb517c378aa8ac04657.tar.gz
diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
index af90a82..a3afec8 100644
--- a/package/tvheadend/tvheadend.mk
+++ b/package/tvheadend/tvheadend.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TVHEADEND_VERSION = 8e637f9f903f6d820f701a1461b144e67665c6fa
+TVHEADEND_VERSION = 50a370707aedf5c127e92bb517c378aa8ac04657
 TVHEADEND_SITE = $(call github,tvheadend,tvheadend,$(TVHEADEND_VERSION))
 TVHEADEND_LICENSE = GPLv3+
 TVHEADEND_LICENSE_FILES = LICENSE.md
-- 
2.10.1

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 2/2] package/tvheadend: bump version
  2016-03-13 20:05 ` [Buildroot] [PATCH 2/2] package/tvheadend: bump version Bernd Kuhls
@ 2016-03-13 20:46   ` Peter Korsgaard
  0 siblings, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2016-03-13 20:46 UTC (permalink / raw)
  To: buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > Upstream added a configure option to disable -Werror:
 > https://github.com/tvheadend/tvheadend/commit/ddb31c58b88450f7228e620048fb2d691d427fab

 > Remove our patch therefore and use the new configure option instead.

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 2/2] package/tvheadend: bump version
  2016-03-13 20:05 [Buildroot] [PATCH 1/2] package/transmission: bump version to 2.92 Bernd Kuhls
@ 2016-03-13 20:05 ` Bernd Kuhls
  2016-03-13 20:46   ` Peter Korsgaard
  0 siblings, 1 reply; 11+ messages in thread
From: Bernd Kuhls @ 2016-03-13 20:05 UTC (permalink / raw)
  To: buildroot

Upstream added a configure option to disable -Werror:
https://github.com/tvheadend/tvheadend/commit/ddb31c58b88450f7228e620048fb2d691d427fab

Remove our patch therefore and use the new configure option instead.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/tvheadend/0002-remove-werror.patch | 16 ----------------
 package/tvheadend/tvheadend.hash           |  2 +-
 package/tvheadend/tvheadend.mk             |  3 ++-
 3 files changed, 3 insertions(+), 18 deletions(-)
 delete mode 100644 package/tvheadend/0002-remove-werror.patch

diff --git a/package/tvheadend/0002-remove-werror.patch b/package/tvheadend/0002-remove-werror.patch
deleted file mode 100644
index d466907..0000000
--- a/package/tvheadend/0002-remove-werror.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-tvheadend: remove -Werror from CFLAGS
-
-Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
-
-diff -durN tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/Makefile tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/Makefile
---- tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3.orig/Makefile	2014-03-09 14:50:48.437688482 +0100
-+++ tvheadend-c84bc2b72b462ef2dbed305f3fd0bb3fa5046fc3/Makefile	2014-03-09 14:54:00.411418749 +0100
-@@ -32,7 +32,7 @@
- ifeq ($(CONFIG_W_UNUSED_RESULT),yes)
- CFLAGS  += -Wunused-result
- endif
--CFLAGS  += -Wall -Werror -Wwrite-strings -Wno-deprecated-declarations
-+CFLAGS  += -Wall -Wwrite-strings -Wno-deprecated-declarations
- CFLAGS  += -Wmissing-prototypes
- CFLAGS  += -fms-extensions -funsigned-char -fno-strict-aliasing
- CFLAGS  += -D_FILE_OFFSET_BITS=64
diff --git a/package/tvheadend/tvheadend.hash b/package/tvheadend/tvheadend.hash
index de7bc46..5737c2f 100644
--- a/package/tvheadend/tvheadend.hash
+++ b/package/tvheadend/tvheadend.hash
@@ -1,2 +1,2 @@
 # Locally computed
-sha256	0caf44de3baaf115d80410b660d99e49a42f50792397254e8f21b6e1c5ca58ef	tvheadend-1aa0073be39119f5d0d79212e6c83c470904a161.tar.gz
+sha256	5e59b2659badfe921fc324162dbfbfb69da8fe7eac21478651287fd56784ab11	tvheadend-3927788bb71ad0041a00d0daa35fae1cb6355b55.tar.gz
diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
index 11f882a..40d8c6e 100644
--- a/package/tvheadend/tvheadend.mk
+++ b/package/tvheadend/tvheadend.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TVHEADEND_VERSION = 1aa0073be39119f5d0d79212e6c83c470904a161
+TVHEADEND_VERSION = 3927788bb71ad0041a00d0daa35fae1cb6355b55
 TVHEADEND_SITE = $(call github,tvheadend,tvheadend,$(TVHEADEND_VERSION))
 TVHEADEND_LICENSE = GPLv3+
 TVHEADEND_LICENSE_FILES = LICENSE.md
@@ -77,6 +77,7 @@ define TVHEADEND_CONFIGURE_CMDS
 			--prefix=/usr				\
 			--arch="$(ARCH)"			\
 			--cpu="$(BR2_GCC_TARGET_CPU)"		\
+			--nowerror				\
 			--python="$(HOST_DIR)/usr/bin/python"	\
 			--enable-dvbscan			\
 			--enable-bundle				\
-- 
2.7.0

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 2/2] package/tvheadend: bump version
  2015-10-12 20:09 ` [Buildroot] [PATCH 2/2] package/tvheadend: bump version Bernd Kuhls
@ 2015-10-12 20:36   ` Thomas Petazzoni
  0 siblings, 0 replies; 11+ messages in thread
From: Thomas Petazzoni @ 2015-10-12 20:36 UTC (permalink / raw)
  To: buildroot

Dear Bernd Kuhls,

On Mon, 12 Oct 2015 22:09:45 +0200, Bernd Kuhls wrote:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/tvheadend/tvheadend.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Buildroot] [PATCH 2/2] package/tvheadend: bump version
  2015-10-12 20:09 [Buildroot] [PATCH 1/2] package/tvheadend: add dbus as optional dependency Bernd Kuhls
@ 2015-10-12 20:09 ` Bernd Kuhls
  2015-10-12 20:36   ` Thomas Petazzoni
  0 siblings, 1 reply; 11+ messages in thread
From: Bernd Kuhls @ 2015-10-12 20:09 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/tvheadend/tvheadend.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
index b901c4e..10374f6 100644
--- a/package/tvheadend/tvheadend.mk
+++ b/package/tvheadend/tvheadend.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TVHEADEND_VERSION = 7b327910eefa3b89901e86aaec7acc3cd8d15b90
+TVHEADEND_VERSION = 1b682a46a11ea821c4ed183a274bc78993ef40a0
 TVHEADEND_SITE = $(call github,tvheadend,tvheadend,$(TVHEADEND_VERSION))
 TVHEADEND_LICENSE = GPLv3+
 TVHEADEND_LICENSE_FILES = LICENSE.md
-- 
2.6.1

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2019-10-19 18:34 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-09 10:56 [Buildroot] [PATCH 1/2] package/tvheadend: Properly disable internal fetch of dvb-data Bernd Kuhls
2014-06-09 10:56 ` [Buildroot] [PATCH 2/2] package/tvheadend: Bump version Bernd Kuhls
2014-06-09 14:04   ` Yann E. MORIN
2014-06-09 14:04 ` [Buildroot] [PATCH 1/2] package/tvheadend: Properly disable internal fetch of dvb-data Yann E. MORIN
2015-10-12 20:09 [Buildroot] [PATCH 1/2] package/tvheadend: add dbus as optional dependency Bernd Kuhls
2015-10-12 20:09 ` [Buildroot] [PATCH 2/2] package/tvheadend: bump version Bernd Kuhls
2015-10-12 20:36   ` Thomas Petazzoni
2016-03-13 20:05 [Buildroot] [PATCH 1/2] package/transmission: bump version to 2.92 Bernd Kuhls
2016-03-13 20:05 ` [Buildroot] [PATCH 2/2] package/tvheadend: bump version Bernd Kuhls
2016-03-13 20:46   ` Peter Korsgaard
2016-10-29 12:11 [Buildroot] [PATCH 1/2] package/dtv-scan-tables: " Bernd Kuhls
2016-10-29 12:11 ` [Buildroot] [PATCH 2/2] package/tvheadend: " Bernd Kuhls
2019-10-19  8:18 [Buildroot] [PATCH 1/2] package/dtv-scan-tables: " Bernd Kuhls
2019-10-19  8:18 ` [Buildroot] [PATCH 2/2] package/tvheadend: " Bernd Kuhls
2019-10-19 18:34   ` Arnout Vandecappelle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.