From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33814) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dsxga-00069y-PW for guix-patches@gnu.org; Fri, 15 Sep 2017 16:58:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dsxgY-0001dW-JZ for guix-patches@gnu.org; Fri, 15 Sep 2017 16:58:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34474) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dsxgY-0001dD-Ev for guix-patches@gnu.org; Fri, 15 Sep 2017 16:58:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dsxgY-00057C-83 for guix-patches@gnu.org; Fri, 15 Sep 2017 16:58:02 -0400 Subject: [bug#28444] [PATCH 2/3] gnu: Add meson-for-build. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170913125003.13313-1-petermikkelsen10@gmail.com> <20170913125003.13313-2-petermikkelsen10@gmail.com> Date: Fri, 15 Sep 2017 22:57:25 +0200 In-Reply-To: <20170913125003.13313-2-petermikkelsen10@gmail.com> (Peter Mikkelsen's message of "Wed, 13 Sep 2017 14:50:02 +0200") Message-ID: <87fubnllxm.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Peter Mikkelsen Cc: 28444@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Peter Mikkelsen skribis: > * gnu/packages/build-tools.scm (meson-for-build): New variable. > * gnu/packages/patches/meson-for-build-rpath.patch: New file. > * gnu/local.mk (dist_patch_DATA): Register it. Applied! I=E2=80=99ve marked it as =E2=80=9Chidden=E2=80=9D so that it doesn=E2=80= =99t show up in UIs (patch below). Let me know if you think that=E2=80=99s not OK! --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm index a5e416db7..c535f5240 100644 --- a/gnu/packages/build-tools.scm +++ b/gnu/packages/build-tools.scm @@ -106,7 +106,10 @@ Python.") (sha256 (base32 "0vyp9rkymzzzilhnf04ryszslyp9a0y0wf4agyijd4w5lcnqlcbc")) - (patches (search-patches "meson-for-build-rpath.patch")))))) + (patches (search-patches "meson-for-build-rpath.patch")))) + + ;; People should probably install "meson", not "meson-for-build". + (properties `((hidden? . #t))))) (define-public premake4 (package --=-=-=--