* [Buildroot] [PATCH v3 1/4] package/kodi-pvr-stalker: Needs jsoncpp
@ 2015-10-02 16:31 Bernd Kuhls
2015-10-02 16:31 ` [Buildroot] [PATCH v3 2/4] package/kodi-pvr-argustv: add jsoncpp reverse dependency Bernd Kuhls
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Bernd Kuhls @ 2015-10-02 16:31 UTC (permalink / raw)
To: buildroot
Fixes
http://autobuild.buildroot.net/results/56f/56fb98da27495f6a461bfdc7aa8c2de4d86dfdb8/
http://autobuild.buildroot.net/results/f98/f982b437935cf1f921559f5388fd4146eb9241bd/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
v3: removed reference to c++ from comment (Baruch)
v2: add jsoncpp reverse dependency (Baruch)
package/kodi-pvr-stalker/Config.in | 5 +++++
package/kodi-pvr-stalker/kodi-pvr-stalker.mk | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/package/kodi-pvr-stalker/Config.in b/package/kodi-pvr-stalker/Config.in
index b327fd8..26a8c3f 100644
--- a/package/kodi-pvr-stalker/Config.in
+++ b/package/kodi-pvr-stalker/Config.in
@@ -1,7 +1,12 @@
config BR2_PACKAGE_KODI_PVR_STALKER
bool "kodi-pvr-stalker"
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # jsoncpp
+ select BR2_PACKAGE_JSONCPP
select BR2_PACKAGE_KODI_PLATFORM
help
A PVR Client that connects Kodi to Stalker Middleware
https://github.com/kodi-pvr/pvr.stalker
+
+comment "kodi-pvr-stalker needs a toolchain w/ gcc >= 4.7"
+ depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
diff --git a/package/kodi-pvr-stalker/kodi-pvr-stalker.mk b/package/kodi-pvr-stalker/kodi-pvr-stalker.mk
index 589cf7d..c1baa8d 100644
--- a/package/kodi-pvr-stalker/kodi-pvr-stalker.mk
+++ b/package/kodi-pvr-stalker/kodi-pvr-stalker.mk
@@ -8,6 +8,6 @@ KODI_PVR_STALKER_VERSION = 5f6eb1992ffd45a075ebb7bc4253c4a88bf65c80
KODI_PVR_STALKER_SITE = $(call github,kodi-pvr,pvr.stalker,$(KODI_PVR_STALKER_VERSION))
KODI_PVR_STALKER_LICENSE = GPLv2+
KODI_PVR_STALKER_LICENSE_FILES = src/client.h
-KODI_PVR_STALKER_DEPENDENCIES = kodi-platform
+KODI_PVR_STALKER_DEPENDENCIES = jsoncpp kodi-platform
$(eval $(cmake-package))
--
2.5.3
^ permalink raw reply related [flat|nested] 9+ messages in thread* [Buildroot] [PATCH v3 2/4] package/kodi-pvr-argustv: add jsoncpp reverse dependency
2015-10-02 16:31 [Buildroot] [PATCH v3 1/4] package/kodi-pvr-stalker: Needs jsoncpp Bernd Kuhls
@ 2015-10-02 16:31 ` Bernd Kuhls
2015-10-02 22:06 ` Yann E. MORIN
2015-10-02 16:31 ` [Buildroot] [PATCH v3 3/4] package/kodi-pvr-filmon: " Bernd Kuhls
` (3 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Bernd Kuhls @ 2015-10-02 16:31 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
v3: removed reference to c++ from comment (Baruch)
v2: added missing "select BR2_PACKAGE_JSONCPP" (Baruch)
package/kodi-pvr-argustv/Config.in | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/package/kodi-pvr-argustv/Config.in b/package/kodi-pvr-argustv/Config.in
index 698ff46..247d83c 100644
--- a/package/kodi-pvr-argustv/Config.in
+++ b/package/kodi-pvr-argustv/Config.in
@@ -1,7 +1,12 @@
config BR2_PACKAGE_KODI_PVR_ARGUSTV
bool "kodi-pvr-argustv"
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # jsoncpp
+ select BR2_PACKAGE_JSONCPP
select BR2_PACKAGE_KODI_PLATFORM
help
Kodi's ARGUS TV client addon
https://github.com/kodi-pvr/pvr.argustv
+
+comment "kodi-pvr-argustv needs a toolchain w/ gcc >= 4.7"
+ depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
--
2.5.3
^ permalink raw reply related [flat|nested] 9+ messages in thread* [Buildroot] [PATCH v3 2/4] package/kodi-pvr-argustv: add jsoncpp reverse dependency
2015-10-02 16:31 ` [Buildroot] [PATCH v3 2/4] package/kodi-pvr-argustv: add jsoncpp reverse dependency Bernd Kuhls
@ 2015-10-02 22:06 ` Yann E. MORIN
0 siblings, 0 replies; 9+ messages in thread
From: Yann E. MORIN @ 2015-10-02 22:06 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2015-10-02 18:31 +0200, Bernd Kuhls spake thusly:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> v3: removed reference to c++ from comment (Baruch)
> v2: added missing "select BR2_PACKAGE_JSONCPP" (Baruch)
>
> package/kodi-pvr-argustv/Config.in | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/package/kodi-pvr-argustv/Config.in b/package/kodi-pvr-argustv/Config.in
> index 698ff46..247d83c 100644
> --- a/package/kodi-pvr-argustv/Config.in
> +++ b/package/kodi-pvr-argustv/Config.in
> @@ -1,7 +1,12 @@
> config BR2_PACKAGE_KODI_PVR_ARGUSTV
> bool "kodi-pvr-argustv"
> + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # jsoncpp
> + select BR2_PACKAGE_JSONCPP
> select BR2_PACKAGE_KODI_PLATFORM
> help
> Kodi's ARGUS TV client addon
>
> https://github.com/kodi-pvr/pvr.argustv
> +
> +comment "kodi-pvr-argustv needs a toolchain w/ gcc >= 4.7"
> + depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
> --
> 2.5.3
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH v3 3/4] package/kodi-pvr-filmon: add jsoncpp reverse dependency
2015-10-02 16:31 [Buildroot] [PATCH v3 1/4] package/kodi-pvr-stalker: Needs jsoncpp Bernd Kuhls
2015-10-02 16:31 ` [Buildroot] [PATCH v3 2/4] package/kodi-pvr-argustv: add jsoncpp reverse dependency Bernd Kuhls
@ 2015-10-02 16:31 ` Bernd Kuhls
2015-10-02 22:07 ` Yann E. MORIN
2015-10-02 16:31 ` [Buildroot] [PATCH v3 4/4] package/kodi-pvr-pctv: " Bernd Kuhls
` (2 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Bernd Kuhls @ 2015-10-02 16:31 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
v3: removed reference to c++ from comment (Baruch)
v2: skipped
package/kodi-pvr-filmon/Config.in | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/package/kodi-pvr-filmon/Config.in b/package/kodi-pvr-filmon/Config.in
index 0b662df..3d87ec8 100644
--- a/package/kodi-pvr-filmon/Config.in
+++ b/package/kodi-pvr-filmon/Config.in
@@ -1,8 +1,12 @@
config BR2_PACKAGE_KODI_PVR_FILMON
bool "kodi-pvr-filmon"
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # jsoncpp
select BR2_PACKAGE_JSONCPP
select BR2_PACKAGE_KODI_PLATFORM
help
Filmon PVR client addon for Kodi
https://github.com/kodi-pvr/pvr.filmon
+
+comment "kodi-pvr-filmon needs a toolchain w/ gcc >= 4.7"
+ depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
--
2.5.3
^ permalink raw reply related [flat|nested] 9+ messages in thread* [Buildroot] [PATCH v3 3/4] package/kodi-pvr-filmon: add jsoncpp reverse dependency
2015-10-02 16:31 ` [Buildroot] [PATCH v3 3/4] package/kodi-pvr-filmon: " Bernd Kuhls
@ 2015-10-02 22:07 ` Yann E. MORIN
0 siblings, 0 replies; 9+ messages in thread
From: Yann E. MORIN @ 2015-10-02 22:07 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2015-10-02 18:31 +0200, Bernd Kuhls spake thusly:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> v3: removed reference to c++ from comment (Baruch)
> v2: skipped
>
> package/kodi-pvr-filmon/Config.in | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/package/kodi-pvr-filmon/Config.in b/package/kodi-pvr-filmon/Config.in
> index 0b662df..3d87ec8 100644
> --- a/package/kodi-pvr-filmon/Config.in
> +++ b/package/kodi-pvr-filmon/Config.in
> @@ -1,8 +1,12 @@
> config BR2_PACKAGE_KODI_PVR_FILMON
> bool "kodi-pvr-filmon"
> + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # jsoncpp
> select BR2_PACKAGE_JSONCPP
> select BR2_PACKAGE_KODI_PLATFORM
> help
> Filmon PVR client addon for Kodi
>
> https://github.com/kodi-pvr/pvr.filmon
> +
> +comment "kodi-pvr-filmon needs a toolchain w/ gcc >= 4.7"
> + depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
> --
> 2.5.3
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH v3 4/4] package/kodi-pvr-pctv: add jsoncpp reverse dependency
2015-10-02 16:31 [Buildroot] [PATCH v3 1/4] package/kodi-pvr-stalker: Needs jsoncpp Bernd Kuhls
2015-10-02 16:31 ` [Buildroot] [PATCH v3 2/4] package/kodi-pvr-argustv: add jsoncpp reverse dependency Bernd Kuhls
2015-10-02 16:31 ` [Buildroot] [PATCH v3 3/4] package/kodi-pvr-filmon: " Bernd Kuhls
@ 2015-10-02 16:31 ` Bernd Kuhls
2015-10-02 22:08 ` Yann E. MORIN
2015-10-02 22:04 ` [Buildroot] [PATCH v3 1/4] package/kodi-pvr-stalker: Needs jsoncpp Yann E. MORIN
2015-10-03 13:24 ` Peter Korsgaard
4 siblings, 1 reply; 9+ messages in thread
From: Bernd Kuhls @ 2015-10-02 16:31 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
v3: removed reference to c++ from comment (Baruch)
v2: skipped
package/kodi-pvr-pctv/Config.in | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/package/kodi-pvr-pctv/Config.in b/package/kodi-pvr-pctv/Config.in
index 255cd4a..1bef551 100644
--- a/package/kodi-pvr-pctv/Config.in
+++ b/package/kodi-pvr-pctv/Config.in
@@ -1,8 +1,12 @@
config BR2_PACKAGE_KODI_PVR_PCTV
bool "kodi-pvr-pctv"
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # jsoncpp
select BR2_PACKAGE_JSONCPP
select BR2_PACKAGE_KODI_PLATFORM
help
PCTV PVR client addon for Kodi
https://github.com/kodi-pvr/pvr.vdr.vnsi
+
+comment "kodi-pvr-pctv needs a toolchain w/ gcc >= 4.7"
+ depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
--
2.5.3
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH v3 4/4] package/kodi-pvr-pctv: add jsoncpp reverse dependency
2015-10-02 16:31 ` [Buildroot] [PATCH v3 4/4] package/kodi-pvr-pctv: " Bernd Kuhls
@ 2015-10-02 22:08 ` Yann E. MORIN
0 siblings, 0 replies; 9+ messages in thread
From: Yann E. MORIN @ 2015-10-02 22:08 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2015-10-02 18:31 +0200, Bernd Kuhls spake thusly:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> v3: removed reference to c++ from comment (Baruch)
> v2: skipped
>
> package/kodi-pvr-pctv/Config.in | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/package/kodi-pvr-pctv/Config.in b/package/kodi-pvr-pctv/Config.in
> index 255cd4a..1bef551 100644
> --- a/package/kodi-pvr-pctv/Config.in
> +++ b/package/kodi-pvr-pctv/Config.in
> @@ -1,8 +1,12 @@
> config BR2_PACKAGE_KODI_PVR_PCTV
> bool "kodi-pvr-pctv"
> + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # jsoncpp
> select BR2_PACKAGE_JSONCPP
> select BR2_PACKAGE_KODI_PLATFORM
> help
> PCTV PVR client addon for Kodi
>
> https://github.com/kodi-pvr/pvr.vdr.vnsi
> +
> +comment "kodi-pvr-pctv needs a toolchain w/ gcc >= 4.7"
> + depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
> --
> 2.5.3
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH v3 1/4] package/kodi-pvr-stalker: Needs jsoncpp
2015-10-02 16:31 [Buildroot] [PATCH v3 1/4] package/kodi-pvr-stalker: Needs jsoncpp Bernd Kuhls
` (2 preceding siblings ...)
2015-10-02 16:31 ` [Buildroot] [PATCH v3 4/4] package/kodi-pvr-pctv: " Bernd Kuhls
@ 2015-10-02 22:04 ` Yann E. MORIN
2015-10-03 13:24 ` Peter Korsgaard
4 siblings, 0 replies; 9+ messages in thread
From: Yann E. MORIN @ 2015-10-02 22:04 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2015-10-02 18:31 +0200, Bernd Kuhls spake thusly:
> Fixes
> http://autobuild.buildroot.net/results/56f/56fb98da27495f6a461bfdc7aa8c2de4d86dfdb8/
> http://autobuild.buildroot.net/results/f98/f982b437935cf1f921559f5388fd4146eb9241bd/
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> v3: removed reference to c++ from comment (Baruch)
> v2: add jsoncpp reverse dependency (Baruch)
>
> package/kodi-pvr-stalker/Config.in | 5 +++++
> package/kodi-pvr-stalker/kodi-pvr-stalker.mk | 2 +-
> 2 files changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/package/kodi-pvr-stalker/Config.in b/package/kodi-pvr-stalker/Config.in
> index b327fd8..26a8c3f 100644
> --- a/package/kodi-pvr-stalker/Config.in
> +++ b/package/kodi-pvr-stalker/Config.in
> @@ -1,7 +1,12 @@
> config BR2_PACKAGE_KODI_PVR_STALKER
> bool "kodi-pvr-stalker"
> + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # jsoncpp
> + select BR2_PACKAGE_JSONCPP
> select BR2_PACKAGE_KODI_PLATFORM
> help
> A PVR Client that connects Kodi to Stalker Middleware
>
> https://github.com/kodi-pvr/pvr.stalker
> +
> +comment "kodi-pvr-stalker needs a toolchain w/ gcc >= 4.7"
> + depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
> diff --git a/package/kodi-pvr-stalker/kodi-pvr-stalker.mk b/package/kodi-pvr-stalker/kodi-pvr-stalker.mk
> index 589cf7d..c1baa8d 100644
> --- a/package/kodi-pvr-stalker/kodi-pvr-stalker.mk
> +++ b/package/kodi-pvr-stalker/kodi-pvr-stalker.mk
> @@ -8,6 +8,6 @@ KODI_PVR_STALKER_VERSION = 5f6eb1992ffd45a075ebb7bc4253c4a88bf65c80
> KODI_PVR_STALKER_SITE = $(call github,kodi-pvr,pvr.stalker,$(KODI_PVR_STALKER_VERSION))
> KODI_PVR_STALKER_LICENSE = GPLv2+
> KODI_PVR_STALKER_LICENSE_FILES = src/client.h
> -KODI_PVR_STALKER_DEPENDENCIES = kodi-platform
> +KODI_PVR_STALKER_DEPENDENCIES = jsoncpp kodi-platform
>
> $(eval $(cmake-package))
> --
> 2.5.3
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 9+ messages in thread* [Buildroot] [PATCH v3 1/4] package/kodi-pvr-stalker: Needs jsoncpp
2015-10-02 16:31 [Buildroot] [PATCH v3 1/4] package/kodi-pvr-stalker: Needs jsoncpp Bernd Kuhls
` (3 preceding siblings ...)
2015-10-02 22:04 ` [Buildroot] [PATCH v3 1/4] package/kodi-pvr-stalker: Needs jsoncpp Yann E. MORIN
@ 2015-10-03 13:24 ` Peter Korsgaard
4 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2015-10-03 13:24 UTC (permalink / raw)
To: buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:
> Fixes
> http://autobuild.buildroot.net/results/56f/56fb98da27495f6a461bfdc7aa8c2de4d86dfdb8/
> http://autobuild.buildroot.net/results/f98/f982b437935cf1f921559f5388fd4146eb9241bd/
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> v3: removed reference to c++ from comment (Baruch)
> v2: add jsoncpp reverse dependency (Baruch)
Committed all 4, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2015-10-03 13:24 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-02 16:31 [Buildroot] [PATCH v3 1/4] package/kodi-pvr-stalker: Needs jsoncpp Bernd Kuhls
2015-10-02 16:31 ` [Buildroot] [PATCH v3 2/4] package/kodi-pvr-argustv: add jsoncpp reverse dependency Bernd Kuhls
2015-10-02 22:06 ` Yann E. MORIN
2015-10-02 16:31 ` [Buildroot] [PATCH v3 3/4] package/kodi-pvr-filmon: " Bernd Kuhls
2015-10-02 22:07 ` Yann E. MORIN
2015-10-02 16:31 ` [Buildroot] [PATCH v3 4/4] package/kodi-pvr-pctv: " Bernd Kuhls
2015-10-02 22:08 ` Yann E. MORIN
2015-10-02 22:04 ` [Buildroot] [PATCH v3 1/4] package/kodi-pvr-stalker: Needs jsoncpp Yann E. MORIN
2015-10-03 13:24 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox