All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/libev: use host-xxx-package macros
@ 2019-10-01  9:16 heiko.thiery at gmail.com
  2019-10-01  9:37 ` Thomas Petazzoni
  0 siblings, 1 reply; 7+ messages in thread
From: heiko.thiery at gmail.com @ 2019-10-01  9:16 UTC (permalink / raw)
  To: buildroot

From: Heiko Thiery <heiko.thiery@kontron.com>

Signed-off-by: Heiko Thiery <heiko.thiery@kontron.com>
---
 package/libev/libev.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/libev/libev.mk b/package/libev/libev.mk
index 2b2d5db004..38b0530f62 100644
--- a/package/libev/libev.mk
+++ b/package/libev/libev.mk
@@ -18,3 +18,4 @@ endef
 LIBEV_POST_PATCH_HOOKS += LIBEV_DISABLE_EVENT_H_INSTALL
 
 $(eval $(autotools-package))
+$(eval $(host-autotools-package))
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/1] package/libev: use host-xxx-package macros
  2019-10-01  9:16 [Buildroot] [PATCH 1/1] package/libev: use host-xxx-package macros heiko.thiery at gmail.com
@ 2019-10-01  9:37 ` Thomas Petazzoni
  2019-10-01 11:24   ` Heiko Thiery
  0 siblings, 1 reply; 7+ messages in thread
From: Thomas Petazzoni @ 2019-10-01  9:37 UTC (permalink / raw)
  To: buildroot

On Tue,  1 Oct 2019 11:16:28 +0200
heiko.thiery at gmail.com wrote:

> From: Heiko Thiery <heiko.thiery@kontron.com>
> 
> Signed-off-by: Heiko Thiery <heiko.thiery@kontron.com>

Why ? Why do you need the host variant of this library ?

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/1] package/libev: use host-xxx-package macros
  2019-10-01  9:37 ` Thomas Petazzoni
@ 2019-10-01 11:24   ` Heiko Thiery
  2019-10-01 13:48     ` Thomas Petazzoni
  0 siblings, 1 reply; 7+ messages in thread
From: Heiko Thiery @ 2019-10-01 11:24 UTC (permalink / raw)
  To: buildroot

>
> Why ? Why do you need the host variant of this library ?
>

I need this(these) library(ies) as a dependency for a tool that is also
used in the installation step to prepare binary data.

I detail it is used for the integration of a netconf server. This server
has to prepare some YANG models during the installation phase where the
host tool of the sysrep project is needed as requirement.

I know the better solution would be to only compile the needed tool (that
in fact does not need the libev and libssh) but the build environment of
this package has no option to only compile the helper tools.

--
Heiko
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20191001/4f5b0cb5/attachment.html>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/1] package/libev: use host-xxx-package macros
  2019-10-01 11:24   ` Heiko Thiery
@ 2019-10-01 13:48     ` Thomas Petazzoni
  2019-10-01 13:50       ` Heiko Thiery
  0 siblings, 1 reply; 7+ messages in thread
From: Thomas Petazzoni @ 2019-10-01 13:48 UTC (permalink / raw)
  To: buildroot

On Tue, 1 Oct 2019 13:24:54 +0200
Heiko Thiery <heiko.thiery@gmail.com> wrote:

> I need this(these) library(ies) as a dependency for a tool that is also
> used in the installation step to prepare binary data.
> 
> I detail it is used for the integration of a netconf server. This server
> has to prepare some YANG models during the installation phase where the
> host tool of the sysrep project is needed as requirement.
> 
> I know the better solution would be to only compile the needed tool (that
> in fact does not need the libev and libssh) but the build environment of
> this package has no option to only compile the helper tools.

Is this tool part of a package that you intend to submit in Buildroot ?

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/1] package/libev: use host-xxx-package macros
  2019-10-01 13:48     ` Thomas Petazzoni
@ 2019-10-01 13:50       ` Heiko Thiery
  2019-10-01 14:01         ` Thomas Petazzoni
  0 siblings, 1 reply; 7+ messages in thread
From: Heiko Thiery @ 2019-10-01 13:50 UTC (permalink / raw)
  To: buildroot

> Is this tool part of a package that you intend to submit in Buildroot ?
yes

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/1] package/libev: use host-xxx-package macros
  2019-10-01 13:50       ` Heiko Thiery
@ 2019-10-01 14:01         ` Thomas Petazzoni
  2019-10-01 14:32           ` Heiko Thiery
  0 siblings, 1 reply; 7+ messages in thread
From: Thomas Petazzoni @ 2019-10-01 14:01 UTC (permalink / raw)
  To: buildroot

On Tue, 1 Oct 2019 15:50:49 +0200
Heiko Thiery <heiko.thiery@gmail.com> wrote:

> > Is this tool part of a package that you intend to submit in Buildroot ?  
> yes

Then could you send those patches as part of a patch series together
with the patch adding the package that actually uses those host
libraries ?

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/1] package/libev: use host-xxx-package macros
  2019-10-01 14:01         ` Thomas Petazzoni
@ 2019-10-01 14:32           ` Heiko Thiery
  0 siblings, 0 replies; 7+ messages in thread
From: Heiko Thiery @ 2019-10-01 14:32 UTC (permalink / raw)
  To: buildroot

> Then could you send those patches as part of a patch series together
> with the patch adding the package that actually uses those host
> libraries ?

Just send the patches for all of the pending packages.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-10-01 14:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-01  9:16 [Buildroot] [PATCH 1/1] package/libev: use host-xxx-package macros heiko.thiery at gmail.com
2019-10-01  9:37 ` Thomas Petazzoni
2019-10-01 11:24   ` Heiko Thiery
2019-10-01 13:48     ` Thomas Petazzoni
2019-10-01 13:50       ` Heiko Thiery
2019-10-01 14:01         ` Thomas Petazzoni
2019-10-01 14:32           ` Heiko Thiery

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.