From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51024) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i1zMs-0000jN-7A for guix-patches@gnu.org; Sun, 25 Aug 2019 16:44:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i1zMq-0006KW-6D for guix-patches@gnu.org; Sun, 25 Aug 2019 16:44:06 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:36325) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i1zMo-0006FU-7b for guix-patches@gnu.org; Sun, 25 Aug 2019 16:44:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i1zMo-0002ix-4q for guix-patches@gnu.org; Sun, 25 Aug 2019 16:44:02 -0400 Subject: bug#37076: Contributing package wterm Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20190818205811.hcthypxpronmeb4d@cf0> Date: Sun, 25 Aug 2019 22:43:31 +0200 In-Reply-To: <20190818205811.hcthypxpronmeb4d@cf0> (ison@airmail.cc's message of "Sun, 18 Aug 2019 14:58:12 -0600") Message-ID: <87ftlpvuvg.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: ison Cc: 37076-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello ison, ison skribis: >>>From 3597ca9e62e004a27adff73ebfa572d41089a74d Mon Sep 17 00:00:00 2001 > From: ison > Date: Sun, 18 Aug 2019 14:48:04 -0600 > Subject: [PATCH] Add package wterm to terminals.scm > > --- > gnu/packages/terminals.scm | 53 ++++++++++++++++++++++++++++++++++++++ > 1 file changed, 53 insertions(+) Applied with the simple changes below and with a commit log that follows our convention. Thanks for the patch! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index fbd0bff843..bca8b14dad 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -1120,7 +1120,7 @@ while also supporting native scrolling and @command{tmux} control mode (sha256 (base32 "0g4lzmc1w6na81i6hny32xds4xfig4xzswzfijyi6p93a1226dv0")) - (file-name (git-file-name name version )))) + (file-name (git-file-name name version)))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) @@ -1134,8 +1134,11 @@ while also supporting native scrolling and @command{tmux} control mode ("wayland" ,wayland))) (arguments '(#:tests? #f - #:make-flags (list "-j1" ; Without -j1 it fails to find file libwld.a - "CC=gcc" + + ;; Without -j1 it fails to find file libwld.a. + #:parallel-build? #f + + #:make-flags (list "CC=gcc" (string-append "PREFIX=" %output) (string-append "TERMINFO=" (assoc-ref %outputs "out") --=-=-=--