On 2022-11-02, Ludovic Courtès wrote: > Vagrant Cascadian skribis: >> On 2022-10-28, Vagrant Cascadian wrote: >>> I've been poking at updating guile-ssh to 0.16.0 and libssh to 0.10.4 in >>> guix, but hit a few blockers. >>> >>> Updating guile-ssh to 0.16.0 actually went mostly smoothly, except >>> guix-jupytertest suites fail. ... >>> Updating libssh to 0.10.4 mostly works, but breaks guile-ssh tests: >>> >>> https://github.com/artyom-poptsov/guile-ssh/issues/34 >>> >>> Updating libssh to 0.10.4 with tests disabled for guile-ssh, >>> guix-jupyter and kodi and kodi-wayland fail to build... >> >> 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) So regarding libssh... what I discovered is that libssh deprecates the DSA key algorithm (it is of dubious strenth, after all), and 0.10.x disables DSA by default. Passing -DWITH_DSA=on to re-enable DSA support in the libssh build helps guile-ssh pass most tests, but some tests still fail. Since libssh plans to entirely remove DSA support in future versions, may as well adapt sooner than later... For Debian at the moment, I've patched out the DSA code from the guile-ssh test suites, and that seems to work fine. More details on the upstream guile-ssh bug report referenced above... > 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. Clearly this has been a blocker for me... I don't have any systems where I use that functionality, and I haven't taken the time to set them up to test myself. Anyone willing to offer some "guix copy" testing to have greater confidence in updating guile-ssh? :) > And then feel free to push! (Guix-Jupyter has been failing tests for > unrelated reasons.) So, here we are... :) live well, vagrant