Hi Rob,
> Ludovic Courtès writes:
>
>> One issue is that “make dist” is non-deterministic because the archive
>> contains timestamps; I’m sure there of other sources of non-determinism
>> though, because “make dist” was not designed with that in mind.
>>
>> The non-source byproducts in release
Ricardo Wurmus writes:
> Ludovic and other folks in the Guile and Guix communities are
> participating in the reproducible builds effort since the first summit.
Oh, excellent. (Now that you mention it, I think I remember seeing Guix
mentioned, and had just forgotten.)
Thanks
--
Rob Browning
r
Hi folks!
The current response builder will reject status code less than 600:
---code-
((not (and (non-negative-integer? code) (< code 600)))
(bad-response "Bad code: ~a" code))
---
H