Bump buidlroot version to 2018.02.6

This commit is contained in:
jbnadal
2018-10-22 14:55:59 +02:00
parent 222960cedb
commit bec94fdb63
6150 changed files with 84803 additions and 117446 deletions

View File

@@ -0,0 +1,29 @@
From bb16ccd14deb3a01049daec37b6d2e7711ef4738 Mon Sep 17 00:00:00 2001
From: Bernd Kuhls <bernd.kuhls@t-online.de>
Date: Sat, 13 May 2017 20:22:08 +0200
Subject: [PATCH] src/CWatchdog.h: Fix gcc7 build
Building with gcc7 is broken:
src/CWatchdog.h:31:58: error: 'std::function' has not been declared
CWatchdog(unsigned int interval, SAPI *api, std::function<void(SError)> errorCallback);
^~~~~~~~
Submitted-upstream: https://github.com/kodi-pvr/pvr.stalker/pull/93
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
src/CWatchdog.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/CWatchdog.h b/src/CWatchdog.h
index c465e91..239d95d 100644
--- a/src/CWatchdog.h
+++ b/src/CWatchdog.h
@@ -22,6 +22,7 @@
*/
#include <thread>
+#include <functional>
#include "SAPI.h"

View File

@@ -2,6 +2,7 @@ config BR2_PACKAGE_KODI_PVR_STALKER
bool "kodi-pvr-stalker"
select BR2_PACKAGE_JSONCPP
select BR2_PACKAGE_KODI_PLATFORM
select BR2_PACKAGE_LIBXML2
help
A PVR Client that connects Kodi to Stalker Middleware

View File

@@ -1,2 +1,2 @@
# Locally computed
sha256 e16cb12bd7a78b8849f370bedb8093d3cb1deb3a766a66efe4b838fc569ab50c kodi-pvr-stalker-5e588330c453141ae0a2f4fd9c02d909ac9d199e.tar.gz
sha256 466cb3869927cdd245a746a32d92250e198befe577f7a847884eab1fd8eeb139 kodi-pvr-stalker-2.8.6-Krypton.tar.gz

View File

@@ -4,12 +4,12 @@
#
################################################################################
# This cset is on the branch 'Jarvis'
# This cset is on the branch 'Krypton'
# When Kodi is updated, then this should be updated to the corresponding branch
KODI_PVR_STALKER_VERSION = 5e588330c453141ae0a2f4fd9c02d909ac9d199e
KODI_PVR_STALKER_VERSION = 2.8.6-Krypton
KODI_PVR_STALKER_SITE = $(call github,kodi-pvr,pvr.stalker,$(KODI_PVR_STALKER_VERSION))
KODI_PVR_STALKER_LICENSE = GPLv2+
KODI_PVR_STALKER_LICENSE = GPL-2.0+
KODI_PVR_STALKER_LICENSE_FILES = src/client.h
KODI_PVR_STALKER_DEPENDENCIES = jsoncpp kodi-platform
KODI_PVR_STALKER_DEPENDENCIES = jsoncpp kodi-platform libxml2
$(eval $(cmake-package))