Re: [gentoo-dev] [PATCH v2] meson.eclass: allow disabling verbose compilation

2023-07-20 Thread Ionen Wolkens
On Thu, Jul 20, 2023 at 01:11:10PM -0400, Ionen Wolkens wrote: > On Thu, Jul 20, 2023 at 06:58:04PM +0200, Ulrich Mueller wrote: > > > On Thu, 20 Jul 2023, Mike Gilbert wrote: > > > > > On Thu, Jul 20, 2023 at 11:06 AM Florian Schmaus wrote: > > >> While the bash language has no boolean

Re: [gentoo-dev] [PATCH v2] meson.eclass: allow disabling verbose compilation

2023-07-20 Thread Ionen Wolkens
On Thu, Jul 20, 2023 at 06:58:04PM +0200, Ulrich Mueller wrote: > > On Thu, 20 Jul 2023, Mike Gilbert wrote: > > > On Thu, Jul 20, 2023 at 11:06 AM Florian Schmaus wrote: > >> While the bash language has no boolean datatype, you can exploit the > >> fact that 'true' and 'false' are usually

Re: [gentoo-dev] [PATCH v2] meson.eclass: allow disabling verbose compilation

2023-07-20 Thread Ulrich Mueller
> On Thu, 20 Jul 2023, Mike Gilbert wrote: > On Thu, Jul 20, 2023 at 11:06 AM Florian Schmaus wrote: >> While the bash language has no boolean datatype, you can exploit the >> fact that 'true' and 'false' are usually shell builtins: >> >> : "${MESON_VERBOSE:=true}" >> >> and then later >>

Re: [gentoo-dev] [PATCH v2] meson.eclass: allow disabling verbose compilation

2023-07-20 Thread Mike Gilbert
On Thu, Jul 20, 2023 at 11:06 AM Florian Schmaus wrote: > > On 20/07/2023 17.00, Matt Turner wrote: > > On Wed, Jul 19, 2023 at 3:23 AM Florian Schmaus wrote: > >> > >> On 18/07/2023 18.44, Matt Turner wrote: > >>> From: Jonas Rakebrandt > >>> > >>> This works similar to cmake.eclass's

Re: [gentoo-dev] [PATCH v2] meson.eclass: allow disabling verbose compilation

2023-07-20 Thread Matt Turner
On Thu, Jul 20, 2023 at 11:06 AM Florian Schmaus wrote: > > On 20/07/2023 17.00, Matt Turner wrote: > > On Wed, Jul 19, 2023 at 3:23 AM Florian Schmaus wrote: > >> > >> On 18/07/2023 18.44, Matt Turner wrote: > >>> From: Jonas Rakebrandt > >>> > >>> This works similar to cmake.eclass's

Re: [gentoo-dev] [PATCH v2] meson.eclass: allow disabling verbose compilation

2023-07-20 Thread Florian Schmaus
On 20/07/2023 17.00, Matt Turner wrote: On Wed, Jul 19, 2023 at 3:23 AM Florian Schmaus wrote: On 18/07/2023 18.44, Matt Turner wrote: From: Jonas Rakebrandt This works similar to cmake.eclass's ${CMAKE_VERBOSE}. Closes: https://github.com/gentoo/gentoo/pull/28942 Signed-off-by: Jonas

Re: [gentoo-dev] [PATCH v2] meson.eclass: allow disabling verbose compilation

2023-07-20 Thread Matt Turner
On Wed, Jul 19, 2023 at 3:23 AM Florian Schmaus wrote: > > On 18/07/2023 18.44, Matt Turner wrote: > > From: Jonas Rakebrandt > > > > This works similar to cmake.eclass's ${CMAKE_VERBOSE}. > > > > Closes: https://github.com/gentoo/gentoo/pull/28942 > > Signed-off-by: Jonas Rakebrandt > >

Re: [gentoo-dev] [PATCH v2] meson.eclass: allow disabling verbose compilation

2023-07-19 Thread Florian Schmaus
On 18/07/2023 18.44, Matt Turner wrote: From: Jonas Rakebrandt This works similar to cmake.eclass's ${CMAKE_VERBOSE}. Closes: https://github.com/gentoo/gentoo/pull/28942 Signed-off-by: Jonas Rakebrandt Signed-off-by: Matt Turner --- eclass/meson.eclass | 15 +-- 1 file

[gentoo-dev] [PATCH v2] meson.eclass: allow disabling verbose compilation

2023-07-18 Thread Matt Turner
From: Jonas Rakebrandt This works similar to cmake.eclass's ${CMAKE_VERBOSE}. Closes: https://github.com/gentoo/gentoo/pull/28942 Signed-off-by: Jonas Rakebrandt Signed-off-by: Matt Turner --- eclass/meson.eclass | 15 +-- 1 file changed, 13 insertions(+), 2 deletions(-) diff