All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/tmux: add utf8proc optional dependency
@ 2023-02-05 13:23 Fabrice Fontaine
  2023-02-05 14:42 ` Yann E. MORIN
  2023-02-21 20:46 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2023-02-05 13:23 UTC (permalink / raw)
  To: buildroot; +Cc: Yann E . MORIN, Fabrice Fontaine

utf8proc is an optional dependency since version 2.3 and
https://github.com/tmux/tmux/commit/6c94774b70f72952c4c512e4aa59a207ca1c34f2

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/tmux/tmux.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/tmux/tmux.mk b/package/tmux/tmux.mk
index 281b7d8ee6..b1c0af1a83 100644
--- a/package/tmux/tmux.mk
+++ b/package/tmux/tmux.mk
@@ -11,6 +11,13 @@ TMUX_LICENSE_FILES = COPYING
 TMUX_CPE_ID_VENDOR = tmux_project
 TMUX_DEPENDENCIES = libevent ncurses host-pkgconf
 
+ifeq ($(BR2_PACKAGE_UTF8PROC),y)
+TMUX_DEPENDENCIES += utf8proc
+TMUX_CONF_OPTS += --enable-utf8proc
+else
+TMUX_CONF_OPTS += --disable-utf8proc
+endif
+
 # Add /usr/bin/tmux to /etc/shells otherwise some login tools like dropbear
 # can reject the user connection. See man shells.
 define TMUX_ADD_TMUX_TO_SHELLS
-- 
2.39.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/tmux: add utf8proc optional dependency
  2023-02-05 13:23 [Buildroot] [PATCH 1/1] package/tmux: add utf8proc optional dependency Fabrice Fontaine
@ 2023-02-05 14:42 ` Yann E. MORIN
  2023-02-21 20:46 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2023-02-05 14:42 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

Fabrice, All,

On 2023-02-05 14:23 +0100, Fabrice Fontaine spake thusly:
> utf8proc is an optional dependency since version 2.3 and
> https://github.com/tmux/tmux/commit/6c94774b70f72952c4c512e4aa59a207ca1c34f2
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/tmux/tmux.mk | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/package/tmux/tmux.mk b/package/tmux/tmux.mk
> index 281b7d8ee6..b1c0af1a83 100644
> --- a/package/tmux/tmux.mk
> +++ b/package/tmux/tmux.mk
> @@ -11,6 +11,13 @@ TMUX_LICENSE_FILES = COPYING
>  TMUX_CPE_ID_VENDOR = tmux_project
>  TMUX_DEPENDENCIES = libevent ncurses host-pkgconf
>  
> +ifeq ($(BR2_PACKAGE_UTF8PROC),y)
> +TMUX_DEPENDENCIES += utf8proc
> +TMUX_CONF_OPTS += --enable-utf8proc
> +else
> +TMUX_CONF_OPTS += --disable-utf8proc
> +endif
> +
>  # Add /usr/bin/tmux to /etc/shells otherwise some login tools like dropbear
>  # can reject the user connection. See man shells.
>  define TMUX_ADD_TMUX_TO_SHELLS
> -- 
> 2.39.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/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.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/tmux: add utf8proc optional dependency
  2023-02-05 13:23 [Buildroot] [PATCH 1/1] package/tmux: add utf8proc optional dependency Fabrice Fontaine
  2023-02-05 14:42 ` Yann E. MORIN
@ 2023-02-21 20:46 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2023-02-21 20:46 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Yann E . MORIN, buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > utf8proc is an optional dependency since version 2.3 and
 > https://github.com/tmux/tmux/commit/6c94774b70f72952c4c512e4aa59a207ca1c34f2

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2022.11.x and 2022.02.x, thanks.

> ---
 >  package/tmux/tmux.mk | 7 +++++++
 >  1 file changed, 7 insertions(+)

 > diff --git a/package/tmux/tmux.mk b/package/tmux/tmux.mk
 > index 281b7d8ee6..b1c0af1a83 100644
 > --- a/package/tmux/tmux.mk
 > +++ b/package/tmux/tmux.mk
 > @@ -11,6 +11,13 @@ TMUX_LICENSE_FILES = COPYING
 >  TMUX_CPE_ID_VENDOR = tmux_project
 >  TMUX_DEPENDENCIES = libevent ncurses host-pkgconf
 
 > +ifeq ($(BR2_PACKAGE_UTF8PROC),y)
 > +TMUX_DEPENDENCIES += utf8proc
 > +TMUX_CONF_OPTS += --enable-utf8proc
 > +else
 > +TMUX_CONF_OPTS += --disable-utf8proc
 > +endif
 > +
 >  # Add /usr/bin/tmux to /etc/shells otherwise some login tools like dropbear
 >  # can reject the user connection. See man shells.
 >  define TMUX_ADD_TMUX_TO_SHELLS
 > -- 

 > 2.39.0

 > _______________________________________________
 > buildroot mailing list
 > buildroot@buildroot.org
 > https://lists.buildroot.org/mailman/listinfo/buildroot


-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2023-02-21 20:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-05 13:23 [Buildroot] [PATCH 1/1] package/tmux: add utf8proc optional dependency Fabrice Fontaine
2023-02-05 14:42 ` Yann E. MORIN
2023-02-21 20:46 ` Peter Korsgaard

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.