From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39944) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dnMlZ-0000ph-FW for guix-patches@gnu.org; Thu, 31 Aug 2017 06:32:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dnMlW-0004R0-CO for guix-patches@gnu.org; Thu, 31 Aug 2017 06:32:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55803) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dnMlW-0004Qw-97 for guix-patches@gnu.org; Thu, 31 Aug 2017 06:32:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dnMlW-00018E-3F for guix-patches@gnu.org; Thu, 31 Aug 2017 06:32:02 -0400 Subject: [bug#28271] [PATCH core-updates] gnu: groff: Make build reproducible. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170829055836.27037-1-dannym@scratchpost.org> Date: Thu, 31 Aug 2017 12:30:58 +0200 In-Reply-To: <20170829055836.27037-1-dannym@scratchpost.org> (Danny Milosavljevic's message of "Tue, 29 Aug 2017 07:58:36 +0200") Message-ID: <87r2vsuizh.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: Danny Milosavljevic Cc: 28271@debbugs.gnu.org Hi Danny, Danny Milosavljevic skribis: > * gnu/packages/groff.scm (groff)[arguments]: Add phase "setenv". > --- > gnu/packages/groff.scm | 9 ++++++++- > 1 file changed, 8 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/groff.scm b/gnu/packages/groff.scm > index 67dd1dbfa..6e1a60e9b 100644 > --- a/gnu/packages/groff.scm > +++ b/gnu/packages/groff.scm > @@ -56,7 +56,14 @@ > ("perl" ,perl) > ("psutils" ,psutils) > ("texinfo" ,texinfo))) > - (arguments '(#:parallel-build? #f)) ; parallel build fails > + (arguments > + `(#:parallel-build? #f ; parallel build fails > + #:phases > + (modify-phases %standard-phases > + (add-after 'unpack 'setenv > + (lambda _ > + (setenv "GS_GENERATE_UUIDS" "0") > + #t))))) OK for the brand new =E2=80=98core-updates=E2=80=99 branch. Thank you! Ludo=E2=80=99.