Re: Distributed verification of release tarballs using Guix? (was Re: Releasing 2.2.5?)

2019-07-25 Thread Ricardo Wurmus
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

Re: Distributed verification of release tarballs using Guix? (was Re: Releasing 2.2.5?)

2019-07-25 Thread Rob Browning
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

Support Websocket status code

2019-07-25 Thread Nala Ginrut
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