bug#56799: [PATCH 2/5] services: configuration: Add %unset-value exported variable.

2022-08-24 Thread Attila Lendvai
* gnu/services/configuration.scm (%unset-value): New variable. (normalize-field-type+def): Use it. (maybe-value-unset?): Use it. --- gnu/services/configuration.scm | 16 +--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/gnu/services/configuration.scm b/gnu/services/co

bug#56799: [PATCH 5/5] services: configuration: Change the value of the unset marker.

2022-08-24 Thread Attila Lendvai
The new value of %unset-value sticks out more when something goes wrong, and is also more unique; i.e. easier to search for. --- gnu/services/configuration.scm | 5 +++-- gnu/services/messaging.scm | 2 +- tests/services/configuration.scm | 2 +- 3 files changed, 5 insertions(+), 4 deletio

bug#56799: [PATCH 3/5] services: configuration: Add maybe-value exported procedure.

2022-08-24 Thread Attila Lendvai
* gnu/services/configuration.scm (maybe-value): New procedure. --- gnu/services/configuration.scm | 10 ++ 1 file changed, 10 insertions(+) diff --git a/gnu/services/configuration.scm b/gnu/services/configuration.scm index a9426066b9..60965486a7 100644 --- a/gnu/services/configuration.scm

bug#56799: [PATCH 1/5] services: configuration: Add a 'maybe-value-set?' procedure.

2022-08-24 Thread Attila Lendvai
From: Maxim Cournoyer * gnu/services/configuration.scm (maybe-value-set?): New procedure. * doc/guix.texi (Complex Configurations): Document it. Remove comment showing usage of 'maybe-string' with a default value, which doesn't make sense. Co-authored-by: Attila Lendvai --- doc/guix.texi

bug#56799: [PATCH 4/5] services: Use the new maybe/unset API.

2022-08-24 Thread Attila Lendvai
* gnu/home/services/ssh.scm (serialize-address-family): Use the public API of the maybe infrastructure. * gnu/services/file-sharing.scm (serialize-maybe-string): Use maybe-value. (serialize-maybe-file-object): Use maybe-value-set?. * gnu/services/getmail.scm (getmail-retriever-configuration): Don't

bug#56322: Ruby packaging issues

2022-08-24 Thread Remco van 't Veer
Maxime Devos wrote on 30 Jun 13:15 +0200 > I noticed that: > > * Ruby has Autotools ./configure scripts that aren't regenerated. I'll make a patch for that. I also noticed unbundling of libffi is not applied to all versions, will fix that too. > * Ruby bundles zlib. Can you point out where

bug#56322: [PATCH 0/2] Ruby packaging issues

2022-08-24 Thread Remco van 't Veer
Guix style messed up the formatting and thus the diff a bit. Sorry about that. Remco van 't Veer (2): gnu: ruby: trigger autotools bootstrap gnu: ruby: fix unbundling of libffi for inheriting rubies gnu/packages/ruby.scm | 206 -- 1 file changed, 98 i

bug#56322: [PATCH 1/2] gnu: ruby: trigger autotools bootstrap

2022-08-24 Thread Remco van 't Veer
* gnu/packages/ruby.scm (ruby-2.6, ruby-2.7): Remove autotools artifacts --- gnu/packages/ruby.scm | 129 -- 1 file changed, 62 insertions(+), 67 deletions(-) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index cc95bd8d6e..ad8ef3d390 100644 ---

bug#56322: [PATCH 2/2] gnu: ruby: fix unbundling of libffi for inheriting rubies

2022-08-24 Thread Remco van 't Veer
* gnu/packages/ruby.scm (ruby-2.4, ruby-2.5, ruby-3.0, ruby-3.1): Inherit package-source to ensure inclusion of unbundling snippet --- gnu/packages/ruby.scm | 77 --- 1 file changed, 36 insertions(+), 41 deletions(-) diff --git a/gnu/packages/ruby.scm b/gn

bug#56322: Ruby packaging issues

2022-08-24 Thread Maxime Devos
On 24-08-2022 17:24, Remco van 't Veer wrote: [...] * Ruby bundles zlib. Can you point out where it is in the source tree? Looking at the sources I can only find a (very beefy) wrapper around zlib which seems to implement all kinds of zlib stuff but also depends on the zlib library. I dun

bug#56322: Ruby packaging issues

2022-08-24 Thread Maxime Devos
On 24-08-2022 17:24, Remco van 't Veer wrote: * Ruby contains some things generated by bison or such. It seems the generated parse.c file (from parse.y) is included in the tarballs as a service to workaround a bootstrap problem; generating the parser requires ruby. See also: https://git

bug#57391: "error: connect*: Connection timed out" when using 6+ jobs to fetch substitutes

2022-08-24 Thread Maxim Cournoyer
Hello, On a machine configured with 20 builders: --8<---cut here---start->8--- (guix-service-type config => (guix-configuration (inherit config) (build-accounts 20)

bug#57391: "error: connect*: Connection timed out" when using 6+ jobs to fetch substitutes

2022-08-24 Thread Maxime Devos
On 24-08-2022 22:42, Maxim Cournoyer wrote: It fails like the above when the number of jobs is 6 or higher, but proceeds without error when the number of jobs is 5 or less. I do not think the network to be at caused, as everything is cabled and the link is healthy and fast. Thanks, I was get

bug#56799: (gnu services configuration) usage of *unspecified* is problematic

2022-08-24 Thread Maxim Cournoyer
Hi Attila, Attila Lendvai writes: > The new value of %unset-value sticks out more when something goes wrong, and > is also more unique; i.e. easier to search for. > --- > gnu/services/configuration.scm | 5 +++-- > gnu/services/messaging.scm | 2 +- > tests/services/configuration.scm |

bug#56799: (gnu services configuration) usage of *unspecified* is problematic

2022-08-24 Thread Maxim Cournoyer
Hi, Attila Lendvai writes: > * gnu/home/services/ssh.scm (serialize-address-family): Use the public API of > the maybe infrastructure. > * gnu/services/file-sharing.scm (serialize-maybe-string): Use maybe-value. > (serialize-maybe-file-object): Use maybe-value-set?. > * gnu/services/getmail.scm