On 2022-11-02, Ludovic Courtès wrote: > Vagrant Cascadian skribis: >> On 2022-10-28, Vagrant Cascadian wrote: >>> Updating guile-ssh to 0.16.0 actually went mostly smoothly, except >>> guix-jupytertest suites fail. ... >> For clarity, I used: >> >> ./pre-inst-env guix build --keep-going $(./pre-inst-env guix refresh --list-dependent libssh guile-ssh | cut -d : -f 2 | sed -e 's,guix-daemon,guix,g' | tr ' ' '\n' | grep -v kodi | grep -v jupyter) > > You can also test Guix SSH functionality, to be on the safe side, for > example by running ‘guix copy’ on the ‘guix’ package built with these > new versions. Well, this being on the safe side has turned out to be quite the adventure... So, I attempted that in the newish wip-guile-ssh-0.16 branch, but getting test suite failures even without the guile-ssh patches, so hard to test that guix copy works... Tried updating guix to bd6d76b7a.... diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 2ffaa12247..6b3c47e5a1 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -165,7 +165,7 @@ (define-public guix ;; Note: the 'update-guix-package.scm' script expects this definition to ;; start precisely like this. (let ((version "1.4.0") - (commit "8e2f32cee982d42a79e53fc1e9aa7b8ff0514714") + (commit "bd6d76b8a44bb14dedaed070b7056f2f56c2e161") (revision 0)) (package (name "guix") @@ -182,7 +182,7 @@ (define-public guix (commit commit))) (sha256 (base32 - "042mipw2bp9lc75m9g5q6rdifrp8483cmk57kwrdps0i3vd590dl")) + "0hxv9p5zq4i4xfhd696n9jxrpslm7bf8i3c8zdgf79lvv9mbs43z")) (file-name (string-append "guix-" version "-checkout")))) (build-system gnu-build-system) (arguments The test suite failues are a bit long, but in case this short clip helps... FAIL: tests/guix-package ======================== + guix package --version guix package (GNU Guix) 1.4.0 Copyright (C) 2022 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. + module_dir=t-guix-package-11599 + profile=t-profile-11599 ... /tmp/guix-tests/store/y4dirvvs7f7dpzgyzbwaf4x3ijzqvk92-gmp-6.2.1.drv /tmp/guix-tests/store/lp4rpsrvji0y5idkam7hxfkw95d6rmld-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/7hhl5sa5w96qnwl7dqx6ycnz3sqz6rsp-gmp-6.2.1.tar.xz.drv /tmp/guix-tests/store/v3f6d36pvlh52mcfq3x6b3lx88kyk2cx-m4-1.4.18.drv /tmp/guix-tests/store/9s8fa4cpxcc45mh6q69c7kk927jpsnvr-m4-1.4.18.tar.xz.drv ++ guix package -L t-guix-package-11599 -s '^fileutils$' ++ grep '^name:' + test 'name: ocaml-fileutils' = '' + rm -f t-profile-11599 t-profile-11599.lock t-profile-11599-1-link t-guix-package-file-11599 + rm -rf t-guix-package-11599 t-home-11599 FAIL tests/guix-package.sh (exit status: 1) Is this at least the right approach? e.g. point guix at a commit where guile-ssh is updated? Is there anything special with the revision? As you can see from the wip-guile-ssh-0.16 branch, I tried revision "0.1" and then switched back to "0" ... (fearing clobbering a real-world "1" revision someday...). I pushed a wip branch just to be able to easily pull to a commit not on master... as I don't know how to do that locally. Presuming I can get guix to build successfully, do i then need to reconfigure the systems to use a guix-daemon with guile-ssh on both? ... and then run "guix copy" between the two systems? live well, vagrant