From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:39525) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1ho2a3-0002Zv-57 for guix-patches@gnu.org; Thu, 18 Jul 2019 05:20:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ho2a2-0000iM-4C for guix-patches@gnu.org; Thu, 18 Jul 2019 05:20:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:44600) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ho2a2-0000iF-19 for guix-patches@gnu.org; Thu, 18 Jul 2019 05:20:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ho2a1-0004tC-Ri for guix-patches@gnu.org; Thu, 18 Jul 2019 05:20:01 -0400 Subject: [bug#36638] [PATCH v2 1/2] gnu: Add websocketpp. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= In-Reply-To: <87tvbkpm4b.fsf_-_@sdf.lonestar.org> (Jakob L. Kreuze's message of "Wed, 17 Jul 2019 14:11:16 -0400") References: <87o91xbz4p.fsf@sdf.lonestar.org> <87k1clbz2i.fsf@sdf.lonestar.org> <8736j7l155.fsf@gnu.org> <87r26rjm3q.fsf@gnu.org> <87y30wpm68.fsf_-_@sdf.lonestar.org> <87tvbkpm4b.fsf_-_@sdf.lonestar.org> Date: Thu, 18 Jul 2019 11:18:04 +0200 Message-ID: <87v9vzg0qb.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: "Jakob L. Kreuze" Cc: 36638@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi! zerodaysfordays@sdf.lonestar.org (Jakob L. Kreuze) skribis: > * gnu/packages/web.scm (websocketpp): New variable. Applied with the minor changes below, in particular returning #t from the build phase. Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index e61bbba695..f1083505ee 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -872,16 +872,15 @@ for efficient socket-like bidirectional reliable communication channels.") (build-system cmake-build-system) (inputs `(("boost" ,boost) ("openssl" ,openssl))) - (arguments '(#:configure-flags - '("-DBUILD_TESTS=ON") + (arguments '(#:configure-flags '("-DBUILD_TESTS=ON") #:phases (modify-phases %standard-phases (add-after 'install 'remove-tests - (lambda* (#:key outputs - #:allow-other-keys) + (lambda* (#:key outputs #:allow-other-keys) (let* ((install-dir (assoc-ref outputs "out")) (bin-dir (string-append install-dir "/bin"))) - (delete-file-recursively bin-dir))))))) + (delete-file-recursively bin-dir) + #t)))))) (home-page "https://www.zaphoyd.com/websocketpp/") (synopsis "C++ library implementing the WebSocket protocol") (description "WebSocket++ is a C++ library that can be used to implement --=-=-=--