From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mark H Weaver Newsgroups: gmane.lisp.guile.bugs Subject: bug#20272: Support reproducible builds Date: Thu, 11 Feb 2016 02:09:55 -0500 Message-ID: <87vb5vn2nw.fsf@netris.org> References: <87twws88hr.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1455174684 22962 80.91.229.3 (11 Feb 2016 07:11:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 11 Feb 2016 07:11:24 +0000 (UTC) Cc: 20272@debbugs.gnu.org To: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Thu Feb 11 08:11:14 2016 Return-path: Envelope-to: guile-bugs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1aTlPC-0007Vf-Ha for guile-bugs@m.gmane.org; Thu, 11 Feb 2016 08:11:10 +0100 Original-Received: from localhost ([::1]:46993 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTlPB-0005vi-KJ for guile-bugs@m.gmane.org; Thu, 11 Feb 2016 02:11:09 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:58676) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTlP7-0005vI-MN for bug-guile@gnu.org; Thu, 11 Feb 2016 02:11:06 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aTlP4-00011G-7u for bug-guile@gnu.org; Thu, 11 Feb 2016 02:11:05 -0500 Original-Received: from debbugs.gnu.org ([208.118.235.43]:54726) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTlP4-00011C-4K for bug-guile@gnu.org; Thu, 11 Feb 2016 02:11:02 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84) (envelope-from ) id 1aTlP3-0004K5-SX for bug-guile@gnu.org; Thu, 11 Feb 2016 02:11:01 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Mark H Weaver Original-Sender: "Debbugs-submit" Resent-CC: bug-guile@gnu.org Resent-Date: Thu, 11 Feb 2016 07:11:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 20272 X-GNU-PR-Package: guile X-GNU-PR-Keywords: Original-Received: via spool by 20272-submit@debbugs.gnu.org id=B20272.145517460916556 (code B ref 20272); Thu, 11 Feb 2016 07:11:01 +0000 Original-Received: (at 20272) by debbugs.gnu.org; 11 Feb 2016 07:10:09 +0000 Original-Received: from localhost ([127.0.0.1]:35634 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aTlOD-0004Iy-Jc for submit@debbugs.gnu.org; Thu, 11 Feb 2016 02:10:09 -0500 Original-Received: from world.peace.net ([50.252.239.5]:42599 ident=hope7) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aTlOB-0004Iq-Q8 for 20272@debbugs.gnu.org; Thu, 11 Feb 2016 02:10:08 -0500 Original-Received: from [10.1.10.78] (helo=jojen) by world.peace.net with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1aTlO5-0001Xc-UG; Thu, 11 Feb 2016 02:10:02 -0500 In-Reply-To: <87twws88hr.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Tue, 07 Apr 2015 13:48:16 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.90 (gnu/linux) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 208.118.235.43 X-BeenThere: bug-guile@gnu.org List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Original-Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.bugs:7958 Archived-At: ludo@gnu.org (Ludovic Court=C3=A8s) writes: > Currently .go files embed randomly-generated symbols stemming from > =E2=80=98syntax-session-id=E2=80=99, which prevents reproducible builds (= see > .) I've given this more thought, and I think I have a way that avoids session-ids altogether. Currently, we include both the session-id and a global gensym counter in the names of freshly generated marks and labels in psyntax.scm. Instead, let them include the module name and a per-module counter. More later... Mark