From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50674) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d1aYT-0003O0-2r for guix-patches@gnu.org; Fri, 21 Apr 2017 11:33:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d1aYS-0000Lk-0v for guix-patches@gnu.org; Fri, 21 Apr 2017 11:33:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34574) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d1aYR-0000Lf-TW for guix-patches@gnu.org; Fri, 21 Apr 2017 11:33:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d1aYR-00038z-NV for guix-patches@gnu.org; Fri, 21 Apr 2017 11:33:03 -0400 Subject: bug#26568: [PATCH] =?UTF-8?Q?gnu=C2=A0:?= Add meson. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53783) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d1XeF-0001jr-G8 for guix-patches@gnu.org; Fri, 21 Apr 2017 08:26:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d1XeE-0000RO-9I for guix-patches@gnu.org; Fri, 21 Apr 2017 08:26:51 -0400 Date: Fri, 21 Apr 2017 14:00:02 +0200 From: Corentin Bocquillon Message-ID: <20170421115856.GA24249@nibupac> References: <20170419204750.GA13306@nibupac> <877f2f1dha.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <877f2f1dha.fsf@gnu.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 26568@debbugs.gnu.org Hello Ludovic, thank you for pushing it. And sorry for the email address, I forgot to set it. Le jeudi 20 avril 2017 à 14:16:01+0200, Ludovic Courtès a écrit : > Hi Corentin, > > I applied your patch with the minor changes below and with a commit log > closer to our conventions (see > .) > > Thank you! > > Ludo’. > > PS: I cannot push it right now because git.sv.gnu.org is currently > unavailable. > PPS: The email address that you used, , is invalid; I > hope you’ll get this message somehow. :-) > > diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm > index e26c31511..0f6a10bbc 100644 > --- a/gnu/packages/build-tools.scm > +++ b/gnu/packages/build-tools.scm > @@ -81,11 +81,12 @@ makes a few sacrifices to acquire fast full and incremental build times.") > (build-system python-build-system) > (inputs `(("ninja", ninja))) > (home-page "https://mesonbuild.com/") > - (synopsis "Meson build system") > + (synopsis "Build system designed to be fast and user-friendly") > (description > - "The meson build system is focused on user-friendliness and speed. > -According to the developpers of meson, every seconds spent waiting for > -the build system, writing or debugging build definitions is a second wasted > -so meson is designed to be very fast and simple. > -It supports C, C++, Fortran, Java and Rust.") > - (license asl2.0))) > + "The Meson build system is focused on user-friendliness and speed. > +It can compile code written in C, C++, Fortran, Java, Rust, and other > +languages. Meson provides features comparable to those of the > +Autoconf/Automake/make combo. Build specifications, also known as @dfn{Meson > +files}, are written in a custom domain-specific language (DSL) that resembles > +Python.") > + (license license:asl2.0)))