Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 02/23] package/kodi-platform: add explicit dependency to tinyxml
Date: Sun, 21 Jun 2020 14:35:45 +0200	[thread overview]
Message-ID: <20200621123545.GF2351@scaer> (raw)
In-Reply-To: <20200621103806.616133-2-bernd.kuhls@t-online.de>

Bernd, All,

On 2020-06-21 12:37 +0200, Bernd Kuhls spake thusly:
> Tinyxml is built as a hard-dependency of Kodi already. For the case that
> Kodi drops this dependency we need to make sure that this package still
> finds its dependencies:
> https://github.com/xbmc/kodi-platform/blob/master/CMakeLists.txt#L9
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/kodi-platform/Config.in        | 1 +
>  package/kodi-platform/kodi-platform.mk | 2 +-
>  2 files changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/package/kodi-platform/Config.in b/package/kodi-platform/Config.in
> index cde1925c07..7b4226a10d 100644
> --- a/package/kodi-platform/Config.in
> +++ b/package/kodi-platform/Config.in
> @@ -1,6 +1,7 @@
>  config BR2_PACKAGE_KODI_PLATFORM
>  	bool
>  	select BR2_PACKAGE_LIBPLATFORM
> +	select BR2_PACKAGE_TINYXML

You need to propagate the dependencies of tinyxml too.

Yes, the only dependency is on C++, which is already a dependency of
Kodi, and thus is de-facto a dependency of kodi-platform.

However, as you are doing in the following patches, I think it is better
is we have correct dependency tracking all over the tree, because it
makes updating easier (we can notice that a dependency got dropped or
added, etc...)

So, in turn, we should also propagate de dependencies of kodi-patform to
all the packages that select it.

since this impacts quite a fair number of the follwing patches, I've
marked the series (except for the first patch) as changes requested. Can
you please fix and respin, please?

Yes, this is additional burden on your side, but I think we should take
this opportunity to fix the current mess of implicitly inherited
dependencies.

Thanks for your continued work on the Kodi package (and elsewhere!) :-)

Regards,
Yann E. MORIN.

>  	help
>  	  Kodi add-on platform support library
>  
> diff --git a/package/kodi-platform/kodi-platform.mk b/package/kodi-platform/kodi-platform.mk
> index f1b97e3259..aab1d0dbf0 100644
> --- a/package/kodi-platform/kodi-platform.mk
> +++ b/package/kodi-platform/kodi-platform.mk
> @@ -9,6 +9,6 @@ KODI_PLATFORM_SITE = $(call github,xbmc,kodi-platform,$(KODI_PLATFORM_VERSION))
>  KODI_PLATFORM_LICENSE = GPL-2.0+
>  KODI_PLATFORM_LICENSE_FILES = debian/copyright
>  KODI_PLATFORM_INSTALL_STAGING = YES
> -KODI_PLATFORM_DEPENDENCIES = libplatform kodi
> +KODI_PLATFORM_DEPENDENCIES = kodi libplatform tinyxml
>  
>  $(eval $(cmake-package))
> -- 
> 2.26.2
> 
> _______________________________________________
> 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 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

  reply	other threads:[~2020-06-21 12:35 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-21 10:37 [Buildroot] [PATCH 01/23] package/libplatform: bump version Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 02/23] package/kodi-platform: add explicit dependency to tinyxml Bernd Kuhls
2020-06-21 12:35   ` Yann E. MORIN [this message]
2020-06-21 14:48     ` Bernd Kuhls
2020-06-27  7:39       ` Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 03/23] package/kodi-inputstream-adaptive: add explicit dependency to expat Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 04/23] package/kodi-inputstream-rtmp: add explicit dependencies to openssl and zlib Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 05/23] package/kodi-pvr-argustv: add explicit dependencies to libplatform and kodi Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 06/23] package/kodi-pvr-dvblink: " Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 07/23] package/kodi-pvr-dvbviewer: add explicit dependencies to libplatform, kodi and tinyxml Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 08/23] package/kodi-pvr-filmon: add explicit dependencies to libplatform and kodi Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 09/23] package/kodi-pvr-hdhomerun: " Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 10/23] package/kodi-pvr-hts: " Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 11/23] package/kodi-pvr-iptvsimple: add explicit dependencies to libplatform, kodi and zlib Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 12/23] package/kodi-pvr-mediaportal-tvserver: add explicit dependencies to libplatform, kodi and tinyxml Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 13/23] package/kodi-pvr-mythtv: fix dependencies Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 14/23] package/kodi-pvr-nextpvr: add explicit dependencies to libplatform, kodi and tinyxml Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 15/23] package/kodi-pvr-njoy: " Bernd Kuhls
2020-06-21 10:37 ` [Buildroot] [PATCH 16/23] package/kodi-pvr-octonet: add kodi as dependency Bernd Kuhls
2020-06-21 10:38 ` [Buildroot] [PATCH 17/23] package/kodi-pvr-pctv: add explicit dependencies to libplatform and kodi Bernd Kuhls
2020-06-21 10:38 ` [Buildroot] [PATCH 18/23] package/kodi-pvr-stalker: " Bernd Kuhls
2020-06-21 10:38 ` [Buildroot] [PATCH 19/23] package/kodi-pvr-vbox: " Bernd Kuhls
2020-06-21 10:38 ` [Buildroot] [PATCH 20/23] package/kodi-pvr-vdr-vnsi: fix dependencies Bernd Kuhls
2020-06-21 10:38 ` [Buildroot] [PATCH 21/23] package/kodi-pvr-vuplus: add explicit dependencies to libplatform and kodi Bernd Kuhls
2020-06-21 10:38 ` [Buildroot] [PATCH 22/23] package/kodi-pvr-wmc: " Bernd Kuhls
2020-06-21 10:38 ` [Buildroot] [PATCH 23/23] package/kodi-pvr-zattoo: fix dependencies Bernd Kuhls
2020-06-21 12:23 ` [Buildroot] [PATCH 01/23] package/libplatform: bump version Yann E. MORIN

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200621123545.GF2351@scaer \
    --to=yann.morin.1998@free.fr \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox