From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37107) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1esEp3-0007tc-Jc for guix-patches@gnu.org; Sat, 03 Mar 2018 16:36:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1esEp0-0006zz-Em for guix-patches@gnu.org; Sat, 03 Mar 2018 16:36:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:35245) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1esEp0-0006zu-Az for guix-patches@gnu.org; Sat, 03 Mar 2018 16:36:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1esEp0-00064C-4d for guix-patches@gnu.org; Sat, 03 Mar 2018 16:36:02 -0500 Subject: [bug#30596] [PATCH 5/6] gnu: Add cmake@3.11. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180224190349.8155-1-mbakke@fastmail.com> <20180224190349.8155-5-mbakke@fastmail.com> Date: Sat, 03 Mar 2018 22:35:26 +0100 In-Reply-To: <20180224190349.8155-5-mbakke@fastmail.com> (Marius Bakke's message of "Sat, 24 Feb 2018 20:03:48 +0100") Message-ID: <87h8pw971d.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: Marius Bakke Cc: 30596@debbugs.gnu.org Marius Bakke skribis: > * gnu/packages/patches/cmake-3.11-pthread-fix.patch: New file. > * gnu/local.mk (dist_patch_DATA): Register it. > * gnu/packages/cmake.scm (cmake-3.11): New public variable. [...] > +;; Recent Ceph requires Boost 1.66, which in turn requires CMake 3.11 for > +;; its updated "FindBoost.cmake" facility. > +(define-public cmake-3.11 The actual upgrade is for =E2=80=98core-updates=E2=80=99 as well I guess? > + (arguments > + `(,@(substitute-keyword-arguments (package-arguments cmake) > + ((#:phases phases) Or simply: (arguments (substitute-keyword-arguments =E2=80=A6)) Otherwise LGTM, thanks! Ludo=E2=80=99.