From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56514) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iqOXA-0007z5-AL for guix-patches@gnu.org; Sat, 11 Jan 2020 16:43:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iqOX9-0001RI-Cs for guix-patches@gnu.org; Sat, 11 Jan 2020 16:43:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:50837) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iqOX8-0001QV-Au for guix-patches@gnu.org; Sat, 11 Jan 2020 16:43:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iqOX8-0005Vm-8C for guix-patches@gnu.org; Sat, 11 Jan 2020 16:43:02 -0500 Subject: [bug#38995] [PATCH] gnu: Add python-git-multimail. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20200106201030.4520-1-mail@cbaines.net> Date: Sat, 11 Jan 2020 22:42:34 +0100 In-Reply-To: <20200106201030.4520-1-mail@cbaines.net> (Christopher Baines's message of "Mon, 6 Jan 2020 20:10:30 +0000") Message-ID: <87k15xu0tx.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: Christopher Baines Cc: 38995@debbugs.gnu.org Hi Chris! Christopher Baines skribis: > * gnu/packages/version-control.scm (python-git-multimail): New variable. [...] > + (substitute* "git-multimail/git_multimail.py" > + (("GIT_EXECUTABLE =3D 'git'") > + (string-append "GIT_EXECUTABLE =3D '" > + (assoc-ref inputs "git") "/bin/git" > + "'")) > + (("/usr/sbin/sendmail") > + (string-append (assoc-ref inputs "sendmail") > + "/usr/sbin/sendmail', > + '/usr/sbin/sendmail"))) The second clause is intriguing, but as long as it has the intended effect, LGTM! :-) Ludo=E2=80=99.