package/kodi-pvr-octonet: fix json dependency

While creating the initial package file a wrong dependency was chosen.

This package really depends on jsoncpp, not json-for-modern-cpp:
f724c5934c

This bug was found while testing per-package directories.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
(cherry picked from commit 2d8e452895)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Bernd Kuhls 2021-09-26 15:21:19 +02:00 committed by Peter Korsgaard
parent f819b0458a
commit a52b46e00e
2 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_KODI_PVR_OCTONET
bool "kodi-pvr-octonet"
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # json-for-modern-cpp
select BR2_PACKAGE_JSON_FOR_MODERN_CPP
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # jsoncpp
select BR2_PACKAGE_JSONCPP
select BR2_PACKAGE_KODI_PLATFORM
select BR2_PACKAGE_LIBPLATFORM
help
@ -9,5 +9,5 @@ config BR2_PACKAGE_KODI_PVR_OCTONET
https://github.com/DigitalDevices/pvr.octonet
comment "kodi-pvr-octonet needs a toolchain w/ gcc >= 4.9"
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
comment "kodi-pvr-octonet needs a toolchain w/ gcc >= 4.7"
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7

View File

@ -8,6 +8,6 @@ KODI_PVR_OCTONET_VERSION = e35cc373476a92aee11ec8e8a14fb8fc086a4f84
KODI_PVR_OCTONET_SITE = $(call github,DigitalDevices,pvr.octonet,$(KODI_PVR_OCTONET_VERSION))
KODI_PVR_OCTONET_LICENSE = GPL-2.0+
KODI_PVR_OCTONET_LICENSE_FILES = debian/copyright
KODI_PVR_OCTONET_DEPENDENCIES = json-for-modern-cpp kodi-platform libplatform
KODI_PVR_OCTONET_DEPENDENCIES = jsoncpp kodi-platform libplatform
$(eval $(cmake-package))