Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/znc: python support depends on icu
@ 2018-05-09 17:25 Bernd Kuhls
  2018-05-12 15:01 ` Yann E. MORIN
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bernd Kuhls @ 2018-05-09 17:25 UTC (permalink / raw)
  To: buildroot

Upstream checks for icu when build with python support:
https://github.com/znc/znc/commit/4fe4a45dd62411ba9ede04750ca44f071e7d6cbb

Fixes
http://autobuild.buildroot.net/results/9e4/9e44159820789f1d25efcbd24318b0e05e132371/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/znc/znc.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/znc/znc.mk b/package/znc/znc.mk
index 33ac266dd3..2a04c66377 100644
--- a/package/znc/znc.mk
+++ b/package/znc/znc.mk
@@ -32,7 +32,8 @@ else
 ZNC_CONF_OPTS += --disable-zlib
 endif
 
-ifeq ($(BR2_PACKAGE_PYTHON3),y)
+# python support depends on icu
+ifeq ($(BR2_PACKAGE_ICU)$(BR2_PACKAGE_PYTHON3),yy)
 ZNC_DEPENDENCIES += python3 host-swig
 ZNC_CONF_OPTS += --enable-python=python3
 else
-- 
2.14.2

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

* [Buildroot] [PATCH 1/1] package/znc: python support depends on icu
  2018-05-09 17:25 [Buildroot] [PATCH 1/1] package/znc: python support depends on icu Bernd Kuhls
@ 2018-05-12 15:01 ` Yann E. MORIN
  2018-05-13 19:46 ` Thomas Petazzoni
  2018-08-23 19:36 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2018-05-12 15:01 UTC (permalink / raw)
  To: buildroot

Bernd, All,

On 2018-05-09 19:25 +0200, Bernd Kuhls spake thusly:
> Upstream checks for icu when build with python support:
> https://github.com/znc/znc/commit/4fe4a45dd62411ba9ede04750ca44f071e7d6cbb
> 
> Fixes
> http://autobuild.buildroot.net/results/9e4/9e44159820789f1d25efcbd24318b0e05e132371/
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/znc/znc.mk | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/package/znc/znc.mk b/package/znc/znc.mk
> index 33ac266dd3..2a04c66377 100644
> --- a/package/znc/znc.mk
> +++ b/package/znc/znc.mk
> @@ -32,7 +32,8 @@ else
>  ZNC_CONF_OPTS += --disable-zlib
>  endif
>  
> -ifeq ($(BR2_PACKAGE_PYTHON3),y)
> +# python support depends on icu
> +ifeq ($(BR2_PACKAGE_ICU)$(BR2_PACKAGE_PYTHON3),yy)

There is already an ICU conditrional above, so I was wondering if we
could comonalise the code...

In the end, I am not so sure that is important, though, so:

Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

>  ZNC_DEPENDENCIES += python3 host-swig
>  ZNC_CONF_OPTS += --enable-python=python3
>  else
> -- 
> 2.14.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 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 1/1] package/znc: python support depends on icu
  2018-05-09 17:25 [Buildroot] [PATCH 1/1] package/znc: python support depends on icu Bernd Kuhls
  2018-05-12 15:01 ` Yann E. MORIN
@ 2018-05-13 19:46 ` Thomas Petazzoni
  2018-08-23 19:36 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2018-05-13 19:46 UTC (permalink / raw)
  To: buildroot

Hello,

On Wed,  9 May 2018 19:25:53 +0200, Bernd Kuhls wrote:
> Upstream checks for icu when build with python support:
> https://github.com/znc/znc/commit/4fe4a45dd62411ba9ede04750ca44f071e7d6cbb
> 
> Fixes
> http://autobuild.buildroot.net/results/9e4/9e44159820789f1d25efcbd24318b0e05e132371/
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/znc/znc.mk | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/1] package/znc: python support depends on icu
  2018-05-09 17:25 [Buildroot] [PATCH 1/1] package/znc: python support depends on icu Bernd Kuhls
  2018-05-12 15:01 ` Yann E. MORIN
  2018-05-13 19:46 ` Thomas Petazzoni
@ 2018-08-23 19:36 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2018-08-23 19:36 UTC (permalink / raw)
  To: buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > Upstream checks for icu when build with python support:
 > https://github.com/znc/znc/commit/4fe4a45dd62411ba9ede04750ca44f071e7d6cbb

 > Fixes
 > http://autobuild.buildroot.net/results/9e4/9e44159820789f1d25efcbd24318b0e05e132371/

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed to 2018.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2018-08-23 19:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-09 17:25 [Buildroot] [PATCH 1/1] package/znc: python support depends on icu Bernd Kuhls
2018-05-12 15:01 ` Yann E. MORIN
2018-05-13 19:46 ` Thomas Petazzoni
2018-08-23 19:36 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox