New comment by tornaria on void-packages repository https://github.com/void-linux/void-packages/pull/34030#issuecomment-992467442 Comment: > Maybe the problem is with maxima? From the log here in musl ci: > > ``` > Trying to install dependants of maxima-ecl: > MISSING: glibc>=2.32_1 > Transaction aborted due to unresolved dependencies. > ``` I don't see anything like that here or in github CI. Maybe you have a broken maxima-ecl from an old compilation in your binpkgs? Can you try repackaging maxima in your xbps-src? Note that these packages are changing but I'm not incrementing revision so you must ensure they are recompiled to the current version. At this time the PR includes maxima-ecl (from #34273, IMO ready to merge) and updated lcalc (#34503, should be straightforward to merge). In my xbps-src musl chroot everything looks ok: ``` $ xbps-query -S maxima-ecl architecture: x86_64-musl automatic-install: yes build-options: ecl sbcl ~clisp filename-sha256: f89b6e1e219df1168fa03f41c256dc9138567413dbcfb86ca3d13593e54e4fc9 filename-size: 3646KB homepage: http://maxima.sourceforge.net install-date: 2021-12-13 04:12 UTC installed_size: 13MB license: GPL-2.0-only maintainer: Bosco Garcia metafile-sha256: 1d32aff1ce855c398975ea20e5a6ebffec68ace62e28aec46ce6bb28d293c090 pkgname: maxima-ecl pkgver: maxima-ecl-5.45.1_2 repository: /host/binpkgs/sagemath run_depends: maxima-5.45.1_2 ecl>=21.2.1_1 musl>=1.1.24_7 shlib-requires: libecl.so.21.2 libc.so short_desc: Computer Algebra System - compiled with ECL state: installed $ xbps-query -f maxima-ecl /usr/lib/maxima/5.45.1/binary-ecl/libmaxima-ecl.so /usr/lib/maxima/5.45.1/binary-ecl/maxima /usr/lib/maxima/5.45.1/binary-ecl/maxima.fas /usr/lib/ecl-21.2.1/maxima.fas -> /usr/lib/maxima/5.45.1/binary-ecl/maxima.fas $ ldd /usr/lib/maxima/5.45.1/binary-ecl/libmaxima-ecl.so ldd (0x7f23a7c7b000) libecl.so.21.2 => /lib/libecl.so.21.2 (0x7f23a6c67000) libc.so => ldd (0x7f23a7c7b000) libgmp.so.10 => /usr/lib64//libgmp.so.10 (0x7f23a6bea000) libgc.so.1 => /usr/lib64//libgc.so.1 (0x7f23a6b73000) libffi.so.7 => /usr/lib64//libffi.so.7 (0x7f23a6b67000) $ ldd /usr/lib/maxima/5.45.1/binary-ecl/maxima /lib/ld-musl-x86_64.so.1 (0x7f511e95f000) libmaxima-ecl.so => /usr/lib/maxima/5.45.1/binary-ecl/libmaxima-ecl.so (0x7f511dcba000) libecl.so.21.2 => /lib/libecl.so.21.2 (0x7f511d94b000) libc.so => /lib/ld-musl-x86_64.so.1 (0x7f511e95f000) libgmp.so.10 => /usr/lib64//libgmp.so.10 (0x7f511d8ce000) libgc.so.1 => /usr/lib64//libgc.so.1 (0x7f511d857000) libffi.so.7 => /usr/lib64//libffi.so.7 (0x7f511d84b000) $ ldd /usr/lib/maxima/5.45.1/binary-ecl/maxima.fas ldd (0x7efff7437000) libmaxima-ecl.so => /usr/lib/maxima/5.45.1/binary-ecl/libmaxima-ecl.so (0x7efff678c000) libecl.so.21.2 => /lib/libecl.so.21.2 (0x7efff641d000) libc.so => ldd (0x7efff7437000) libgmp.so.10 => /usr/lib64//libgmp.so.10 (0x7efff63a0000) libgc.so.1 => /usr/lib64//libgc.so.1 (0x7efff6329000) libffi.so.7 => /usr/lib64//libffi.so.7 (0x7efff631d000) ``` > > Btw, it seems Arch has it working with python3.10, shall we try as well? I'll try it again soon. Now that 9.5.beta8 merged a few required tickets it seems we need: - https://trac.sagemath.org/ticket/30766 - https://trac.sagemath.org/ticket/33013 Although there are still some issues (see https://trac.sagemath.org/ticket/30766#comment:67 and preceding comments).