Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
From 2698ac4eeca3a82967ff83386460c070ce387ead Mon Sep 17 00:00:00 2001
|
||||
From: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
Date: Sun, 28 Feb 2016 01:07:52 +0100
|
||||
Subject: [PATCH] Sync enum representation of char_class_e in struct traits
|
||||
with definition
|
||||
|
||||
Copied from
|
||||
https://github.com/kodi-pvr/pvr.mediaportal.tvserver/pull/28
|
||||
https://github.com/kodi-pvr/pvr.mediaportal.tvserver/pull/35
|
||||
|
||||
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
[Patch sent upstream: https://github.com/kodi-pvr/pvr.nextpvr/pull/42]
|
||||
---
|
||||
src/uri.h | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/src/uri.h b/src/uri.h
|
||||
index 2757cf0..3dbca88 100644
|
||||
--- a/src/uri.h
|
||||
+++ b/src/uri.h
|
||||
@@ -21,13 +21,13 @@
|
||||
namespace uri
|
||||
{
|
||||
/// Char class.
|
||||
- enum char_class_e
|
||||
+ typedef enum char_class_e : signed char
|
||||
{
|
||||
CINV = -2, ///< invalid
|
||||
CEND = -1, ///< end delimitor
|
||||
CVAL = 0, ///< valid any position
|
||||
CVA2 = 1, ///< valid anywhere but 1st position
|
||||
- };
|
||||
+ } char_class_e_type;
|
||||
|
||||
/// Traits used for parsing and encoding components.
|
||||
struct traits
|
||||
@@ -35,7 +35,7 @@ namespace uri
|
||||
const char* begin_cstring; ///< begin cstring (or 0 if none)
|
||||
const char begin_char; ///< begin char (or 0 if none)
|
||||
const char end_char; ///< end char (or 0 if none)
|
||||
- char char_class[256]; ///< map of char to class
|
||||
+ const char_class_e_type char_class[256]; ///< map of char to class
|
||||
};
|
||||
|
||||
/**
|
||||
--
|
||||
2.7.0
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_KODI_PVR_NEXTPVR
|
||||
bool "kodi-pvr-nextpvr"
|
||||
select BR2_PACKAGE_KODI_PLATFORM
|
||||
help
|
||||
Kodi's NextPVR client addon
|
||||
|
||||
https://github.com/kodi-pvr/pvr.nextpvr
|
||||
@@ -0,0 +1,13 @@
|
||||
################################################################################
|
||||
#
|
||||
# kodi-pvr-nextpvr
|
||||
#
|
||||
################################################################################
|
||||
|
||||
KODI_PVR_NEXTPVR_VERSION = 3a205e49b50baba605d3235f6613fdd36c1d3234
|
||||
KODI_PVR_NEXTPVR_SITE = $(call github,kodi-pvr,pvr.nextpvr,$(KODI_PVR_NEXTPVR_VERSION))
|
||||
KODI_PVR_NEXTPVR_LICENSE = GPLv2+
|
||||
KODI_PVR_NEXTPVR_LICENSE_FILES = src/client.h
|
||||
KODI_PVR_NEXTPVR_DEPENDENCIES = kodi-platform
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user