Buildroot Archive on 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 1/2] package/tvheadend: add dbus as optional dependency
@ 2015-10-12 20:09 Bernd Kuhls
  2015-10-12 20:09 ` [Buildroot] [PATCH 2/2] package/tvheadend: bump version Bernd Kuhls
  0 siblings, 1 reply; 11+ messages in thread
From: Bernd Kuhls @ 2015-10-12 20:09 UTC (permalink / raw)
  To: buildroot

Dbus is an optional dependency for tvheadend:
https://github.com/tvheadend/tvheadend/commit/9c7b6047d2e3040e14cdba89f46d8acb2a36a115

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

diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
index db4ee3a..b901c4e 100644
--- a/package/tvheadend/tvheadend.mk
+++ b/package/tvheadend/tvheadend.mk
@@ -18,6 +18,10 @@ ifeq ($(BR2_PACKAGE_AVAHI),y)
 TVHEADEND_DEPENDENCIES += avahi
 endif
 
+ifeq ($(BR2_PACKAGE_DBUS),y)
+TVHEADEND_DEPENDENCIES += dbus
+endif
+
 ifeq ($(BR2_PACKAGE_FFMPEG),y)
 TVHEADEND_DEPENDENCIES += ffmpeg
 TVHEADEND_CONF_OPTS += --enable-libav
-- 
2.6.1

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

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

diff --git a/package/transmission/transmission.hash b/package/transmission/transmission.hash
index 0dc816d..849a722 100644
--- a/package/transmission/transmission.hash
+++ b/package/transmission/transmission.hash
@@ -1,2 +1,2 @@
 # Locally calculated
-sha256	69ff8caf81684155926f437f46bf7df1b1fb304f52c7809f546257e8923f2fd2	transmission-2.90.tar.xz
+sha256	3a8d045c306ad9acb7bf81126939b9594553a388482efa0ec1bfb67b22acd35f	transmission-2.92.tar.xz
diff --git a/package/transmission/transmission.mk b/package/transmission/transmission.mk
index 6aecf60..c8d3773 100644
--- a/package/transmission/transmission.mk
+++ b/package/transmission/transmission.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TRANSMISSION_VERSION = 2.90
+TRANSMISSION_VERSION = 2.92
 TRANSMISSION_SITE = http://download.transmissionbt.com/files
 TRANSMISSION_SOURCE = transmission-$(TRANSMISSION_VERSION).tar.xz
 TRANSMISSION_DEPENDENCIES = \
-- 
2.7.0

^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [Buildroot] [PATCH 1/2] package/dtv-scan-tables: bump version
@ 2016-10-29 12:11 Bernd Kuhls
  2016-10-29 12:11 ` [Buildroot] [PATCH 2/2] package/tvheadend: " Bernd Kuhls
  0 siblings, 1 reply; 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/dtv-scan-tables/dtv-scan-tables.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/dtv-scan-tables/dtv-scan-tables.mk b/package/dtv-scan-tables/dtv-scan-tables.mk
index 0081369..8ef42b9 100644
--- a/package/dtv-scan-tables/dtv-scan-tables.mk
+++ b/package/dtv-scan-tables/dtv-scan-tables.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-DTV_SCAN_TABLES_VERSION = 0c92e5e5d3590da60acb4bcc92c19f041dc7e481
+DTV_SCAN_TABLES_VERSION = ceb11833b35f05813b1f0397a60e0f3b99430aab
 DTV_SCAN_TABLES_SITE = http://git.linuxtv.org/cgit.cgi/dtv-scan-tables.git
 DTV_SCAN_TABLES_SITE_METHOD = git
 
-- 
2.10.1

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

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

diff --git a/package/dtv-scan-tables/dtv-scan-tables.hash b/package/dtv-scan-tables/dtv-scan-tables.hash
index 322c9ed1b0..73e0e7d19a 100644
--- a/package/dtv-scan-tables/dtv-scan-tables.hash
+++ b/package/dtv-scan-tables/dtv-scan-tables.hash
@@ -1,4 +1,4 @@
 # Locally computed
-sha256 544531d11592cbd23083c5e07b2de060fc1eeeb5a3c37f1b2c28fa59241b3a2b  dtv-scan-tables-1c187978d479a2f941c9c4fb10d8b2612d5fde3c.tar.gz
+sha256 76cb6131df1b35ed71b0f6c87cfafc188d614cfbd9973e7832a65ba63e85c504  dtv-scan-tables-6d019038cd04e837d9dd58701202c15924c1c654.tar.gz
 sha256 ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6  COPYING
 sha256 4fd46f32582c29007657e2daad8d0a6d954cf4e9d2e47bae8f8d8c32765fc987  COPYING.LGPL
diff --git a/package/dtv-scan-tables/dtv-scan-tables.mk b/package/dtv-scan-tables/dtv-scan-tables.mk
index 9e33ac6616..5933f16776 100644
--- a/package/dtv-scan-tables/dtv-scan-tables.mk
+++ b/package/dtv-scan-tables/dtv-scan-tables.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-DTV_SCAN_TABLES_VERSION = 1c187978d479a2f941c9c4fb10d8b2612d5fde3c
+DTV_SCAN_TABLES_VERSION = 6d019038cd04e837d9dd58701202c15924c1c654
 DTV_SCAN_TABLES_SITE = http://git.linuxtv.org/cgit.cgi/dtv-scan-tables.git
 DTV_SCAN_TABLES_SITE_METHOD = git
 
-- 
2.20.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
  -- strict thread matches above, loose matches on Subject: below --
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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox