From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#27593: [PATCH] gnu: groff: Make build reproducible. Date: Sat, 09 Sep 2017 22:31:36 +0200 Message-ID: <87shfv8vh3.fsf@gnu.org> References: <20170706025451.312ddebe@scratchpost.org> <20170710163704.25613-1-dannym@scratchpost.org> <87fue3xqu7.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45620) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dqmQ7-0001zx-I1 for bug-guix@gnu.org; Sat, 09 Sep 2017 16:32:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dqmQ6-0002sB-PV for bug-guix@gnu.org; Sat, 09 Sep 2017 16:32:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49261) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dqmQ6-0002rp-LV for bug-guix@gnu.org; Sat, 09 Sep 2017 16:32:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dqmQ6-0006x7-CH for bug-guix@gnu.org; Sat, 09 Sep 2017 16:32:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87fue3xqu7.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Tue, 11 Jul 2017 11:31:12 +0200") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Danny Milosavljevic Cc: 27593@debbugs.gnu.org Hi Danny, ludo@gnu.org (Ludovic Court=C3=A8s) skribis: > 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))))) > > With a comment like Marius wrote, it=E2=80=99d be perfect; otherwise LGTM. > > However, since =E2=80=98core-updates=E2=80=99 is now building and we=E2= =80=99d like to make > progress on it, could you push it to =E2=80=98core-updates-next=E2=80=99 = or similar? Maybe now is the time to push this to =E2=80=98core-updates=E2=80=99? (I was just hit by this reproducibility issue for a PDF file made with groff=E2=80=A6) Cheers, Ludo=E2=80=99.