diff -Nru kodi-pvr-hdhomerun-2.4.2+git20160820/debian/changelog kodi-pvr-hdhomerun-2.4.2+git20160820/debian/changelog --- kodi-pvr-hdhomerun-2.4.2+git20160820/debian/changelog 2016-12-23 20:17:42.000000000 +0000 +++ kodi-pvr-hdhomerun-2.4.2+git20160820/debian/changelog 2016-12-24 02:16:51.000000000 +0000 @@ -1,8 +1,10 @@ -kodi-pvr-hdhomerun (2.4.2+git20160820-1build1) zesty; urgency=medium +kodi-pvr-hdhomerun (2.4.2+git20160820-2) unstable; urgency=medium - * No-change rebuild against latest libhdhomerun + * Secure Vcs-Git URL + * Adapt to Kodi PVR api change - SeekTime (Closes: #849230) + * Depend on PVR API version of Kodi we built the addon with - -- Jeremy Bicha Fri, 23 Dec 2016 15:17:42 -0500 + -- Balint Reczey Sat, 24 Dec 2016 02:56:04 +0100 kodi-pvr-hdhomerun (2.4.2+git20160820-1) unstable; urgency=medium diff -Nru kodi-pvr-hdhomerun-2.4.2+git20160820/debian/control kodi-pvr-hdhomerun-2.4.2+git20160820/debian/control --- kodi-pvr-hdhomerun-2.4.2+git20160820/debian/control 2016-11-03 21:40:08.000000000 +0000 +++ kodi-pvr-hdhomerun-2.4.2+git20160820/debian/control 2016-12-24 02:16:51.000000000 +0000 @@ -6,19 +6,19 @@ Build-Depends: debhelper (>= 9.0.0), cmake, libkodiplatform-dev (>= 17.1.0), - kodi-addons-dev (>= 17.0~beta3+dfsg1-2), + kodi-addons-dev (>= 17.0~beta6~), libhdhomerun-dev (>= 20150826), libjsoncpp-dev -Standards-Version: 3.9.8 +Standards-Version: 3.9.7 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-multimedia/kodi-pvr-hdhomerun.git -Vcs-Git: git://anonscm.debian.org/pkg-multimedia/kodi-pvr-hdhomerun.git +Vcs-Git: https://anonscm.debian.org/git/pkg-multimedia/kodi-pvr-hdhomerun.git Homepage: https://github.com/kodi-pvr/pvr.hdhomerun.git Package: kodi-pvr-hdhomerun Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, - ${xbmc-addons-abi:Depends} + ${kodi:PVRAPI} Description: HDHomeRun PVR Addon for Kodi HDHomeRun is made by SiliconDust and is a stand-alone networked TV/HDTV tuner box. The HDHomeRun can either connect with over the air TV signals diff -Nru kodi-pvr-hdhomerun-2.4.2+git20160820/debian/patches/0001-adapt-to-api-change-SeekTime.patch kodi-pvr-hdhomerun-2.4.2+git20160820/debian/patches/0001-adapt-to-api-change-SeekTime.patch --- kodi-pvr-hdhomerun-2.4.2+git20160820/debian/patches/0001-adapt-to-api-change-SeekTime.patch 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-hdhomerun-2.4.2+git20160820/debian/patches/0001-adapt-to-api-change-SeekTime.patch 2016-12-24 02:16:51.000000000 +0000 @@ -0,0 +1,25 @@ +From 47071a5272edd95ccc954844acbf377e5a67a57b Mon Sep 17 00:00:00 2001 +From: Rainer Hochecker +Date: Sat, 26 Nov 2016 13:50:24 +0100 +Subject: [PATCH] adapt to api change - SeekTime + +--- + src/client.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/client.cpp b/src/client.cpp +index 200a64e..171564b 100644 +--- a/src/client.cpp ++++ b/src/client.cpp +@@ -384,7 +384,7 @@ void DemuxAbort(void) {} + DemuxPacket* DemuxRead(void) { return NULL; } + unsigned int GetChannelSwitchDelay(void) { return 0; } + void PauseStream(bool bPaused) {} +-bool SeekTime(int,bool,double*) { return false; } ++bool SeekTime(double,bool,double*) { return false; } + void SetSpeed(int) {}; + time_t GetPlayingTime() { return 0; } + time_t GetBufferTimeStart() { return 0; } +-- +2.1.4 + diff -Nru kodi-pvr-hdhomerun-2.4.2+git20160820/debian/patches/series kodi-pvr-hdhomerun-2.4.2+git20160820/debian/patches/series --- kodi-pvr-hdhomerun-2.4.2+git20160820/debian/patches/series 2016-11-03 21:40:08.000000000 +0000 +++ kodi-pvr-hdhomerun-2.4.2+git20160820/debian/patches/series 2016-12-24 02:16:51.000000000 +0000 @@ -1 +1,2 @@ +0001-adapt-to-api-change-SeekTime.patch diff -Nru kodi-pvr-hdhomerun-2.4.2+git20160820/debian/rules kodi-pvr-hdhomerun-2.4.2+git20160820/debian/rules --- kodi-pvr-hdhomerun-2.4.2+git20160820/debian/rules 2016-11-03 21:40:08.000000000 +0000 +++ kodi-pvr-hdhomerun-2.4.2+git20160820/debian/rules 2016-12-24 02:16:51.000000000 +0000 @@ -12,7 +12,7 @@ export DEB_CXXFLAGS_MAINT_APPEND = -I$(CURDIR)/src/ %: - dh $@ + dh $@ --with kodiaddon override_dh_auto_configure: dh_auto_configure -- -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=1 -DCMAKE_INSTALL_LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH)/kodi -DUSE_LTO=1