diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 695e1a1d5c..c6656d9a6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,8 +51,10 @@ jobs: uses: ./.github/workflows/container.yml outputs: + # Output regeneration temporarily disabled — remove the `false` line below to re-enable. if: | - !cancelled() + false + && !cancelled() && contains(needs.*.result, 'success') && !contains(needs.*.result, 'failure') && (needs.changes.outputs.outputs == 'true' diff --git a/.gitignore b/.gitignore index 2434f4d3cb..93ff6f8444 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,5 @@ __pycache__ /view /.spack-env /.venv +.idea +CLAUDE.md diff --git a/common/setup.rst b/common/setup.rst index 668d9e85da..9ce0ca2338 100644 --- a/common/setup.rst +++ b/common/setup.rst @@ -6,7 +6,7 @@ and then set Spack up like this:: - git clone --depth=2 --branch=releases/v1.1 https://github.com/spack/spack + git clone --depth=2 --branch=releases/v1.2 https://github.com/spack/spack . spack/share/spack/setup-env.sh spack repo update builtin --tag v2025.11.0 spack tutorial -y diff --git a/outputs/basics.sh b/outputs/basics.sh index db2e3a26b7..a4791c7688 100755 --- a/outputs/basics.sh +++ b/outputs/basics.sh @@ -9,7 +9,7 @@ project="$(dirname "$0")" export SPACK_COLOR=never -# basic installation +# Setting Up Spack example basics/clone "git clone --depth=2 --branch=$tutorial_branch https://github.com/spack/spack.git ~/spack" example basics/clone "cd ~/spack" @@ -21,61 +21,65 @@ spack config add "config:suppress_gpg_warnings:true" example basics/source-setup ". share/spack/setup-env.sh" -# spack list +spack repo update + +# Installing Packages example basics/list "spack list" example basics/list-py "spack list 'py-*'" # spack install -example basics/gmake "spack install gmake" +example --tee basics/gmake "spack install gmake" example basics/compiler-list "spack compilers" -example basics/mirror "spack mirror add tutorial /mirror" -example basics/mirror "spack buildcache keys --install --trust" - -example basics/zlib-clang "spack install zlib-ng %clang" +example basics/mirror "spack mirror add --unsigned tutorial /mirror" +#example basics/mirror "spack buildcache keys --install --trust" +# The Spec Syntax example basics/versions-zlib "spack versions zlib-ng" -example basics/zlib-2.0.7 "spack install zlib-ng@2.0.7" -example basics/zlib-gcc-10 "spack install zlib-ng %gcc@10" +example --tee basics/zlib-2.0.7 "spack install zlib-ng@2.0.7" -example basics/zlib-O3 "spack install zlib-ng@2.0.7 cflags=-O3" - -example basics/find "spack find" -example basics/find-lf "spack find -lf" +example basics/info-zlib "spack info --no-dependencies --no-versions zlib-ng" -example basics/tcl "spack install tcl" +example --tee basics/zlib-ipo "spack install zlib-ng +ipo" +example --tee basics/zlib-build-type "spack install zlib-ng build_type=Debug" -example basics/tcl-zlib-clang "spack install tcl ^zlib-ng@2.0.7 %clang" +example --tee basics/zlib-clang "spack install zlib-ng %clang" +example --tee basics/zlib-gcc-14 "spack install zlib-ng %gcc@14" -zlib_hash=$(spack find --format "{hash:3}" zlib-ng cflags=-O3) -example basics/tcl-zlib-hash "spack install tcl ^/${zlib_hash}" +example basics/spec-tcl-zlib-clang "spack spec -l tcl ^zlib-ng@2.0.7 %clang" +example --tee basics/tcl-zlib-clang "spack install tcl ^zlib-ng@2.0.7 %clang" -example basics/find-ldf "spack find -ldf" +# Refer to the zlib-ng@2.0.7 %clang build we just installed by its hash +zlib_hash=$(spack find --format "{hash:3}" zlib-ng@2.0.7 %clang) +example basics/spec-tcl-zlib-hash "spack spec tcl ^/${zlib_hash}" example basics/graph-tcl "spack graph tcl" +example basics/providers-mpi "spack providers mpi" example basics/hdf5-spec "spack spec hdf5" -example basics/hdf5 "spack install hdf5" -example basics/hdf5-no-mpi "spack install hdf5~mpi" - -example basics/hdf5-hl-mpi "spack install hdf5+hl+mpi ^mpich" - -example basics/find-ldf-2 "spack find -ldf" - -example basics/trilinos "spack install trilinos" - -example basics/trilinos-hdf5 "spack install trilinos +hdf5 ^hdf5+hl+mpi ^mpich" +example --tee basics/hdf5 "spack install hdf5" +example --tee basics/hdf5-no-mpi "spack install hdf5~mpi" -example basics/find-d-trilinos "spack find -d trilinos" - -example basics/graph-trilinos "spack graph trilinos" +example --tee basics/hdf5-mpich "spack install hdf5 ^mpich" +example basics/spec-hdf5-compilers "spack spec hdf5 %c,cxx=clang %fortran=gcc" +# Querying Installations +example basics/find "spack find" +example basics/find-l "spack find -l" example basics/find-d-tcl "spack find -d tcl" +example basics/find-dep-mpich "spack find ^mpich" +example basics/find-px "spack find -px" +# A Realistic Example +example --tee basics/trilinos "spack install trilinos" +example --tee basics/trilinos-hdf5 "spack install trilinos +hdf5 ^mpich" +example basics/trilinos-find-mpich "spack find ^mpich" + +# Uninstalling Packages example basics/find-zlib "spack find zlib-ng" -example basics/uninstall-zlib "spack uninstall -y zlib-ng %gcc@10" +example basics/uninstall-zlib "spack uninstall -y zlib-ng %gcc@14" example basics/find-lf-zlib "spack find -lf zlib-ng" @@ -88,18 +92,11 @@ example --expect-error basics/uninstall-ambiguous "spack uninstall trilinos" trilinos_hash="$(spack find --format '{hash:3}' trilinos ^openmpi)" echo y | example basics/uninstall-specific "spack uninstall /$trilinos_hash" -example basics/find-dep-mpich "spack find ^mpich" - -example basics/find-O3 "spack find cflags=-O3" - -example basics/find-px "spack find -px" - -example basics/compilers "spack compilers" - -example basics/install-gcc-12.1.0 "spack install gcc@12" +# Customizing Compilers +example --tee basics/install-gcc-16 "spack install gcc@16" example basics/compilers-2 "spack compilers" -example basics/spec-zziplib "spack spec zziplib %gcc@12" +example basics/spec-zziplib "spack spec zziplib %gcc@16" -echo y | example basics/compiler-uninstall 'spack uninstall gcc@12' +example basics/compiler-uninstall 'spack uninstall -y gcc@16' diff --git a/outputs/basics/clone.out b/outputs/basics/clone.out index 89820a1c89..6daf55feae 100644 --- a/outputs/basics/clone.out +++ b/outputs/basics/clone.out @@ -1,9 +1,9 @@ -$ git clone --depth=2 --branch=releases/v1.1 https://github.com/spack/spack.git ~/spack +$ git clone --depth=2 --branch=releases/v1.2 https://github.com/spack/spack.git ~/spack Cloning into '/home/spack/spack'... -remote: Enumerating objects: 2340, done.K -remote: Counting objects: 100% (2340/2340), done.K -remote: Compressing objects: 100% (1583/1583), done.K -remote:nTotale2340 (delta2311),3reused 1329 (delta 237), pack-reused 0 (from 0)K -Receiving objects: 100% (2340/2340), 5.30 MiB | 20.25 MiB/s, done. -Resolving deltas: 100% (311/311), done. +remote: Enumerating objects: 2411, done.K +remote: Counting objects: 100% (2411/2411), done.K +remote: Compressing objects: 100% (1617/1617), done.K +remote:nTotale2411 (delta2326),4reused 1327 (delta 249), pack-reused 0 (from 0)K +Receiving objects: 100% (2411/2411), 5.48 MiB | 12.50 MiB/s, done. +Resolving deltas: 100% (326/326), done. $ cd ~/spack diff --git a/outputs/basics/compiler-list.out b/outputs/basics/compiler-list.out index d6743d02bb..025c50b8f1 100644 --- a/outputs/basics/compiler-list.out +++ b/outputs/basics/compiler-list.out @@ -1,7 +1,7 @@ $ spack compilers ==> Available compilers --- gcc ubuntu22.04-x86_64 --------------------------------------- -[e] gcc@11.4.0 [e] gcc@10.5.0 +-- gcc ubuntu26.04-x86_64 --------------------------------------- +[e] gcc@15.2.0 [e] gcc@14.3.0 --- llvm ubuntu22.04-x86_64 -------------------------------------- -[e] llvm@14.0.0 +-- llvm ubuntu26.04-x86_64 -------------------------------------- +[e] llvm@21.1.8 diff --git a/outputs/basics/compiler-uninstall.out b/outputs/basics/compiler-uninstall.out index 9078ef9a00..b545da5d52 100644 --- a/outputs/basics/compiler-uninstall.out +++ b/outputs/basics/compiler-uninstall.out @@ -1,6 +1,2 @@ -$ spack uninstall gcc@12 -y - -- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- - fmnvqo4 gcc@12.3.0 - -==> 1 packages will be uninstalled. Do you want to proceed? [y/N] ==> Successfully uninstalled gcc@12.3.0~binutils+bootstrap~graphite~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3/fmnvqo4 +$ spack uninstall -y gcc@16 +==> Successfully uninstalled gcc@16.1.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs+profiled+strip build_system=autotools build_type=Release languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3/vlwdxlj diff --git a/outputs/basics/compilers-2.out b/outputs/basics/compilers-2.out index d77df179cd..00c8f9f5d2 100644 --- a/outputs/basics/compilers-2.out +++ b/outputs/basics/compilers-2.out @@ -1,7 +1,7 @@ $ spack compilers ==> Available compilers --- gcc ubuntu22.04-x86_64 --------------------------------------- -[e] gcc@11.4.0 [e] gcc@10.5.0 [+] gcc@12.3.0 +-- gcc ubuntu26.04-x86_64 --------------------------------------- +[e] gcc@15.2.0 [e] gcc@14.3.0 [+] gcc@16.1.0 --- llvm ubuntu22.04-x86_64 -------------------------------------- -[e] llvm@14.0.0 +-- llvm ubuntu26.04-x86_64 -------------------------------------- +[e] llvm@21.1.8 diff --git a/outputs/basics/compilers.out b/outputs/basics/compilers.out deleted file mode 100644 index d6743d02bb..0000000000 --- a/outputs/basics/compilers.out +++ /dev/null @@ -1,7 +0,0 @@ -$ spack compilers -==> Available compilers --- gcc ubuntu22.04-x86_64 --------------------------------------- -[e] gcc@11.4.0 [e] gcc@10.5.0 - --- llvm ubuntu22.04-x86_64 -------------------------------------- -[e] llvm@14.0.0 diff --git a/outputs/basics/find-d-tcl.out b/outputs/basics/find-d-tcl.out index 80044ded29..33822939c7 100644 --- a/outputs/basics/find-d-tcl.out +++ b/outputs/basics/find-d-tcl.out @@ -1,30 +1,12 @@ $ spack find -d tcl --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=clang@14.0.0 ------------ +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- tcl@8.6.17 - compiler-wrapper@1.0 - glibc@2.35 + compiler-wrapper@1.1.0 + gcc@15.2.0 + gcc-runtime@15.2.0 + glibc@2.43 gmake@4.4.1 - gcc@11.4.0 - gcc-runtime@11.4.0 - llvm@14.0.0 zlib-ng@2.0.7 + llvm@21.1.8 - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- -tcl@8.6.17 - compiler-wrapper@1.0 - gcc@11.4.0 - gcc-runtime@11.4.0 - glibc@2.35 - gmake@4.4.1 - zlib-ng@2.0.7 - -tcl@8.6.17 - compiler-wrapper@1.0 - gcc@11.4.0 - gcc-runtime@11.4.0 - glibc@2.35 - gmake@4.4.1 - zlib-ng@2.2.4 - -==> 3 installed packages +==> 1 installed package diff --git a/outputs/basics/find-d-trilinos.out b/outputs/basics/find-d-trilinos.out deleted file mode 100644 index 9af4da040a..0000000000 --- a/outputs/basics/find-d-trilinos.out +++ /dev/null @@ -1,118 +0,0 @@ -$ spack find -d trilinos --- linux-ubuntu22.04-x86_64_v3 / %c,cxx,fortran=gcc@11.4.0 ------ -trilinos@16.1.0 - cmake@3.31.9 - curl@8.15.0 - libssh2@1.11.1 - mbedtls@2.28.9 - nghttp2@1.48.0 - diffutils@3.12 - openssl@3.6.0 - ca-certificates-mozilla@2025-08-12 - ncurses@6.5-20250705 - zlib-ng@2.0.7 - compiler-wrapper@1.0 - gcc@11.4.0 - gcc-runtime@11.4.0 - glibc@2.35 - gmake@4.4.1 - hwloc@2.12.2 - libpciaccess@0.17 - util-macros@1.20.1 - libxml2@2.13.5 - libiconv@1.18 - xz@5.6.3 - pkgconf@2.5.1 - kokkos@4.5.01 - kokkos-kernels@4.5.01 - openblas@0.3.30 - openmpi@5.0.8 - autoconf@2.72 - m4@1.4.20 - libsigsegv@2.14 - automake@1.16.5 - libevent@2.1.12 - libtool@2.4.7 - findutils@4.10.0 - gettext@0.23.1 - tar@1.35 - pigz@2.8 - zstd@1.5.7 - numactl@2.0.18 - openssh@9.9p1 - krb5@1.21.3 - bison@3.8.2 - libedit@3.1-20240808 - libxcrypt@4.4.38 - perl@5.42.0 - berkeley-db@18.1.40 - bzip2@1.0.8 - gdbm@1.25 - readline@8.3 - pmix@6.0.0 - prrte@4.0.0 - flex@2.6.3 - -trilinos@16.1.0 - cmake@3.31.9 - curl@8.15.0 - nghttp2@1.48.0 - diffutils@3.12 - openssl@3.6.0 - ca-certificates-mozilla@2025-08-12 - perl@5.42.0 - berkeley-db@18.1.40 - bzip2@1.0.8 - gdbm@1.25 - ncurses@6.5-20250705 - zlib-ng@2.2.4 - compiler-wrapper@1.0 - gcc@11.4.0 - gcc-runtime@11.4.0 - glibc@2.35 - gmake@4.4.1 - hdf5@1.14.6 - pkgconf@2.5.1 - hwloc@2.12.2 - libpciaccess@0.17 - util-macros@1.20.1 - libxml2@2.13.5 - libiconv@1.18 - xz@5.6.3 - kokkos@4.5.01 - cmake@3.31.9 - curl@8.15.0 - libssh2@1.11.1 - mbedtls@2.28.9 - openssl@3.6.0 - perl@5.42.0 - zlib-ng@2.0.7 - kokkos-kernels@4.5.01 - mpich@4.3.2 - findutils@4.10.0 - gettext@0.23.1 - libxml2@2.13.5 - tar@1.35 - pigz@2.8 - libfabric@2.3.1 - yaksa@0.4 - autoconf@2.72 - automake@1.16.5 - libtool@2.4.7 - m4@1.4.20 - libsigsegv@2.14 - python@3.14.0 - expat@2.7.3 - libbsd@0.12.2 - libmd@1.1.0 - gettext@0.23.1 - tar@1.35 - pigz@2.8 - libffi@3.5.2 - readline@8.3 - sqlite@3.50.4 - util-linux-uuid@2.41 - zstd@1.5.7 - openblas@0.3.30 - -==> 2 installed packages diff --git a/outputs/basics/find-dep-mpich.out b/outputs/basics/find-dep-mpich.out index 3a4b7bc329..4a50dec501 100644 --- a/outputs/basics/find-dep-mpich.out +++ b/outputs/basics/find-dep-mpich.out @@ -1,7 +1,4 @@ $ spack find ^mpich --- linux-ubuntu22.04-x86_64_v3 / %c,cxx,fortran=gcc@11.4.0 ------ -trilinos@16.1.0 - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@11.4.0 ------------------ +-- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ hdf5@1.14.6 -==> 2 installed packages +==> 1 installed package diff --git a/outputs/basics/find-l.out b/outputs/basics/find-l.out new file mode 100644 index 0000000000..c54ae7cd9c --- /dev/null +++ b/outputs/basics/find-l.out @@ -0,0 +1,25 @@ +$ spack find -l +-- linux-ubuntu26.04-x86_64 / no compilers ---------------------- +cl66sen gcc@15.2.0 ublhg65 glibc@2.43 + +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx,fortran=gcc@15.2.0 ------ +xkilhym mpich@5.0.1 qfut5qq openmpi@5.0.10 + +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=clang@21.1.8 ------------ +kie72sp zlib-ng@2.0.7 5dji3nx zlib-ng@2.3.3 + +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- +slhcf4i zlib-ng@2.3.3 + +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- +sle3ix4 gettext@1.0 ldqeqfw krb5@1.22.2 m6yx5j3 openssh@10.3p1 53i7gbs tcl@8.6.17 g72d7i3 zlib-ng@2.3.3 6l3ycpy zlib-ng@2.3.3 +ujctyey hwloc@2.13.0 ekvivpv ncurses@6.6 33yozp5 openssl@3.6.1 aeoqp4e zlib-ng@2.0.7 t7jnrlg zlib-ng@2.3.3 63aruxk zstd@1.5.7 + +-- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ +cbtgjrh bzip2@1.0.8 7cwv3st hdf5@1.14.6 oopqoag libevent@2.1.12 qzkk5ym libpciaccess@0.17 2t2useu numactl@2.0.19 ycyqykw pmix@6.1.0 hhjyyqy xz@5.8.3 +cdyuto2 gmake@4.4.1 jceyzq7 hdf5@1.14.6 itb4a2s libfabric@2.5.1 bkzcu2s libxcrypt@4.5.2 afklka7 pigz@2.8 nldxmxw prrte@4.1.0 +as6mmcj hdf5@1.14.6 uwyh3xy libedit@3.1-20251016 vbwvgwx libiconv@1.18 ujlg2ua libxml2@2.15.3 yvl6jpi pkgconf@2.5.1 f5xe4px tar@1.35 + +-- linux-ubuntu26.04-x86_64_v3 / no compilers ------------------- +mmywg7x compiler-wrapper@1.1.0 5zrvmb3 gcc@14.3.0 yjlog5x gcc@15.2.0 yhhe2we gcc-runtime@15.2.0 xm76mt3 gcc-runtime@15.2.0 yc4n2pp glibc@2.43 px4mv6l llvm@21.1.8 +==> 45 installed packages diff --git a/outputs/basics/find-ldf-2.out b/outputs/basics/find-ldf-2.out deleted file mode 100644 index 8afd64cf4e..0000000000 --- a/outputs/basics/find-ldf-2.out +++ /dev/null @@ -1,1262 +0,0 @@ -$ spack find -ldf --- linux-ubuntu22.04-x86_64 / no compilers ---------------------- -rpw3buk gcc@11.4.0 - -vjnqll7 glibc@2.35 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx,fortran=gcc@11.4.0 ------ -amwozyi mpich@4.3.2 -ntccuj2 compiler-wrapper@1.0 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -5trxrsw libxml2@2.13.5 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -pmdeyoy hwloc@2.12.2 -ncdxq3j ncurses@6.5-20250705 -n2l4cks libfabric@2.3.1 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -lguldtj libxml2@2.13.5 -qtepnkr libiconv@1.18 -yzaocbs xz@5.6.3 -zk6kesh zlib-ng@2.2.4 -f4qiprw pkgconf@2.5.1 -zuutzfx yaksa@0.4 -r3ant5t autoconf@2.72 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -6ib4pvm automake@1.16.5 -yt7ajy4 libtool@2.4.7 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -bs5ujst libsigsegv@2.14 -pazbuxs python@3.14.0 -7yr5v6w expat@2.7.3 -ucrhsyw libbsd@0.12.2 -gth3ii5 libmd@1.1.0 -aq7qwy6 gdbm@1.25 -xxxc56n gettext@0.23.1 -e3ajmyq tar@1.35 -zjrnsfo pigz@2.8 -zgro4tw libffi@3.5.2 -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -c6d2zlj readline@8.3 -a4zeurp sqlite@3.50.4 -n45otd3 util-linux-uuid@2.41 -foiizhd zstd@1.5.7 - -tqxbnvo openmpi@5.0.8 -fgsf5ij autoconf@2.72 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -bs5ujst libsigsegv@2.14 -pzmnwzm automake@1.16.5 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -4hos372 hwloc@2.12.2 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -5trxrsw libxml2@2.13.5 -qtepnkr libiconv@1.18 -yzaocbs xz@5.6.3 -ncdxq3j ncurses@6.5-20250705 -lprginh libevent@2.1.12 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -yt7ajy4 libtool@2.4.7 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzbm5q6 numactl@2.0.18 -cxdcxo5 openssh@9.9p1 -hnmy4fw krb5@1.21.3 -n7yzkyl bison@3.8.2 -hdzcfgi libedit@3.1-20240808 -yiij42p libxcrypt@4.4.38 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -f4qiprw pkgconf@2.5.1 -yqlblh6 pmix@6.0.0 -buin62m prrte@4.0.0 -gmhq65u flex@2.6.3 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=clang@14.0.0 ------------ -ibbzvxt tcl@8.6.17 -ntccuj2 compiler-wrapper@1.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qr2e4rd llvm@14.0.0 -um7p6tr zlib-ng@2.0.7 - -um7p6tr zlib-ng@2.0.7 -ntccuj2 compiler-wrapper@1.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qr2e4rd llvm@14.0.0 - -ct2r7xm zlib-ng@2.2.4 -ntccuj2 compiler-wrapper@1.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qr2e4rd llvm@14.0.0 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@10.5.0 -------------- -updxeye zlib-ng@2.2.4 -ntccuj2 compiler-wrapper@1.0 -ntkvysy gcc@10.5.0 -ahapkrs gcc-runtime@10.5.0 -qg7qyaz glibc@2.35 -ufbescp gmake@4.4.1 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- -vdgigsw berkeley-db@18.1.40 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -n7yzkyl bison@3.8.2 -ntccuj2 compiler-wrapper@1.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 - -dmmnd4u cmake@3.31.9 -ntccuj2 compiler-wrapper@1.0 -jtps3jq curl@8.15.0 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -f4qiprw pkgconf@2.5.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ncdxq3j ncurses@6.5-20250705 -zk6kesh zlib-ng@2.2.4 - -ivvor7v cmake@3.31.9 -ntccuj2 compiler-wrapper@1.0 -isdtvvd curl@8.15.0 -txa2olx libssh2@1.11.1 -yzaocbs xz@5.6.3 -bz3ghzh mbedtls@2.28.9 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -f4qiprw pkgconf@2.5.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ncdxq3j ncurses@6.5-20250705 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -jtps3jq curl@8.15.0 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 - -isdtvvd curl@8.15.0 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -txa2olx libssh2@1.11.1 -yzaocbs xz@5.6.3 -bz3ghzh mbedtls@2.28.9 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -7yr5v6w expat@2.7.3 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ucrhsyw libbsd@0.12.2 -gth3ii5 libmd@1.1.0 - -gmhq65u flex@2.6.3 -n7yzkyl bison@3.8.2 -ntccuj2 compiler-wrapper@1.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -5trxrsw libxml2@2.13.5 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ncdxq3j ncurses@6.5-20250705 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 - -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 -5trxrsw libxml2@2.13.5 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ncdxq3j ncurses@6.5-20250705 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 - -xxxc56n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 -lguldtj libxml2@2.13.5 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 -ncdxq3j ncurses@6.5-20250705 -e3ajmyq tar@1.35 -zjrnsfo pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 - -4hos372 hwloc@2.12.2 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -5trxrsw libxml2@2.13.5 -qtepnkr libiconv@1.18 -yzaocbs xz@5.6.3 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 - -pmdeyoy hwloc@2.12.2 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -lguldtj libxml2@2.13.5 -qtepnkr libiconv@1.18 -yzaocbs xz@5.6.3 -zk6kesh zlib-ng@2.2.4 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 - -hnmy4fw krb5@1.21.3 -n7yzkyl bison@3.8.2 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 -ntccuj2 compiler-wrapper@1.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -irvryts findutils@4.10.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -5trxrsw libxml2@2.13.5 -ncdxq3j ncurses@6.5-20250705 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -hdzcfgi libedit@3.1-20240808 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -f4qiprw pkgconf@2.5.1 - -zgro4tw libffi@3.5.2 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -lxvpwti m4@1.4.20 -ntccuj2 compiler-wrapper@1.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -bs5ujst libsigsegv@2.14 - -ncdxq3j ncurses@6.5-20250705 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -f4qiprw pkgconf@2.5.1 - -ft5kpbd nghttp2@1.48.0 -ntccuj2 compiler-wrapper@1.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -f4qiprw pkgconf@2.5.1 - -cxdcxo5 openssh@9.9p1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -hnmy4fw krb5@1.21.3 -n7yzkyl bison@3.8.2 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -5trxrsw libxml2@2.13.5 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -f4qiprw pkgconf@2.5.1 -hdzcfgi libedit@3.1-20240808 -yiij42p libxcrypt@4.4.38 -ncdxq3j ncurses@6.5-20250705 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 - -pazbuxs python@3.14.0 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -ntccuj2 compiler-wrapper@1.0 -7yr5v6w expat@2.7.3 -ucrhsyw libbsd@0.12.2 -gth3ii5 libmd@1.1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -aq7qwy6 gdbm@1.25 -xxxc56n gettext@0.23.1 -qtepnkr libiconv@1.18 -lguldtj libxml2@2.13.5 -e3ajmyq tar@1.35 -zjrnsfo pigz@2.8 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -zgro4tw libffi@3.5.2 -ncdxq3j ncurses@6.5-20250705 -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -f4qiprw pkgconf@2.5.1 -c6d2zlj readline@8.3 -a4zeurp sqlite@3.50.4 -n45otd3 util-linux-uuid@2.41 -yzaocbs xz@5.6.3 -zk6kesh zlib-ng@2.2.4 -foiizhd zstd@1.5.7 - -x74vmgr tcl@8.6.17 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -tsq4fjj tcl@8.6.17 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -zk6kesh zlib-ng@2.2.4 - -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -zk6kesh zlib-ng@2.2.4 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -foiizhd zstd@1.5.7 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@10.5.0 ------------------ -ufbescp gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ntkvysy gcc@10.5.0 -ahapkrs gcc-runtime@10.5.0 -qg7qyaz glibc@2.35 - - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@11.4.0 ------------------ -pzmnwzm automake@1.16.5 -fgsf5ij autoconf@2.72 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -bs5ujst libsigsegv@2.14 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -6ib4pvm automake@1.16.5 -r3ant5t autoconf@2.72 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -bs5ujst libsigsegv@2.14 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 - -x7t4naj bzip2@1.0.8 -ntccuj2 compiler-wrapper@1.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -cih4xrz diffutils@3.12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 - -irvryts findutils@4.10.0 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -5trxrsw libxml2@2.13.5 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ncdxq3j ncurses@6.5-20250705 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -aq7qwy6 gdbm@1.25 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 - -vsq3oi3 gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -rpw3buk gcc@11.4.0 -qmbrryi gcc-runtime@11.4.0 -vjnqll7 glibc@2.35 - -4obn7cg gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 - -7mm6knn hdf5@1.14.6 -ivvor7v cmake@3.31.9 -isdtvvd curl@8.15.0 -txa2olx libssh2@1.11.1 -yzaocbs xz@5.6.3 -bz3ghzh mbedtls@2.28.9 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -vllfzb7 hdf5@1.14.6 -ivvor7v cmake@3.31.9 -isdtvvd curl@8.15.0 -txa2olx libssh2@1.11.1 -yzaocbs xz@5.6.3 -bz3ghzh mbedtls@2.28.9 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -ncdxq3j ncurses@6.5-20250705 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -tqxbnvo openmpi@5.0.8 -fgsf5ij autoconf@2.72 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 -pzmnwzm automake@1.16.5 -4hos372 hwloc@2.12.2 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -5trxrsw libxml2@2.13.5 -qtepnkr libiconv@1.18 -lprginh libevent@2.1.12 -yt7ajy4 libtool@2.4.7 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzbm5q6 numactl@2.0.18 -cxdcxo5 openssh@9.9p1 -hnmy4fw krb5@1.21.3 -n7yzkyl bison@3.8.2 -hdzcfgi libedit@3.1-20240808 -yiij42p libxcrypt@4.4.38 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -yqlblh6 pmix@6.0.0 -buin62m prrte@4.0.0 -gmhq65u flex@2.6.3 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -gdk3ghc hdf5@1.14.6 -dmmnd4u cmake@3.31.9 -jtps3jq curl@8.15.0 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -ncdxq3j ncurses@6.5-20250705 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -amwozyi mpich@4.3.2 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -5trxrsw libxml2@2.13.5 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -pmdeyoy hwloc@2.12.2 -n2l4cks libfabric@2.3.1 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -lguldtj libxml2@2.13.5 -qtepnkr libiconv@1.18 -yzaocbs xz@5.6.3 -zuutzfx yaksa@0.4 -r3ant5t autoconf@2.72 -6ib4pvm automake@1.16.5 -yt7ajy4 libtool@2.4.7 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 -pazbuxs python@3.14.0 -7yr5v6w expat@2.7.3 -ucrhsyw libbsd@0.12.2 -gth3ii5 libmd@1.1.0 -xxxc56n gettext@0.23.1 -e3ajmyq tar@1.35 -zjrnsfo pigz@2.8 -zgro4tw libffi@3.5.2 -c6d2zlj readline@8.3 -a4zeurp sqlite@3.50.4 -n45otd3 util-linux-uuid@2.41 -foiizhd zstd@1.5.7 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 - -ucrhsyw libbsd@0.12.2 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -gth3ii5 libmd@1.1.0 - -hdzcfgi libedit@3.1-20240808 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 - -lprginh libevent@2.1.12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -n2l4cks libfabric@2.3.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -qtepnkr libiconv@1.18 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -gth3ii5 libmd@1.1.0 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -txbwcin libpciaccess@0.17 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -f4qiprw pkgconf@2.5.1 -hwxnwvm util-macros@1.20.1 - -bs5ujst libsigsegv@2.14 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -txa2olx libssh2@1.11.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -bz3ghzh mbedtls@2.28.9 -yzaocbs xz@5.6.3 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -yt7ajy4 libtool@2.4.7 -ntccuj2 compiler-wrapper@1.0 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -qtepnkr libiconv@1.18 -5trxrsw libxml2@2.13.5 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ncdxq3j ncurses@6.5-20250705 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -bs5ujst libsigsegv@2.14 - -yiij42p libxcrypt@4.4.38 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -5trxrsw libxml2@2.13.5 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 -f4qiprw pkgconf@2.5.1 -yzaocbs xz@5.6.3 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -lguldtj libxml2@2.13.5 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 -f4qiprw pkgconf@2.5.1 -yzaocbs xz@5.6.3 -zk6kesh zlib-ng@2.2.4 - -bz3ghzh mbedtls@2.28.9 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -yzbm5q6 numactl@2.0.18 -fgsf5ij autoconf@2.72 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -pzmnwzm automake@1.16.5 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -yt7ajy4 libtool@2.4.7 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -5trxrsw libxml2@2.13.5 -f4qiprw pkgconf@2.5.1 -ncdxq3j ncurses@6.5-20250705 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -bs5ujst libsigsegv@2.14 - -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -zk6kesh zlib-ng@2.2.4 - -kaz756e pigz@2.8 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -zjrnsfo pigz@2.8 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -zk6kesh zlib-ng@2.2.4 - -f4qiprw pkgconf@2.5.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -yqlblh6 pmix@6.0.0 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -4hos372 hwloc@2.12.2 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -5trxrsw libxml2@2.13.5 -qtepnkr libiconv@1.18 -yzaocbs xz@5.6.3 -ncdxq3j ncurses@6.5-20250705 -lprginh libevent@2.1.12 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -yt7ajy4 libtool@2.4.7 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -bs5ujst libsigsegv@2.14 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -buin62m prrte@4.0.0 -fgsf5ij autoconf@2.72 -pzmnwzm automake@1.16.5 -ntccuj2 compiler-wrapper@1.0 -gmhq65u flex@2.6.3 -n7yzkyl bison@3.8.2 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -4hos372 hwloc@2.12.2 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -5trxrsw libxml2@2.13.5 -yzaocbs xz@5.6.3 -ncdxq3j ncurses@6.5-20250705 -lprginh libevent@2.1.12 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -yt7ajy4 libtool@2.4.7 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -f4qiprw pkgconf@2.5.1 -yqlblh6 pmix@6.0.0 - -c6d2zlj readline@8.3 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 - -a4zeurp sqlite@3.50.4 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 - -lfgvgva tar@1.35 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 -kaz756e pigz@2.8 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -yzaocbs xz@5.6.3 -foiizhd zstd@1.5.7 - -e3ajmyq tar@1.35 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 -zjrnsfo pigz@2.8 -zk6kesh zlib-ng@2.2.4 -yzaocbs xz@5.6.3 -foiizhd zstd@1.5.7 - -n45otd3 util-linux-uuid@2.41 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -f4qiprw pkgconf@2.5.1 - -yzaocbs xz@5.6.3 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -zuutzfx yaksa@0.4 -r3ant5t autoconf@2.72 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -6ib4pvm automake@1.16.5 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -yt7ajy4 libtool@2.4.7 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -5trxrsw libxml2@2.13.5 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -bs5ujst libsigsegv@2.14 -pazbuxs python@3.14.0 -x7t4naj bzip2@1.0.8 -7yr5v6w expat@2.7.3 -ucrhsyw libbsd@0.12.2 -gth3ii5 libmd@1.1.0 -aq7qwy6 gdbm@1.25 -xxxc56n gettext@0.23.1 -lguldtj libxml2@2.13.5 -e3ajmyq tar@1.35 -zjrnsfo pigz@2.8 -zgro4tw libffi@3.5.2 -ncdxq3j ncurses@6.5-20250705 -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -f4qiprw pkgconf@2.5.1 -c6d2zlj readline@8.3 -a4zeurp sqlite@3.50.4 -n45otd3 util-linux-uuid@2.41 -yzaocbs xz@5.6.3 -zk6kesh zlib-ng@2.2.4 -foiizhd zstd@1.5.7 - - --- linux-ubuntu22.04-x86_64_v3 / no compilers ------------------- -fgsf5ij autoconf@2.72 -4obn7cg gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -bs5ujst libsigsegv@2.14 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -r3ant5t autoconf@2.72 -4obn7cg gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -bs5ujst libsigsegv@2.14 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 - -etqlnw5 ca-certificates-mozilla@2025-08-12 - -ntccuj2 compiler-wrapper@1.0 - -ntkvysy gcc@10.5.0 - -ml7cem5 gcc@11.4.0 - -ahapkrs gcc-runtime@10.5.0 -ntkvysy gcc@10.5.0 -qg7qyaz glibc@2.35 - -qmbrryi gcc-runtime@11.4.0 -rpw3buk gcc@11.4.0 -vjnqll7 glibc@2.35 - -nokfxva gcc-runtime@11.4.0 -ml7cem5 gcc@11.4.0 -qg7qyaz glibc@2.35 - -qg7qyaz glibc@2.35 - -qr2e4rd llvm@14.0.0 - -hwxnwvm util-macros@1.20.1 -4obn7cg gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 - -==> 87 installed packages diff --git a/outputs/basics/find-ldf.out b/outputs/basics/find-ldf.out deleted file mode 100644 index 623653a308..0000000000 --- a/outputs/basics/find-ldf.out +++ /dev/null @@ -1,121 +0,0 @@ -$ spack find -ldf --- linux-ubuntu22.04-x86_64 / no compilers ---------------------- -rpw3buk gcc@11.4.0 - -vjnqll7 glibc@2.35 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=clang@14.0.0 ------------ -ibbzvxt tcl@8.6.17 -ntccuj2 compiler-wrapper@1.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qr2e4rd llvm@14.0.0 -um7p6tr zlib-ng@2.0.7 - -um7p6tr zlib-ng@2.0.7 -ntccuj2 compiler-wrapper@1.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qr2e4rd llvm@14.0.0 - -ct2r7xm zlib-ng@2.2.4 -ntccuj2 compiler-wrapper@1.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qr2e4rd llvm@14.0.0 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@10.5.0 -------------- -updxeye zlib-ng@2.2.4 -ntccuj2 compiler-wrapper@1.0 -ntkvysy gcc@10.5.0 -ahapkrs gcc-runtime@10.5.0 -qg7qyaz glibc@2.35 -ufbescp gmake@4.4.1 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- -x74vmgr tcl@8.6.17 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -tsq4fjj tcl@8.6.17 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -zk6kesh zlib-ng@2.2.4 - -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -zk6kesh zlib-ng@2.2.4 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@10.5.0 ------------------ -ufbescp gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ntkvysy gcc@10.5.0 -ahapkrs gcc-runtime@10.5.0 -qg7qyaz glibc@2.35 - - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@11.4.0 ------------------ -vsq3oi3 gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -rpw3buk gcc@11.4.0 -qmbrryi gcc-runtime@11.4.0 -vjnqll7 glibc@2.35 - -4obn7cg gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 - - --- linux-ubuntu22.04-x86_64_v3 / no compilers ------------------- -ntccuj2 compiler-wrapper@1.0 - -ntkvysy gcc@10.5.0 - -ml7cem5 gcc@11.4.0 - -ahapkrs gcc-runtime@10.5.0 -ntkvysy gcc@10.5.0 -qg7qyaz glibc@2.35 - -qmbrryi gcc-runtime@11.4.0 -rpw3buk gcc@11.4.0 -vjnqll7 glibc@2.35 - -nokfxva gcc-runtime@11.4.0 -ml7cem5 gcc@11.4.0 -qg7qyaz glibc@2.35 - -qg7qyaz glibc@2.35 - -qr2e4rd llvm@14.0.0 - -==> 21 installed packages diff --git a/outputs/basics/find-lf-zlib.out b/outputs/basics/find-lf-zlib.out index d5287687fd..c1ae2821e7 100644 --- a/outputs/basics/find-lf-zlib.out +++ b/outputs/basics/find-lf-zlib.out @@ -1,7 +1,7 @@ $ spack find -lf zlib-ng --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=clang@14.0.0 ------------ -um7p6tr zlib-ng@2.0.7 ct2r7xm zlib-ng@2.2.4 +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=clang@21.1.8 ------------ +kie72sp zlib-ng@2.0.7 5dji3nx zlib-ng@2.3.3 --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- -qlavhjb zlib-ng@2.0.7 cflags=-O3 zk6kesh zlib-ng@2.2.4 -==> 4 installed packages +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- +aeoqp4e zlib-ng@2.0.7 g72d7i3 zlib-ng@2.3.3 t7jnrlg zlib-ng@2.3.3 6l3ycpy zlib-ng@2.3.3 +==> 6 installed packages diff --git a/outputs/basics/find-lf.out b/outputs/basics/find-lf.out deleted file mode 100644 index db5956e863..0000000000 --- a/outputs/basics/find-lf.out +++ /dev/null @@ -1,24 +0,0 @@ -$ spack find -lf --- linux-ubuntu22.04-x86_64 / no compilers ---------------------- -rpw3buk gcc@11.4.0 vjnqll7 glibc@2.35 - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=clang@14.0.0 ------------ -um7p6tr zlib-ng@2.0.7 ct2r7xm zlib-ng@2.2.4 - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@10.5.0 -------------- -updxeye zlib-ng@2.2.4 - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- -qlavhjb zlib-ng@2.0.7 cflags=-O3 - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@10.5.0 ------------------ -ufbescp gmake@4.4.1 - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@11.4.0 ------------------ -vsq3oi3 gmake@4.4.1 4obn7cg gmake@4.4.1 - --- linux-ubuntu22.04-x86_64_v3 / no compilers ------------------- -ntccuj2 compiler-wrapper@1.0 ahapkrs gcc-runtime@10.5.0 qg7qyaz glibc@2.35 -ntkvysy gcc@10.5.0 qmbrryi gcc-runtime@11.4.0 qr2e4rd llvm@14.0.0 -ml7cem5 gcc@11.4.0 nokfxva gcc-runtime@11.4.0 -==> 17 installed packages diff --git a/outputs/basics/find-px.out b/outputs/basics/find-px.out index 12bd59f91e..a05ea8a043 100644 --- a/outputs/basics/find-px.out +++ b/outputs/basics/find-px.out @@ -1,18 +1,19 @@ $ spack find -px --- linux-ubuntu22.04-x86_64_v3 / %c,cxx,fortran=gcc@11.4.0 ------ -trilinos@16.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-16.1.0-k3ozjlurkcq33qpoqses4strvmxtexpe +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=clang@21.1.8 ------------ +zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-5dji3nxkz53p6yf6icvu3rnyhz66mg7d --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=clang@14.0.0 ------------ -zlib-ng@2.2.4 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-ct2r7xmldphegkos5g43flc6lm2nltcd +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- +zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-slhcf4ikhifycngjjlz2hyjkx24qi5md --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- -tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq -tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 -zlib-ng@2.0.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- +tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-53i7gbsb6wbhk55vv62jpqudomfmw6f7 +zlib-ng@2.0.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-aeoqp4ey2pntuxsbajc5hwovr5l4qy2l +zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-t7jnrlgayhc4bsqd4tj3l53turszyny5 +zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-6l3ycpy4crfl6ry4jax3p6crw3byw5oa --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@11.4.0 ------------------ -gmake@4.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh -hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh -hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv -hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd -==> 9 installed packages +-- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ +gmake@4.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-cdyuto2vcd73fdknitpbrk3mofaa6hw5 +hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-as6mmcjwjlgjhglp62wogxim6exfgtvd +hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7cwv3stkmkwxjbnujvpc6drqh3af5cwz +hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-jceyzq7qvavwbbfywa3dt3jfurkfk4ba +==> 10 installed packages diff --git a/outputs/basics/find-zlib.out b/outputs/basics/find-zlib.out index 4afde3b3e0..bfe6f1fd67 100644 --- a/outputs/basics/find-zlib.out +++ b/outputs/basics/find-zlib.out @@ -1,10 +1,10 @@ $ spack find zlib-ng --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=clang@14.0.0 ------------ -zlib-ng@2.0.7 zlib-ng@2.2.4 +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=clang@21.1.8 ------------ +zlib-ng@2.0.7 zlib-ng@2.3.3 --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@10.5.0 -------------- -zlib-ng@2.2.4 +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- +zlib-ng@2.3.3 --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- -zlib-ng@2.0.7 zlib-ng@2.2.4 -==> 5 installed packages +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- +zlib-ng@2.0.7 zlib-ng@2.3.3 zlib-ng@2.3.3 zlib-ng@2.3.3 +==> 7 installed packages diff --git a/outputs/basics/find.out b/outputs/basics/find.out index 85629dff29..663bce56dc 100644 --- a/outputs/basics/find.out +++ b/outputs/basics/find.out @@ -1,23 +1,23 @@ $ spack find --- linux-ubuntu22.04-x86_64 / no compilers ---------------------- -gcc@11.4.0 glibc@2.35 +-- linux-ubuntu26.04-x86_64 / no compilers ---------------------- +gcc@15.2.0 glibc@2.43 --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=clang@14.0.0 ------------ -zlib-ng@2.0.7 zlib-ng@2.2.4 +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx,fortran=gcc@15.2.0 ------ +mpich@5.0.1 openmpi@5.0.10 --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@10.5.0 -------------- -zlib-ng@2.2.4 +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=clang@21.1.8 ------------ +zlib-ng@2.0.7 zlib-ng@2.3.3 --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- -zlib-ng@2.0.7 +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- +zlib-ng@2.3.3 --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@10.5.0 ------------------ -gmake@4.4.1 +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- +gettext@1.0 hwloc@2.13.0 krb5@1.22.2 ncurses@6.6 openssh@10.3p1 openssl@3.6.1 tcl@8.6.17 zlib-ng@2.0.7 zlib-ng@2.3.3 zlib-ng@2.3.3 zlib-ng@2.3.3 zstd@1.5.7 --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@11.4.0 ------------------ -gmake@4.4.1 gmake@4.4.1 +-- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ +bzip2@1.0.8 hdf5@1.14.6 hdf5@1.14.6 libevent@2.1.12 libiconv@1.18 libxcrypt@4.5.2 numactl@2.0.19 pkgconf@2.5.1 prrte@4.1.0 xz@5.8.3 +gmake@4.4.1 hdf5@1.14.6 libedit@3.1-20251016 libfabric@2.5.1 libpciaccess@0.17 libxml2@2.15.3 pigz@2.8 pmix@6.1.0 tar@1.35 --- linux-ubuntu22.04-x86_64_v3 / no compilers ------------------- -compiler-wrapper@1.0 gcc@11.4.0 gcc-runtime@11.4.0 glibc@2.35 -gcc@10.5.0 gcc-runtime@10.5.0 gcc-runtime@11.4.0 llvm@14.0.0 -==> 17 installed packages +-- linux-ubuntu26.04-x86_64_v3 / no compilers ------------------- +compiler-wrapper@1.1.0 gcc@14.3.0 gcc@15.2.0 gcc-runtime@15.2.0 gcc-runtime@15.2.0 glibc@2.43 llvm@21.1.8 +==> 45 installed packages diff --git a/outputs/basics/gmake.out b/outputs/basics/gmake.out index 1aa2bb4f5a..ea95dfd4fc 100644 --- a/outputs/basics/gmake.out +++ b/outputs/basics/gmake.out @@ -1,29 +1,13 @@ $ spack install gmake ==> Compilers have been configured automatically from PATH inspection -[+] /usr (external gcc-11.4.0-rpw3bukiasa3mhgh2vbz6tlwb5smfg3w) -[+] /usr (external glibc-2.35-vjnqll7uhrmsms4z5opdvczk7riv6fs5) -==> No binary for compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 found: installing from source -==> Installing compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [3/5] -==> Fetching https://mirror.spack.io/_source-cache/archive/a5/a5ff4fcdbeda284a7993b87f294b6338434cffc84ced31e4d04008ed5ea389bf - [100%] 30.08 KB @ 185.8 MB/s -==> No patches needed for compiler-wrapper -==> compiler-wrapper: Executing phase: 'install' -==> compiler-wrapper: Successfully installed compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 - Stage: 0.15s. Install: 0.01s. Post-install: 0.01s. Total: 0.18s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -==> No binary for gcc-runtime-11.4.0-qmbrryiepg5ww5i2bujmli7i22dmwqju found: installing from source -==> Installing gcc-runtime-11.4.0-qmbrryiepg5ww5i2bujmli7i22dmwqju [4/5] -==> No patches needed for gcc-runtime -==> gcc-runtime: Executing phase: 'install' -==> gcc-runtime: Successfully installed gcc-runtime-11.4.0-qmbrryiepg5ww5i2bujmli7i22dmwqju - Stage: 0.00s. Install: 0.05s. Post-install: 0.03s. Total: 0.09s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-qmbrryiepg5ww5i2bujmli7i22dmwqju -==> No binary for gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh found: installing from source -==> Installing gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh [5/5] -==> Fetching https://mirror.spack.io/_source-cache/archive/dd/dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3.tar.gz - [100%] 62.35 MB @ 163.0 MB/s -==> No patches needed for gmake -==> gmake: Executing phase: 'install' -==> gmake: Successfully installed gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh - Stage: 0.24s. Install: 10.47s. Post-install: 0.01s. Total: 10.73s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh +[e] ublhg65 glibc@2.43 /usr (0s) +[e] cl66sen gcc@15.2.0 /usr (0s) +[ ] mmywg7x compiler-wrapper@1.1.0 staging (0s) +[ ] yhhe2we gcc-runtime@15.2.0 staging (0s) +[ ] yhhe2we gcc-runtime@15.2.0 install (0s) +[+] yhhe2we gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-yhhe2wecmh7n4qwwmqxictetytv2m6wo (0s) +[ ] mmywg7x compiler-wrapper@1.1.0 install (0s) +[+] mmywg7x compiler-wrapper@1.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.1.0-mmywg7x4myxvxepmqe5go3ppxirmuijp (0s) +[ ] cdyuto2 gmake@4.4.1 staging (0s) +[ ] cdyuto2 gmake@4.4.1 install (1s) +[+] cdyuto2 gmake@4.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-cdyuto2vcd73fdknitpbrk3mofaa6hw5 (9s) diff --git a/outputs/basics/graph-tcl.out b/outputs/basics/graph-tcl.out index cd5645c299..3e3a6b69ad 100644 --- a/outputs/basics/graph-tcl.out +++ b/outputs/basics/graph-tcl.out @@ -1,11 +1,11 @@ $ spack graph tcl -o tcl@8.6.17/tsq4fjj +o tcl@8.6.17/d4ibosb |\ | |\ | | |\ | | | |\ | | | | |\ -o | | | | | zlib-ng@2.2.4/zk6kesh +o | | | | | zlib-ng@2.3.3/g72d7i3 |\| | | | | |\ \ \ \ \ \ | |_|/ / / / @@ -17,16 +17,16 @@ o | | | | | zlib-ng@2.2.4/zk6kesh | | | |_|/ / | | |/| | | | | | |/ / -| | | | o gmake@4.4.1/4obn7cg +| | | | o gmake@4.4.1/r4lhaok | |_|_|/| |/| |_|/| | |/| |/| | | |/|/ -| | | o compiler-wrapper@1.0/ntccuj2 +| | | o compiler-wrapper@1.1.0/mmywg7x | | | -| o | gcc-runtime@11.4.0/nokfxva +| o | gcc-runtime@15.2.0/xm76mt3 |/| | | |/ -| o gcc@11.4.0/ml7cem5 +| o gcc@15.2.0/yjlog5x | -o glibc@2.35/qg7qyaz +o glibc@2.43/yc4n2pp diff --git a/outputs/basics/graph-trilinos.out b/outputs/basics/graph-trilinos.out deleted file mode 100644 index d1f0510480..0000000000 --- a/outputs/basics/graph-trilinos.out +++ /dev/null @@ -1,567 +0,0 @@ -$ spack graph trilinos -o trilinos@16.1.0/tj433ut -|\ -| |\ -| | |\ -| | | |\ -| | | | |\ -| | | | | |\ -| | | | | | |\ -| | | | | | | |\ -| | | | | | | | |\ -| | | | | | | | | |\ -| | o | | | | | | | | kokkos-kernels@4.5.01/qknxuyj -| | |\| | | | | | | | -| | |\ \ \ \ \ \ \ \ \ -| | | |_|_|/ / / / / / -| | |/| | | | | | | | -| | | |\ \ \ \ \ \ \ \ -| | | | |_|_|/ / / / / -| | | |/| | | | | | | -| | | | |\ \ \ \ \ \ \ -| | | | | |_|_|/ / / / -| | | | |/| | | | | | -| | | | | |\ \ \ \ \ \ -| | | | | | |_|_|/ / / -| | | | | |/| | | | | -| | | | | | |\ \ \ \ \ -| | | | | | | |_|_|/ / -| | | | | | |/| | | | -| | | | | | | | |/ / -| | | | | | | |/| | -| o | | | | | | | | openblas@0.3.30/qz3ay7b -| |\| | | | | | | | -| |\ \ \ \ \ \ \ \ \ -| | |_|/ / / / / / / -| |/| | | | | | | | -| | |\ \ \ \ \ \ \ \ -| | | |_|/ / / / / / -| | |/| | | | | | | -| | | |\ \ \ \ \ \ \ -| | | | |_|/ / / / / -| | | |/| | | | | | -| | | | |/ / / / / -o | | | | | | | | openmpi@5.0.8/tqxbnvo -|\| | | | | | | | -|\ \ \ \ \ \ \ \ \ -| |\ \ \ \ \ \ \ \ \ -| | |\ \ \ \ \ \ \ \ \ -| | | |\ \ \ \ \ \ \ \ \ -| | | | |\ \ \ \ \ \ \ \ \ -| | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | | | | |_|_|_|_|_|_|_|/ -| | | | | | | | | |/| | | | | | | | -| | | | | | | | | | |\ \ \ \ \ \ \ \ -| | | | | | | | | | | |_|_|_|_|/ / / -| | | | | | | | | | |/| | | | | | | -| | | | | | | | | | | |\ \ \ \ \ \ \ -| | | | | | | | | | | | |_|/ / / / / -| | | | | | | | | | | |/| | | | | | -| | | | | | | | | | | | |\ \ \ \ \ \ -| | | | | | | | | | | | | |_|/ / / / -| | | | | | | | | | | | |/| | | | | -| | | | | | | | | | | | | |\ \ \ \ \ -| | | | | | | | | | | | | | |_|/ / / -| | | | | | | | | | | | | |/| | | | -| | | | | | | | | | | | | | |\ \ \ \ -| | | | | | | | | | | | | | | | | | o kokkos@4.5.01/k2pkvic -| | | | | | | | | | | |_|_|_|_|_|_|/| -| | | | | | | | | | |/| |_|_|_|_|_|/| -| | | | | | | | | | | |/| |_|_|_|_|/| -| | | | | | | | | | | | |/| |_|_|_|/| -| | | | | | | | | | | | | |/| | | |/| -| | | | | | | | | | | | | | | | |/|/ -| | | | | | o | | | | | | | | | | | numactl@2.0.18/yzbm5q6 -| | | | | | |\| | | | | | | | | | | -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |_|_|_|/ / / / / / / / -| | | | | | | |/| | | | | | | | | | | -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |_|_|_|_|_|_|_|_|/ / -| | | | | | | | |/| | | | | | | | | | -| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | |_|_|_|/ / / / / / -| | | | | | | | | |/| | | | | | | | | -| | | | | | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | | | | | |_|_|_|/ / / / / -| | | | | | | | | | |/| | | | | | | | -| | | | | | | | | | | |\ \ \ \ \ \ \ \ -| | | | | | | | | | | | |_|_|_|/ / / / -| | | | | | | | | | | |/| | | | | | | -| | | | | | | | | | | | |\ \ \ \ \ \ \ -| | | | | | | | | | | | | |_|_|_|/ / / -| | | | | | | | | | | | |/| | | | | | -| | | | | | | | | | | | | | |_|/ / / -| | | | | | | | | | | | | |/| | | | -| | | | | o | | | | | | | | | | | | openssh@9.9p1/cxdcxo5 -| |_|_|_|/| | | | | | | | | | | | | -|/| | | | | | | | | | | | | | | | | -| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | |_|/ / / / / / / / / / / -| | | | | | | | | | |/| | | | | | | | | | | | -| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | |_|/ / / / / / / / / / -| | | | | | | | | | | |/| | | | | | | | | | | -| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | | |_|/ / / / / / / / / -| | | | | | | | | | | | |/| | | | | | | | | | -| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | | | |_|/ / / / / / / / -| | | | | | | | | | | | | |/| | | | | | | | | -| | | | | | | | | | | | | | |/ / / / / / / / -| o | | | | | | | | | | | | | | | | | | | | prrte@4.0.0/buin62m -| |\| | | | | | | | | | | | | | | | | | | | -| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | |_|/ / / / / / / / / / / / / / / / / / / -| |/| | | | | | | | | | | | | | | | | | | | -| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | |_|/ / / / / / / / / / / / / / / / / / -| | |/| | | | | | | | | | | | | | | | | | | -| | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | |_|_|_|_|_|_|_|_|_|_|_|/ / / / / / / -| | | |/| | | | | | | | | | | | | | | | | | -| | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | |_|_|_|_|_|_|_|_|_|_|_|_|_|/ / / / -| | | | |/| | | | | | | | | | | | | | | | | -| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | |_|_|_|_|_|_|_|_|_|_|_|_|_|/ / / -| | | | | |/| | | | | | | | | | | | | | | | -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |_|_|_|_|_|_|_|_|_|_|_|_|_|/ / -| | | | | | |/| | | | | | | | | | | | | | | -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |_|_|_|_|_|_|/ / / / / / / / -| | | | | | | |/| | | | | | | | | | | | | | -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |_|_|_|_|_|_|/ / / / / / / -| | | | | | | | |/| | | | | | | | | | | | | -| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | |_|_|_|_|_|_|/ / / / / / -| | | | | | | | | |/| | | | | | | | | | | | -| | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | |_|_|_|_|_|_|/ / / / / -| | | | | | | | | | |/| | | | | | | | | | | -| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | | |_|_|_|_|_|_|/ / / / -| | | | | | | | | | | | |/| | | | | | | | | | -| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | | | |_|_|_|_|_|_|/ / / -| | | | | | | | | | | | | |/| | | | | | | | | -| | | | | | | | | | | | | | | |_|_|_|_|/ / / -| | | | | | | | | | | | | | |/| | | | | | | -| | | | | | | | | | | | | | | | | | | | | o cmake@3.31.9/ivvor7v -| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| -|/| | | | | | | |_|_|_|_|_|_|_|_|_|_|_|_|/| -| | | | | | | |/| |_|_|_|_|_|_|_|_|_|_|_|/| -| | | | | | | | |/| |_|_|_|_|_|_|_|_|_|_|/| -| | | | | | | | | |/| |_|_|_|_|_|_|_|_|_|/| -| | | | | | | | | | |/| | |_|_|_|_|_|_|_|/| -| | | | | | | | | | | | |/| | | | | |_|_|/| -| | | | | | | | | | | | | | | | | |/| | | | -| | | | | | | | | | | | | | | | | | | | o | krb5@1.21.3/hnmy4fw -| | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | -| |/| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | -| | |/| | | | | |_|_|_|_|_|_|_|_|_|_|_|/| | -| | | | | | | |/| |_|_|_|_|_|_|_|_|_|_|/| | -| | | | | | | | |/| |_|_|_|_|_|_|_|_|_|/| | -| | | | | | | | | |/| |_|_|_|_|_|_|_|_|/| | -| | | | | | | | | | |/| | |_|_|_|_|_|_|/| | -| | | | | | | | | | | | |/| | | | |_|_|/| | -| | | | | | | | | | | | | | | | |/| | |/| | -| | | | | | | | | | | | | | | | | | | | |\ \ -| | | | | | | | | | | | | | | | | | | | | |\ \ -| | | | | | | | | | | | | | | | | | | | | | |\ \ -| | | | | | | | | | | | | | | | | | o | | | | | | libxcrypt@4.4.38/yiij42p -| | | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | | | | | -| | |/| | | | | |_|_|_|_|_|_|_|_|_|/| | | | | | | -| | | | | | | |/| |_|_|_|_|_|_|_|_|/| | | | | | | -| | | | | | | | |/| |_|_|_|_|_|_|_|/| | | | | | | -| | | | | | | | | |/| |_|_|_|_|_|_|/| | | | | | | -| | | | | | | | | | |/| | |_|_|_|_|/ / / / / / / -| | | | | | | | | | | | |/| | | | | | | | | | | -| | | | | | | | | | | | | o | | | | | | | | | | automake@1.16.5/pzmnwzm -| | | |_|_|_|_|_|_|_|_|_|/| | | | | | | | | | | -| | |/| | | | | |_|_|_|_|/| | | | | | | | | | | -| | | | | | | |/| |_|_|_|/| | | | | | | | | | | -| | | | | | | | |/| |_|_|/| | | | | | | | | | | -| | | | | | | | | |/| |_|/| | | | | | | | | | | -| | | | | | | | | | |/| |/| | | | | | | | | | | -| | | | | | | | | | | | | |/ / / / / / / / / / -| | | | | | | | | | | o | | | | | | | | | | | flex@2.6.3/gmhq65u -| | | | |_|_|_|_|_|_|/| | | | | | | | | | | | -| | | |/| | | | |_|_|/| | | | | | | | | | | | -| | | | | | | |/| |_|/| | | | | | | | | | | | -| | | | | | | | |/| |/| | | | | | | | | | | | -| | | | | | | | | |/|/| | | | | | | | | | | | -| | | | | | | | | | | |\| | | | | | | | | | | -| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | |_|_|_|_|_|_|_|/ / / / -| | | | | | | | | | | |/| | | | | | | | | | | -| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | | |_|_|_|_|_|_|_|/ / / -| | | | | | | | | | | | |/| | | | | | | | | | -| | | | | | | | | | | | | | |_|_|_|_|_|/ / / -| | | | | | | | | | | | | |/| | | | | | | | -| | | | | | | | | | | | | | | | o | | | | | pmix@6.0.0/yqlblh6 -| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | | | | -|/| |_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | | | | -| |/| | | |_|_|_|_|_|_|_|_|_|_|/| | | | | | -| | | | |/| |_|_|_|_|_|_|_|_|_|/| | | | | | -| | | | | |/| |_|_|_|_|_|_|_|_|/| | | | | | -| | | | | | |/| |_|_|_|_|_|_|_|/| | | | | | -| | | | | | | |/| |_|_|_|_|_|_|/| | | | | | -| | | | | | | | |/| |_|_|_|_|_|/| | | | | | -| | | | | | | | | |/| |_|_|_|_|/| | | | | | -| | | | | | | | | | |/| | | | |/ / / / / / -| | | | | | | | | | | | | | |/| | | | | | -| | | | | | | | | | | | | | | | | | | | o curl@8.15.0/isdtvvd -| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| -|/| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| -| |/| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| -| | |/| | | | | |_|_|_|_|_|_|_|_|_|_|_|/| -| | | | | | | |/| |_|_|_|_|_|_|_|_|_|_|/| -| | | | | | | | |/| |_|_|_|_|_|_|_|_|_|/| -| | | | | | | | | |/| |_|_|_|_|_|_|_|_|/| -| | | | | | | | | | |/| | | | |_|_|_|_|/| -| | | | | | | | | | | | | | |/| | |_|_|/| -| | | | | | | | | | | | | | | | |/| | | | -| | | | | | | | | | | | | | | | | | | | |\ -| | | | | | | | | | | | | | | | | | | | | |\ -| | | | | | | | | | | | | | | | | | o | | | | libedit@3.1-20240808/hdzcfgi -| | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | | | -| |/| | | | | | |_|_|_|_|_|_|_|_|_|/| | | | | -| | | | | | | |/| |_|_|_|_|_|_|_|_|/| | | | | -| | | | | | | | |/| |_|_|_|_|_|_|_|/| | | | | -| | | | | | | | | |/| |_|_|_|_|_|_|/| | | | | -| | | | | | | | | | |/| | | | |_|_|/| | | | | -| | | | | | | | | | | | | | |/| | |/ / / / / -| | | | | | | | | | | | | | | o | | | | | | autoconf@2.72/fgsf5ij -| | | |_|_|_|_|_|_|_|_|_|_|_|/| | | | | | | -| | |/| |_|_|_|_|_|_|_|_|_|_|/| | | | | | | -| | | |/| | | | |_|_|_|_|_|_|/ / / / / / / -| | | | | | | |/| | | | | | | | | | | | | -| | | | | | | | | | | | | o | | | | | | | bison@3.8.2/n7yzkyl -| | | | |_|_|_|_|_|_|_|_|/| | | | | | | | -| | | |/| | | | |_|_|_|_|/| | | | | | | | -| | | | | | | |/| |_|_|_|/| | | | | | | | -| | | | | | | | |/| |_|_|/| | | | | | | | -| | | | | | | | | |/| |_|/| | | | | | | | -| | | | | | | | | | |/| |/| | | | | | | | -| | | | | | | | | | | | | |/ / / / / / / -| | | | | | o | | | | | | | | | | | | | hwloc@2.12.2/4hos372 -| | |_|_|_|/| | | | | | | | | | | | | | -| |/| | | | | | | | | | | | | | | | | | -| | | | | | |\| | | | | | | | | | | | | -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |_|_|_|_|_|_|_|_|/ / / / / -| | | | | | |/| | | | | | | | | | | | | -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | |_|/ / / / / / / / / / / -| | | | | | | | | |/| | | | | | | | | | | | -| | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | |_|/ / / / / / / / / / -| | | | | | | | | | |/| | | | | | | | | | | -| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | |_|/ / / / / / / / / -| | | | | | | | | | | |/| | | | | | | | | | -| | | | | | | | | | | | | |_|/ / / / / / / -| | | | | | | | | | | | |/| | | | | | | | -| | | | | o | | | | | | | | | | | | | | | libevent@2.1.12/lprginh -| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | |_|_|_|_|_|_|_|_|_|_|/ / / / / -| | | | | |/| | | | | | | | | | | | | | | -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |_|_|_|_|_|_|_|/ / / / / / / -| | | | | | |/| | | | | | | | | | | | | | -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |_|_|_|/ / / / / / / / / / -| | | | | | | |/| | | | | | | | | | | | | -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |_|_|_|/ / / / / / / / / -| | | | | | | | |/| | | | | | | | | | | | -| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | |_|_|_|/ / / / / / / / -| | | | | | | | | |/| | | | | | | | | | | -| | | | | | | | | | | |_|/ / / / / / / / -| | | | | | | | | | |/| | | | | | | | | -| | | | o | | | | | | | | | | | | | | | libtool@2.4.7/yt7ajy4 -| | | |/| | | | | | | | | | | | | | | | -| | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | |_|/ / / / / / / / / / / / / / -| | | | |/| | | | | | | | | | | | | | | -| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | |_|/ / / / / / / / / / / / / -| | | | | |/| | | | | | | | | | | | | | -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |_|/ / / / / / / / / / / / -| | | | | | |/| | | | | | | | | | | | | -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |_|/ / / / / / / / / / / -| | | | | | | |/| | | | | | | | | | | | -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |_|_|_|_|_|/ / / / / / -| | | | | | | | |/| | | | | | | | | | | -| | | | | | | | | |/ / / / / / / / / / -| | | | | | | | | | | | | | | | | | o libssh2@1.11.1/txa2olx -| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| -|/| | | | |_|_|_|_|_|_|_|_|_|_|_|_|/| -| | | | |/| |_|_|_|_|_|_|_|_|_|_|_|/| -| | | | | |/| |_|_|_|_|_|_|_|_|_|_|/| -| | | | | | |/| |_|_|_|_|_|_|_|_|_|/| -| | | | | | | |/| | |_|_|_|_|_|_|_|/| -| | | | | | | | | |/| | | | | | | |/| -| | | | | | | | | | | | | | | | o | | nghttp2@1.48.0/ft5kpbd -| | |_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | -| |/| | | |_|_|_|_|_|_|_|_|_|_|/| | | -| | | | |/| |_|_|_|_|_|_|_|_|_|/| | | -| | | | | |/| |_|_|_|_|_|_|_|_|/| | | -| | | | | | |/| |_|_|_|_|_|_|_|/| | | -| | | | | | | |/| | |_|_|_|_|_|/| | | -| | | | | | | | | |/| | | | | |/ / / -| | | | | | | | | | | | | | |/| | | -| | | | | | | | | | | | | o | | | | libpciaccess@0.17/txbwcin -| | |_|_|_|_|_|_|_|_|_|_|/| | | | | -| |/| | | |_|_|_|_|_|_|_|/| | | | | -| | | | |/| |_|_|_|_|_|_|/| | | | | -| | | | | |/| |_|_|_|_|_|/| | | | | -| | | | | | |/| |_|_|_|_|/| | | | | -| | | | | | | |/| | |_|_|/| | | | | -| | | | | | | | | |/| | | | | | | | -| | | | | | | | | | o | | | | | | | openssl@3.6.0/gv7wpik -| |_|_|_|_|_|_|_|_|/| | | | | | | | -|/| | |_|_|_|_|_|_|/| | | | | | | | -| | |/| | |_|_|_|_|/| | | | | | | | -| | | | |/| |_|_|_|/| | | | | | | | -| | | | | |/| |_|_|/| | | | | | | | -| | | | | | |/| |_|/| | | | | | | | -| | | | | | | |/| |/| | | | | | | | -| | | | | | | | o | | | | | | | | | findutils@4.10.0/irvryts -| | | | | |_|_|/| | | | | | | | | | -| | | | |/| |_|/| | | | | | | | | | -| | | | | |/| |/| | | | | | | | | | -| | | | | | |/|/| | | | | | | | | | -| | | | | | | | |\| | | | | | | | | -| | | | | | | | | |_|_|_|_|_|/ / / -| | | | | | | | |/| | | | | | | | -| | | o | | | | | | | | | | | | | m4@1.4.20/lxvpwti -| | | |\| | | | | | | | | | | | | -| | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | |_|/ / / / / / / / / / / / -| | | | |/| | | | | | | | | | | | | -| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | |_|/ / / / / / / / / / / -| | | | | |/| | | | | | | | | | | | -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |_|/ / / / / / / / / / -| | | | | | |/| | | | | | | | | | | -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |_|_|_|_|_|_|_|/ / / -| | | | | | | |/| | | | | | | | | | -| | | | | | | | | |/ / / / / / / / -| | | | | | | | |/| | | | | | | | -| | | | | | | | | | | | | | | o | mbedtls@2.28.9/bz3ghzh -| | | | | |_|_|_|_|_|_|_|_|_|/| | -| | | | |/| |_|_|_|_|_|_|_|_|/| | -| | | | | |/| |_|_|_|_|_|_|_|/| | -| | | | | | |/| | |_|_|_|_|_|/| | -| | | | | | | | |/| |_|_|_|_|/ / -| | | | | | | | | |/| | | | | | -| | | | | | | | | | | | | | o | util-macros@1.20.1/hwxnwvm -| | | | | | | | | | |_|_|_|/ / -| | | | | | | | | |/| | | | | -| | | | | | | | | | | o | | | ca-certificates-mozilla@2025-08-12/etqlnw5 -| | | | | | | | | | | / / / -| | o | | | | | | | | | | | perl@5.42.0/62kt5y4 -| |/| | | | | | | | | | | | -|/| | | | | | | | | | | | | -| | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | |_|_|_|_|_|_|/ / / / / -| | |/| | | | | | | | | | | -| | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | |_|/ / / / / / / / / -| | | |/| | | | | | | | | | -| | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | | |_|/ / / / / / / / -| | | | | |/| | | | | | | | | -| | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | |_|/ / / / / / / -| | | | | | |/| | | | | | | | -| | | | | | | |\ \ \ \ \ \ \ \ -| | | | | | | | |_|_|/ / / / / -| | | | | | | |/| | | | | | | -| | | | | | | | |\ \ \ \ \ \ \ -| | | | | | | | | | | | o | | | gettext@0.23.1/cakgj4n -| | | |_|_|_|_|_|_|_|_|/| | | | -| | |/| |_|_|_|_|_|_|_|/| | | | -| | | |/| | |_|_|_|_|_|/| | | | -| | | | | |/| |_|_|_|_|/| | | | -| | | | | | |/| |_|_|_|/| | | | -| | | | | | | |/| |_|_|/| | | | -| | | | | | | | |/| | | | | | | -| | | | | | | | | | | | |\| | | -| | | | | | | | | | | | |\ \ \ \ -| | | | | | | | | | | | | |_|_|/ -| | | | | | | | | | | | |/| | | -| | | | | | | | | | | | | |\ \ \ -| | | | | | | | | | | | | | |\ \ \ -| | | | | | | | | | | | | | | |_|/ -| | | | | | | | | | | | | | |/| | -| | | | | | | | | | o | | | | | | libsigsegv@2.14/bs5ujst -| | | |_|_|_|_|_|_|/| | | | | | | -| | |/| |_|_|_|_|_|/| | | | | | | -| | | |/| | |_|_|_|/| | | | | | | -| | | | | |/| |_|_|/| | | | | | | -| | | | | | |/| |_|/ / / / / / / -| | | | | | | |/| | | | | | | | -| | | | | | | | | o | | | | | | berkeley-db@18.1.40/vdgigsw -| | | |_|_|_|_|_|/| | | | | | | -| | |/| |_|_|_|_|/| | | | | | | -| | | |/| | |_|_|/| | | | | | | -| | | | | |/| |_|/| | | | | | | -| | | | | | |/| |/ / / / / / / -| | | | | | | |/| | | | | | | -| | | | o | | | | | | | | | | gdbm@1.25/aq7qwy6 -| | | |/| | | | | | | | | | | -| | |/|/| | | | | | | | | | | -| | | | |\| | | | | | | | | | -| | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | |_|/ / / / / / / / / -| | | | | |/| | | | | | | | | | -| | | | | | |/ / / / / / / / / -| | | | | | | | | | | | o | | libxml2@2.13.5/5trxrsw -| |_|_|_|_|_|_|_|_|_|_|/| | | -|/| |_|_|_|_|_|_|_|_|_|/| | | -| |/| |_|_|_|_|_|_|_|_|/| | | -| | |/| |_|_|_|_|_|_|_|/| | | -| | | |/| | |_|_|_|_|_|/| | | -| | | | | |/| |_|_|_|_|/| | | -| | | | | | |/| |_|_|_|/| | | -| | | | | | | |/| | | |/| | | -| | | | | | | | | | |/| | | | -| | | | | | | | | | | | |/ / -| | | | | | | | | | | o | | tar@1.35/lfgvgva -| | | |_|_|_|_|_|_|_|/| | | -| | |/| |_|_|_|_|_|_|/| | | -| | | |/| | |_|_|_|_|/| | | -| | | | | |/| |_|_|_|/| | | -| | | | | | |/| |_|_|/| | | -| | | | | | | |/| |_|/| | | -| | | | | | | | |/| |/| | | -| | | | | | | | | | | |\| | -| | | | | | | | | | | |\ \ \ -| | | | o | | | | | | | | | | readline@8.3/c6d2zlj -| | | |/| | | | | | | | | | | -| | |/|/| | | | | | | | | | | -| | | | |\| | | | | | | | | | -| | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | |_|_|_|_|_|_|_|_|_|/ -| | | | |/| | | | | | | | | | -| | | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | | |_|_|/ / / / / / / -| | | | | |/| | | | | | | | | -| | | | | | |/ / / / / / / / -| | | | | | | | o | | | | | bzip2@1.0.8/x7t4naj -| | | |_|_|_|_|/| | | | | | -| | |/| |_|_|_|/| | | | | | -| | | |/| | |_|/| | | | | | -| | | | | |/| |/| | | | | | -| | | | | | |/|/| | | | | | -| | | | | | | | |/ / / / / -| | | | | | | | | | | o | pigz@2.8/kaz756e -| |_|_|_|_|_|_|_|_|_|/| | -|/| | |_|_|_|_|_|_|_|/| | -| | |/| |_|_|_|_|_|_|/| | -| | | |/| | |_|_|_|_|/| | -| | | | | |/| |_|_|_|/| | -| | | | | | |/| |_|_|/ / -| | | | | | | |/| | | | -| | | | | | | | | o | | xz@5.6.3/yzaocbs -| | | |_|_|_|_|_|/| | | -| | |/| |_|_|_|_|/| | | -| | | |/| | |_|_|/| | | -| | | | | |/| |_|/| | | -| | | | | | |/| |/ / / -| | | | | | | |/| | | -| | | | | | | | | o | zstd@1.5.7/foiizhd -| | | |_|_|_|_|_|/| | -| | |/| |_|_|_|_|/| | -| | | |/| | |_|_|/| | -| | | | | |/| |_|/| | -| | | | | | |/| |/ / -| | | | | | | |/| | -| | | | o | | | | | ncurses@6.5-20250705/ncdxq3j -| | |_|/| | | | | | -| |/| |/| | | | | | -| | |/|/| | | | | | -| | | | |\| | | | | -| | | | |\ \ \ \ \ \ -| | | | | |_|_|/ / / -| | | | |/| | | | | -| | | | | |/ / / / -| | | | | | | o | diffutils@3.12/cih4xrz -| | | |_|_|_|/| | -| | |/| |_|_|/| | -| | | |/| |_|/| | -| | | | |/| |/| | -| | | | | |/|/| | -| | | | | | | |/ -o | | | | | | | zlib-ng@2.0.7/qlavhjb -|\ \ \ \ \ \ \ \ -| |_|/ / / / / / -|/| | | | | | | -| |\ \ \ \ \ \ \ -| | |_|/ / / / / -| |/| | | | | | -| | |\ \ \ \ \ \ -| | | |_|_|_|/ / -| | |/| | | | | -| | | |\ \ \ \ \ -| | | | |_|/ / / -| | | |/| | | | -| | | | |/ / / -| | | | | o | pkgconf@2.5.1/f4qiprw -| |_|_|_|/| | -|/| |_|_|/| | -| |/| |_|/| | -| | |/| |/| | -| | | |/|/ / -| | | | | o libiconv@1.18/qtepnkr -| |_|_|_|/| -|/| |_|_|/| -| |/| |_|/| -| | |/| |/| -| | | |/|/ -o | | | | gmake@4.4.1/4obn7cg -|\| | | | -|\ \ \ \ \ -| |_|/ / / -|/| | | | -| |\ \ \ \ -| | |_|/ / -| |/| | | -| | |/ / -| | o | compiler-wrapper@1.0/ntccuj2 -| | / -o | | gcc-runtime@11.4.0/nokfxva -|\| | -| |/ -|/| -| o gcc@11.4.0/ml7cem5 -| -o glibc@2.35/qg7qyaz diff --git a/outputs/basics/hdf5-hl-mpi.out b/outputs/basics/hdf5-hl-mpi.out deleted file mode 100644 index 4ffa996ada..0000000000 --- a/outputs/basics/hdf5-hl-mpi.out +++ /dev/null @@ -1,177 +0,0 @@ -$ spack install hdf5+hl+mpi ^mpich -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/1f/1f49703b0c810fdbfdc81f37e47ce182bb088c058ec15a6622f8927f0e1e6605 - [100%] 61.27 MB @ 939.4 MB/s -==> Extracting libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg from binary cache -==> libfabric: Successfully installed libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg - Search: 0.00s. Fetch: 0.17s. Install: 0.34s. Extract: 0.32s. Relocate: 0.01s. Total: 0.51s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg -==> Installing libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg [7/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -==> Fetching file:///mirror/blobs/sha256/a4/a415291ec0b68c751833d609eddbe3ad9e78e2fd558829cabf6c2980075046be - [100%] 178.05 KB @ 537.6 MB/s -==> Extracting libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx from binary cache -==> libmd: Successfully installed libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx - Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.02s. Relocate: 0.01s. Total: 0.04s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx -==> Installing libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx [17/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd -==> Fetching file:///mirror/blobs/sha256/db/db254673cf42d6054fc35d8b78a7c8982bb1396c0ae9ee069145fa0b2c995bec - [100%] 90.69 KB @ 364.7 MB/s -==> Extracting libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa from binary cache -==> libffi: Successfully installed libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa - Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa -==> Installing libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa [20/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -==> Fetching file:///mirror/blobs/sha256/e2/e20e59828c817957d0e552e2dc3c24090b80ef4a58ea8ca61f71c6f11ebc00c5 - [100%] 63.82 MB @ 411.2 GB/s -==> Extracting util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz from binary cache -==> util-linux-uuid: Successfully installed util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz - Search: 0.00s. Fetch: 0.01s. Install: 0.12s. Extract: 0.10s. Relocate: 0.01s. Total: 0.13s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz -==> Installing util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz [23/44] -==> Fetching file:///mirror/blobs/sha256/19/19f0c67fa4a6fbba8d28a816970d6ae9a6fb809294c33add6da436d1b5c246d3 - [100%] 466.57 KB @ 751.2 MB/s -==> Extracting libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx from binary cache -==> libbsd: Successfully installed libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.05s. Relocate: 0.01s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx -==> Installing libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx [24/44] -==> Fetching file:///mirror/blobs/sha256/55/55a205ae4e5c626a44a4e4e8ec35b0aeeb9f03851a3abbfd4eafa3acea384cab - [100%] 62.84 MB @ 421.2 GB/s -==> Extracting libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 from binary cache -==> libxml2: Successfully installed libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 - Search: 0.00s. Fetch: 0.01s. Install: 0.11s. Extract: 0.08s. Relocate: 0.02s. Total: 0.12s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 -==> Installing libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 [25/44] -==> Fetching file:///mirror/blobs/sha256/55/55d366e1ed4d9bff834caf7183afcef1b30dc15273a977e313fbb57ee0e22d79 - [100%] 92.66 KB @ 362.2 MB/s -==> Extracting pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f from binary cache -==> pigz: Successfully installed pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f -==> Installing pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f [26/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -==> Fetching file:///mirror/blobs/sha256/e5/e5157be2079ccc99173d7fd2213486da7176e82e8bf23ce080a7a02bdb7d47c7 - [100%] 689.50 KB @ 866.6 MB/s -==> Extracting expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m from binary cache -==> expat: Successfully installed expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m -==> Installing expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m [29/44] -==> Fetching file:///mirror/blobs/sha256/3f/3f941a4a6d8c6a544de9b9f9ca2c1edebbd0855a8282414be03b7ee494255ed6 - [100%] 65.22 MB @ 421.3 GB/s -==> Extracting hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml from binary cache -==> hwloc: Successfully installed hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml - Search: 0.00s. Fetch: 0.01s. Install: 0.19s. Extract: 0.15s. Relocate: 0.02s. Total: 0.20s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml -==> Installing hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml [30/44] -==> Fetching file:///mirror/blobs/sha256/62/62b08538ad6658858a7ca22c6df132b44bde7e26c857c5c0fb110bf017cd41b4 - [100%] 61.29 MB @ 391.1 GB/s -==> Extracting tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our from binary cache -==> tar: Successfully installed tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our -==> Installing tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our [31/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -==> Fetching file:///mirror/blobs/sha256/a1/a18f1c335be58a3aeb39c092dfe0c73984c32e2580f486d092dea5b1e407da17 - [100%] 11.28 MB @ 431.3 GB/s -==> Extracting sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d from binary cache -==> sqlite: Successfully installed sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d - Search: 0.00s. Fetch: 0.02s. Install: 0.25s. Extract: 0.21s. Relocate: 0.02s. Total: 0.27s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d -==> Installing sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d [33/44] -==> Fetching file:///mirror/blobs/sha256/e6/e64dc42db3bb276afc20902f2fcb1fee549d7e1eec9c27568d8b68a9070d4ba5 - [100%] 12.98 MB @ 581.3 GB/s -==> Extracting gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n from binary cache -==> gettext: Successfully installed gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n - Search: 0.00s. Fetch: 0.02s. Install: 0.58s. Extract: 0.53s. Relocate: 0.04s. Total: 0.61s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n -==> Installing gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n [34/44] -==> Fetching file:///mirror/blobs/sha256/13/13e18b86d168af128baf45c9ca8119ad4c2e2d76eb7a0b8047b79514c8e454a2 - [100%] 15.58 MB @ 471.3 GB/s -==> Extracting perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o from binary cache -==> perl: Successfully installed perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o - Search: 0.00s. Fetch: 0.03s. Install: 0.75s. Extract: 0.63s. Relocate: 0.10s. Total: 0.78s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o -==> Installing perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o [35/44] -==> Fetching file:///mirror/blobs/sha256/cd/cd166b12945d26bbf6a21ea4ca8d15c84ec769064c9364eb562d8fe70c28af37 - [100%] 61.03 MB @ 960.8 MB/s -==> Extracting autoconf-2.72-r3ant5t3prottmtc7yneqj6cr5gs6vvt from binary cache -==> autoconf: Successfully installed autoconf-2.72-r3ant5t3prottmtc7yneqj6cr5gs6vvt - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.04s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-r3ant5t3prottmtc7yneqj6cr5gs6vvt -==> Installing autoconf-2.72-r3ant5t3prottmtc7yneqj6cr5gs6vvt [36/44] -==> Fetching file:///mirror/blobs/sha256/d1/d16803492b1ade6e17bdf6601fc680467c31aa18850921432a42e4d741dfd406 - [100%] 68.28 MB @ 481.3 GB/s -==> Extracting openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk from binary cache -==> openssl: Successfully installed openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk - Search: 0.00s. Fetch: 0.02s. Install: 0.22s. Extract: 0.18s. Relocate: 0.02s. Total: 0.24s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk -==> Installing openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk [37/44] -==> Fetching file:///mirror/blobs/sha256/72/72fe4c49a0e381512d8c31a5a347af494a64b3d7f4631c6d67773d06bdb3fc81 - [100%] 707.31 KB @ 885.6 MB/s -==> Extracting automake-1.16.5-6ib4pvm3dvnewlphh52mrxjbd75oewev from binary cache -==> automake: Successfully installed automake-1.16.5-6ib4pvm3dvnewlphh52mrxjbd75oewev - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.04s. Relocate: 0.02s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-6ib4pvm3dvnewlphh52mrxjbd75oewev -==> Installing automake-1.16.5-6ib4pvm3dvnewlphh52mrxjbd75oewev [38/44] -==> Fetching file:///mirror/blobs/sha256/05/05cd00b722dcc2a1b80fc862d101e4f46753f4e50b0993328bdf63946d37bc9e - [100%] 61.29 MB @ 996.7 MB/s -==> Extracting curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d from binary cache -==> curl: Successfully installed curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d -==> Installing curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d [39/44] -==> Fetching file:///mirror/blobs/sha256/26/268194947254564c7d44943e697d3d29e811524c9ac80506a88d436b9b0a12d6 - [100%] 99.41 MB @ 371.4 GB/s -==> Extracting python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q from binary cache -==> python: Successfully installed python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q - Search: 0.00s. Fetch: 0.15s. Install: 3.27s. Extract: 3.11s. Relocate: 0.14s. Total: 3.42s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q -==> Installing python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q [40/44] -==> Fetching file:///mirror/blobs/sha256/68/689d4351df4932ce11f2828fde890996b3824266c37e139a5d2e2a01b33030fa - [100%] 31.66 MB @ 441.4 GB/s -==> Extracting cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft from binary cache -==> cmake: Successfully installed cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft - Search: 0.00s. Fetch: 0.05s. Install: 1.21s. Extract: 1.11s. Relocate: 0.09s. Total: 1.26s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft -==> Installing cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft [41/44] -==> Fetching file:///mirror/blobs/sha256/a4/a4055ea173b4a025c2dc02fe24b5e4b4c6a16ea2379b6b27ca3e884bd7d7524f - [100%] 63.01 MB @ 421.1 GB/s -==> Extracting yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt from binary cache -==> yaksa: Successfully installed yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.07s. Relocate: 0.01s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt -==> Installing yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt [42/44] -==> Fetching file:///mirror/blobs/sha256/6e/6e89829f4d416b51fc7b5e82548020e058051490a202ee81d89beae6de23ddf1 - [100%] 15.50 MB @ 471.3 GB/s -==> Extracting mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd from binary cache -==> mpich: Successfully installed mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd - Search: 0.00s. Fetch: 0.03s. Install: 0.96s. Extract: 0.90s. Relocate: 0.04s. Total: 0.99s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd -==> Installing mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd [43/44] -==> Fetching file:///mirror/blobs/sha256/fc/fc2f2350962144ebd017a2d5d6a5cc44ef2e2e9847cf9f83ce41e35862e8335c - [100%] 65.82 MB @ 411.2 GB/s -==> Extracting hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd from binary cache -==> hdf5: Successfully installed hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd - Search: 0.00s. Fetch: 0.02s. Install: 0.20s. Extract: 0.14s. Relocate: 0.04s. Total: 0.22s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd -==> Installing hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd [44/44] diff --git a/outputs/basics/hdf5-mpich.out b/outputs/basics/hdf5-mpich.out new file mode 100644 index 0000000000..be7c1a8022 --- /dev/null +++ b/outputs/basics/hdf5-mpich.out @@ -0,0 +1,10 @@ +$ spack install hdf5 ^mpich +[ ] itb4a2s libfabric@2.5.1 fetching from build cache (0s) +[ ] itb4a2s libfabric@2.5.1 relocating (0s) +[+] itb4a2s libfabric@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.5.1-itb4a2swgfzelii4nbzmo3fzdnfq5rhy (0s) +[ ] xkilhym mpich@5.0.1 fetching from build cache (0s) +[ ] xkilhym mpich@5.0.1 relocating (0s) +[+] xkilhym mpich@5.0.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-5.0.1-xkilhym6dn2n7afhh5dtjskmj5jwjbhm (0s) +[ ] jceyzq7 hdf5@1.14.6 fetching from build cache (1s) +[ ] jceyzq7 hdf5@1.14.6 relocating (1s) +[+] jceyzq7 hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-jceyzq7qvavwbbfywa3dt3jfurkfk4ba (1s) diff --git a/outputs/basics/hdf5-no-mpi.out b/outputs/basics/hdf5-no-mpi.out index 27f9326a2c..7c5651ba23 100644 --- a/outputs/basics/hdf5-no-mpi.out +++ b/outputs/basics/hdf5-no-mpi.out @@ -1,23 +1,4 @@ $ spack install hdf5~mpi -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t -==> Fetching file:///mirror/blobs/sha256/5e/5e7d99c001b1d6e3169849a1f04f86749c9a50c6f9d72bd3f231504b99974d84 - [100%] 65.32 MB @ 361.2 GB/s -==> Extracting hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh from binary cache -==> hdf5: Successfully installed hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh - Search: 0.00s. Fetch: 0.17s. Install: 0.19s. Extract: 0.16s. Relocate: 0.02s. Total: 0.37s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh -==> Installing hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh [16/16] +[ ] as6mmcj hdf5@1.14.6 fetching from build cache (0s) +[ ] as6mmcj hdf5@1.14.6 relocating (0s) +[+] as6mmcj hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-as6mmcjwjlgjhglp62wogxim6exfgtvd (0s) diff --git a/outputs/basics/hdf5-spec.out b/outputs/basics/hdf5-spec.out index 4776db5aec..78d785a135 100644 --- a/outputs/basics/hdf5-spec.out +++ b/outputs/basics/hdf5-spec.out @@ -1,51 +1,51 @@ $ spack spec hdf5 - - hdf5@1.14.6~cxx~fortran~hl~ipo~java~map+mpi+shared~subfiling~szip~threadsafe+tools api=default build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^cmake@3.31.9~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^curl@8.15.0~gssapi~ldap~libidn2~librtmp~libssh+libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=mbedtls,openssl platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^libssh2@1.11.1+shared build_system=autotools crypto=mbedtls platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^xz@5.6.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^mbedtls@2.28.9+pic build_system=makefile build_type=Release libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^nghttp2@1.48.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^openssl@3.6.0~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^ca-certificates-mozilla@2025-08-12 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 - - ^ncurses@6.5-20250705~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^compiler-wrapper@1.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[e] ^gcc@11.4.0~binutils+bootstrap~graphite~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^gcc-runtime@11.4.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[e] ^glibc@2.35 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^openmpi@5.0.8+atomics~cuda~debug+fortran~gpfs~internal-hwloc~internal-libevent~internal-pmix~ipv6~java~lustre~memchecker~openshmem~rocm~romio+rsh~static~two_level_namespace+vt+wrapper-rpath build_system=autotools fabrics:=none romio-filesystem:=none schedulers:=none platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx,fortran=gcc@11.4.0 - - ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 - - ^m4@1.4.20+sigsegv build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^libsigsegv@2.14 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^automake@1.16.5 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^hwloc@2.12.2~cairo~cuda~gl~level_zero~libudev+libxml2~nvml~opencl+pci~rocm build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^libpciaccess@0.17 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^util-macros@1.20.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 - - ^libxml2@2.13.5~http+pic~python+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^libevent@2.1.12+openssl build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^libtool@2.4.7 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^gettext@0.23.1+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^pigz@2.8 build_system=makefile platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^numactl@2.0.18 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^openssh@9.9p1+gssapi build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^krb5@1.21.3+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^bison@3.8.2~color build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^libedit@3.1-20240808 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^libxcrypt@4.4.38~obsolete_api build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^gdbm@1.25 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^pmix@6.0.0~munge~python build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^prrte@4.0.0 build_system=autotools schedulers:=none platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^flex@2.6.3+lex~nls build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^zlib-ng@2.0.7 cflags=-O3 +compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 +[b] hdf5@1.14.6~cxx~fortran~hl~ipo~java~map+mpi+shared~subfiling~szip~threadsafe+tools api=default build_system=cmake build_type=Release generator=make platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^cmake@3.31.11~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^curl@8.20.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^nghttp2@1.67.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^openssl@3.6.1~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^ca-certificates-mozilla@2026-03-19 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ^ncurses@6.6~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ^compiler-wrapper@1.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] ^gcc@15.2.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] ^gcc-runtime@15.2.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] ^glibc@2.43 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^openmpi@5.0.10+atomics~cuda~debug+fortran~gpfs~internal-hwloc~internal-libevent~internal-pmix~ipv6~java~lustre~memchecker~openshmem~rocm~romio+rsh~static~two_level_namespace+vt+wrapper-rpath build_system=autotools fabrics:=none patches:=646eb1a romio-filesystem:=none schedulers:=none platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx,fortran=gcc@15.2.0 +[b] ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ^m4@1.4.21+sigsegv build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^libsigsegv@2.15 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^automake@1.18.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^hwloc@2.13.0~cairo~cuda~gl~level_zero~libudev+libxml2~nvml~opencl+pci~rocm build_system=autotools libs:=shared,static patches:=b4db98b platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^libpciaccess@0.17 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^util-macros@1.20.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^libevent@2.1.12+openssl build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^libtool@2.5.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^file@5.46+static build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^gettext@1.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^numactl@2.0.19 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^openssh@10.3p1+gssapi build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^krb5@1.22.2+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^bison@3.8.2~color build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^libedit@3.1-20251016 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^libxcrypt@4.5.2~obsolete_api build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^pmix@6.1.0~munge~python build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^prrte@4.1.0 build_system=autotools patches:=64faa1a,91b28f5 schedulers:=none platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^flex@2.6.3+lex~nls build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^zlib-ng@2.3.3+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 diff --git a/outputs/basics/hdf5.out b/outputs/basics/hdf5.out index 2479f89314..114ec1fdd8 100644 --- a/outputs/basics/hdf5.out +++ b/outputs/basics/hdf5.out @@ -1,308 +1,73 @@ $ spack install hdf5 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -==> Fetching file:///mirror/blobs/sha256/0e/0ef0cfbbeac0c8aafa641c7518c7309ff69c9f3e1fc75611c445d9642e6967c7 - [100%] 133.95 KB @ 433.2 MB/s -==> Extracting ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l from binary cache -==> ca-certificates-mozilla: Successfully installed ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l - Search: 0.00s. Fetch: 0.16s. Install: 0.04s. Extract: 0.04s. Relocate: 0.00s. Total: 0.21s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l -==> Installing ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l [4/49] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/66/66b47dd2659fdd1aeca7d50aa2b32c9e5edde63a74e5233d3af0fa9ea98e12e6 - [100%] 62.20 MB @ 381.1 GB/s -==> Extracting libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq from binary cache -==> libiconv: Successfully installed libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.06s. Relocate: 0.01s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -==> Installing libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq [7/49] -==> Fetching file:///mirror/blobs/sha256/1d/1dfdc937ee8598e5d68494ac32c40bae8a780ae6d002f970ced9df2337813a45 - [100%] 463.08 KB @ 747.9 MB/s -==> Extracting pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h from binary cache -==> pkgconf: Successfully installed pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h - Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.02s. Relocate: 0.01s. Total: 0.04s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -==> Installing pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [8/49] -==> Fetching file:///mirror/blobs/sha256/c6/c6d49b50b0d0d82666133a31f3073ec9bedaf33e3cc2eb2b56eecfd976973063 - [100%] 63.50 MB @ 411.2 GB/s -==> Extracting berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma from binary cache -==> berkeley-db: Successfully installed berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.07s. Relocate: 0.02s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -==> Installing berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [9/49] -==> Fetching file:///mirror/blobs/sha256/b1/b1906ca502af23b4b0f3282011456bd4ca5523260fd89da710f430a253435c0a - [100%] 32.41 KB @ 225.4 MB/s -==> Extracting util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b from binary cache -==> util-macros: Successfully installed util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b - Search: 0.00s. Fetch: 0.01s. Install: 0.01s. Extract: 0.01s. Relocate: 0.00s. Total: 0.02s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b -==> Installing util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b [10/49] -==> Fetching file:///mirror/blobs/sha256/c6/c62eaf4a6c39647f96fdb028cbacbd1a80df424ab98658992cb8279939ed8c41 - [100%] 62.56 MB @ 431.2 GB/s -==> Extracting mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle from binary cache -==> mbedtls: Successfully installed mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.08s. Relocate: 0.02s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -==> Installing mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle [11/49] -==> Fetching file:///mirror/blobs/sha256/3f/3fac396598eef662dd75093538ce2e36aa3338b60b65b9c50e86fba06f3b4bc8 - [100%] 61.57 MB @ 471.1 GB/s -==> Extracting zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea from binary cache -==> zstd: Successfully installed zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -==> Installing zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea [12/49] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -==> Fetching file:///mirror/blobs/sha256/d1/d17384f0564b5ebf91d4af10fbca9a24a9f60aefb00c518b111ff8a69f32e6eb - [100%] 61.87 MB @ 501.2 GB/s -==> Extracting xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph from binary cache -==> xz: Successfully installed xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph - Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.07s. Relocate: 0.01s. Total: 0.09s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -==> Installing xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph [14/49] -==> Fetching file:///mirror/blobs/sha256/44/4494a8094c6307a283260425c2fcae18f131557165dff36a1fee8c7865c0d8f8 - [100%] 117.07 KB @ 414.0 MB/s -==> Extracting libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w from binary cache -==> libsigsegv: Successfully installed libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -==> Installing libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w [15/49] -==> Fetching file:///mirror/blobs/sha256/34/34adb03543f15fe57c37dd1be4b1c985278c6f9146df526aeda980e6cb70ba75 - [100%] 61.13 MB @ 951.1 MB/s -==> Extracting diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk from binary cache -==> diffutils: Successfully installed diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk -==> Installing diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk [16/49] -==> Fetching file:///mirror/blobs/sha256/4e/4ed43030e94ab138bf850645bd620d9002ab739ca3e77f16ae6bae30283e97f5 - [100%] 67.06 MB @ 481.3 GB/s -==> Extracting ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz from binary cache -==> ncurses: Successfully installed ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz - Search: 0.00s. Fetch: 0.02s. Install: 0.54s. Extract: 0.52s. Relocate: 0.02s. Total: 0.56s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -==> Installing ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz [17/49] -==> Fetching file:///mirror/blobs/sha256/78/7881079c346d61e1dfba6b1b3ca14a553d238f7eca9f4acdc8c57e5b54214367 - [100%] 196.78 KB @ 538.1 MB/s -==> Extracting libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 from binary cache -==> libpciaccess: Successfully installed libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -==> Installing libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 [18/49] -==> Fetching file:///mirror/blobs/sha256/27/27af2631f6615cec0d1b2406c35636d51fa37af79c17946c6130805e7c207b06 - [100%] 92.66 KB @ 406.9 MB/s -==> Extracting pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i from binary cache -==> pigz: Successfully installed pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -==> Installing pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [19/49] -==> Fetching file:///mirror/blobs/sha256/10/10009edc0ab662fc4ced331ddbdf14aeef167df2b2dc41f7933dcd9d127c9cb5 - [100%] 62.84 MB @ 411.2 GB/s -==> Extracting libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo from binary cache -==> libxml2: Successfully installed libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.08s. Relocate: 0.02s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -==> Installing libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo [20/49] -==> Fetching file:///mirror/blobs/sha256/8a/8a5c03cbe85a0616b5a7453c2e49c73459bca8d68fa34ffc30983f196bd05c99 - [100%] 61.34 MB @ 431.0 GB/s -==> Extracting libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz from binary cache -==> libssh2: Successfully installed libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.05s. Relocate: 0.01s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -==> Installing libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz [21/49] -==> Fetching file:///mirror/blobs/sha256/ce/ce4f5147cf39139b278ca64732cad4621a778ba23d0411154f8c764b5683f574 - [100%] 898.08 KB @ 930.8 MB/s -==> Extracting nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg from binary cache -==> nghttp2: Successfully installed nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -==> Installing nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg [22/49] -==> Fetching file:///mirror/blobs/sha256/7a/7a18b14df737930ea1c770febdf5eedf98552e5dfc62e3cb9d405a19fce3ec3b - [100%] 304.49 KB @ 648.9 MB/s -==> Extracting bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl from binary cache -==> bzip2: Successfully installed bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl - Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -==> Installing bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [23/49] -==> Fetching file:///mirror/blobs/sha256/c2/c2c4bbbacae5135ceab3532639bae0ea3a94a66b0ebf0afd55fa6fb0a4bb663f - [100%] 737.83 KB @ 857.5 MB/s -==> Extracting m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g from binary cache -==> m4: Successfully installed m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.03s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -==> Installing m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g [24/49] -==> Fetching file:///mirror/blobs/sha256/45/45c1e7c02f8c8fbd907bdef165d55df31c77bc10c73036f2391ca5f39aac0281 - [100%] 61.75 MB @ 471.2 GB/s -==> Extracting readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo from binary cache -==> readline: Successfully installed readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.05s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -==> Installing readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo [25/49] -==> Fetching file:///mirror/blobs/sha256/48/4888cf6a6164231bdbf7db524bdb5e6625d6fcc78050679a637aa622b8286397 - [100%] 956.91 KB @ 998.7 MB/s -==> Extracting libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x from binary cache -==> libedit: Successfully installed libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.03s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x -==> Installing libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x [26/49] -==> Fetching file:///mirror/blobs/sha256/b5/b5f1aa7fd742a997b6da16a3bc722058e760f1b08e7a48e95857c7211e156bb0 - [100%] 65.21 MB @ 421.3 GB/s -==> Extracting hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 from binary cache -==> hwloc: Successfully installed hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 - Search: 0.00s. Fetch: 0.01s. Install: 0.18s. Extract: 0.15s. Relocate: 0.02s. Total: 0.20s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 -==> Installing hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 [27/49] -==> Fetching file:///mirror/blobs/sha256/45/45305870482486982cfc11ad7645b9bfc9ec49c7fff03110ac948e3848482cf9 - [100%] 61.29 MB @ 481.1 GB/s -==> Extracting tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc from binary cache -==> tar: Successfully installed tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.02s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -==> Installing tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [28/49] -==> Fetching file:///mirror/blobs/sha256/65/658171bfb6af49d486f682120270e8df942cac83c90a52d4500ff1c8dfbe514a - [100%] 61.95 MB @ 351.1 GB/s -==> Extracting bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr from binary cache -==> bison: Successfully installed bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.08s. Relocate: 0.01s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr -==> Installing bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr [29/49] -==> Fetching file:///mirror/blobs/sha256/c5/c50e18794a41a9e14570ec807cfdbc565907a7aefab4021c1bba6b7a477ebee2 - [100%] 61.01 MB @ 451.0 GB/s -==> Extracting gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 from binary cache -==> gdbm: Successfully installed gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.03s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -==> Installing gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 [30/49] -==> Fetching file:///mirror/blobs/sha256/72/725da24bd225c126a09054e27f312f4a101ec9445e1769aff787289c8f83fdfa - [100%] 12.98 MB @ 451.3 GB/s -==> Extracting gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 from binary cache -==> gettext: Successfully installed gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 - Search: 0.00s. Fetch: 0.02s. Install: 0.57s. Extract: 0.52s. Relocate: 0.04s. Total: 0.59s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -==> Installing gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 [31/49] -==> Fetching file:///mirror/blobs/sha256/ef/ef3c99d9afb190f512d368f31d533d430e3d8fc10338d053bf124a41ce425577 - [100%] 15.58 MB @ 441.3 GB/s -==> Extracting perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t from binary cache -==> perl: Successfully installed perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t - Search: 0.00s. Fetch: 0.03s. Install: 0.74s. Extract: 0.64s. Relocate: 0.10s. Total: 0.77s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t -==> Installing perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t [32/49] -==> Fetching file:///mirror/blobs/sha256/89/89326ba960a6e9a60af920776a173d0ed64900afb9e7a19b74dded5e2a4f990a - [100%] 61.50 MB @ 461.1 GB/s -==> Extracting findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert from binary cache -==> findutils: Successfully installed findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.05s. Relocate: 0.01s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -==> Installing findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert [33/49] -==> Fetching file:///mirror/blobs/sha256/ae/aee4ab2b46849d36e4ed1e6aff9db9bb55ab413eff401b37154ec324570a8dd1 - [100%] 771.91 KB @ 919.5 MB/s -==> Extracting libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr from binary cache -==> libxcrypt: Successfully installed libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -==> Installing libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr [34/49] -==> Fetching file:///mirror/blobs/sha256/b4/b4b3cb6b253eaecc83bfa130098ac8f01a70fd0f2a8870451fcd74aaa1e29ecd - [100%] 68.29 MB @ 491.3 GB/s -==> Extracting openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s from binary cache -==> openssl: Successfully installed openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s - Search: 0.00s. Fetch: 0.02s. Install: 0.21s. Extract: 0.18s. Relocate: 0.02s. Total: 0.23s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -==> Installing openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s [35/49] -==> Fetching file:///mirror/blobs/sha256/76/769c8eaef6cf77a19fe64faaed4427136ed3e3df9a5c5956450ccff49832d8a0 - [100%] 61.03 MB @ 411.0 GB/s -==> Extracting autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz from binary cache -==> autoconf: Successfully installed autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.04s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz -==> Installing autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz [36/49] -==> Fetching file:///mirror/blobs/sha256/d3/d3a777a6a63cab468b47c9ff4d197de43448ac2d69b27e9773ff8f07c99f2038 - [100%] 518.48 KB @ 654.0 MB/s -==> Extracting flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj from binary cache -==> flex: Successfully installed flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.04s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj -==> Installing flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj [37/49] -==> Fetching file:///mirror/blobs/sha256/1a/1adc6688eb4e32d0cd8929461927011ff1d1634ea19982efe86954af39575786 - [100%] 807.31 KB @ 871.1 MB/s -==> Extracting libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel from binary cache -==> libtool: Successfully installed libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.03s. Relocate: 0.03s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -==> Installing libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel [38/49] -==> Fetching file:///mirror/blobs/sha256/ed/ed019861f13fc782c00c428b0d206fd96d2409d923c32772084fe788117f24d6 - [100%] 63.00 MB @ 371.2 GB/s -==> Extracting libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri from binary cache -==> libevent: Successfully installed libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri - Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.07s. Relocate: 0.01s. Total: 0.10s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri -==> Installing libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri [39/49] -==> Fetching file:///mirror/blobs/sha256/62/62111ab6149e8de545095a260d5ddac19529c6e23696164ca08f2c6c4b960909 - [100%] 61.38 MB @ 441.1 GB/s -==> Extracting curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz from binary cache -==> curl: Successfully installed curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.02s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz -==> Installing curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz [40/49] -==> Fetching file:///mirror/blobs/sha256/92/9241a95cbd75686a0858b3e9e6340a113fa143a8a6f5ee25e1e9f42a7fc52232 - [100%] 62.03 MB @ 471.1 GB/s -==> Extracting krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu from binary cache -==> krb5: Successfully installed krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu - Search: 0.00s. Fetch: 0.01s. Install: 0.12s. Extract: 0.07s. Relocate: 0.04s. Total: 0.13s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu -==> Installing krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu [41/49] -==> Fetching file:///mirror/blobs/sha256/25/251ef730f1ff850ab1b34a1d626fca215106667757afdd592811abd8a35b4cb4 - [100%] 707.26 KB @ 936.7 MB/s -==> Extracting automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau from binary cache -==> automake: Successfully installed automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.04s. Relocate: 0.02s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau -==> Installing automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau [42/49] -==> Fetching file:///mirror/blobs/sha256/14/14509fcf26e36631b550c2401a1f9adc8246f781120fda7e4201f1548f772804 - [100%] 66.41 MB @ 361.2 GB/s -==> Extracting pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm from binary cache -==> pmix: Successfully installed pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm - Search: 0.00s. Fetch: 0.02s. Install: 0.20s. Extract: 0.15s. Relocate: 0.03s. Total: 0.21s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm -==> Installing pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm [43/49] -==> Fetching file:///mirror/blobs/sha256/83/8333941640a5fd6568dfe48908b7adc12ba97163affa301281e80e0d9f1a672a - [100%] 31.66 MB @ 421.4 GB/s -==> Extracting cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t from binary cache -==> cmake: Successfully installed cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t - Search: 0.00s. Fetch: 0.05s. Install: 1.20s. Extract: 1.10s. Relocate: 0.09s. Total: 1.25s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t -==> Installing cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t [44/49] -==> Fetching file:///mirror/blobs/sha256/ae/ae236b7dbea2d551b84907dc52b129e78bde46e2f545bd07e5cd2e5a1817939f - [100%] 63.06 MB @ 401.1 GB/s -==> Extracting openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e from binary cache -==> openssh: Successfully installed openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e - Search: 0.00s. Fetch: 0.01s. Install: 0.13s. Extract: 0.07s. Relocate: 0.04s. Total: 0.14s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e -==> Installing openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e [45/49] -==> Fetching file:///mirror/blobs/sha256/08/0871232ee4fc67d77039b6f53912897ff81c6614ea5d45410120e300ed7f8e31 - [100%] 427.92 KB @ 802.7 MB/s -==> Extracting numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp from binary cache -==> numactl: Successfully installed numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp -==> Installing numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp [46/49] -==> Fetching file:///mirror/blobs/sha256/07/078f59369bf8079cde7b22e60697307d41294d228794e96e6d0d1b895f434e39 - [100%] 64.89 MB @ 441.3 GB/s -==> Extracting prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w from binary cache -==> prrte: Successfully installed prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w - Search: 0.00s. Fetch: 0.01s. Install: 0.15s. Extract: 0.11s. Relocate: 0.02s. Total: 0.17s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w -==> Installing prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w [47/49] -==> Fetching file:///mirror/blobs/sha256/7e/7ed1f4a69cac1ee5aba05154bd28e707d1bf7dd66bc69ca73a214dd6c699c3e8 - [100%] 14.50 MB @ 441.4 GB/s -==> Extracting openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln from binary cache -==> openmpi: Successfully installed openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln - Search: 0.00s. Fetch: 0.03s. Install: 0.69s. Extract: 0.64s. Relocate: 0.03s. Total: 0.72s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln -==> Installing openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln [48/49] -==> Fetching file:///mirror/blobs/sha256/fa/fa0049cf0a1dd88d2c331c771c32730a7f567969d27c1932dddd6adc10e21c5b - [100%] 65.63 MB @ 411.3 GB/s -==> Extracting hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv from binary cache -==> hdf5: Successfully installed hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv - Search: 0.00s. Fetch: 0.01s. Install: 0.19s. Extract: 0.13s. Relocate: 0.04s. Total: 0.20s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv -==> Installing hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv [49/49] +[ ] g72d7i3 zlib-ng@2.3.3 fetching from build cache (0s) +[ ] g72d7i3 zlib-ng@2.3.3 relocating (0s) +[ ] yvl6jpi pkgconf@2.5.1 fetching from build cache (0s) +[ ] yvl6jpi pkgconf@2.5.1 relocating (0s) +[ ] ekvivpv ncurses@6.6 fetching from build cache (0s) +[ ] bkzcu2s libxcrypt@4.5.2 fetching from build cache (0s) +[ ] hhjyyqy xz@5.8.3 fetching from build cache (0s) +[ ] 63aruxk zstd@1.5.7 fetching from build cache (0s) +[ ] vbwvgwx libiconv@1.18 fetching from build cache (0s) +[ ] bkzcu2s libxcrypt@4.5.2 relocating (0s) +[ ] cbtgjrh bzip2@1.0.8 fetching from build cache (0s) +[ ] ekvivpv ncurses@6.6 relocating (0s) +[ ] 2t2useu numactl@2.0.19 fetching from build cache (0s) +[ ] hhjyyqy xz@5.8.3 relocating (0s) +[ ] qzkk5ym libpciaccess@0.17 fetching from build cache (0s) +[ ] vbwvgwx libiconv@1.18 relocating (0s) +[ ] 63aruxk zstd@1.5.7 relocating (0s) +[ ] cbtgjrh bzip2@1.0.8 relocating (0s) +[ ] 2t2useu numactl@2.0.19 relocating (0s) +[+] g72d7i3 zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-g72d7i3bvgfmroytbp2d6giv67ymputp (0s) +[ ] qzkk5ym libpciaccess@0.17 relocating (0s) +[+] yvl6jpi pkgconf@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-yvl6jpilvkgopkrc2aanfhd3z7lz7r3l (0s) +[+] bkzcu2s libxcrypt@4.5.2 /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.5.2-bkzcu2s2hndgbhrkbhtlcnlvxg2em7e3 (0s) +[+] cbtgjrh bzip2@1.0.8 /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-cbtgjrhpwivtaewryhbkj6zxuukhoekx (0s) +[ ] 33yozp5 openssl@3.6.1 fetching from build cache (0s) +[+] 63aruxk zstd@1.5.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-63aruxky3a4xfivh32jt676wmoftlzy6 (0s) +[ ] afklka7 pigz@2.8 fetching from build cache (0s) +[+] qzkk5ym libpciaccess@0.17 /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-qzkk5ymbu3z37kjhgylrkdy7w3hixzna (0s) +[+] vbwvgwx libiconv@1.18 /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-vbwvgwxvjrccmptlen3ebo555lk5wior (0s) +[+] hhjyyqy xz@5.8.3 /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.8.3-hhjyyqygxtpzvdyoddyypk5sfyqdcmqe (0s) +[ ] afklka7 pigz@2.8 relocating (0s) +[+] 2t2useu numactl@2.0.19 /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.19-2t2useutfyn7jozdzlunsc6336q6fcqx (0s) +[ ] 33yozp5 openssl@3.6.1 relocating (0s) +[ ] ujlg2ua libxml2@2.15.3 fetching from build cache (0s) +[+] afklka7 pigz@2.8 /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-afklka7uurghkxzfzr2kpku3hq64dp2w (0s) +[ ] ujlg2ua libxml2@2.15.3 relocating (0s) +[ ] f5xe4px tar@1.35 fetching from build cache (0s) +[ ] f5xe4px tar@1.35 relocating (0s) +[+] ujlg2ua libxml2@2.15.3 /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.15.3-ujlg2uai6quwrnqjswhpatdam2owxnzh (0s) +[+] 33yozp5 openssl@3.6.1 /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.1-33yozp5l5ca4dnkgjjf2l2tdvt47mdna (0s) +[+] f5xe4px tar@1.35 /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-f5xe4pxaujwc2cs2ppllgloh7gwbkkyd (0s) +[ ] oopqoag libevent@2.1.12 fetching from build cache (0s) +[ ] oopqoag libevent@2.1.12 relocating (0s) +[+] ekvivpv ncurses@6.6 /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.6-ekvivpvwxpsfmbydk42j7me3ckftiheo (0s) +[+] oopqoag libevent@2.1.12 /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-oopqoagvk4zhptmzymsbim2dmnfy37zf (0s) +[ ] sle3ix4 gettext@1.0 fetching from build cache (0s) +[ ] uwyh3xy libedit@3.1-20251016 fetching from build cache (0s) +[ ] ujctyey hwloc@2.13.0 fetching from build cache (0s) +[ ] uwyh3xy libedit@3.1-20251016 relocating (0s) +[ ] sle3ix4 gettext@1.0 relocating (0s) +[ ] ujctyey hwloc@2.13.0 relocating (0s) +[+] uwyh3xy libedit@3.1-20251016 /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20251016-uwyh3xy52rwywtmgrdtwnljgevcnnctj (0s) +[+] ujctyey hwloc@2.13.0 /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.13.0-ujctyeyjzvata7o7oje5nefjmgqabosi (0s) +[ ] ycyqykw pmix@6.1.0 fetching from build cache (0s) +[ ] ycyqykw pmix@6.1.0 relocating (0s) +[+] ycyqykw pmix@6.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.1.0-ycyqykw634st7ajhnrl2kqnkldgtk3xr (0s) +[ ] nldxmxw prrte@4.1.0 fetching from build cache (0s) +[+] sle3ix4 gettext@1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-1.0-sle3ix4nizh2w3uwvaokqlqlotlaexbu (0s) +[ ] nldxmxw prrte@4.1.0 relocating (1s) +[ ] ldqeqfw krb5@1.22.2 fetching from build cache (1s) +[ ] ldqeqfw krb5@1.22.2 relocating (1s) +[+] ldqeqfw krb5@1.22.2 /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.22.2-ldqeqfwa76qeegjqhv72by6ayv5xlwae (1s) +[+] nldxmxw prrte@4.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.1.0-nldxmxwkhusnlqwqsuacqvn3t5r6bpjb (1s) +[ ] m6yx5j3 openssh@10.3p1 fetching from build cache (0s) +[ ] m6yx5j3 openssh@10.3p1 relocating (0s) +[+] m6yx5j3 openssh@10.3p1 /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-10.3p1-m6yx5j3srcybuucnboqjse2jc2a35vxq (0s) +[ ] qfut5qq openmpi@5.0.10 fetching from build cache (0s) +[ ] qfut5qq openmpi@5.0.10 relocating (0s) +[+] qfut5qq openmpi@5.0.10 /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.10-qfut5qqwp2fzaq3ymgk7nxvjv3qyrvml (0s) +[ ] 7cwv3st hdf5@1.14.6 fetching from build cache (0s) +[ ] 7cwv3st hdf5@1.14.6 relocating (0s) +[+] 7cwv3st hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7cwv3stkmkwxjbnujvpc6drqh3af5cwz (0s) diff --git a/outputs/basics/info-zlib.out b/outputs/basics/info-zlib.out new file mode 100644 index 0000000000..8635962f8c --- /dev/null +++ b/outputs/basics/info-zlib.out @@ -0,0 +1,44 @@ +$ spack info --no-dependencies --no-versions zlib-ng +AutotoolsPackage: zlib-ng + +Description: + zlib replacement with optimizations for next generation systems. + +Homepage: https://github.com/zlib-ng/zlib-ng + +Variants: + build_system [autotools] autotools, cmake + Build systems supported by the package + + build_type [Release] Debug, MinSizeRel, RelWithDebInfo, Release + when build_system=cmake + CMake build type + + compat [true] false, true + Enable compatibility API + + generator [make] none + when build_system=cmake + the build system generator to use + + ipo [false] false, true + when build_system=cmake %cmake@3.9: + CMake interprocedural optimization + + new_strategies [true] false, true + Enable new deflate strategies + + opt [true] false, true + Enable optimizations + + pic [true] false, true + Enable position-independent code (PIC) + + shared [true] false, true + Build shared library + + +Licenses: + Zlib + + diff --git a/outputs/basics/install-gcc-12.1.0.out b/outputs/basics/install-gcc-12.1.0.out index 8b72051c60..880ea216eb 100644 --- a/outputs/basics/install-gcc-12.1.0.out +++ b/outputs/basics/install-gcc-12.1.0.out @@ -1,77 +1,16 @@ -$ spack install gcc@12 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/78/78bdc9d57126ca9978f6f134fcd63b65f193826176545252fe02e4bb1ad8e780 - [100%] 694.36 KB @ 826.2 MB/s -==> Extracting autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs from binary cache -==> autoconf-archive: Successfully installed autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs - Search: 0.00s. Fetch: 0.17s. Install: 0.15s. Extract: 0.13s. Relocate: 0.00s. Total: 0.32s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs -==> Installing autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs [8/33] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz -==> Fetching file:///mirror/blobs/sha256/e0/e01036e697dbfdc8fc3ce8a2c4162aaed2ade7cd28f519516941167f7e2029ab - [100%] 63.04 MB @ 401.2 GB/s -==> Extracting texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix from binary cache -==> texinfo: Successfully installed texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix - Search: 0.00s. Fetch: 0.01s. Install: 0.21s. Extract: 0.16s. Relocate: 0.03s. Total: 0.22s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix -==> Installing texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix [28/33] -==> Fetching file:///mirror/blobs/sha256/b5/b57252a0c7495982ba160d400ea7d010773dd2f00b63561f7303add6c412d22f - [100%] 910.58 KB @ 950.5 MB/s -==> Extracting gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu from binary cache -==> gmp: Successfully installed gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu -==> Installing gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu [29/33] -==> Fetching file:///mirror/blobs/sha256/1d/1d04af1bb1c8c72898e3699705f3baa628cecdc5926864a15f59875812267be3 - [100%] 62.71 MB @ 381.2 GB/s -==> Extracting mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud from binary cache -==> mpfr: Successfully installed mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud - Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.06s. Relocate: 0.01s. Total: 0.10s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud -==> Installing mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud [30/33] -==> Fetching file:///mirror/blobs/sha256/94/94b6854379dc5c2a979fbb57e93a339ce21c8be52a24596eef886dfa741f973f - [100%] 62.37 MB @ 391.2 GB/s -==> Extracting gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd from binary cache -==> gawk: Successfully installed gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.06s. Relocate: 0.02s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd -==> Installing gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd [31/33] -==> Fetching file:///mirror/blobs/sha256/79/79a434126cb4944739f23d9450686d25c92f2a51b162f06e451bd0f1f4ce94e2 - [100%] 635.39 KB @ 835.2 MB/s -==> Extracting mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog from binary cache -==> mpc: Successfully installed mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog - Search: 0.00s. Fetch: 0.01s. Install: 0.26s. Extract: 0.02s. Relocate: 0.01s. Total: 0.26s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog -==> Installing mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog [32/33] -==> Fetching file:///mirror/blobs/sha256/1f/1fc94cabbbd6e9c052ea3a10d368fcbd30d3b2c4f18da478323a5e354cec9596 - [100%] 651.91 MB @ 451.4 GB/s -==> Extracting gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc from binary cache -==> Wrote new spec file to /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc/lib/gcc/x86_64-pc-linux-gnu/12.3.0/specs -==> gcc: Successfully installed gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc - Search: 0.00s. Fetch: 0.94s. Install: 12.50s. Extract: 11.10s. Relocate: 1.35s. Total: 13.44s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc -==> Installing gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc [33/33] +$ spack install gcc@16 +[ ] xpmsy5x gmp@6.3.0 fetching from build cache (1s) +[ ] cuzgmus binutils@2.46.0 fetching from build cache (1s) +[ ] xpmsy5x gmp@6.3.0 relocating (1s) +[ ] cuzgmus binutils@2.46.0 relocating (1s) +[+] xpmsy5x gmp@6.3.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-xpmsy5xffenfvl6lc5shb5a5krckrznd (1s) +[ ] melg7ga mpfr@4.2.2 fetching from build cache (0s) +[ ] melg7ga mpfr@4.2.2 relocating (0s) +[+] cuzgmus binutils@2.46.0 /home/spack/spack/opt/spack/linux-x86_64_v3/binutils-2.46.0-cuzgmusnboe4pknwnod4jziquvzteeya (1s) +[+] melg7ga mpfr@4.2.2 /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.2-melg7gafkownovvlndh46ljc4nuf5puy (0s) +[ ] gxmoxea mpc@1.4.1 fetching from build cache (0s) +[ ] gxmoxea mpc@1.4.1 relocating (0s) +[+] gxmoxea mpc@1.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.4.1-gxmoxea2jy4kihilaqibmhjvvuea3ydy (0s) +[ ] vlwdxlj gcc@16.1.0 fetching from build cache (0s) +[ ] vlwdxlj gcc@16.1.0 relocating (0s) +[+] vlwdxlj gcc@16.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-16.1.0-vlwdxljzbis42fjrlecvyo4tmuq5eebn (1s) diff --git a/outputs/basics/install-gcc-16.out b/outputs/basics/install-gcc-16.out new file mode 100644 index 0000000000..fcb47d1937 --- /dev/null +++ b/outputs/basics/install-gcc-16.out @@ -0,0 +1,16 @@ +$ spack install gcc@16 +[ ] xpmsy5x gmp@6.3.0 fetching from build cache (0s) +[ ] cuzgmus binutils@2.46.0 fetching from build cache (0s) +[ ] xpmsy5x gmp@6.3.0 relocating (0s) +[ ] cuzgmus binutils@2.46.0 relocating (0s) +[+] xpmsy5x gmp@6.3.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-xpmsy5xffenfvl6lc5shb5a5krckrznd (0s) +[ ] melg7ga mpfr@4.2.2 fetching from build cache (0s) +[ ] melg7ga mpfr@4.2.2 relocating (0s) +[+] cuzgmus binutils@2.46.0 /home/spack/spack/opt/spack/linux-x86_64_v3/binutils-2.46.0-cuzgmusnboe4pknwnod4jziquvzteeya (0s) +[+] melg7ga mpfr@4.2.2 /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.2-melg7gafkownovvlndh46ljc4nuf5puy (0s) +[ ] gxmoxea mpc@1.4.1 fetching from build cache (0s) +[ ] gxmoxea mpc@1.4.1 relocating (1s) +[+] gxmoxea mpc@1.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.4.1-gxmoxea2jy4kihilaqibmhjvvuea3ydy (1s) +[ ] vlwdxlj gcc@16.1.0 fetching from build cache (0s) +[ ] vlwdxlj gcc@16.1.0 relocating (0s) +[+] vlwdxlj gcc@16.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-16.1.0-vlwdxljzbis42fjrlecvyo4tmuq5eebn (1s) diff --git a/outputs/basics/list-py.out b/outputs/basics/list-py.out index bdea403562..c9cb022ec2 100644 --- a/outputs/basics/list-py.out +++ b/outputs/basics/list-py.out @@ -1,1430 +1,756 @@ $ spack list 'py-*' -py-3to2 py-multiprocess -py-4suite-xml py-multiqc -py-a2wsgi py-multiurl -py-abcpy py-mumps4py -py-abipy py-munch -py-about-time py-munkres -py-absl-py py-murmurhash -py-accelerate py-mutagen -py-accessible-pygments py-mx -py-accimage py-mxfold2 -py-acme-tiny py-myhdl -py-acres py-mypy -py-adal py-mypy-extensions -py-adb-enhanced py-mysql-connector-python -py-addict py-mysqlclient -py-adios py-myst-parser -py-adios4dolfinx py-namex -py-advancedhtmlparser py-nanobind -py-aenum py-nanoget -py-affine py-nanomath -py-agate py-nanoplot -py-agate-dbf py-nanostat -py-agate-excel py-nanotime -py-agate-sql py-nanotron -py-ahpy py-napari -py-aiobotocore py-napari-console -py-aiocontextvars py-napari-plugin-engine -py-aiodns py-napari-plugin-manager -py-aiofiles py-napari-svg -py-aiohappyeyeballs py-nara-wpe -py-aiohttp py-narwhals -py-aiohttp-cors py-natsort -py-aioitertools py-nbclassic -py-aiojobs py-nbclient -py-aioredis py-nbconvert -py-aiosignal py-nbdime -py-aiosqlite py-nbformat -py-alabaster py-nbmake -py-alembic py-nbqa -py-alive-progress py-nbsphinx -py-alpaca-eval py-nbstripout -py-alpaca-farm py-nbval -py-alphafold py-nc-time-axis -py-altair py-ncbi-genome-download -py-altgraph py-ndg-httpsclient -py-amici py-ndindex -py-amityping py-neo -py-amplpy py-neo4j -py-ampltools py-neobolt -py-amqp py-neotime -py-amrex py-neovim-remote -py-angel py-neptune-client -py-aniso8601 py-nest-asyncio -py-anndata py-nestle -py-annexremote py-netaddr -py-annotated-types py-netcdf4 -py-annoy py-netifaces -py-ansi2html py-netket -py-ansible py-netpyne -py-ansimarkup py-networkit -py-ansiwrap py-networkx -py-antimeridian py-neuralgcm -py-antlr4-python3-runtime py-neurokit2 -py-antspyx py-neurolab -py-anuga py-neurom -py-anvio py-neurora -py-anybadge py-neurotools -py-anyio py-nexus-sdk -py-anytree py-nexusforge -py-anywidget py-nglview -py-apache-libcloud py-ngs-tools -py-apebench py-nh3 -py-apex py-nibabel -py-apeye py-nilearn -py-apeye-core py-nipype -py-apipkg py-nitransforms -py-apispec py-niworkflows -py-app-model py-nltk -py-appdirs py-node-semver -py-applicationinsights py-nodeenv -py-appnope py-non-regression-test-tools -py-apptools py-nose -py-apscheduler py-nose-cov -py-arcgis py-nose2 -py-arch py-nosexcover -py-archspec py-notebook -py-arcp py-notebook-shim -py-argcomplete py-npe2 -py-argh py-nptyping -py-argon2-cffi py-npx -py-argon2-cffi-bindings py-ntlm-auth -py-argparse-dataclass py-ntplib -py-argparse-manpage py-nugraph -py-args py-nuitka -py-arkouda py-num2words -py-arm-pyart py-numba -py-arpeggio py-numba4jax -py-arrow py-numbagg -py-art py-numcodecs -py-arviz py-numdifftools -py-asciitree py-numexpr -py-asdf py-numexpr3 -py-asdf-astropy py-numkit -py-asdf-coordinates-schemas py-numl -py-asdf-standard py-numpy -py-asdf-transform-schemas py-numpy-groupies -py-asdf-unit-schemas py-numpy-indexed -py-asdfghjkl py-numpy-quaternion -py-ase py-numpy-stl -py-asgiref py-numpydoc -py-asn1crypto py-nvidia-dali -py-aspy-yaml py-nvidia-ml-py -py-asserts py-nvidia-ml-py3 -py-asteval py-nvidia-modulus -py-astor py-nvidia-nvimagecodec -py-astpretty py-nvidia-nvjpeg2k -py-astroid py-nvidia-nvtiff -py-astropy py-nvitop -py-astropy-healpix py-nvtx -py-astropy-helpers py-oauth2client -py-astropy-iers-data py-oauthlib -py-asttokens py-obspy -py-astunparse py-ocnn -py-async-generator py-odc-geo -py-async-lru py-odfpy -py-async-timeout py-ogb -py-asyncio py-okada-wrapper -py-asynctest py-olcf-velocity -py-atomicwrites py-olefile -py-atpublic py-omegaconf -py-atropos py-onnx -py-ats py-onnx-opcounter -py-attmap py-onnxconverter-common -py-attrs py-onnxmltools -py-audioread py-onnxruntime -py-auditwheel py-ont-fast5-api -py-autocfg py-opcodes -py-autodocsumm py-open-clip-torch -py-autograd py-openai -py-autograd-gamma py-openapi-schema-pydantic -py-automat py-opencensus -py-autopep8 py-opencensus-context -py-autoray py-opencv-python -py-autoreject py-opendatalab -py-auxlib py-openidc-client -py-avro py-openmc -py-avro-json-serializer py-openmesh -py-avro-python3 py-openmim -py-awesome-slugify py-openpmd-validator -py-awkward py-openpmd-viewer -py-awkward-cpp py-openpyxl -py-awkward0 py-openslide-python -py-awscrt py-opentree -py-ax-platform py-opentuner -py-azote py-opppy -py-azure-batch py-ops -py-azure-cli-command-modules-nspkg py-opt-einsum -py-azure-cli-core py-optax -py-azure-cli-nspkg py-optree -py-azure-cli-telemetry py-optuna -py-azure-common py-or-tools -py-azure-core py-oracledb -py-azure-cosmos py-orbax-checkpoint -py-azure-datalake-store py-ordered-set -py-azure-functions-devops-build py-orderly-set -py-azure-graphrbac py-orjson -py-azure-identity py-os-service-types -py-azure-keyvault py-oset -py-azure-keyvault-certificates py-oslo-config -py-azure-keyvault-keys py-oslo-i18n -py-azure-keyvault-nspkg py-oslo-serialization -py-azure-keyvault-secrets py-oslo-utils -py-azure-loganalytics py-osqp -py-azure-mgmt-advisor py-outdated -py-azure-mgmt-apimanagement py-overpy -py-azure-mgmt-appconfiguration py-overrides -py-azure-mgmt-applicationinsights py-owlrl -py-azure-mgmt-authorization py-owslib -py-azure-mgmt-batch py-oyaml -py-azure-mgmt-batchai py-pacifica-downloader -py-azure-mgmt-billing py-pacifica-namespace -py-azure-mgmt-botservice py-pacifica-uploader -py-azure-mgmt-cdn py-packaging -py-azure-mgmt-cognitiveservices py-pager -py-azure-mgmt-compute py-paho-mqtt -py-azure-mgmt-consumption py-palettable -py-azure-mgmt-containerinstance py-pamela -py-azure-mgmt-containerregistry py-panaroo -py-azure-mgmt-containerservice py-pandas -py-azure-mgmt-core py-pandas-datareader -py-azure-mgmt-cosmosdb py-pandas-stubs -py-azure-mgmt-datalake-analytics py-pandocfilters -py-azure-mgmt-datalake-store py-panedr -py-azure-mgmt-datamigration py-panel -py-azure-mgmt-deploymentmanager py-papermill -py-azure-mgmt-devtestlabs py-paralleltask -py-azure-mgmt-dns py-param -py-azure-mgmt-eventgrid py-parameterized -py-azure-mgmt-eventhub py-paramiko -py-azure-mgmt-hdinsight py-paramz -py-azure-mgmt-imagebuilder py-parasail -py-azure-mgmt-iotcentral py-parmed -py-azure-mgmt-iothub py-parse -py-azure-mgmt-iothubprovisioningservices py-parse-type -py-azure-mgmt-keyvault py-parsedatetime -py-azure-mgmt-kusto py-parsimonious -py-azure-mgmt-loganalytics py-parsl -py-azure-mgmt-managedservices py-parsley -py-azure-mgmt-managementgroups py-parso -py-azure-mgmt-maps py-partd -py-azure-mgmt-marketplaceordering py-particle -py-azure-mgmt-media py-paste -py-azure-mgmt-monitor py-pastedeploy -py-azure-mgmt-msi py-pastel -py-azure-mgmt-netapp py-pastml -py-azure-mgmt-network py-patch -py-azure-mgmt-nspkg py-patch-ng -py-azure-mgmt-policyinsights py-path-py -py-azure-mgmt-privatedns py-pathlib2 -py-azure-mgmt-rdbms py-pathml -py-azure-mgmt-recoveryservices py-pathos -py-azure-mgmt-recoveryservicesbackup py-pathspec -py-azure-mgmt-redhatopenshift py-pathtools -py-azure-mgmt-redis py-pathvalidate -py-azure-mgmt-relay py-pathy -py-azure-mgmt-reservations py-patool -py-azure-mgmt-resource py-patsy -py-azure-mgmt-search py-pauvre -py-azure-mgmt-security py-pbr -py-azure-mgmt-servicebus py-pdb-tools -py-azure-mgmt-servicefabric py-pdbfixer -py-azure-mgmt-signalr py-pdequinox -py-azure-mgmt-sql py-pdf2image -py-azure-mgmt-sqlvirtualmachine py-pdm-backend -py-azure-mgmt-storage py-pdm-pep517 -py-azure-mgmt-trafficmanager py-pdoc3 -py-azure-mgmt-web py-peachpy -py-azure-multiapi-storage py-peakutils -py-azure-nspkg py-pebble -py-azure-storage-blob py-pem -py-azure-storage-common py-pennylane -py-azure-storage-nspkg py-pennylane-lightning -py-babel py-pennylane-lightning-kokkos -py-backcall py-pep517 -py-backoff py-pep8 -py-backpack-for-pytorch py-pep8-naming -py-backports-abc py-perfdump -py-backports-cached-property py-performance -py-backports-entry-points-selectable py-periodictable -py-backports-lzma py-petastorm -py-backports-os py-petname -py-backports-ssl-match-hostname py-petsc4py -py-backports-tarfile py-pexpect -py-backports-tempfile py-pfzy -py-backports-weakref py-pgzip -py-backports-zoneinfo py-phanotate -py-bagit py-phonenumbers -py-bagit-profile py-phonopy -py-bakta py-photutils -py-bandit py-phydms -py-barectf py-phylophlan -py-basemap py-pickle5 -py-bash-kernel py-pickleshare -py-basis-set-exchange py-picmistandard -py-batchspawner py-picrust2 -py-bayesian-optimization py-pid -py-bcbio-gff py-pika -py-bcolz py-pillow -py-bcrypt py-pillow-simd -py-bdbag py-pint -py-beaker py-pint-xarray -py-beancount py-pip -py-beartype py-pipdeptree -py-beautifulsoup4 py-piper -py-beniget py-pipits -py-bidict py-pispino -py-bids-validator py-pivy -py-bids-validator-deno py-pkgconfig -py-bidscoin py-pkginfo -py-bidskit py-pkgutil-resolve-name -py-bidsschematools py-plac -py-bigdft py-planar -py-bigfloat py-planet -py-billiard py-planetary-computer -py-binary py-platformdirs -py-binaryornot py-plotext -py-bintrees py-plotille -py-binwalk py-plotly -py-biobb-common py-plotnine -py-biobb-gromacs py-pluggy -py-biobb-io py-plum-dispatch -py-biobb-model py-ply -py-biobb-structure-checking py-pmw -py-biobb-structure-utils py-pmw-patched -py-bioblend py-pockets -py-biom-format py-poetry -py-biomine py-poetry-core -py-biopandas py-poetry-dynamic-versioning -py-biopython py-poetry-plugin-export -py-biosppy py-poetry-plugin-tweak-dependencies-version -py-biotite py-polars -py-biotraj py-pomegranate -py-bitarray py-pooch -py-bitshuffle py-portalocker -py-bitstring py-portend -py-bitstruct py-portpicker -py-black py-postcactus -py-blake3 py-poster -py-bleach py-pot -py-blessed py-pox -py-blessings py-poxy -py-blight py-poyo -py-blinker py-ppft -py-blis py-pprintpp -py-blosc py-pre-commit -py-blosc2 py-preshed -py-blosum py-pretrainedmodels -py-bluepyefe py-pretty-errors -py-bluepyemodel py-prettytable -py-bluepyopt py-priority -py-bmap-tools py-profilehooks -py-bmtk py-proglog -py-bokeh py-progress -py-boltons py-progressbar2 -py-boom-boot-manager py-progressbar33 -py-boost-histogram py-projectq -py-boto py-prokaryote -py-boto3 py-prometheus-client -py-botocore py-prometheus-flask-exporter -py-botorch py-promise -py-bottle py-prompt-toolkit -py-bottleneck py-propcache -py-bqplot py-properscoring -py-braceexpand py-proto-plus -py-brain-indexer py-protobuf -py-branca py-protoc-gen-swagger -py-bravado py-prov -py-bravado-core py-prwlock -py-breakseq2 py-psalg -py-breathe py-psana -py-brian py-psij-python -py-brian2 py-psmon -py-brotli py-pspamm -py-brotlipy py-psutil -py-bsddb3 py-psyclone -py-build py-psycopg2 -py-bx-python py-psygnal -py-cachecontrol py-ptyprocess -py-cached-property py-pubchempy -py-cachetools py-pudb -py-cachey py-pulp -py-cachy py-pulsar-galaxy-lib -py-cairocffi py-pure-eval -py-cairosvg py-pure-sasl -py-caliper-reader py-puremagic -py-callmonitor py-py -py-calver py-py-cpuinfo -py-cantoolz py-py-spy -py-carputils py-py-tes -py-cartopy py-py2bit -py-casadi py-py2neo -py-catalogue py-py4j -py-catkin-pkg py-py6s -py-cattrs py-pyabel -py-cbor2 py-pyaestro -py-cclib py-pyahocorasick -py-cdo py-pyamg -py-cdsapi py-pyaml -py-cekit py-pyaml-env -py-celery py-pyani -py-cellprofiler py-pyarrow -py-cellprofiler-core py-pyasn1 -py-centrosome py-pyasn1-modules -py-cerberus py-pyassimp -py-certifi py-pyautogui -py-certipy py-pybedtools -py-cf-units py-pybids -py-cf-xarray py-pybigwig -py-cffconvert py-pybind11 -py-cffi py-pybind11-stubgen -py-cfgrib py-pybktree -py-cfgv py-pybobyqa -py-cftime py-pybrain -py-cgen py-pybtex -py-chai py-pybtex-docutils -py-chainer py-pybv -py-chainforgecodegen py-pycairo -py-chainmap py-pycares -py-chalice py-pycbc -py-chardet py-pychecker -py-charm4py py-pycifrw -py-charset-normalizer py-pyclibrary -py-chart-studio py-pycm -py-cheap-repr py-pycmd -py-checkm-genome py-pycocotools -py-cheetah3 py-pycodestyle -py-chemfiles py-pycollada -py-cheroot py-pycompadre -py-cherrypy py-pyconify -py-chex py-pycorenlp -py-choreographer py-pycortex -py-chronyk py-pycosat -py-ci-info py-pycparser -py-ci-sdr py-pycrypto -py-cig-pythia py-pycryptodome -py-cinema-lib py-pyct -py-cinemasci py-pycubexr -py-circus py-pycuda -py-citeproc-py py-pycurl -py-clean-text py-pydantic -py-cleo py-pydantic-compat -py-click py-pydantic-core -py-click-didyoumean py-pydantic-extra-types -py-click-option-group py-pydantic-settings -py-click-plugins py-pydantic-tes -py-click-repl py-pydap -py-cligj py-pydata-sphinx-theme -py-clikit py-pydatalog -py-climate py-pydeface -py-climax py-pydeprecate -py-clint py-pydeps -py-clip-anytorch py-pydevtool -py-clipboard py-pydftracer -py-cloudauthz py-pydicom -py-cloudbridge py-pydispatcher -py-cloudpickle py-pydmd -py-clustershell py-pydocstyle -py-cma py-pydoe -py-cmaes py-pydoe2 -py-cmake-format py-pydot -py-cmake-parser py-pydot2 -py-cmocean py-pydotplus -py-cmseq py-pydub -py-cmsml py-pyeda -py-cmyt py-pyedr -py-coapthon3 py-pyee -py-coca-pytorch py-pyelftools -py-coclust py-pyem -py-codebasin py-pyenchant -py-codepy py-pyepsg -py-codespell py-pyerfa -py-coherent-licensed py-pyeventsystem -py-coilmq py-pyface -py-colabtools py-pyfaidx -py-colorama py-pyfasta -py-colorcet py-pyfastaq -py-colorclass py-pyfftw -py-colored py-pyfiglet -py-colored-traceback py-pyfits -py-coloredlogs py-pyflakes -py-colorful py-pyfr -py-colorio py-pygame -py-colorlog py-pygdal -py-colorlover py-pygdbmi -py-colormath py-pygelf -py-colorpy py-pygeos -py-colorspacious py-pygetwindow -py-colossalai py-pygit2 -py-colour py-pygithub -py-comm py-pyglet -py-common py-pygments -py-commonmark py-pygments-pytest -py-conan py-pygmsh -py-conda-inject py-pygmt -py-conda-souschef py-pygobject -py-confection py-pygps -py-configargparse py-pygpu -py-configobj py-pygraphviz -py-configparser py-pygresql -py-configspace py-pygrib -py-confluent-kafka py-pygtrie -py-connectionpool py-pyh5md -py-consolekit py-pyhdf -py-constantly py-pyheadtail -py-contextily py-pyhmmer -py-contextlib2 py-pyhull -py-contexttimer py-pyicu -py-continuum py-pyinstrument -py-contourpy py-pyinstrument-cext -py-contrib py-pyisemail -py-control py-pyjnius -py-convertdate py-pyjwt -py-convokit py-pyke -py-cookiecutter py-pykerberos -py-copulas py-pykml -py-corner py-pykokkos-base -py-correctionlib py-pykwalify -py-corrfunc py-pylab-sdk -py-counter py-pylatex -py-courlan py-pyld -py-cov-core py-pylev -py-coverage py-pylibmagic -py-coveralls py-pylikwid -py-cppheaderparser py-pylint -py-cppy py-pylint-gitlab -py-cramjam py-pylith -py-crashtest py-pylops -py-crc32c py-pymatgen -py-crcmod py-pymatreader -py-croniter py-pymbolic -py-crossmap py-pymc3 -py-cryolobm py-pymdown-extensions -py-cryptography py-pymeeus -py-css-parser py-pyminifier -py-cssselect py-pymol -py-cssselect2 py-pymongo -py-cssutils py-pymoo -py-csvkit py-pymorph -py-ctgan py-pympler -py-cuda-bindings py-pymsgbox -py-cudf py-pymummer -py-cufflinks py-pymumps -py-cuml py-pymysql -py-cupy py-pynacl -py-current py-pynio -py-currentscape py-pynisher -py-curvlinops-for-pytorch py-pynn -py-custodian py-pynndescent -py-custom-inherit py-pynpm -py-cutadapt py-pynrrd -py-cvxopt py-pynucleus -py-cvxpy py-pynvim -py-cwl-upgrader py-pynvml -py-cwl-utils py-pynvtx -py-cwltool py-pyodbc -py-cx-oracle py-pyogrio -py-cycler py-pyomo -py-cykhash py-pyopencl -py-cylc-flow py-pyopengl -py-cylc-rose py-pyopenssl -py-cylp py-pypar -py-cymem py-pyparsing -py-cyordereddict py-pypdf -py-cython py-pypdf2 -py-cython-bbox py-pypeflow -py-cyvcf2 py-pypeg2 -py-d2to1 py-pyperclip -py-dace py-pyperf -py-dacite py-pypinfo -py-dadi py-pypinyin -py-dalib py-pypistats -py-damask py-pypng -py-darshan py-pyppeteer -py-dasbus py-pyprecice -py-dash py-pyprof2html -py-dash-bootstrap-components py-pyproj -py-dash-svg py-pyproject-hooks -py-dask py-pyproject-metadata -py-dask-awkward py-pyproject-parser -py-dask-expr py-pypulse -py-dask-glm py-pyqi -py-dask-histogram py-pyqt-builder -py-dask-jobqueue py-pyqt4 -py-dask-ml py-pyqt5 -py-dask-mpi py-pyqt5-sip -py-dask-sphinx-theme py-pyqt6 -py-databricks-cli py-pyqt6-sip -py-dataclasses py-pyqtgraph -py-dataclasses-json py-pyquaternion -py-datacube py-pyreadline -py-datalad py-pyrect -py-datalad-container py-pyrevolve -py-datalad-deprecated py-pyrfr -py-datalad-hirni py-pyro-api -py-datalad-metadata-model py-pyro-ppl -py-datalad-metalad py-pyro4 -py-datalad-neuroimaging py-pyrocko -py-datalad-webapp py-pyrodigal -py-dataproperty py-pyrr -py-datasets py-pyrsistent -py-datashader py-pysam -py-datatrove py-pyscaf -py-dateparser py-pyscf -py-dateutils py-pyscipopt -py-datrie py-pyscreeze -py-dbf py-pyseer -py-dbfread py-pyserial -py-dcm2bids py-pysftp -py-deap py-pyshacl -py-debtcollector py-pyshp -py-debugpy py-pyside2 -py-decorator py-pysimdjson -py-deepdiff py-pysmartdl -py-deepecho py-pysmiles -py-deephyper py-pysocks -py-deepsig-biocomp py-pysolar -py-deepspeed py-pyspark -py-deeptools py-pyspellchecker -py-deeptoolsintervals py-pyspice -py-defusedxml py-pyspnego -py-demjson py-pyspoa -py-dendropy py-pysqlite3 -py-deprecat py-pystac -py-deprecated py-pystac-client -py-deprecation py-pystache -py-deprecation-alias py-pystan -py-descartes py-pysurfer -py-devito py-pytablewriter -py-devlib py-pytailf -py-dgl py-pytaridx -py-dh-scikit-optimize py-pytecplot -py-dict2css py-pytesseract -py-dictdiffer py-pytest -py-dictobj py-pytest-aiohttp -py-dill py-pytest-allclose -py-dinosaur py-pytest-arraydiff -py-dipy py-pytest-astropy -py-dirtyjson py-pytest-astropy-header -py-disbatch py-pytest-asyncio -py-discover py-pytest-benchmark -py-diskcache py-pytest-cache -py-dist-meta py-pytest-check-links -py-distance py-pytest-cov -py-distlib py-pytest-cpp -py-distributed py-pytest-datadir -py-distro py-pytest-doctestplus -py-django py-pytest-fail-slow -py-dlcpar py-pytest-filter-subpackage -py-dm-haiku py-pytest-flake8 -py-dm-tree py-pytest-flakes -py-dnaio py-pytest-forked -py-dnspython py-pytest-html -py-docker py-pytest-httpbin -py-dockerpy-creds py-pytest-isort -py-docopt py-pytest-lazy-fixture -py-docopt-ng py-pytest-memray -py-docstring-parser py-pytest-metadata -py-docstring-to-markdown py-pytest-mock -py-docutils py-pytest-mpi -py-docutils-stubs py-pytest-mypy -py-dogpile-cache py-pytest-openfiles -py-doit py-pytest-parallel -py-dolfinx-mpc py-pytest-pep8 -py-dom-toml py-pytest-pylint -py-domdf-python-tools py-pytest-qt -py-dominate py-pytest-random-order -py-donfig py-pytest-regtest -py-dotmap py-pytest-remotedata -py-dotnetcore2 py-pytest-runner -py-downhill py-pytest-subprocess -py-doxypypy py-pytest-timeout -py-dpath py-pytest-workflow -py-drep py-pytest-xdist -py-drmaa py-python-benedict -py-dryscrape py-python-bioformats -py-duecredit py-python-box -py-dulwich py-python-calamine -py-dunamai py-python-certifi-win32 -py-dvc py-python-constraint -py-dxchange py-python-crfsuite -py-dxfile py-python-daemon -py-dynaconf py-python-dateutil -py-dynim py-python-deprecated -py-earth2mip py-python-docs-theme -py-earthengine-api py-python-dotenv -py-easybuild-easyblocks py-python-editor -py-easybuild-easyconfigs py-python-engineio -py-easybuild-framework py-python-fmask -py-eccodes py-python-fsutil -py-ecdsa py-python-gitlab -py-ecmwf-opendata py-python-hostlist -py-ecmwflibs py-python-igraph -py-ecos py-python-javabridge -py-edam-ontology py-python-jenkins -py-edffile py-python-jose -py-edfio py-python-json-logger -py-edflib-python py-python-keystoneclient -py-editables py-python-ldap -py-editdistance py-python-levenshtein -py-edlib py-python-libsbml -py-eeglabio py-python-logstash -py-eerepr py-python-louvain -py-efel py-python-lsp-jsonrpc -py-efficientnet-pytorch py-python-lsp-ruff -py-eg py-python-lsp-server -py-einconv py-python-lzo -py-einops py-python-magic -py-elastic-transport py-python-mapnik -py-elasticsearch py-python-markdown-math -py-elasticsearch-dsl py-python-memcached -py-elephant py-python-multipart -py-elevation py-python-oauth2 -py-ema-pytorch py-python-picard -py-email-validator py-python-pptx -py-embedding-reader py-python-ptrace -py-emcee py-python-rapidjson -py-emoji py-python-slugify -py-empy py-python-socketio -py-entrypoints py-python-sotools -py-enum-tools py-python-subunit -py-envisage py-python-swiftclient -py-ephem py-python-utils -py-eprosima-fastdds py-python-xlib -py-epydoc py-python-xmp-toolkit -py-equation py-python3-openid -py-equinox py-python3-xlib -py-espresso py-pythonqwt -py-espressopp py-pythonsollya -py-et-xmlfile py-pythran -py-ete3 py-pytimeparse -py-etelemetry py-pytng -py-etils py-pytoml -py-eval-type-backport py-pytools -py-evaluate py-pytorch-gradual-warmup-lr -py-eventlet py-pytorch-lightning -py-evodiff py-pytorch-sphinx-theme -py-ewah-bool-utils py-pytorch-warmup -py-exarl py-pyts -py-exceptiongroup py-pytweening -py-execnet py-pytz -py-executing py-pyu2f -py-exhale py-pyudev -py-exifread py-pyugrid -py-exodus-bundler py-pyupgrade -py-expandvars py-pyusb -py-expecttest py-pyutilib -py-exponax py-pyuwsgi -py-extension-helpers py-pyvcf -py-extras py-pyvista -py-ez-setup py-pyvistaqt -py-f90nml py-pyviz-comms -py-f90wrap py-pyvolve -py-fabric py-pywavelets -py-fabric3 py-pywcs -py-fair-esm py-pywin32 -py-fairscale py-pyworld -py-faker py-pyxlsb -py-falcon py-pyyaml -py-fallocate py-pyyaml-env-tag -py-fastai py-pyzmq -py-fastaindex py-qdldl -py-fastapi py-qiskit-aer -py-fastapi-utils py-qiskit-ibm-provider -py-fastavro py-qiskit-nature -py-fastcache py-qiskit-terra -py-fastcluster py-qmtest -py-fastcore py-qpsolvers -py-fastcov py-qpth -py-fastdownload py-qrcode -py-fastdtw py-qsymm -py-fasteners py-qtawesome -py-fastfold py-qtconsole -py-fastjsonschema py-qtpy -py-fastpath py-quantiphy -py-fastprogress py-quantities -py-fastremap py-quantum-blackbird -py-fastrlock py-quantum-xir -py-fasttext-numpy2 py-quart -py-fasttext-numpy2-wheel py-quast -py-faust-cchardet py-quaternionic -py-fava py-qudida -py-fenics-basix py-queryablelist -py-fenics-dijitso py-querystring-parser -py-fenics-dolfinx py-questionary -py-fenics-ffc py-qutip -py-fenics-ffcx py-qutip-qip -py-fenics-fiat py-radiant-mlhub -py-fenics-instant py-radical-entk -py-fenics-ufl py-radical-gtod -py-fenics-ufl-legacy py-radical-pilot -py-ffmpy py-radical-saga -py-file-magic py-radical-utils -py-filecheck py-ranger-fm -py-filelock py-rapidfuzz -py-filemagic py-rapidfuzz-capi -py-filetype py-rarfile -py-filterpy py-rasterio -py-find-libpython py-rasterstats -py-findlibs py-ratelim -py-fiona py-ratelimiter -py-fire py-raven -py-fireworks py-ray -py-fiscalyear py-rbtools -py-fisher py-rdflib -py-fits-tools py-rdflib-jsonld -py-fitsio py-rdt -py-fitter py-reacton -py-fixtures py-readchar -py-flake8 py-readme-renderer -py-flake8-import-order py-recommonmark -py-flake8-polyfill py-redis -py-flaky py-referencing -py-flameprof py-refgenconf -py-flash-attn py-refgenie -py-flask py-regex -py-flask-babel py-regionmask -py-flask-compress py-regions -py-flask-cors py-reindent -py-flask-paginate py-relion -py-flask-restful py-relion-blush -py-flask-socketio py-relion-classranker -py-flask-sqlalchemy py-repligit -py-flatbuffers py-reportlab -py-flatten-dict py-reportseff -py-flawfinder py-repoze-lru -py-flax py-reproject -py-flexcache py-requests -py-flexmock py-requests-cache -py-flexparser py-requests-file -py-flexx py-requests-ftp -py-flit py-requests-futures -py-flit-core py-requests-kerberos -py-flit-scm py-requests-mock -py-flox py-requests-ntlm -py-flufl-lock py-requests-oauthlib -py-fluiddyn py-requests-toolbelt -py-fluidfft py-requests-unixsocket -py-fluidfft-builder py-requirements-parser -py-fluidfft-fftw py-reretry -py-fluidfft-fftwmpi py-resampy -py-fluidfft-mpi-with-fftw py-resize-right -py-fluidfft-p3dfft py-resolvelib -py-fluidfft-pfft py-responses -py-fluidsim py-resultsfile -py-fluidsim-core py-retry -py-flye py-retry-decorator -py-fn-py py-retrying -py-folium py-retworkx -py-fonttools py-rfc3339-validator -py-ford py-rfc3986 -py-formatizer py-rfc3986-validator -py-formulaic py-rich -py-fortls py-rich-argparse -py-fortran-language-server py-rich-click -py-fortranformat py-rios -py-fparser py-rioxarray -py-fprettify py-rise -py-fqdn py-river -py-fracridge py-rmm -py-fraction py-rnc2rng -py-freetype-py py-robocrys -py-freezegun py-robotframework -py-frozendict py-rocrate -py-frozenlist py-roifile -py-fs py-roman-numerals-py -py-fsspec py-rope -py-fsspec-xrootd py-rosdep -py-ftfy py-rosdistro -py-ftputil py-rosinstall -py-funcy py-rosinstall-generator -py-furo py-rospkg -py-fury py-rotary-embedding-torch -py-fusepy py-rouge-score -py-future py-routes -py-fuzzywuzzy py-rpds-py -py-fypp py-rply -py-galaxy-containers py-rpy2 -py-galaxy-job-metrics py-rsa -py-galaxy-objectstore py-rsatoolbox -py-galaxy-sequence-utils py-rseqc -py-galaxy-tool-util py-rst2pdf -py-galaxy-util py-rtoml -py-galaxy2cwl py-rtree -py-gast py-ruamel-ordereddict -py-gcovr py-ruamel-yaml -py-gcs-oauth2-boto-plugin py-ruamel-yaml-clib -py-gcsfs py-ruamel-yaml-jinja2 -py-gdc-client py-rucio-clients -py-gdown py-ruff -py-gee-asset-manager py-rustworkx -py-geeadd py-rx -py-geemap py-s3cmd -py-geeup py-s3fs -py-gemmforge py-s3transfer -py-genders py-sacrebleu -py-geneimpacts py-sacremoses -py-generateds py-safetensors -py-genshi py-salib -py-gensim py-scandir -py-geoalchemy2 py-scanpy -py-geocoder py-schema -py-geocube py-schema-salad -py-geographiclib py-scientificpython -py-geojson py-scifem -py-geomdl py-scikit-build -py-geopandas py-scikit-build-core -py-geoplot py-scikit-fmm -py-geopmdpy py-scikit-fuzzy -py-geopmpy py-scikit-image -py-geopy py-scikit-learn -py-geoviews py-scikit-learn-extra -py-gevent py-scikit-matter -py-gf256 py-scikit-optimize -py-gfal2-python py-scikit-sparse -py-gffutils py-scikits-odes -py-ghp-import py-scine-chemoton -py-gidgethub py-scine-puffin -py-gidgetlab py-scinum -py-gimmik py-scipy -py-gin-config py-scooby -py-git-review py-scoop -py-gitdb py-scp -py-gitpython py-screed -py-glean-parser py-scs -py-glean-sdk py-sdmetrics -py-glmnet py-sdv -py-glmnet-python py-seaborn -py-glmsingle py-secretstorage -py-glob2 py-seekpath -py-globus-cli py-segmentation-models-pytorch -py-globus-sdk py-selenium -py-gluoncv py-semantic-version -py-glymur py-semver -py-gmsh py-send2trash -py-gmsh-interop py-sentencepiece -py-gmxapi py-sentry-sdk -py-gnuplot py-seqeval -py-goatools py-sequence-models -py-gooey py-seriate -py-google py-serpent -py-google-api-core py-session-info -py-google-api-python-client py-setproctitle -py-google-apitools py-setupmeta -py-google-auth py-setuptools -py-google-auth-httplib2 py-setuptools-cpp -py-google-auth-oauthlib py-setuptools-git -py-google-cloud-appengine-logging py-setuptools-git-versioning -py-google-cloud-audit-log py-setuptools-reproducible -py-google-cloud-batch py-setuptools-rust -py-google-cloud-bigquery py-setuptools-scm -py-google-cloud-core py-setuptools-scm-git-archive -py-google-cloud-logging py-sfepy -py-google-cloud-storage py-sgp4 -py-google-crc32c py-sh -py-google-pasta py-shap -py-google-reauth py-shapely -py-google-resumable-media py-shellescape -py-googleapis-common-protos py-shellingham -py-googledrivedownloader py-shiboken2 -py-gosam py-shippinglabel -py-gpaw py-shortbred -py-gpaw-data py-shortuuid -py-gpustat py-shroud -py-gputil py-shtab -py-gpy py-simpervisor -py-gpyopt py-simple-slurm -py-gpytorch py-simpleeval -py-gql py-simplegeneric -py-gradio py-simplejson -py-gradio-client py-simplekml -py-grandalf py-simpletraj -py-graphcast py-simpy -py-grapheme py-simsimd -py-graphene py-singledispatchmethod -py-graphlib-backport py-sip -py-graphql-core py-six -py-graphql-relay py-skl2onnx -py-graphql-ws py-slepc4py -py-graphviz py-slicer -py-gravity py-slurm-pipeline -py-grayskull py-smac -py-greenlet py-smart-open -py-grequests py-smartredis -py-griddataformats py-smartsim -py-griffe py-smartypants -py-gromacswrapper py-smmap -py-grpc-google-iam-v1 py-smote-variants -py-grpcio py-snakemake-executor-plugin-azure-batch -py-grpcio-status py-snakemake-executor-plugin-cluster-generic -py-grpcio-tools py-snakemake-executor-plugin-cluster-sync -py-gsd py-snakemake-executor-plugin-drmaa -py-gssapi py-snakemake-executor-plugin-flux -py-gsutil py-snakemake-executor-plugin-googlebatch -py-gtdbtk py-snakemake-executor-plugin-kubernetes -py-gunicorn py-snakemake-executor-plugin-slurm -py-gxformat2 py-snakemake-executor-plugin-slurm-jobstep -py-gym py-snakemake-executor-plugin-tes -py-h11 py-snakemake-interface-common -py-h2 py-snakemake-interface-executor-plugins -py-h5glance py-snakemake-interface-report-plugins -py-h5io py-snakemake-interface-storage-plugins -py-h5netcdf py-snakemake-storage-plugin-azure -py-h5py py-snakemake-storage-plugin-fs -py-h5sh py-snakemake-storage-plugin-ftp -py-hacking py-snakemake-storage-plugin-gcs -py-hail py-snakemake-storage-plugin-http -py-handy-archives py-snakemake-storage-plugin-s3 -py-hatch py-snakemake-storage-plugin-sftp -py-hatch-cython py-snakemake-storage-plugin-zenodo -py-hatch-fancy-pypi-readme py-snakeviz -py-hatch-jupyter-builder py-snappy -py-hatch-nodejs-version py-sncosmo -py-hatch-requirements-txt py-sniffio -py-hatch-vcs py-snoop -py-hatchet py-snowballstemmer -py-hatchling py-snuggs -py-hclust2 py-sobol-seq -py-hdbscan py-social-auth-core -py-hdfs py-sonlib -py-healpix py-sortedcollections -py-healpy py-sortedcontainers -py-heapdict py-soundfile -py-heat py-soupsieve -py-hep-ml py-soyclustering -py-hepdata-converter py-spacy -py-hepdata-lib py-spacy-legacy -py-hepdata-validator py-spacy-loggers -py-hepstats py-spacy-models-en-core-web-sm -py-hepunits py-spacy-models-en-vectors-web-lg -py-hf-transfer py-sparse -py-hf-xet py-spatialist -py-hieroglyph py-spatialite -py-hiredis py-spatialpandas -py-hist py-spdlog -py-histbook py-spectra -py-histogrammar py-spectral -py-histoprint py-speech-recognition -py-hjson py-spefile -py-hmmlearn py-spgl1 -py-holland-backup py-spglib -py-holoviews py-spherical -py-horovod py-sphinx -py-hpack py-sphinx-argparse -py-hpbandster py-sphinx-autodoc-typehints -py-hpccm py-sphinx-basic-ng -py-hsluv py-sphinx-book-theme -py-hstspreload py-sphinx-bootstrap-theme -py-htgettoken py-sphinx-click -py-html2text py-sphinx-copybutton -py-html5lib py-sphinx-design -py-htmldate py-sphinx-fortran -py-htmlgen py-sphinx-gallery -py-htseq py-sphinx-immaterial -py-httpbin py-sphinx-jinja2-compat -py-httpcore py-sphinx-multiversion -py-httplib2 py-sphinx-prompt -py-httpretty py-sphinx-removed-in -py-httpstan py-sphinx-rtd-dark-mode -py-httptools py-sphinx-rtd-theme -py-httpx py-sphinx-tabs -py-huggingface-hub py-sphinx-theme-builder -py-humanfriendly py-sphinx-toolbox -py-humanize py-sphinxautomodapi -py-hvac py-sphinxcontrib-applehelp -py-hvplot py-sphinxcontrib-bibtex -py-hydra-core py-sphinxcontrib-devhelp -py-hypercorn py-sphinxcontrib-htmlhelp -py-hyperframe py-sphinxcontrib-issuetracker -py-hyperlink py-sphinxcontrib-jquery -py-hyperopt py-sphinxcontrib-jsmath -py-hypothesis py-sphinxcontrib-mermaid -py-ibm-cloud-sdk-core py-sphinxcontrib-moderncmakedomain -py-ibm-watson py-sphinxcontrib-napoleon -py-ics py-sphinxcontrib-plantuml -py-id py-sphinxcontrib-programoutput -py-identify py-sphinxcontrib-qthelp -py-idna py-sphinxcontrib-serializinghtml -py-idna-ssl py-sphinxcontrib-spelling -py-igor py-sphinxcontrib-trio -py-igor2 py-sphinxcontrib-websupport -py-igraph py-sphinxemoji -py-igv-notebook py-sphobjinv -py-illumina-utils py-spykeutils -py-ilmbase py-spython -py-imagecodecs py-sqlalchemy -py-imagehash py-sqlalchemy-migrate -py-imageio py-sqlalchemy-stubs -py-imageio-ffmpeg py-sqlalchemy-utils -py-imagesize py-sqlitedict -py-imbalanced-learn py-sqlparse -py-imgaug py-srsly -py-iminuit py-sseclient -py-immutabledict py-sshtunnel -py-immutables py-sspilib -py-importlib-metadata py-stack-data -py-importlib-resources py-starfile -py-imutils py-starlette -py-in-n-out py-starlette-context -py-incremental py-starsessions -py-inflect py-stashcp -py-inheritance py-statmorph -py-iniconfig py-statsmodels -py-iniparse py-stdlib-list -py-inquirer py-stestr -py-inquirerpy py-stevedore -py-inscriptis py-stomp-py -py-installer py-stopit -py-instrain py-storm -py-intbitset py-stratify -py-intel-openmp py-strawberryfields -py-intensity-normalization py-streamlit -py-interface-meta py-stringzilla -py-interlap py-striprtf -py-intervaltree py-stsci-distutils -py-invoke py-stui -py-iocapture py-submitit -py-iopath py-subrosa -py-ipaddress py-subword-nmt -py-ipdb py-superqt -py-ipycanvas py-supervisor -py-ipyevents py-svgpath -py-ipyfilechooser py-svgpathtools -py-ipykernel py-svgutils -py-ipyleaflet py-svgwrite -py-ipympl py-swagger-spec-validator -py-ipyparallel py-symengine -py-ipyrad py-symfit -py-ipython py-sympy -py-ipython-cluster-helper py-syned -py-ipython-genutils py-sysrsync -py-ipython-pygments-lexers py-systemd-python -py-ipytree py-tabledata -py-ipyvtk-simple py-tables -py-ipyvue py-tabulate -py-ipyvuetify py-tatsu -py-ipywidgets py-tblib -py-irpf90 py-tbparse -py-isa-rwval py-tcolorpy -py-isal py-tempita -py-iso8601 py-templateflow -py-isodate py-tempora -py-isoduration py-tenacity -py-isort py-tensorboard -py-iterative-stats py-tensorboard-data-server -py-itk py-tensorboard-plugin-wit -py-itolapi py-tensorboardx -py-itsdangerous py-tensorflow -py-jacobi py-tensorflow-datasets -py-jaconv py-tensorflow-estimator -py-jamo py-tensorflow-hub -py-janus py-tensorflow-metadata -py-jaraco-classes py-tensorflow-probability -py-jaraco-context py-tensorly -py-jaraco-functools py-tensorstore -py-jarowinkler py-termcolor -py-jarvis-util py-termgraph -py-javaproperties py-terminado -py-jax py-terminaltables -py-jaxlib py-tern -py-jaxtyping py-tesorter -py-jcb py-testfixtures -py-jdatetime py-testinfra -py-jdcal py-testpath -py-jedi py-testrepository -py-jeepney py-testresources -py-jellyfish py-testscenarios -py-jinja2 py-testtools -py-jinja2-cli py-tetoolkit -py-jinja2-time py-text-unidecode -py-jiter py-textblob -py-jmespath py-texttable -py-jmp py-textual -py-joblib py-textual-plotext -py-jplephem py-textwrap3 -py-jproperties py-textx -py-jprops py-tf-keras -py-jpype1 py-tfdlpack -py-jraph py-theano -py-jsmin py-thewalrus -py-json-get py-thinc -py-json-tricks py-thop -py-json2html py-threadpoolctl -py-json5 py-throttler -py-jsonargparse py-tidynamics -py-jsondiff py-tifffile -py-jsonlines py-tiktoken -py-jsonpatch py-tilelang -py-jsonpath-ng py-timm -py-jsonpickle py-tinyarray -py-jsonpointer py-tinycss2 -py-jsonref py-tinydb -py-jsonschema py-tinyrecord -py-jsonschema-specifications py-tld -py-junit-xml py-tldextract -py-junit2html py-tokenize-rt -py-jupyter py-tokenizers -py-jupyter-client py-toml -py-jupyter-console py-tomli -py-jupyter-core py-tomli-w -py-jupyter-events py-tomlkit -py-jupyter-leaflet py-tomopy -py-jupyter-lsp py-toolz -py-jupyter-packaging py-topiary-asr -py-jupyter-server py-toposort -py-jupyter-server-mathjax py-torch -py-jupyter-server-proxy py-torch-cluster -py-jupyter-server-terminals py-torch-fidelity -py-jupyter-telemetry py-torch-geometric -py-jupyterhub py-torch-harmonics -py-jupyterlab py-torch-nvidia-apex -py-jupyterlab-pygments py-torch-scatter -py-jupyterlab-server py-torch-sparse -py-jupyterlab-widgets py-torch-spline-conv -py-jupytext py-torchaudio -py-justext py-torchbenchmark -py-jwcrypto py-torchdata -py-kaggle py-torchdiffeq -py-kaldiio py-torchfile -py-kaleido py-torchgeo -py-kb-python py-torchmeta -py-keras py-torchmetrics -py-keras-applications py-torchseg -py-keras-preprocessing py-torchsummary -py-keras2onnx py-torchtext -py-kerberos py-torchtoolbox -py-keyboard py-torchvision -py-keyring py-tornado -py-keyrings-alt py-tox -py-keystoneauth1 py-toyplot -py-kitchen py-toytree -py-kiwisolver py-tpot -py-kmodes py-tqdm -py-knack py-traceback2 -py-kneaddata py-trafilatura -py-kombu py-trainax -py-kornia py-traitlets -py-kornia-rs py-traits -py-kosh py-traitsui -py-krb5 py-traittypes -py-kt-legacy py-trame -py-kubernetes py-trame-client -py-kymatio py-trame-server -py-lagom py-transformer-engine -py-langcodes py-transformers -py-langsmith py-transforms3d -py-lap py-transonic -py-laplace-torch py-tree -py-lark py-tree-math -py-lark-parser py-tree-sitter -py-laspy py-tree-sitter-c -py-latexcodec py-treehash -py-law py-treelib -py-lazy py-triangle -py-lazy-loader py-trieregex -py-lazy-object-proxy py-trimesh -py-lazy-property py-triton -py-lazyarray py-trojanzoo-sphinx-theme -py-lcls-krtc py-trove-classifiers -py-ldap3 py-trx-python -py-leather py-tuiview -py-lerc py-tuspy -py-lfpykit py-tuswsgi -py-lhsmdu py-tweedledum -py-liac-arff py-twine -py-libclang py-twisted -py-libconf py-typed-ast -py-libcst py-typeguard -py-libensemble py-typepy -py-liblas py-typer -py-librosa py-types-dataclasses -py-libsonata py-types-pkg-resources -py-lifelines py-types-psutil -py-lightgbm py-types-python-dateutil -py-lightly py-types-pytz -py-lightly-utils py-types-requests -py-lightning py-types-setuptools -py-lightning-api-access py-types-typed-ast -py-lightning-cloud py-types-urllib3 -py-lightning-fabric py-typesentry -py-lightning-lite py-typeshed-client -py-lightning-uq-box py-typing-extensions -py-lightning-utilities py-typing-inspect -py-ligo-segments py-typish -py-lil-aretomo py-tzdata -py-line-profiler py-tzlocal -py-linear-operator py-ubiquerg -py-linear-tree py-uc-micro-py -py-linecache2 py-ucsf-pyem -py-lineenhancer py-ucx-py -py-linkchecker py-uhi -py-linkify-it-py py-ujson -py-lit py-ultralytics -py-litdata py-umalqurra -py-littleutils py-umap-learn -py-lizard py-umi-tools -py-llnl-sina py-uncertainties -py-llvmlite py-uncertainty-toolbox -py-lmdb py-unfoldnd -py-lmfit py-unicycler -py-lmodule py-unidecode -py-localcider py-unittest2py3k -py-locket py-universal-pathlib -py-lockfile py-unshare -py-logilab-common py-unyt -py-logistro py-update-checker -py-logmuse py-uproot -py-loguru py-uproot3 -py-loky py-uproot3-methods -py-loompy py-uri-template -py-looseversion py-uritemplate -py-louie py-url-normalize -py-lpips py-urllib3 -py-lru-dict py-urllib3-secure-extra -py-lscsoft-glue py-urwid -py-lsprotocol py-us -py-luigi py-userpath -py-lvis py-usgs -py-lws py-utils -py-lxml py-uv -py-lz4 py-uvicorn -py-lzstring py-uvloop -py-m2r py-uvw -py-macholib py-uwsgi -py-machotools py-uxarray -py-macs2 py-validators -py-macs3 py-vascpy -py-maestrowf py-vcf-kit -py-magicgui py-vcrpy -py-mahotas py-vcstool -py-mailchecker py-vcstools -py-make py-vcversioner -py-makefun py-vector -py-mako py-vector-quantize-pytorch -py-mapbox-earcut py-vermin -py-mapclassify py-vermouth-martinize -py-mariadb py-versioneer -py-markdown py-versioneer-518 -py-markdown-include py-verspec -py-markdown-it-py py-vesin -py-markdown2 py-vine -py-markov-clustering py-virtualenv -py-markovify py-virtualenv-clone -py-markupsafe py-virtualenvwrapper -py-marshmallow py-visdom -py-matminer py-vispy -py-matplotlib py-vl-convert-python -py-matplotlib-inline py-voluptuous -py-matplotlib-scalebar py-vsc-base -py-maturin py-vsc-install -py-mayavi py-vsts -py-mbstrdecoder py-vsts-cd-manager -py-mccabe py-wadler-lindig -py-md-environ py-waitress -py-mda-xdrlib py-walinuxagent -py-mdanalysis py-wand -py-mdanalysistests py-wandb -py-mdi py-warcio -py-mdit-py-plugins py-warlock -py-mdocfile py-wasabi -py-mdurl py-watchdog -py-meautility py-watchfiles -py-mechanize py-waves -py-medaka py-wcsaxes -py-meldmd py-wcwidth -py-melissa-core py-webargs -py-memory-profiler py-webcolors -py-memprof py-webdataset -py-memray py-webencodings -py-mercantile py-webkit-server -py-mergedeep py-weblogo -py-merlin py-webob -py-meshio py-websocket-client -py-meshpy py-websockets -py-meson-python py-werkzeug -py-metaphlan py-wesanderson -py-metasv py-wget -py-metatensor-core py-whatshap -py-metatensor-learn py-wheel -py-metatensor-operations py-whey -py-metatensor-torch py-whey-pth -py-metatomic-torch py-whichcraft -py-metis py-whoosh -py-metomi-isodatetime py-widgetsnbextension -py-metomi-rose py-wids -py-metpy py-win-unicode-console -py-metric-learn py-wincertstore -py-metrics py-word2number -py-mffpy py-wordcloud -py-mg-rast-tools py-workload-automation -py-mgmetis py-wradlib -py-microsoft-aurora py-wrapt -py-mido py-wsproto -py-mikado py-wstool -py-mike py-wub -py-minio py-wurlitzer -py-minisom py-ww -py-minkowskiengine py-wxflow -py-minrpc py-wxmplot -py-misk py-wxpython -py-misopy py-x-clip -py-mistletoe py-x21 -py-mistune py-xanadu-cloud-client -py-mizani py-xarray -py-mkdocs py-xarray-regrid -py-mkdocs-autorefs py-xarray-tensorstore -py-mkdocs-jupyter py-xattr -py-mkdocs-material py-xcdat -py-mkdocs-material-extensions py-xdot -py-mkdocstrings py-xenv -py-mkdocstrings-python py-xesmf -py-ml-collections py-xgboost -py-ml-dtypes py-xgcm -py-mlflow py-xhistogram -py-mlperf-logging py-xlrd -py-mlxtend py-xlsxwriter -py-mmcv py-xlwt -py-mmtf-python py-xmlplain -py-mne py-xmlrunner -py-mne-bids py-xmltodict -py-mo-pack py-xonsh -py-moarchiving py-xopen -py-mock py-xpyb -py-model-index py-xskillscore -py-modepy py-xtb -py-modin py-xvfbwrapper -py-modred py-xxhash -py-modules-gui py-xyzservices -py-moltemplate py-yacman -py-monai py-yacs -py-monkeytype py-yahmm -py-monotonic py-yajl -py-monty py-yamlreader -py-more-itertools py-yapf -py-morph-tool py-yarl -py-morphio py-yaspin -py-morphosamplers py-yolk3k -py-motmetrics py-your -py-mouseinfo py-youtube-dl -py-moviepy py-yq -py-mpi4jax py-yt -py-mpi4py py-yte -py-mpld3 py-ytopt -py-mpldock py-ytopt-autotune -py-mplhep py-z3-solver -py-mplhep-data py-zarr -py-mpmath py-zc-buildout -py-mrcfile py-zc-lockfile -py-msal py-zfit -py-msal-extensions py-zfit-interface -py-msgpack py-zfit-physics -py-msgpack-numpy py-zict -py-msrest py-zipfile-deflate64 -py-msrestazure py-zipp -py-multi-imbalance py-zipstream-new -py-multi-key-dict py-zope-event -py-multidict py-zope-interface -py-multiecho py-zstandard -py-multipledispatch py-zxcvbn -==> 2856 packages +py-3to2 py-fabric3 py-mysql-connector-python py-pywcs +py-4suite-xml py-fair-esm py-mysqlclient py-pywin32 +py-a2wsgi py-fairscale py-myst-parser py-pywinpty +py-abcpy py-faker py-namex py-pyworld +py-abipy py-fakeredis py-nanobind py-pyxlsb +py-about-time py-falcon py-nanoget py-pyyaml +py-absl-py py-fallocate py-nanomath py-pyyaml-env-tag +py-accelerate py-fastai py-nanoplot py-pyzmq +py-accessible-pygments py-fastaindex py-nanostat py-qdldl +py-accimage py-fastapi py-nanotime py-qiskit-aer +py-acme-tiny py-fastapi-utils py-nanotron py-qiskit-ibm-provider +py-acres py-fastavro py-napari py-qiskit-nature +py-adal py-fastcache py-napari-console py-qiskit-terra +py-adb-enhanced py-fastcluster py-napari-plugin-engine py-qmtest +py-addict py-fastcore py-napari-plugin-manager py-qpsolvers +py-adios py-fastcov py-napari-svg py-qpth +py-adios4dolfinx py-fastdownload py-nara-wpe py-qrcode +py-advancedhtmlparser py-fastdtw py-narwhals py-qsymm +py-aenum py-fasteners py-natsort py-qtawesome +py-affine py-fastfold py-nbclassic py-qtconsole +py-agate py-fastjsonschema py-nbclient py-qtpy +py-agate-dbf py-fastobo py-nbconvert py-quantiphy +py-agate-excel py-fastpath py-nbdime py-quantities +py-agate-sql py-fastprogress py-nbformat py-quantum-blackbird +py-ahpy py-fastremap py-nbmake py-quantum-xir +py-aiobotocore py-fastrlock py-nbqa py-quart +py-aiocontextvars py-fasttext-numpy2 py-nbsphinx py-quast +py-aiodns py-fasttext-numpy2-wheel py-nbstripout py-quaternionic +py-aiofiles py-faust-cchardet py-nbval py-qudida +py-aiohappyeyeballs py-fava py-nc-time-axis py-queryablelist +py-aiohttp py-fenics-basix py-ncbi-genome-download py-querystring-parser +py-aiohttp-cors py-fenics-dijitso py-ndg-httpsclient py-questionary +py-aioitertools py-fenics-dolfinx py-ndindex py-qutip +py-aiojobs py-fenics-ffc py-neo py-qutip-qip +py-aioredis py-fenics-ffcx py-neo4j py-rachis +py-aiosignal py-fenics-fiat py-neobolt py-radiant-mlhub +py-aiosqlite py-fenics-instant py-neotime py-radical-entk +py-aiowebdav2 py-fenics-ufl py-neovim-remote py-radical-gtod +py-alabaster py-fenics-ufl-legacy py-neptune-client py-radical-pilot +py-albucore py-ffmpy py-nest-asyncio py-radical-saga +py-alembic py-fief-client py-nestle py-radical-utils +py-alive-progress py-file-magic py-netaddr py-ranger-fm +py-alpaca-eval py-filecheck py-netcdf4 py-rapidfuzz +py-alpaca-farm py-filelock py-netifaces py-rapidfuzz-capi +py-alphafold py-filemagic py-netket py-rarfile +py-altair py-filetype py-netpyne py-rassumfrassum +py-altgraph py-filterpy py-networkit py-rasterio +py-amici py-find-libpython py-networkx py-rasterstats +py-amityping py-findlibs py-neuralgcm py-ratelim +py-amplpy py-fiona py-neurokit2 py-ratelimiter +py-ampltools py-fire py-neurolab py-raven +py-amqp py-fireworks py-neurom py-ray +py-amrex py-fiscalyear py-neurora py-rbtools +py-angel py-fisher py-neurotools py-rdflib +py-aniso8601 py-fits-tools py-nexus-sdk py-rdflib-jsonld +py-anndata py-fitsio py-nexusforge py-rdt +py-annexremote py-fitter py-nglview py-reacton +py-annotated-types py-fixtures py-ngs-tools py-readchar +py-annoy py-flake8 py-nh3 py-readme-renderer +py-ansi2html py-flake8-import-order py-nibabel py-recommonmark +py-ansible py-flake8-polyfill py-nilearn py-redis +py-ansimarkup py-flaky py-nipype py-referencing +py-ansiwrap py-flameprof py-nitransforms py-refgenconf +py-antimeridian py-flash-attn py-niworkflows py-refgenie +py-antipickle py-flask py-nltk py-regex +py-antlr4-python3-runtime py-flask-babel py-node-semver py-regionmask +py-antspyx py-flask-compress py-nodeenv py-regions +py-anuga py-flask-cors py-non-regression-test-tools py-reindent +py-anvio py-flask-paginate py-nose py-relion +py-anybadge py-flask-restful py-nose-cov py-relion-blush +py-anyio py-flask-socketio py-nose2 py-relion-classranker +py-anytree py-flask-sqlalchemy py-nosexcover py-repligit +py-anywidget py-flatbuffers py-notebook py-reportlab +py-apache-libcloud py-flatten-dict py-notebook-shim py-reportseff +py-apache-tvm-ffi py-flawfinder py-npe2 py-repoze-lru +py-apebench py-flax py-nptyping py-reproject +py-apex py-flexcache py-npx py-requests +py-apeye py-flexmock py-ntlm-auth py-requests-cache +py-apeye-core py-flexparser py-ntplib py-requests-file +py-apipkg py-flexx py-nugraph py-requests-ftp +py-apispec py-flit py-nuitka py-requests-futures +py-app-model py-flit-core py-num2words py-requests-kerberos +py-appdirs py-flit-scm py-numba py-requests-mock +py-applicationinsights py-flox py-numba4jax py-requests-ntlm +py-appnope py-flufl-lock py-numbagg py-requests-oauthlib +py-apprise py-fluiddyn py-numcodecs py-requests-toolbelt +py-apptools py-fluidfft py-numdifftools py-requests-unixsocket +py-apscheduler py-fluidfft-builder py-numexpr py-requirements-parser +py-arcgis py-fluidfft-fftw py-numexpr3 py-reretry +py-arch py-fluidfft-fftwmpi py-numkit py-resampy +py-archspec py-fluidfft-mpi-with-fftw py-numl py-resize-right +py-arcp py-fluidfft-p3dfft py-numpy py-resolvelib +py-argcomplete py-fluidfft-pfft py-numpy-groupies py-responses +py-argh py-fluidsim py-numpy-indexed py-resultsfile +py-argon2-cffi py-fluidsim-core py-numpy-quaternion py-retry +py-argon2-cffi-bindings py-flye py-numpy-stl py-retry-decorator +py-argparse-dataclass py-fn-py py-numpydoc py-retrying +py-argparse-manpage py-folium py-nvidia-dali py-retworkx +py-args py-fonttools py-nvidia-ml-py py-rfc3339-validator +py-arkouda py-ford py-nvidia-ml-py3 py-rfc3986 +py-arm-pyart py-formatizer py-nvidia-modulus py-rfc3986-validator +py-arpeggio py-formulaic py-nvidia-nvcomp py-rfc3987-syntax +py-arrow py-fortls py-nvidia-nvimagecodec py-rich +py-art py-fortran-language-server py-nvidia-nvjpeg2k py-rich-argparse +py-arviz py-fortranformat py-nvidia-nvtiff py-rich-click +py-asciitree py-fparser py-nvidia-physicsnemo py-rio-pmtiles +py-asdf py-fprettify py-nvitop py-rios +py-asdf-astropy py-fqdn py-nvtx py-rioxarray +py-asdf-coordinates-schemas py-fracridge py-oauth2client py-rise +py-asdf-standard py-fraction py-oauthlib py-river +py-asdf-transform-schemas py-freetype-py py-obspy py-rmm +py-asdf-unit-schemas py-freezegun py-ocnn py-rnc2rng +py-asdfghjkl py-frozendict py-odc-geo py-robocrys +py-ase py-frozenlist py-odfpy py-robotframework +py-asgi-lifespan py-fs py-ogb py-rocrate +py-asgiref py-fsspec py-okada-wrapper py-roifile +py-asn1crypto py-fsspec-xrootd py-olcf-velocity py-roman-numerals +py-aspy-yaml py-ftfy py-olefile py-roman-numerals-py +py-asserts py-ftputil py-olmoearth-pretrain-minimal py-rope +py-ast-serialize py-funcy py-omegaconf py-rosdep +py-asteval py-furo py-onnx py-rosdistro +py-astor py-fury py-onnx-opcounter py-rosinstall +py-astpretty py-fusepy py-onnxconverter-common py-rosinstall-generator +py-astroid py-future py-onnxmltools py-rospkg +py-astropy py-fuzzywuzzy py-onnxruntime py-rotary-embedding-torch +py-astropy-healpix py-fypp py-ont-fast5-api py-rouge-score +py-astropy-helpers py-galaxy-containers py-opcodes py-routes +py-astropy-iers-data py-galaxy-job-metrics py-open-clip-torch py-rpds-py +py-asttokens py-galaxy-objectstore py-openai py-rply +py-astunparse py-galaxy-sequence-utils py-openai-whisper py-rpy2 +py-async-generator py-galaxy-tool-util py-openapi-schema-pydantic py-rsa +py-async-lru py-galaxy-util py-opencensus py-rsatoolbox +py-async-timeout py-galaxy2cwl py-opencensus-context py-rseqc +py-asyncio py-gast py-opencv-python py-rst2pdf +py-asyncpg py-gcovr py-opendatalab py-rtoml +py-asynctest py-gcs-oauth2-boto-plugin py-openidc-client py-rtree +py-atomicwrites py-gcsfs py-openmc py-ruamel-ordereddict +py-atpublic py-gdc-client py-openmesh py-ruamel-yaml +py-atropos py-gdown py-openmim py-ruamel-yaml-clib +py-ats py-gee-asset-manager py-openpmd-validator py-ruamel-yaml-jinja2 +py-attmap py-geeadd py-openpmd-viewer py-rucio-clients +py-attrs py-geemap py-openpyxl py-ruff +py-audioread py-geeup py-openslide-python py-rustworkx +py-auditwheel py-gemmforge py-opentelemetry-api py-rx +py-authlib py-gemmi py-opentelemetry-exporter-prometheus py-s3cmd +py-autocfg py-genders py-opentelemetry-instrumentation py-s3fs +py-autodocsumm py-geneimpacts py-opentelemetry-sdk py-s3transfer +py-autograd py-generateds py-opentelemetry-semantic-conventions py-sacrebleu +py-autograd-gamma py-genshi py-opentree py-sacremoses +py-automat py-gensim py-opentuner py-safe-netrc +py-autopep8 py-geoalchemy2 py-opppy py-safetensors +py-autoray py-geocoder py-ops py-salib +py-autoreject py-geocube py-opt-einsum py-sarif-tools +py-auxlib py-geographiclib py-optax py-scandir +py-avro py-geojson py-optree py-scanpy +py-avro-json-serializer py-geomdl py-optuna py-schema +py-avro-python3 py-geopandas py-or-tools py-schema-salad +py-awesome-slugify py-geoplot py-oracledb py-scientificpython +py-awkward py-geopmdpy py-orbax-checkpoint py-scifem +py-awkward-cpp py-geopmpy py-ordered-set py-scikit-build +py-awkward0 py-geopy py-orderly-set py-scikit-build-core +py-awscrt py-geoviews py-orjson py-scikit-fmm +py-ax-platform py-gest-api py-os-service-types py-scikit-fuzzy +py-azote py-gevent py-oset py-scikit-image +py-azure-batch py-gf256 py-oslo-config py-scikit-learn +py-azure-cli-command-modules-nspkg py-gfal2-python py-oslo-i18n py-scikit-learn-extra +py-azure-cli-core py-gffutils py-oslo-serialization py-scikit-matter +py-azure-cli-nspkg py-ghp-import py-oslo-utils py-scikit-optimize +py-azure-cli-telemetry py-gidgethub py-osqp py-scikit-sparse +py-azure-common py-gidgetlab py-outdated py-scikits-odes +py-azure-core py-gimmik py-overpy py-scine-chemoton +py-azure-cosmos py-gin-config py-overrides py-scine-puffin +py-azure-datalake-store py-git-review py-owlrl py-scinum +py-azure-functions-devops-build py-gitdb py-owslib py-scipy +py-azure-graphrbac py-gitpython py-oyaml py-scitokens +py-azure-identity py-glean-parser py-p2j py-scooby +py-azure-keyvault py-glean-sdk py-pacifica-downloader py-scoop +py-azure-keyvault-certificates py-glmnet py-pacifica-namespace py-scp +py-azure-keyvault-keys py-glmnet-python py-pacifica-uploader py-screed +py-azure-keyvault-nspkg py-glmsingle py-packaging py-scs +py-azure-keyvault-secrets py-glob2 py-pager py-sdmetrics +py-azure-loganalytics py-globus-cli py-paho-mqtt py-sdnotify +py-azure-mgmt-advisor py-globus-sdk py-palettable py-sdv +py-azure-mgmt-apimanagement py-gluoncv py-pamela py-seaborn +py-azure-mgmt-appconfiguration py-glymur py-panaroo py-secretstorage +py-azure-mgmt-applicationinsights py-gmsh py-pandas py-seekpath +py-azure-mgmt-authorization py-gmsh-interop py-pandas-datareader py-segmentation-models-pytorch +py-azure-mgmt-batch py-gmxapi py-pandas-stubs py-selenium +py-azure-mgmt-batchai py-gnuplot py-pandera py-semantic-version +py-azure-mgmt-billing py-goatools py-pandocfilters py-semver +py-azure-mgmt-botservice py-gooey py-panedr py-send2trash +py-azure-mgmt-cdn py-google py-panel py-sentencepiece +py-azure-mgmt-cognitiveservices py-google-api-core py-papermill py-sentry-sdk +py-azure-mgmt-compute py-google-api-python-client py-paralleltask py-seqeval +py-azure-mgmt-consumption py-google-apitools py-param py-sequence-models +py-azure-mgmt-containerinstance py-google-auth py-parameterized py-seriate +py-azure-mgmt-containerregistry py-google-auth-httplib2 py-paramiko py-serpent +py-azure-mgmt-containerservice py-google-auth-oauthlib py-paramz py-session-info +py-azure-mgmt-core py-google-cloud-appengine-logging py-parasail py-setproctitle +py-azure-mgmt-cosmosdb py-google-cloud-audit-log py-parmed py-setupmeta +py-azure-mgmt-datalake-analytics py-google-cloud-batch py-parse py-setuptools +py-azure-mgmt-datalake-store py-google-cloud-bigquery py-parse-type py-setuptools-cpp +py-azure-mgmt-datamigration py-google-cloud-core py-parsedatetime py-setuptools-git +py-azure-mgmt-deploymentmanager py-google-cloud-logging py-parsimonious py-setuptools-git-versioning +py-azure-mgmt-devtestlabs py-google-cloud-storage py-parsl py-setuptools-reproducible +py-azure-mgmt-dns py-google-crc32c py-parsley py-setuptools-rust +py-azure-mgmt-eventgrid py-google-pasta py-parso py-setuptools-scm +py-azure-mgmt-eventhub py-google-reauth py-partd py-setuptools-scm-git-archive +py-azure-mgmt-hdinsight py-google-resumable-media py-particle py-sfepy +py-azure-mgmt-imagebuilder py-googleapis-common-protos py-paste py-sgp4 +py-azure-mgmt-iotcentral py-googledrivedownloader py-pastedeploy py-sh +py-azure-mgmt-iothub py-gosam py-pastel py-shap +py-azure-mgmt-iothubprovisioningservices py-gpaw py-pastml py-shapely +py-azure-mgmt-keyvault py-gpaw-data py-patch py-shellescape +py-azure-mgmt-kusto py-gpustat py-patch-ng py-shellingham +py-azure-mgmt-loganalytics py-gputil py-path-py py-shiboken2 +py-azure-mgmt-managedservices py-gpy py-pathlib-abc py-shippinglabel +py-azure-mgmt-managementgroups py-gpyopt py-pathlib2 py-shortbred +py-azure-mgmt-maps py-gpytorch py-pathml py-shortuuid +py-azure-mgmt-marketplaceordering py-gql py-pathos py-shroud +py-azure-mgmt-media py-gradio py-pathsimanalysis py-shtab +py-azure-mgmt-monitor py-gradio-client py-pathspec py-simpervisor +py-azure-mgmt-msi py-grandalf py-pathtools py-simple-slurm +py-azure-mgmt-netapp py-graphcast py-pathvalidate py-simpleeval +py-azure-mgmt-network py-grapheme py-pathy py-simplegeneric +py-azure-mgmt-nspkg py-graphene py-patool py-simplejson +py-azure-mgmt-policyinsights py-graphlib-backport py-patsy py-simplekml +py-azure-mgmt-privatedns py-graphql-core py-pauvre py-simpletraj +py-azure-mgmt-rdbms py-graphql-relay py-pbr py-simpy +py-azure-mgmt-recoveryservices py-graphql-ws py-pdb-tools py-simsimd +py-azure-mgmt-recoveryservicesbackup py-graphviz py-pdbfixer py-singledispatchmethod +py-azure-mgmt-redhatopenshift py-gravity py-pdequinox py-sip +py-azure-mgmt-redis py-grayskull py-pdf2image py-six +py-azure-mgmt-relay py-greenlet py-pdm-backend py-skl2onnx +py-azure-mgmt-reservations py-grequests py-pdm-pep517 py-slepc4py +py-azure-mgmt-resource py-griddataformats py-pdoc3 py-slicer +py-azure-mgmt-search py-griffe py-peachpy py-slurm-pipeline +py-azure-mgmt-security py-gromacswrapper py-peakutils py-smac +py-azure-mgmt-servicebus py-grpc-google-iam-v1 py-pebble py-smart-open +py-azure-mgmt-servicefabric py-grpcio py-peft py-smartredis +py-azure-mgmt-signalr py-grpcio-status py-pelicanfs py-smartsim +py-azure-mgmt-sql py-grpcio-tools py-pem py-smartypants +py-azure-mgmt-sqlvirtualmachine py-gsd py-pendulum py-smmap +py-azure-mgmt-storage py-gssapi py-pennylane py-smolagents +py-azure-mgmt-trafficmanager py-gsutil py-pennylane-lightning py-smote-variants +py-azure-mgmt-web py-gtdbtk py-pennylane-lightning-kokkos py-snakemake-executor-plugin-azure-batch +py-azure-multiapi-storage py-gunicorn py-pep517 py-snakemake-executor-plugin-cluster-generic +py-azure-nspkg py-gxformat2 py-pep8 py-snakemake-executor-plugin-cluster-sync +py-azure-storage-blob py-gym py-pep8-naming py-snakemake-executor-plugin-drmaa +py-azure-storage-common py-h11 py-perfdump py-snakemake-executor-plugin-flux +py-azure-storage-nspkg py-h2 py-performance py-snakemake-executor-plugin-googlebatch +py-b2luigi py-h3 py-periodictable py-snakemake-executor-plugin-kubernetes +py-babel py-h5glance py-petastorm py-snakemake-executor-plugin-slurm +py-backcall py-h5io py-petname py-snakemake-executor-plugin-slurm-jobstep +py-backoff py-h5netcdf py-petsc4py py-snakemake-executor-plugin-tes +py-backpack-for-pytorch py-h5py py-pexpect py-snakemake-interface-common +py-backports-abc py-h5sh py-pfzy py-snakemake-interface-executor-plugins +py-backports-cached-property py-hacking py-pgzip py-snakemake-interface-logger-plugins +py-backports-entry-points-selectable py-hail py-phanotate py-snakemake-interface-report-plugins +py-backports-lzma py-handy-archives py-phonenumbers py-snakemake-interface-scheduler-plugins +py-backports-os py-hatch py-phonopy py-snakemake-interface-storage-plugins +py-backports-ssl-match-hostname py-hatch-cython py-photutils py-snakemake-storage-plugin-azure +py-backports-tarfile py-hatch-fancy-pypi-readme py-phydms py-snakemake-storage-plugin-fs +py-backports-tempfile py-hatch-jupyter-builder py-phylophlan py-snakemake-storage-plugin-ftp +py-backports-weakref py-hatch-nodejs-version py-pickle5 py-snakemake-storage-plugin-gcs +py-backports-zoneinfo py-hatch-requirements-txt py-pickleshare py-snakemake-storage-plugin-http +py-bagit py-hatch-vcs py-picmistandard py-snakemake-storage-plugin-pelican +py-bagit-profile py-hatchet py-picrust2 py-snakemake-storage-plugin-rucio +py-bakta py-hatchling py-pid py-snakemake-storage-plugin-s3 +py-bandit py-hclust2 py-pika py-snakemake-storage-plugin-sftp +py-barectf py-hdbscan py-pillow py-snakemake-storage-plugin-zenodo +py-basemap py-hdf5plugin py-pillow-simd py-snakeviz +py-bash-kernel py-hdfs py-pint py-snappy +py-basis-set-exchange py-healpix py-pint-xarray py-sncosmo +py-batchspawner py-healpy py-pip py-sniffio +py-bayesian-optimization py-heapdict py-pipcl py-snoop +py-bcbio-gff py-heat py-pipdeptree py-snowballstemmer +py-bcolz py-heavyball py-piper py-snuggs +py-bcrypt py-hep-ml py-pipits py-sobol-seq +py-bdbag py-hepdata-converter py-pispino py-social-auth-core +py-beaker py-hepdata-lib py-pivy py-sonlib +py-beancount py-hepdata-validator py-pkgconfig py-sortedcollections +py-beartype py-hepstats py-pkginfo py-sortedcontainers +py-beautifulsoup4 py-hepunits py-pkgutil-resolve-name py-soundfile +py-beniget py-heudiconv py-plac py-soupsieve +py-bibtexparser py-hf-transfer py-plaid py-soyclustering +py-bidict py-hf-xet py-planar py-spacy +py-bids-validator py-hieroglyph py-planet py-spacy-legacy +py-bids-validator-deno py-highspy py-planetary-computer py-spacy-loggers +py-bidscoin py-hiredis py-platformdirs py-spacy-models-en-core-web-sm +py-bidskit py-hist py-plotext py-spacy-models-en-vectors-web-lg +py-bidsschematools py-histbook py-plotille py-sparse +py-bigdft py-histogrammar py-plotly py-spatialist +py-bigfloat py-histoprint py-plotnine py-spatialite +py-billiard py-hjson py-pluggy py-spatialpandas +py-binary py-hmmlearn py-plum-dispatch py-spdlog +py-binaryornot py-holland-backup py-ply py-spectra +py-bintrees py-holoviews py-pmtiles py-spectral +py-binwalk py-horovod py-pmw py-speech-recognition +py-biobb-common py-hpack py-pmw-patched py-spefile +py-biobb-gromacs py-hpbandster py-pockets py-spgl1 +py-biobb-io py-hpccm py-poetry py-spglib +py-biobb-model py-hsluv py-poetry-core py-spherical +py-biobb-structure-checking py-hstspreload py-poetry-dynamic-versioning py-sphericart +py-biobb-structure-utils py-htgettoken py-poetry-plugin-export py-sphericart-torch +py-bioblend py-html2text py-poetry-plugin-tweak-dependencies-version py-sphinx +py-biom-format py-html5lib py-polars py-sphinx-argparse +py-biomine py-htmldate py-pomegranate py-sphinx-autodoc-typehints +py-biopandas py-htmlgen py-pooch py-sphinx-basic-ng +py-biopython py-htseq py-portalocker py-sphinx-book-theme +py-biosppy py-httpbin py-portend py-sphinx-bootstrap-theme +py-biotite py-httpcore py-portpicker py-sphinx-click +py-biotraj py-httplib2 py-postcactus py-sphinx-copybutton +py-bitarray py-httpretty py-poster py-sphinx-design +py-bitshuffle py-httpstan py-pot py-sphinx-fortran +py-bitstring py-httptools py-pox py-sphinx-gallery +py-bitstruct py-httpx py-poxy py-sphinx-github-changelog +py-black py-huggingface-hub py-poyo py-sphinx-immaterial +py-blake3 py-humanfriendly py-ppft py-sphinx-jinja2-compat +py-bleach py-humanize py-pprintpp py-sphinx-multiversion +py-blessed py-hvac py-pre-commit py-sphinx-prompt +py-blessings py-hvplot py-preshed py-sphinx-removed-in +py-blight py-hydra-core py-pretrainedmodels py-sphinx-rtd-dark-mode +py-blinker py-hypercorn py-pretty-errors py-sphinx-rtd-theme +py-blis py-hyperframe py-prettytable py-sphinx-tabs +py-blosc py-hyperlink py-priority py-sphinx-theme-builder +py-blosc2 py-hyperopt py-profilehooks py-sphinx-toolbox +py-blosum py-hypothesis py-proglog py-sphinxautomodapi +py-bluepyefe py-ibm-cloud-sdk-core py-progress py-sphinxcontrib-applehelp +py-bluepyemodel py-ibm-watson py-progressbar2 py-sphinxcontrib-bibtex +py-bluepyopt py-ics py-progressbar33 py-sphinxcontrib-devhelp +py-bmap-tools py-id py-projectq py-sphinxcontrib-htmlhelp +py-bmtk py-identify py-prokaryote py-sphinxcontrib-issuetracker +py-bokeh py-idna py-prometheus-client py-sphinxcontrib-jquery +py-boltons py-idna-ssl py-prometheus-flask-exporter py-sphinxcontrib-jsmath +py-boom-boot-manager py-igor py-promise py-sphinxcontrib-mermaid +py-boost-histogram py-igor2 py-prompt-toolkit py-sphinxcontrib-moderncmakedomain +py-boto py-igraph py-propcache py-sphinxcontrib-napoleon +py-boto3 py-igv-notebook py-properscoring py-sphinxcontrib-plantuml +py-botocore py-igwn-auth-utils py-proto-plus py-sphinxcontrib-programoutput +py-botorch py-ihm py-protobuf py-sphinxcontrib-qthelp +py-bottle py-illumina-utils py-protoc-gen-swagger py-sphinxcontrib-serializinghtml +py-bottleneck py-ilmbase py-prov py-sphinxcontrib-spelling +py-bqplot py-imagecodecs py-proxystore py-sphinxcontrib-tikz +py-braceexpand py-imagecorruptions-imaug py-prwlock py-sphinxcontrib-trio +py-brain-indexer py-imagehash py-psalg py-sphinxcontrib-websupport +py-branca py-imageio py-psana py-sphinxemoji +py-bravado py-imageio-ffmpeg py-psij-python py-sphobjinv +py-bravado-core py-imagesize py-psmon py-spykeutils +py-breakseq2 py-imaug py-pspamm py-spython +py-breathe py-imbalanced-learn py-psutil py-sqlalchemy +py-brian py-imgaug py-psyclone py-sqlalchemy-migrate +py-brian2 py-iminuit py-psycopg2 py-sqlalchemy-stubs +py-brotli py-immutabledict py-psygnal py-sqlalchemy-utils +py-brotlipy py-immutables py-ptyprocess py-sqlitedict +py-bsddb3 py-importlib-metadata py-pubchempy py-sqlparse +py-build py-importlib-resources py-pudb py-srsly +py-bx-python py-imutils py-pulp py-sseclient +py-cachecontrol py-in-n-out py-pulsar-galaxy-lib py-sshtunnel +py-cached-property py-incremental py-pure-eval py-sspilib +py-cachetools py-inflect py-pure-sasl py-stack-data +py-cachey py-inheritance py-puremagic py-starfile +py-cachy py-iniconfig py-py py-starlette +py-cairocffi py-iniparse py-py-cpuinfo py-starlette-context +py-cairosvg py-inquirer py-py-spy py-starsessions +py-caliper-reader py-inquirerpy py-py-tes py-stashcp +py-callmonitor py-inscriptis py-py2bit py-statmorph +py-calver py-installer py-py2neo py-statsmodels +py-cantoolz py-instrain py-py4j py-stdlib-list +py-carputils py-intake py-py6s py-stestr +py-cartopy py-intake-esm py-pyabel py-stevedore +py-casadi py-intbitset py-pyaestro py-stomp-py +py-catalogue py-intel-openmp py-pyahocorasick py-stopit +py-catkin-pkg py-intensity-normalization py-pyamg py-storm +py-cattrs py-interface-meta py-pyaml py-stratify +py-cbor2 py-interlap py-pyaml-env py-strawberryfields +py-cclib py-intervaltree py-pyani py-streamlit +py-cdo py-invoke py-pyarrow py-stringzilla +py-cdsapi py-iocapture py-pyasn1 py-striprtf +py-cekit py-iopath py-pyasn1-modules py-stsci-distutils +py-celery py-ipaddress py-pyassimp py-stui +py-cellprofiler py-ipdb py-pyautogui py-submitit +py-cellprofiler-core py-ipycanvas py-pybedtools py-subrosa +py-centrosome py-ipyevents py-pybids py-subword-nmt +py-cerberus py-ipyfilechooser py-pybigwig py-supermercado +py-certifi py-ipykernel py-pybind11 py-superqt +py-certipy py-ipyleaflet py-pybind11-stubgen py-supervisor +py-cf-units py-ipympl py-pybktree py-svgpath +py-cf-xarray py-ipyparallel py-pybobyqa py-svgpathtools +py-cffconvert py-ipyrad py-pybrain py-svgutils +py-cffi py-ipython py-pybtex py-svgwrite +py-cfgrib py-ipython-cluster-helper py-pybtex-docutils py-swagger-spec-validator +py-cfgv py-ipython-genutils py-pybv py-symengine +py-cftime py-ipython-pygments-lexers py-pycairo py-symfit +py-cgen py-ipytree py-pycares py-sympy +py-chai py-ipyvtk-simple py-pycbc py-syned +py-chai-lab py-ipyvue py-pycgns py-sysrsync +py-chainer py-ipyvuetify py-pychecker py-systemd-python +py-chainforgecodegen py-ipywidgets py-pycifrw py-tabledata +py-chainmap py-irpf90 py-pyclibrary py-tables +py-chalice py-isa-rwval py-pycm py-tabulate +py-chardet py-isal py-pycmd py-tatsu +py-charm4py py-iso8601 py-pycocotools py-tblib +py-charset-normalizer py-isodate py-pycodestyle py-tbparse +py-chart-studio py-isoduration py-pycollada py-tcolorpy +py-cheap-repr py-isort py-pycompadre py-tempita +py-checkm-genome py-itables py-pyconify py-templateflow +py-cheetah3 py-iterative-stats py-pycorenlp py-tempora +py-chemfiles py-itk py-pycortex py-tenacity +py-chemiscope py-itolapi py-pycosat py-tensorboard +py-cheroot py-itsdangerous py-pycparser py-tensorboard-data-server +py-cherrypy py-jacobi py-pycrypto py-tensorboard-plugin-wit +py-chex py-jaconv py-pycryptodome py-tensorboardx +py-choreographer py-jamo py-pycryptodomex py-tensorflow +py-chronyk py-janus py-pyct py-tensorflow-datasets +py-ci-info py-jaraco-classes py-pycubexr py-tensorflow-estimator +py-ci-sdr py-jaraco-context py-pycuda py-tensorflow-hub +py-cig-pythia py-jaraco-functools py-pycurl py-tensorflow-metadata +py-cinema-lib py-jarowinkler py-pydantic py-tensorflow-probability +py-cinemasci py-jarvis-util py-pydantic-compat py-tensorly +py-circus py-javaproperties py-pydantic-core py-tensorstore +py-citeproc-py py-jax py-pydantic-extra-types py-termcolor +py-clarabel py-jaxlib py-pydantic-settings py-termgraph +py-clean-text py-jaxtyping py-pydantic-tes py-terminado +py-cleo py-jcb py-pydap py-terminaltables +py-click py-jdatetime py-pydata-sphinx-theme py-tern +py-click-didyoumean py-jdcal py-pydatalog py-tesorter +py-click-option-group py-jedi py-pydeface py-testfixtures +py-click-plugins py-jeepney py-pydeprecate py-testinfra +py-click-repl py-jellyfish py-pydeps py-testpath +py-cligj py-jinja2 py-pydevtool py-testrepository +py-clikit py-jinja2-cli py-pydftracer py-testresources +py-climate py-jinja2-humanize-extension py-pydicom py-testscenarios +py-climax py-jinja2-time py-pydispatcher py-testtools +py-clint py-jiter py-pydmd py-tetoolkit +py-clip-anytorch py-jmespath py-pydocstyle py-text-unidecode +py-clipboard py-jmp py-pydoe py-textblob +py-cloudauthz py-joblib py-pydoe2 py-texttable +py-cloudbridge py-jplephem py-pydot py-textual +py-cloudpathlib py-jproperties py-pydot2 py-textual-fspicker +py-cloudpickle py-jprops py-pydotplus py-textual-plotext +py-clustershell py-jpype1 py-pydub py-textwrap3 +py-cma py-jraph py-pyeda py-textx +py-cmaes py-jsmin py-pyedr py-tf-keras +py-cmake-format py-json-get py-pyee py-tf2onnx +py-cmake-parser py-json-tricks py-pyelftools py-tfdlpack +py-cmocean py-json2html py-pyem py-theano +py-cmseq py-json5 py-pyenchant py-thewalrus +py-cmsml py-jsonargparse py-pyepsg py-thinc +py-cmyt py-jsondiff py-pyerfa py-thop +py-coapthon3 py-jsonlines py-pyeventsystem py-threadpoolctl +py-coca-pytorch py-jsonpatch py-pyface py-throttler +py-coclust py-jsonpath-ng py-pyfaidx py-tidynamics +py-codebasin py-jsonpickle py-pyfasta py-tifffile +py-codecarbon py-jsonpointer py-pyfastaq py-tiktoken +py-codechecker py-jsonref py-pyfftw py-tilelang +py-codepy py-jsonschema py-pyfiglet py-timezonefinder +py-codespell py-jsonschema-specifications py-pyfits py-timm +py-coherent-licensed py-junit-xml py-pyfive py-tinyarray +py-coilmq py-junit2html py-pyflakes py-tinycss2 +py-colabtools py-jupyter py-pyfr py-tinydb +py-colorama py-jupyter-client py-pygame py-tinyrecord +py-colorcet py-jupyter-console py-pygdal py-tld +py-colorclass py-jupyter-core py-pygdbmi py-tldextract +py-colored py-jupyter-events py-pygelf py-tmtools +py-colored-traceback py-jupyter-leaflet py-pygeos py-tokenize-rt +py-coloredlogs py-jupyter-lsp py-pygetwindow py-tokenizers +py-colorful py-jupyter-packaging py-pygit2 py-toml +py-colorio py-jupyter-server py-pygithub py-tomli +py-colorlog py-jupyter-server-mathjax py-pyglet py-tomli-w +py-colorlover py-jupyter-server-proxy py-pygments py-tomlkit +py-colormath py-jupyter-server-terminals py-pygments-pytest py-tomopy +py-colorpy py-jupyter-telemetry py-pygmsh py-toolz +py-colorspacious py-jupyterhub py-pygmt py-topiary-asr +py-colossalai py-jupyterlab py-pygobject py-toposort +py-colour py-jupyterlab-pygments py-pygps py-torch +py-comm py-jupyterlab-server py-pygpu py-torch-c-dlpack-ext +py-common py-jupyterlab-widgets py-pygraphviz py-torch-cluster +py-commonmark py-jupytext py-pygresql py-torch-fidelity +py-conan py-justext py-pygrib py-torch-geometric +py-conda-inject py-jwcrypto py-pygtrie py-torch-harmonics +py-conda-souschef py-kaggle py-pyh5md py-torch-nvidia-apex +py-confection py-kaldiio py-pyhdf py-torch-scatter +py-configargparse py-kaleido py-pyheadtail py-torch-sparse +py-configobj py-kb-python py-pyhmmer py-torch-spex +py-configparser py-keras py-pyhull py-torch-spline-conv +py-configspace py-keras-applications py-pyicu py-torchaudio +py-confluent-kafka py-keras-preprocessing py-pyinstrument py-torchbenchmark +py-connectionpool py-keras2onnx py-pyinstrument-cext py-torchdata +py-consolekit py-kerberos py-pyisemail py-torchdiffeq +py-constantly py-kerchunk py-pyjnius py-torchfile +py-contextily py-key-value-aio py-pyjwt py-torchgeo +py-contextlib2 py-keyboard py-pyke py-torchmeta +py-contexttimer py-keyring py-pykerberos py-torchmetrics +py-continuum py-keyrings-alt py-pykml py-torchseg +py-contourpy py-keystoneauth1 py-pykokkos-base py-torchsummary +py-contrib py-kitchen py-pykwalify py-torchtext +py-control py-kiwisolver py-pylab-sdk py-torchtoolbox +py-convertdate py-kmodes py-pylatex py-torchvision +py-convokit py-knack py-pyld py-tornado +py-cookiecutter py-kneaddata py-pylev py-tox +py-coolname py-kombu py-pylibjpeg-libjpeg py-toyplot +py-copulas py-kornia py-pylibjpeg-openjpeg py-toytree +py-corner py-kornia-rs py-pylibjpeg-rle py-tpot +py-correctionlib py-kosh py-pylibmagic py-tqdm +py-corrfunc py-krb5 py-pylikwid py-traceback2 +py-counter py-kt-legacy py-pylint py-trafilatura +py-courlan py-kubernetes py-pylint-gitlab py-trainax +py-cov-core py-kymatio py-pylith py-traitlets +py-coverage py-lagom py-pylops py-traits +py-coveralls py-langcodes py-pymatgen py-traitsui +py-cppheaderparser py-langsmith py-pymatreader py-traittypes +py-cppy py-language-data py-pymbolic py-trame +py-cramjam py-lap py-pymc3 py-trame-client +py-crashtest py-laplace-torch py-pymdown-extensions py-trame-common +py-crc32c py-lark py-pymeeus py-trame-server +py-crcmod py-lark-parser py-pyminifier py-trame-vtk +py-croniter py-laspy py-pymol py-trame-vuetify +py-crossmap py-latexcodec py-pymongo py-transformer-engine +py-cryolobm py-law py-pymoo py-transformers +py-cryptography py-lazy py-pymorph py-transforms3d +py-css-parser py-lazy-loader py-pympler py-transonic +py-cssselect py-lazy-object-proxy py-pymsgbox py-tree +py-cssselect2 py-lazy-property py-pymummer py-tree-math +py-cssutils py-lazyarray py-pymumps py-tree-sitter +py-csvkit py-lcls-krtc py-pymupdf py-tree-sitter-c +py-ctgan py-ldap3 py-pymupdf-fonts py-treehash +py-cuda-bindings py-leather py-pymysql py-treelib +py-cuda-core py-leidenalg py-pynacl py-triangle +py-cuda-pathfinder py-lerc py-pynio py-trieregex +py-cudf py-lfpykit py-pynisher py-trimesh +py-cufflinks py-lhsmdu py-pynn py-triton +py-cuml py-liac-arff py-pynndescent py-trl +py-cupy py-libclang py-pynpm py-trojanzoo-sphinx-theme +py-current py-libconf py-pynrrd py-trove-classifiers +py-currentscape py-libcst py-pynucleus py-trx-python +py-curryreader py-libensemble py-pynumpress py-tuiview +py-curvlinops-for-pytorch py-liblas py-pynvim py-tuspy +py-custodian py-librosa py-pynvml py-tuswsgi +py-custom-inherit py-librt py-pynvtx py-tweedledum +py-cutadapt py-libsonata py-pyodbc py-twine +py-cvxopt py-lifelines py-pyogrio py-twisted +py-cvxpy py-lightgbm py-pyomo py-ty +py-cwl-upgrader py-lightly py-pyopencl py-typed-ast +py-cwl-utils py-lightly-utils py-pyopengl py-typeguard +py-cwltool py-lightning py-pyopenssl py-typepy +py-cx-oracle py-lightning-api-access py-pypar py-typer +py-cycler py-lightning-cloud py-pyparsing py-types-dataclasses +py-cykhash py-lightning-fabric py-pypdf py-types-geopandas +py-cylc-flow py-lightning-lite py-pypdf2 py-types-pkg-resources +py-cylc-rose py-lightning-uq-box py-pypeflow py-types-psutil +py-cylp py-lightning-utilities py-pypeg2 py-types-python-dateutil +py-cymem py-lightpipes py-pyperclip py-types-pytz +py-cyordereddict py-ligo-segments py-pyperf py-types-pyyaml +py-cython py-lil-aretomo py-pypinfo py-types-requests +py-cython-bbox py-line-profiler py-pypinyin py-types-setuptools +py-cyvcf2 py-linear-operator py-pypistats py-types-shapely +py-d2to1 py-linear-tree py-pypng py-types-tqdm +py-dace py-linecache2 py-pyppeteer py-types-typed-ast +py-dacite py-lineenhancer py-pyprecice py-types-urllib3 +py-dadi py-linkchecker py-pyprof2html py-typesentry +py-dalib py-linkify-it-py py-pyproj py-typeshed-client +py-damask py-lit py-pyproject-hooks py-typing-extensions +py-darshan py-litdata py-pyproject-metadata py-typing-inspect +py-dasbus py-littleutils py-pyproject-parser py-typing-inspection +py-dash py-lizard py-pypulse py-typish +py-dash-bootstrap-components py-llama-cpp-python py-pyqi py-tzdata +py-dash-svg py-llnl-sina py-pyqt-builder py-tzlocal +py-dask py-llvmlite py-pyqt4 py-ubiquerg +py-dask-awkward py-lmdb py-pyqt5 py-uc-micro-py +py-dask-expr py-lmfit py-pyqt5-sip py-ucsf-pyem +py-dask-glm py-lmodule py-pyqt6 py-ucx-py +py-dask-histogram py-localcider py-pyqt6-sip py-uhi +py-dask-jobqueue py-locket py-pyqtgraph py-ujson +py-dask-ml py-lockfile py-pyquaternion py-ultralytics +py-dask-mpi py-logilab-common py-pyreadline py-umalqurra +py-dask-sphinx-theme py-logistro py-pyrect py-umap-learn +py-databricks-cli py-logmuse py-pyrevolve py-umi-tools +py-dataclasses py-logomaker py-pyrfr py-uncertainties +py-dataclasses-json py-loguru py-pyro-api py-uncertainty-toolbox +py-datacube py-loky py-pyro-ppl py-unfoldnd +py-datalad py-loompy py-pyro4 py-unicycler +py-datalad-container py-looseversion py-pyroaring py-unidecode +py-datalad-deprecated py-louie py-pyrocko py-unittest2py3k +py-datalad-hirni py-lpips py-pyrodigal py-universal-pathlib +py-datalad-metadata-model py-lru-dict py-pyrodigal-gv py-unshare +py-datalad-metalad py-lscsoft-glue py-pyrometheus py-unyt +py-datalad-neuroimaging py-lsprotocol py-pyrr py-update-checker +py-datalad-webapp py-luigi py-pyrsistent py-uproot +py-dataproperty py-lupa py-pysam py-uproot3 +py-datasets py-lvis py-pyscaf py-uproot3-methods +py-datashader py-lws py-pyscf py-uqinn +py-datatrove py-lxml py-pyscipopt py-uri-template +py-dateparser py-lz4 py-pyscreeze py-uritemplate +py-dateutils py-lzstring py-pyseer py-url-normalize +py-datrie py-m2r py-pyserial py-urllib3 +py-dbf py-macholib py-pysftp py-urllib3-secure-extra +py-dbfread py-machotools py-pyshacl py-urwid +py-dcm2bids py-macs2 py-pyshp py-us +py-dcmstack py-macs3 py-pyside2 py-userpath +py-deap py-maestrowf py-pysimdjson py-usgs +py-debtcollector py-magicgui py-pysindy py-utils +py-debugpy py-mahotas py-pysmartdl py-uv +py-decorator py-mailchecker py-pysmiles py-uv-build +py-deepdiff py-make py-pysocks py-uv-dynamic-versioning +py-deepecho py-makefun py-pysolar py-uvicorn +py-deephyper py-mako py-pyspark py-uvloop +py-deepmerge py-mapbox-earcut py-pyspellchecker py-uvw +py-deepsig-biocomp py-mapclassify py-pyspice py-uwsgi +py-deepspeed py-mariadb py-pyspnego py-uxarray +py-deeptools py-marisa-trie py-pyspoa py-validate-pyproject +py-deeptoolsintervals py-markdown py-pyspod py-validators +py-defusedxml py-markdown-include py-pysqlite3 py-vascpy +py-deisa py-markdown-it-py py-pystac py-vcf-kit +py-deisa-core py-markdown2 py-pystac-client py-vcrpy +py-deisa-dask py-markov-clustering py-pystache py-vcstool +py-demjson py-markovify py-pystan py-vcstools +py-dendropy py-markupsafe py-pysurfer py-vcversioner +py-deprecat py-marshmallow py-pytablewriter py-vector +py-deprecated py-matminer py-pytailf py-vector-quantize-pytorch +py-deprecation py-matplotlib py-pytaridx py-vermin +py-deprecation-alias py-matplotlib-inline py-pytecplot py-vermouth-martinize +py-derivative py-matplotlib-scalebar py-pytesseract py-versioneer +py-descartes py-maturin py-pytest py-versioneer-518 +py-devito py-mayavi py-pytest-aiohttp py-versioningit +py-devlib py-mbstrdecoder py-pytest-allclose py-verspec +py-dgl py-mccabe py-pytest-arraydiff py-vesin +py-dh-scikit-optimize py-md-environ py-pytest-astropy py-vine +py-diagnostic py-mda-xdrlib py-pytest-astropy-header py-virtualenv +py-dict2css py-mdahole2 py-pytest-asyncio py-virtualenv-clone +py-dictdiffer py-mdanalysis py-pytest-benchmark py-virtualenvwrapper +py-dictobj py-mdanalysistests py-pytest-cache py-visdom +py-dill py-mdi py-pytest-check-links py-vispy +py-dinosaur py-mdit-py-plugins py-pytest-cmake py-vl-convert-python +py-dipy py-mdocfile py-pytest-cov py-voluptuous +py-dirtyjson py-mdurl py-pytest-cpp py-vsc-base +py-disbatch py-meautility py-pytest-datadir py-vsc-install +py-discover py-mechanize py-pytest-doctestplus py-vsts +py-diskcache py-medaka py-pytest-fail-slow py-vsts-cd-manager +py-dist-meta py-meldmd py-pytest-filter-subpackage py-wadler-lindig +py-distance py-melissa-core py-pytest-flake8 py-waitress +py-distlib py-memelite py-pytest-flakes py-walinuxagent +py-distributed py-memory-profiler py-pytest-forked py-wand +py-distro py-memprof py-pytest-html py-wandb +py-django py-memray py-pytest-httpbin py-warcio +py-dlcpar py-mendeleev py-pytest-isort py-warlock +py-dm-haiku py-mercantile py-pytest-lazy-fixture py-wasabi +py-dm-tree py-mergedeep py-pytest-memray py-watchdog +py-dnaio py-merlin py-pytest-metadata py-watchfiles +py-dnspython py-meshio py-pytest-mock py-waterdynamics +py-docker py-meshpy py-pytest-mpi py-waves +py-dockerpy-creds py-meson-python py-pytest-mypy py-wcsaxes +py-docket py-metaphlan py-pytest-openfiles py-wcwidth +py-docopt py-metasv py-pytest-parallel py-webargs +py-docopt-ng py-metatensor-core py-pytest-pep8 py-webcolors +py-docstring-parser py-metatensor-learn py-pytest-pylint py-webdataset +py-docstring-to-markdown py-metatensor-operations py-pytest-qt py-webdavclient3 +py-docutils py-metatensor-torch py-pytest-random-order py-webencodings +py-docutils-stubs py-metatomic-torch py-pytest-regtest py-webkit-server +py-dogpile-cache py-metatrain py-pytest-remotedata py-weblogo +py-doit py-metis py-pytest-reportlog py-webob +py-dolfinx-mpc py-metomi-isodatetime py-pytest-retry py-websocket-client +py-dom-toml py-metomi-rose py-pytest-runner py-websockets +py-domdf-python-tools py-metpy py-pytest-socket py-werkzeug +py-dominate py-metric-learn py-pytest-subprocess py-wesanderson +py-donfig py-metrics py-pytest-timeout py-wget +py-dotmap py-mffpy py-pytest-workflow py-whatshap +py-dotnetcore2 py-mg-rast-tools py-pytest-xdist py-wheel +py-downhill py-mgmetis py-python-benedict py-whenever +py-doxypypy py-microsoft-aurora py-python-bioformats py-whey +py-dpath py-mido py-python-box py-whey-pth +py-drep py-mikado py-python-calamine py-whichcraft +py-drmaa py-mike py-python-certifi-win32 py-whoosh +py-dryscrape py-minio py-python-constraint py-widgetsnbextension +py-duecredit py-minisom py-python-crfsuite py-wids +py-dulwich py-minkowskiengine py-python-daemon py-wigners +py-dunamai py-minrpc py-python-dateutil py-win-unicode-console +py-dvc py-misk py-python-deprecated py-wincertstore +py-dxchange py-misopy py-python-discovery py-word2number +py-dxfile py-mistletoe py-python-docs-theme py-wordcloud +py-dynaconf py-mistune py-python-docx py-workload-automation +py-dynim py-mizani py-python-dotenv py-wradlib +py-earth2mip py-mkdocs py-python-editor py-wrapt +py-earthengine-api py-mkdocs-autorefs py-python-engineio py-wsproto +py-easybuild-easyblocks py-mkdocs-jupyter py-python-fmask py-wstool +py-easybuild-easyconfigs py-mkdocs-material py-python-fsutil py-wub +py-easybuild-framework py-mkdocs-material-extensions py-python-gitlab py-wurlitzer +py-eccodes py-mkdocstrings py-python-hostlist py-ww +py-ecdsa py-mkdocstrings-python py-python-igraph py-wxflow +py-ecmwf-opendata py-ml-collections py-python-javabridge py-wxmplot +py-ecmwflibs py-ml-dtypes py-python-jenkins py-wxpython +py-ecos py-mlflow py-python-jose py-x-clip +py-edam-ontology py-mlperf-logging py-python-json-logger py-x21 +py-edffile py-mlxtend py-python-keystoneclient py-xanadu-cloud-client +py-edfio py-mmcv py-python-ldap py-xarray +py-edflib-python py-mmengine py-python-levenshtein py-xarray-regrid +py-editables py-mmtf-python py-python-libsbml py-xarray-tensorstore +py-editdistance py-mne py-python-logstash py-xattr +py-edlib py-mne-bids py-python-louvain py-xcdat +py-eeglabio py-mo-pack py-python-lsp-jsonrpc py-xdot +py-eerepr py-moarchiving py-python-lsp-ruff py-xenv +py-efel py-mock py-python-lsp-server py-xesmf +py-efficientnet-pytorch py-model-index py-python-lzo py-xgboost +py-eg py-modelcif py-python-magic py-xgcm +py-eigenpy py-modepy py-python-mapnik py-xhistogram +py-einconv py-modin py-python-markdown-math py-xlrd +py-einops py-modisco py-python-memcached py-xlsxwriter +py-elastic-transport py-modred py-python-multipart py-xlwt +py-elasticsearch py-modules-gui py-python-mumps py-xmlplain +py-elasticsearch-dsl py-moltemplate py-python-oauth2 py-xmlrunner +py-elecsolver py-monai py-python-picard py-xmltodict +py-elephant py-monkeytype py-python-pptx py-xonsh +py-elevation py-monotonic py-python-ptrace py-xopen +py-ema-pytorch py-monty py-python-rapidjson py-xpyb +py-email-validator py-more-itertools py-python-slugify py-xskillscore +py-embedding-reader py-morph-tool py-python-socketio py-xtb +py-emcee py-morphio py-python-sotools py-xvfbwrapper +py-emoji py-morphosamplers py-python-subunit py-xxhash +py-empy py-motmetrics py-python-swiftclient py-xyzservices +py-entrypoints py-mouseinfo py-python-utils py-yacman +py-enum-tools py-moviepy py-python-xlib py-yacs +py-envisage py-mpi4jax py-python-xmp-toolkit py-yahmm +py-ephem py-mpi4py py-python3-openid py-yajl +py-eprosima-fastdds py-mpld3 py-python3-xlib py-yamlreader +py-epydoc py-mpldock py-pythonqwt py-yapf +py-equation py-mplhep py-pythonsollya py-yarl +py-equinox py-mplhep-data py-pythran py-yaspin +py-espresso py-mpmath py-pytimeparse py-yolk3k +py-espressopp py-mrcfile py-pytng py-your +py-et-xmlfile py-msal py-pytokens py-youtube-dl +py-ete3 py-msal-extensions py-pytoml py-yq +py-etelemetry py-msgpack py-pytools py-yt +py-etils py-msgpack-numpy py-pytorch-gradual-warmup-lr py-yt-dlp +py-eval-type-backport py-msrest py-pytorch-lightning py-yt-dlp-ejs +py-evaluate py-msrestazure py-pytorch-sphinx-theme py-yte +py-eventlet py-mui4py py-pytorch-warmup py-ytopt +py-evodiff py-multi-imbalance py-pyts py-ytopt-autotune +py-ewah-bool-utils py-multi-key-dict py-pytuq py-z3-solver +py-exarl py-multidict py-pytweening py-zarr +py-exceptiongroup py-multiecho py-pytz py-zc-buildout +py-execnet py-multipledispatch py-pyu2f py-zc-lockfile +py-executing py-multiprocess py-pyudev py-zensical +py-exhale py-multiqc py-pyugrid py-zfit +py-exifread py-multiurl py-pyupgrade py-zfit-interface +py-exodus-bundler py-mumps4py py-pyusb py-zfit-physics +py-expandvars py-munch py-pyutilib py-zict +py-expecttest py-munkres py-pyuwsgi py-zipfile-deflate64 +py-exponax py-murmurhash py-pyvcf py-zipp +py-extension-helpers py-mutagen py-pyvips py-zipstream-new +py-extras py-mx py-pyvista py-zope-event +py-ez-setup py-mxfold2 py-pyvistaqt py-zope-interface +py-f90nml py-myhdl py-pyviz-comms py-zstandard +py-f90wrap py-mypy py-pyvolve py-zxcvbn +py-fabric py-mypy-extensions py-pywavelets +==> 3015 packages diff --git a/outputs/basics/list.out b/outputs/basics/list.out index 38829893a1..900b93229e 100644 --- a/outputs/basics/list.out +++ b/outputs/basics/list.out @@ -1,8617 +1,2227 @@ $ spack list -remote: Enumerating objects: 19701, done.K -remote: Counting objects: 100% (19701/19701), done.K -remote: Compressing objects: 100% (10555/10555), done.K -remote: Total 19701 (delta 1337), reused 13774 (delta 1222), pack-reused 0 (from 0)K -3dtk -3proxy -7zip -abacus -abduco -abi-compliance-checker -abi-dumper -abinit -abseil-cpp -abyss -accfft -acct -accumulo -ace -acfl -ack -acl -acpica-tools -acpid -activeharmony -activemq -acts -acts-algebra-plugins -acts-dd4hep -actsvg -additivefoam -addrwatch -adept -adept-utils -adf -adiak -adios -adios2 -adlbx -admixtools -adms -adol-c -advancecomp -adwaita-icon-theme -aegean -aeskeyfind -aespipe -affinity -agile -agrep -aida -akantu -alan -albany -albert -alembic -alglib -all-library -allpaths-lg -alluxio -alpaka -alpgen -alps -alpscore -alquimia -alsa-lib -aluminum -amber -ambertools -amd-aocl -amdblis -amdfftw -amdlibflame -amdlibm -amdscalapack -amdsmi -amduprof -amg2013 -amg2023 -amgx -aml -amp -ampl -ampliconnoise -ampt -amqp-cpp -amr-wind -amrex -amrfinder -amrvis -ams -anaconda3 -andi -angsd -anicalculator -ant -antimony -antlr -antlr4-complete -antlr4-cpp-runtime -ants -any2fasta -aocc -aocl-compression -aocl-crypto -aocl-da -aocl-libmem -aocl-sparse -aocl-utils -aoflagger -aom -aotriton -apache-tvm -apachetop -ape -aperture-photometry -apex -apfel -apktool -apple-clang -apple-gl -apple-glu -apple-libunwind -apple-libuuid -applewmproto -appres -apptainer -apr -apr-util -aqlprofile -aragorn -arbor -arborx -arc -archer -aretomo -aretomo2 -argobots -argon2 -argp-standalone -args -argtable -aria2 -arkouda -arm-forge -armadillo -armcimpi -armcomputelibrary -armpl-gcc -arpack-ng -arrayfire -arrow -asagi -ascent -asciidoc -asciidoc-py3 -asdcplib -asdf-cxx -asio -aspa -aspcud -aspect -aspell -aspell6-de -aspell6-en -aspell6-es -aspera-cli -assimp -astra -astral -astyle -at-spi2-atk -at-spi2-core -atf -athena -atk -atlas -atom-dft -atompaw -atop -attr -audacious -audacity -audit-userspace -augustus -authd -authselect -autoconf -autoconf-archive -autodiff -autodock-gpu -autodock-vina -autogen -automaded -automake -avizo -aws-ofi-nccl -aws-ofi-rccl -aws-parallelcluster -aws-sdk-cpp -awscli -awscli-v2 -axel -axl -axom -azcopy -babelflow -babelstream -babeltrace -babeltrace2 -babl -bacio -backupninja -backward-cpp -bam-readcount -bamaddrg -bamdst -bamtools -bamutil -banner -bannergrab -barrnap -bart -barvinok -bash -bash-completion -bashtop -bat -batchedblas -batctl -bats -baurmc -bazel -bbcp -bbmap -bc -bcache -bcftools -bdftopcf -bdii -bdsim -bdw-gc -beagle -beakerlib -bear -beast-tracer -beast1 -beast2 -beatnik -bedops -bedtools2 -beforelight -benchmark -berkeley-db -berkeleygw -bertini -bfs -bgen -bgpdump -bib2xhtml -bigdft-atlab -bigdft-chess -bigdft-core -bigdft-futile -bigdft-libabinit -bigdft-liborbs -bigdft-psolver -bigdft-spred -bigdft-suite -bigreqsproto -bigwhoop -bind9 -binder -binutils -bioawk -biobambam2 -biobloom -biopieces -bird -bismark -bison -bitgroomingz -bitlbee -bitmap -bitsery -blackhat -blake3 -blaspp -blast-plus -blast2go -blat -blaze -blis -bliss -blitz -blktrace -bloaty -blogbench -blt -bmake -bmi -bml -bohrium -boinc-client -bolt -bonniepp -bookleaf-cpp -boost -boostmplcartesianproduct -boringssl -botan -bowtie -bowtie2 -boxlib -bpp-core -bpp-phyl -bpp-phyl-omics -bpp-popgen -bpp-seq -bpp-seq-omics -bpp-suite -bracken -brahma -braker -branson -breakdancer -bref3 -breseq -bricks -bridger -brigand -brltty -brotli -brpc -brunsli -brynet -bsseeker2 -btllib -btop -bubblewrap -bucky -buddy -bueno -bufr -bufr-query -bulker -bump2version -bumpversion -busco -busybox -butter -butterflypack -bwa -bwtool -byacc -byfl -byobu -byte-lite -byte-unixbench -byteman -bzip2 -c-ares -c-blosc -c-blosc2 -c-lime -c-raft -c3d -ca-certificates-mozilla -cabana -cachefilesd -caffe -cairo -cairomm -caliper -callflow -callpath -camellia -camp -camx -canal -cans -cantera -canu -cap3 -capnproto -capstone -cardioid -care -cargs -casacore -casacore-measures -cask -casper -cassandra -cassini-headers -castep -catch2 -cbc -cbench -cbflib -cbindgen -cblas -cbqn -cbtf -cbtf-argonavis -cbtf-argonavis-gui -cbtf-krell -cbtf-lanl -cc65 -ccache -cce -ccfits -ccls -ccs-qcd -cctools -cdbfasta -cdd -cddlib -cdecimal -cdhit -cdi -cdo -cdt -ceed -celeritas -cellpose -cellranger -centrifuge -cepgen -cereal -ceres-solver -cernlib -cfitsio -cgal -cgdb -cgdcbxd -cget -cgl -cgm -cgns -cgsi-gsoap -chaco -chafa -chai -chameleon -changa -channelflow -chaparral -chapel -chaplin -charliecloud -charmpp -chatterbug -check -chemfiles -chexmix -chez-scheme -chgcentre -chlorop -chombo -chrony -chrpath -cinch -circe2 -circos -cistem -citcoms -cityhash -cjson -ck -clamav -clamr -clapack -clara -claw -clblast -cleaveland4 -cleverleaf -clfft -clhep -cli11 -clinfo -clingo -clingo-bootstrap -cln -cloc -cloog -cloverleaf -cloverleaf-ref -cloverleaf3d -clp -clustal-omega -clustalw -cmake -cmaq -cmark -cmdlime -cmdstan -cminpack -cmocka -cmockery -cmor -cni-plugins -cnmem -cnpy -cntk -cntk1bitsgd -cnvnator -codar-cheetah -code-server -codec2 -codecov -codes -codipack -coevp -cohmm -cohomcalg -coin3d -coinhsl -coinutils -collectd -collier -colm -colordiff -comd -comgr -commons-lang -commons-lang3 -commons-logging -compadre -compiler-wrapper -composable-kernel -compose -compositeproto -composyx -conda4aarch64 -conduit -conmon -connect-proxy -conquest -conserver -console-bridge -constype -consul -cool -coordgen -coral -corenlp -coreutils -corset -cosbench -cosign -cosma -cosmoflow-benchmark -cosmomc -cosp2 -costa -costo -cotter -countdown -covfie -cowsay -cp2k -cpat -cpio -cplex -cpmd -cpp-argparse -cpp-httplib -cpp-logger -cpp-termcolor -cppad -cppcheck -cppcodec -cppcoro -cppgsl -cpprestsdk -cpptrace -cppunit -cppzmq -cpr -cprnc -cpu-features -cpuinfo -cqrlib -cquery -cracklib -cradl -cram -cray-fftw -cray-libsci -cray-mpich -cray-mvapich2 -cray-pmi -creduce -crmc -croc -cromwell -cromwell-womtool -cronie -crosstool-ng -crow -crtm -crtm-fix -crunch -cryodrgn -cryoef -cryptopp -cryptsetup -csa-c -cscope -csdp -ctffind -ctpl -ctre -cub -cuba -cubature -cube -cube-blade -cubelib -cubew -cubist -cublasmp -cuda -cuda-memtest -cudd -cudnn -cudss -cufflinks -cufftmp -cunit -cups -curl -cusolvermp -cusparselt -cusz -cutensor -cutlass -cvector -cvise -cvs -cxi-driver -cxxopts -cxxtest -cyrus-sasl -czmq -daemonize -dakota -daligner -dalton -damageproto -damaris -damask -damask-grid -damask-mesh -damselfly -daos -darshan-runtime -darshan-util -dash -datamash -dataspaces -datatransferkit -date -dateutils -dav-sdk -davix -dbcsr -dbow2 -dbus -dbus-glib -dbxtool -dcap -dcm2niix -dcmtk -dctz -dd4hep -ddc -ddd -dealii -dealii-parameter-gui -debbuild -debugedit -decentralized-internet -deconseq-standalone -deconwolf -dedisp -dejagnu -delly2 -delphes -delta -demuxlet -deno -denovogear -detray -dfelibs -dftbplus -dftd3-lib -dftd4 -dftfe -dhpmm-f -dhtest -dia -dialign -dialign-tx -diamond -dicom3tools -diffmark -diffsplice -difftastic -diffutils -digitrounding -dihydrogen -dimemas -ding-libs -dire -direnv -discotec -discovar -discovardenovo -disktype -dislin -distbench -distcc -diy -dla-future -dla-future-fortran -dlb -dlib -dlpack -dmd -dmidecode -dmlc-core -dmtcp -dmxproto -dnsmap -dnsmasq -dnstop -dnstracer -docbook-xml -docbook-xsl -dock -doctest -dolfinx-mpc -dorado -dorian3d-dlib -dos2unix -dosfstools -dotconf -dotnet-core-sdk -double-batched-fft-library -double-conversion -doxygen -dpdk -dplasma -dpmjet -draco -dracut -dramsim2 -dramsim3 -dri2proto -dri3proto -drill -drishti -dropwatch -druid -ds -dsdp -dsfmt -dsqss -dsrc -dssp -dtc -dtcmp -dtf -duckdb -duperemove -dust -dwz -dxt-explorer -dyninst -dysco -e2fsprogs -e3sm-kernels -e3sm-scorpio -e4s-alc -e4s-cl -ea-utils -eagle -earlyoom -easi -easybuild -easyloggingpp -ebms -ecbuild -eccodes -ecdsautils -ecflow -eckit -eclipse-gcj-parser -ecmwf-atlas -ecos -ecoslim -ecp-data-vis-sdk -ecp-proxy-apps -ectrans -ed -editline -editorconfig -editres -edm4hep -eem -efivar -egl -eigen -eigenexa -elasticsearch -elastix -elbencho -elfio -elfutils -elk -elmerfem -elpa -elsd -elsdc -elsi -emacs -ember -emblmygff3 -emboss -embree -enca -enchant -energyplus -ensmallen -entrezdirect -entt -environment-modules -enzo -enzyme -eospac -epics-base -epics-ca-gateway -epics-pcas -epics-snmp -eprosima-fastcdr -eprosima-fastdds -epsic -eq-r -er -erf -erfa -erlang -ermod -erne -es-shell -esmf -espanso -essl -estarlight -esys-particle -etcd -ethminer -ethtool -etsf-io -eve -evemu -everytrace -everytrace-example -evieext -evtgen -exabayes -exaca -exago -examl -exampm -exasp2 -exawind -exaworks -exciting -exempi -exiv2 -exmcutils -exo -exodusii -exonerate -exonerate-gff3 -expat -expect -express -exprtk -extrae -exuberant-ctags -eza -eztrace -f2c -f3d -f77-zmq -f90cache -fabtests -fabulous -faircmakemodules -fairlogger -fairmq -fairroot -fairsoft-bundle -fairsoft-config -faiss -fakechroot -faketime -fakexrandr -falco -falcon -fann -faodel -fargparse -fasd -fast-float -fast-global-file-status -fasta -fastani -fastdb -fastdfs -fastjar -fastjet -fastjson -fastmath -fastme -fastor -fastp -fastphase -fastplong -fastq-screen -fastqc -fastqvalidator -fasttext -fasttransforms -fasttree -fastx-toolkit -faust -fbgemm -fca -fcgi -fckit -fd -fdb -fds -fdupes -feh -fenics -fenics-basix -fenics-dolfinx -fenics-ufcx -feq-parse -fermi -fermikit -fermisciencetools -ferret -feynhiggs -ffb -ffmpeg -ffr -ffsb -ffte -fftw -fftx -fgsl -fiat -fides -figcone -figlet -figtree -file -filebench -filo -filtlong -fimpute -finch -findbugs -findutils -fio -fipscheck -fish -fixesproto -fj -fjcontrib -fl -flac -flamemaster -flann -flap -flash -flashdimmsim -flatbuffers -flatcc -flcl -flecsi -flecsph -fleur -flex -flexi -flexiblas -flibcpp -flink -flint -flit -fltk -fluidnumerics-self -flume -flux -flux-core -flux-pmix -flux-python -flux-sched -flux-security -fluxbox -fmi4cpp -fms -fmt -foam-extend -foldseek -folly -font-util -fontcacheproto -fontconfig -fontsproto -fonttosfnt -foonathan-memory -form -formetis -fortrilinos -fossil -foundationdb -fox -fp16 -fpart -fpc -fpchecker -fping -fplll -fplo -fpm -fpocket -fpzip -fq -fqtrim -fr-hit -fraggenescan -freebayes -freecad -freefem -freeglut -freeimage -freeipmi -freesasa -freesurfer -freetype -freexl -fribidi -frobby -frontier-client -frontistr -frugally-deep -fseq -fsl -fslsfonts -fstobdf -fstrack -ftgl -ftjam -ftk -ftobjectlibrary -ftxui -fujitsu-fftw -fujitsu-frontistr -fujitsu-mpi -fujitsu-ssl2 -fullock -func -functionalplus -funhpc -funwave -fuse-overlayfs -fusion-io -fwq -fxdiv -fxt -fyba -fzf -g2 -g2c -g2o -g2tmpl -g4abla -g4channeling -g4emlow -g4ensdfstate -g4incl -g4ndl -g4neutronxs -g4nudexlib -g4particlexs -g4photonevaporation -g4pii -g4radioactivedecay -g4realsurface -g4saiddata -g4tendl -g4urrpt -g4vg -gadap -gamess-ri-mp2-miniapp -gams -gapbs -gapcloser -gapfiller -garcon -garfieldpp -gasnet -gatb-core -gate -gatepet2stir -gatetools -gatk -gaudi -gaussian -gaussian-view -gawk -gbl -gblocks -gcc -gcc-runtime -gccmakedep -gccxml -gchp -gcta -gdal -gdb -gdbm -gdk-pixbuf -gdl -gdrcopy -geant3 -geant4 -geant4-data -geant4-vmc -geany -gearshifft -gegelati -gegl -gem5 -gemma -gemmlowp -genemark-et -generate-ninja -generax -genesis -genfit -gengeo -gengetopt -genie -genomefinisher -genometools -genomeworks -genrich -geode -geoip-api-c -geomodel -geopm-runtime -geopm-service -geos -getorganelle -gettext -gexiv2 -gfal2 -gfal2-util -gffcompare -gffread -gflags -gfsio -gftl -gftl-shared -gh -ghost -ghostscript -ghostscript-fonts -giblib -giflib -gimp -ginac -ginkgo -giraph -git -git-annex -git-fat-git -git-filter-repo -git-imerge -git-lfs -gitconddb -givaro -gl2ps -glab -glew -glfmultiples -glfw -glib -glib-bootstrap -glib-networking -glibc -glibmm -glimmer -glm -global -globalarrays -globus-callout -globus-common -globus-ftp-client -globus-ftp-control -globus-gass-copy -globus-gass-transfer -globus-gsi-callback -globus-gsi-cert-utils -globus-gsi-credential -globus-gsi-openssl-error -globus-gsi-proxy-core -globus-gsi-proxy-ssl -globus-gsi-sysconfig -globus-gss-assist -globus-gssapi-error -globus-gssapi-gsi -globus-io -globus-openssl-module -globus-xio -globus-xio-gsi-driver -globus-xio-pipe-driver -globus-xio-popen-driver -glog -gloo -glow -glpk -glproto -gluegen -glusterfs -glvis -glx -gmake -gmap-gsnap -gmic -gmime -gmodel -gmp -gmsh -gmt -gmtsar -gnat -gnds -gnina -gnome-common -gnuconfig -gnupg -gnuplot -gnuradio -gnutls -go -go-bootstrap -go-md2man -go-sh -goaccess -gobject-introspection -goblin-hmc-sim -gocryptfs -goimports -goma -google-cloud-cli -google-cloud-cpp -google-crc32c -googletest -gopls -gosam-contrib -goshimmer -gotcha -gource -gpcnet -gperf -gperftools -gpgme -gpi-2 -gpi-space -gplates -gprofng-gui -gprolog -gptl -gptune -gpu-burn -gpuscout -gqrx -gr-osmosdr -grabix -grace -grackle -gradle -grads -grafana -graph500 -graphblast -graphicsmagick -graphite2 -graphlib -graphmap -graphviz -grass -graylog2-server -green-mbpt -green-seet -greenx -grep -grib-util -gribjump -grid -gridlab-d -grnboost -groff -gromacs -gromacs-chain-coordinate -gromacs-swaxs -grpc -gsettings-desktop-schemas -gsi-ncdiag -gsibec -gsl -gsl-lite -gslib -gsoap -gspell -gtfsort -gtk-doc -gtkmm -gtkorvo-atl -gtkorvo-cercs-env -gtkorvo-dill -gtkorvo-enet -gtkplus -gtksourceview -gts -guacamole-client -guacamole-server -guidance -guile -gunrock -gurobi -gvproxy -gxsview -gzip -h2database -h5bench -h5cpp -h5hut -h5part -h5utils -h5z-zfp -haccabana -hacckernels -hackrf-host -hadoop -hadoop-xrootd -hal -half -halide -hama -hapcut2 -hapdip -haploview -haproxy -hard -hardlink -harfbuzz -harminv -hashcat -haveged -hazelcast -hbase -hbm-dramsim2 -hc -hcoll -hdf -hdf-eos2 -hdf-eos5 -hdf5 -hdf5-blosc -hdf5-vfd-gds -hdf5-vol-async -hdf5-vol-cache -hdf5-vol-daos -hdf5-vol-external-passthrough -hdf5-vol-log -hdfview -healpix-cxx -heaptrack -heasoft -heffte -heimdall -helib -helics -help2man -henson -hepmc -hepmc3 -hepmcanalysis -heppdt -heputils -hermes -hermes-shm -herwig3 -herwigpp -hevea -heyoka -hh-suite -hibench -hicolor-icon-theme -hicops -hicup -highfive -highway -highwayhash -hiop -hip -hip-tensor -hip-tests -hipace -hipblas -hipblas-common -hipblaslt -hipcc -hipcub -hipfft -hipfort -hipify-clang -hiprand -hipsolver -hipsparse -hipsparselt -hipsycl -hiptt -hiredis -hisat2 -hisea -hive -hivex -hmmer -hohqmesh -homer -hoomd-blue -hoppet -hotspot -hp2p -hpc-beeflow -hpcc -hpccg -hpcg -hpctoolkit -hpcviewer -hpcx-mpi -hpddm -hpgmg -hping -hpl -hpx -hpx-kokkos -hpx5 -hsa-amd-aqlprofile -hsa-rocr-dev -hsakmt -hsakmt-roct -hsf-cmaketools -hssp -hstr -hto4l -htop -htslib -http-get -http-load -http-parser -http-ping -http-post -httpd -httperf -httpie -httping -httpress -hub -hudi -hugo -hunspell -hw-probe -hwdata -hwloc -hybpiper -hybrid-lambda -hybridsim -hydra -hydrogen -hypar -hyperfine -hyperqueue -hyperscan -hyphen -hyphy -hypre -hypre-cmake -hztool -i3 -ibm-databroker -ibmisc -icarus -iceauth -icedtea -icet -ico -icon -icu4c -id3lib -idba -idg -idl -iegenlib -ignite -igprof -igraph -igv -igvtools -ike-scan -ilmbase -ima-evm-utils -imagemagick -imake -imath -imgui -imlib2 -imod -imp -impalajit -improved-rdock -impute2 -indicators -infernal -influxdb -iniparser -inputproto -intel-gpu-tools -intel-gtpin -intel-llvm -intel-mlc -intel-mpi-benchmarks -intel-oneapi-advisor -intel-oneapi-ccl -intel-oneapi-compilers -intel-oneapi-compilers-classic -intel-oneapi-dal -intel-oneapi-dnn -intel-oneapi-dpct -intel-oneapi-dpl -intel-oneapi-inspector -intel-oneapi-ipp -intel-oneapi-ippcp -intel-oneapi-itac -intel-oneapi-mkl -intel-oneapi-mpi -intel-oneapi-runtime -intel-oneapi-tbb -intel-oneapi-vpl -intel-oneapi-vtune -intel-pin -intel-tbb -intel-xed -interproscan -intltool -ioapi -ior -iotaa -iozone -ip -ipcalc -iperf2 -iperf3 -ipm -ipopt -iproute2 -iptraf-ng -iq-tree -irep -isa-l -isa-l-crypto -isaac -isaac-server -isc-dhcp -iscdtoolbox-commons -iscdtoolbox-elasticity -isescan -isl -iso-codes -isoquant -ispc -istio -itensor -itk -itstool -itsx -iwyu -jacamar-ci -jackcess -jafka -jags -jali -jansi -jansi-native -jansson -jasper -javafx -jbigkit -jblob -jchronoss -jdk -jedi-cmake -jellyfish -jemalloc -jetty-project -jhpcn-df -jimtcl -jline3 -jmol -jogl -jonquil -jose -jpegoptim -jq -json-c -json-cwx -json-fortran -json-glib -jsoncons -jsoncpp -jsonnet -jstorm -jube -judy -jujutsu -julea -julia -jump -junit4 -just -justbuild -jwt-cpp -jxrlib-debian -k8 -kadath -kafka -kahip -kaiju -kakoune -kakoune-lsp -kaks-calculator -kaldi -kalign -kallisto -karma -kassiopeia -kbd -kbproto -kcov -kdiff3 -kea -kealib -keepalived -keepassxc -kenlm -kentutils -keyutils -khmer -kibana -kicad -kim-api -kinesis -kineto -kitty -kmergenie -kmod -knem -kokkos -kokkos-fft -kokkos-kernels -kokkos-nvcc-wrapper -kokkos-tools -kraken -kraken2 -krakenuniq -krb5 -krims -kripke -kubectl -kubernetes -kumi -kvasir-mpl -kvtree -kylin -kynema -kyotocabinet -ladot -laghos -lame -lammps -lammps-example-plugin -landsfcutil -lanl-cmake-modules -lapackpp -last -lastz -laszip -latex2html -latte -launchmon -laynii -lazygit -lazyten -lbann -lbfgspp -lbxproxy -lc-framework -lcals -lcc -lcgenv -lci -lcio -lcms -lcov -ldak -ldc -ldc-bootstrap -ldsc -legion -lemon -leptonica -lerc -less -lesstif -leveldb -lfortran -lftp -lhapdf -lhapdf5 -lhapdfsets -libabigail -libaec -libaio -libao -libapplewm -libapreq2 -libarchive -libasr -libassuan -libatasmart -libatomic-ops -libavif -libbacktrace -libbeagle -libbeato -libbigwig -libbinio -libblastrampoline -libbsd -libbson -libbytesize -libcanberra -libcap -libcap-ng -libcatalyst -libceed -libcerf -libcgroup -libcint -libcircle -libconfig -libconfuse -libcroco -libctl -libcudf -libcuml -libcumlprims -libcxi -libcxxwrap-julia -libcyaml -libdaemon -libdap4 -libdatrie -libdc1394 -libde265 -libdeflate -libdicom -libdisplay-info -libdistributed -libdivsufsort -libdmx -libdrm -libdwarf -libeatmydata -libecpint -libedit -libefence -libelf -libemos -libepoxy -libestr -libev -libevdev -libevent -libevpath -libexif -libfabric -libfastcommon -libfastjson -libffi -libffs -libfirefly -libfive -libflame -libfms -libfontenc -libfort -libfs -libftdi -libfuse -libfyaml -libgain -libgcrypt -libgd -libgdsii -libgee -libgeotiff -libgff -libgit2 -libgit2-glib -libgpg-error -libgpiod -libgpuarray -libgridxc -libgssglue -libgta -libgtextutils -libgtop -libgudev -libhandy -libharu -libhbaapi -libheif -libhio -libhugetlbfs -libiberty -libibumad -libical -libicd -libice -libiconv -libid3tag -libidl -libidn -libidn2 -libimagequant -libimobiledevice -libinih -libint -libisal -libiscsi -libjpeg -libjpeg-turbo -libjson -libjwt -libjxl -libkcapi -libkml -libksba -liblas -liblbfgs -liblbxutil -liblockfile -liblognorm -liblouis -libluv -liblzf -libmacaroons -libmad -libmatheval -libmaus2 -libmaxminddb -libmbim -libmcrypt -libmd -libmesh -libmetalink -libmetatensor -libmetatensor-torch -libmetatomic-torch -libmicrodns -libmicrohttpd -libmmtf-cpp -libmng -libmnl -libmo-unpack -libmodbus -libmolgrid -libmonitor -libmpdclient -libmypaint -libnbc -libndp -libnet -libnetfilter-conntrack -libnetfilter-cthelper -libnetfilter-cttimeout -libnetfilter-queue -libnetworkit -libnfnetlink -libnfs -libnfsidmap -libnftnl -libnids -libnl -libnotify -libnova -libnrm -libnsl -libogg -liboldx -libopts -libp11 -libpam -libpaper -libpcap -libpciaccess -libpfm4 -libpipeline -libplist -libpmemobj-cpp -libpng -libpostal -libpressio -libpressio-adios1 -libpressio-adios2 -libpressio-dataset -libpressio-errorinjector -libpressio-jit -libpressio-nvcomp -libpressio-opt -libpressio-predict -libpressio-rmetric -libpressio-sperr -libpressio-tools -libpressio-tthresh -libproxy -libpsl -libpsm3 -libpsml -libpspio -libpthread-stubs -libpulsar -libqglviewer -libqrencode -libquo -libraqm -libraw1394 -librdkafka -librelp -libreproc -libressl -libristra -librmm -librom -librsb -librsvg -librtlsdr -librttopo -libsakura -libsamplerate -libseccomp -libsecret -libsharp -libshm -libsigcpp -libsignal-protocol-c -libsigsegv -libsixel -libslirp -libsm -libsmeagol -libsndfile -libsodium -libsolv -libspatialindex -libspatialite -libspiro -libsplash -libspng -libssh -libssh2 -libstdcompat -libsvm -libszip -libtar -libtasn1 -libtermkey -libthai -libtheora -libtiff -libtirpc -libtlx -libtomlc99 -libtommath -libtool -libtorrent -libtraceevent -libtree -libuecc -libunistring -libunwind -liburcu -liburing -libusb -libusbmuxd -libuser -libuv -libuv-julia -libva -libvdwxc -libverto -libvips -libvorbis -libvori -libvpx -libvterm -libwebp -libwebsockets -libwhich -libwindowswm -libwmf -libwnck -libx11 -libxau -libxaw -libxaw3d -libxc -libxcb -libxcomposite -libxcrypt -libxcursor -libxcvt -libxdamage -libxdmcp -libxevie -libxext -libxfce4ui -libxfce4util -libxfixes -libxfont -libxfont2 -libxfontcache -libxft -libxi -libxinerama -libxkbcommon -libxkbfile -libxkbui -libxml2 -libxmu -libxp -libxpm -libxpresent -libxprintapputil -libxprintutil -libxrandr -libxrender -libxres -libxscrnsaver -libxshmfence -libxslt -libxsmm -libxstream -libxt -libxtrap -libxtst -libxv -libxvmc -libxxf86dga -libxxf86misc -libxxf86vm -libyaml -libyogrt -libzip -libzmq -liftoff -liggghts -lighttpd -ligra -likwid -lima -linaro-forge -linkphase3 -linktest -linsys-v -linux-external-modules -linux-headers -linux-pam -linux-perf -lis -listres -litestream -lizard -lksctp-tools -llvm -llvm-amdgpu -llvm-doe -llvm-openmp -llvm-openmp-ompt -lm-sensors -lmbench -lmdb -lmod -lndir -lodepng -log4c -log4cplus -log4cpp -log4cxx -logrotate -logstash -loki -looptools -lordec -lorene -lp-solve -lrslib -lrzip -lsd -lsf -lshw -lsof -lsquic -lsscsi -ltp -ltr-retriever -ltrace -lua -lua-bit32 -lua-bitlib -lua-ffi -lua-lpeg -lua-luafilesystem -lua-luajit -lua-luajit-openresty -lua-luaposix -lua-mpack -lua-sol2 -lucene -luit -lulesh -lumpy-sv -lustre -lvarray -lvm2 -lwgrp -lwm2 -lwtnn -lxc -lynx -lz4 -lzma -lzo -lzop -m4 -macfuse -macsio -mad-numdiff -madgraph5amc -madis -madx -maeparser -mafft -magic-enum -magics -magma -mahout -makedepend -makedepf90 -maker -mallocmc -maloc -malt -mamba -man-db -mapl -mapnik -mapserver -mapsplice2 -maq -mariadb -mariadb-c-client -mark -masa -mash -masurca -mathematica -matio -matlab -matrix-switch -maven -maverick -mawk -mbdyn -mbedtls -mc -mcl -mcpp -mct -mctc-lib -mcutils -mdb -mdspan -mdsplus -mdtest -med -medipack -meep -mefit -megadock -megahit -melissa -memaxes -memcached -meme -memkind -memtester -mepo -meraculous -mercurial -mercury -mergiraf -mesa -mesa-demos -mesa-glu -meshkit -meshlab -meshtool -meson -mesquite -met -metabat -metacarpa -metaeuk -metal -metall -metaphysicl -methyldackel -metis -metkit -metplus -mfem -mg -mgard -mgardx -mgcfd-op2 -mgis -microbiomeutil -microsocks -migraphx -migrate -migrate-package-prs -mii -millepede -mimalloc -minc-toolkit -minced -mindthegap -miniamr -miniapp-ascent -miniasm -miniconda3 -minife -miniforge3 -minigan -minighost -minigmg -minimap2 -minimd -minio -miniocli -miniqmc -minisign -minismac2d -minitri -minivite -minixyce -minizip -minuit -miopen-hip -mira -miranda -mirdeep2 -mitofates -mitos -mivisionx -mixcr -mkfontdir -mkfontscale -mlc-llm -mlhka -mlocate -mlpack -mlperf-deepcam -mlst -mmg -mmseqs2 -mmv -moab -mochi-margo -mochi-thallium -model-angelo -model-traits -modeltest-ng -modern-wheel -modylas -mokutil -molcas -mold -molden -molgw -mongo-c-driver -mongo-cxx-driver -mongodb-async-driver -mono -montage -moosefs -moreutils -mosesdecoder -mosh -mosquitto -mothur -motif -motioncor2 -mount-point-attributes -mozjpeg -mozjs -mpark-variant -mpas-model -mpb -mpc -mpdecimal -mpe2 -mpest -mpfi -mpfr -mpi-bash -mpi-rockstar -mpi-serial -mpi-sync-clocks -mpi-test-suite -mpibenchmark -mpibind -mpich -mpidiff -mpifileutils -mpigraph -mpilander -mpileaks -mpip -mpir -mpitrampoline -mpiwrapper -mpix-launch-swift -mpl -mppp -mpt -mptensor -mrbayes -mrbench -mrchem -mrcpp -mrnet -mrtrix3 -mruby -mscclpp -mscgen -msgpack-c -mshadow -msmc -msmc2 -msmpi -msr-safe -mstk -mstore -msvc -mt-metis -mtn -mujoco -multicharge -multitail -multitime -multiverso -mumax -mummer -mummer4 -mumps -munge -muparser -muparserx -muscle -muscle5 -muse -music -musica -musl -must -muster -mutationpp -mvapich -mvapich-plus -mvapich2 -mxm -mxml -mxnet -mypaint-brushes -mysql -mysql-connector-c -mysqlpp -n2p2 -nacos -nag -nalu -nalu-wind -namd -nano -nanoflann -nanomsg -nanopb -nasm -nauty -navi -nb -nbdkit -ncbi-magicblast -ncbi-rmblastn -ncbi-toolkit -ncbi-vdb -nccl -nccl-fastsocket -nccl-tests -nccmp -ncdu -ncftp -ncio -ncl -nco -ncompress -ncurses -ncview -ncvis -ndiff -ndzip -neartree -neic-finitefault -nek5000 -nekbone -nekcem -neko -nekrs -nektar -nektools -nemsio -nemsiogfs -neo4j -neocmakelsp -neofoam -neon -neovim -neper -nest -net-snmp -netcdf-c -netcdf-cxx -netcdf-cxx4 -netcdf-fortran -netcdf95 -netdata -netgauge -netgen -netkit-ftp -netlib-lapack -netlib-scalapack -netlib-xblas -netpbm -netperf -nettle -networkdirect -neuron -neve -newt -nextdenovo -nextflow -nf-core-tools -nf-seqerakit -nf-tower-agent -nf-tower-cli -nf-wave-cli -nfft -nfs-ganesha -nfs-utils -nghttp2 -nginx -ngmerge -ngmlr -ngspice -nicstat -nim -nimrod-aai -ninja -ninja-fortran -ninja-phylogeny -nix -njet -nlcglib -nlohmann-json -nlohmann-json-schema-validator -nlopt -nmad -nn-c -nnn -nnpack -nnvm -node-js -nopayloadclient -notmuch -npb -npm -npth -nrm -ns-3-dev -nseg -nsimd -nspr -nss -ntirpc -ntl -ntpoly -numactl -numamma -numap -numaprof -numdiff -nut -nvbandwidth -nvcomp -nvdimmsim -nvhpc -nvidia-container-toolkit -nvidia-nsight-systems -nvpl-blas -nvpl-fft -nvpl-lapack -nvpl-scalapack -nvptx-tools -nvshmem -nvtop -nvtx -nwchem -nyancat -ocaml -ocamlbuild -occa -oci-systemd-hook -ocl-icd -oclgrind -oclint -oclock -octa -octave -octave-arduino -octave-control -octave-gsl -octave-instrctl -octave-io -octave-optim -octave-quaternion -octave-signal -octave-splines -octave-statistics -octave-struct -octave-symbolic -octopus -odc -odgi -of-catalyst -of-precice -ollama -ome-common-cpp -ome-files-cpp -ome-model -omega-h -omm -omm-bundle -omniperf -omnitrace -ompss -ompss-2 -ompt-openmp -oneapi-igc -oneapi-level-zero -onednn -oniguruma -onnx -ont-guppy -oommf -op2-dsl -opa-psm2 -opam -opari2 -opdilib -open-iscsi -open-isns -open3d -openal-soft -openbabel -openblas -opencarp -opencascade -opencl-c-headers -opencl-clhpp -opencl-headers -opencl-icd-loader -opencoarrays -opencolorio -opencv -opendatadetector -opendx -openexr -openfast -openfdtd -openfoam -openfoam-org -openfpgaloader -openfst -opengl -openglu -openimagedenoise -openimageio -openipmi -openjdk -openjpeg -openkim-models -openldap -openlibm -openloops -openmc -openmm -openmolcas -openmpi -openmx -opennurbs -openpa -openpbs -openpmd-api -openradioss-engine -openradioss-starter -openrasmol -openresty -openscenegraph -openslide -openslp -openspeedshop -openspeedshop-utils -openssh -openssl -opensta -openstf -opensubdiv -opentsdb -openturns -openvdb -openvkl -openwsman -ophidia-analytics-framework -ophidia-io-server -ophidia-primitives -ophidia-server -opium -optional-lite -optipng -optix-dev -opus -or-tools -oracle-instant-client -oras -orbit2 -orc -orca -orca-faccts -orfm -orientdb -orthofiller -orthofinder -orthomcl -osg-ca-certs -osi -osmctools -osmesa -ospray -osqp -ossp-uuid -osu-micro-benchmarks -otf -otf-cpt -otf2 -ovito -oxide-rs -p11-kit -p3dfft3 -p4est -p7zip -pacbio-daligner -pacbio-damasker -pacbio-dazz-db -pacbio-dextractor -pace -pacifica-cli -packmol -pacparser -pacvim -paddle -padicotm -pagit -pagmo -pagmo2 -paintor -pajeng -pal -palace -palisade-development -paml -panda -pandaseq -pandoc -pandoramonitoring -pandorapfa -pandorasdk -pango -pangolin -pangomm -papi -papyrus -paraconf -paradiseo -parafeed -parallel -parallel-hashmap -parallel-netcdf -parallelio -parallelmergetree -paraview -pareval -parflow -parmetis -parmgridgen -parmmg -parquet-format -parsec -parsimonator -parsplice -parthenon -pass -passt -pasta -pastix -patch -patchelf -patchutils -pathfinder -pax-utils -pbbam -pblat -pbmpi -pbwt -pbzip2 -pciutils -pcl -pcma -pcre -pcre2 -pcsclite -pdal -pdc -pdf2svg -pdftk -pdi -pdiplugin-decl-hdf5 -pdiplugin-decl-netcdf -pdiplugin-mpi -pdiplugin-pycall -pdiplugin-serialize -pdiplugin-set-value -pdiplugin-trace -pdiplugin-user-code -pdsh -pdt -pegtl -pennant -percept -percona-server -perfstubs -perl -perl-acme-damn -perl-algorithm-c3 -perl-algorithm-diff -perl-alien-build -perl-alien-build-plugin-download-gitlab -perl-alien-libxml2 -perl-any-uri-escape -perl-apache-logformat-compiler -perl-app-cmd -perl-appconfig -perl-archive-zip -perl-array-utils -perl-b-cow -perl-b-hooks-endofscope -perl-b-keywords -perl-bignum -perl-bio-asn1-entrezgene -perl-bio-bigfile -perl-bio-cluster -perl-bio-db-hts -perl-bio-ensembl -perl-bio-ensembl-funcgen -perl-bio-ensembl-io -perl-bio-ensembl-variation -perl-bio-eutilities -perl-bio-searchio-hmmer -perl-bio-variation -perl-bioperl -perl-bit-vector -perl-bsd-resource -perl-cache-cache -perl-cache-memcached -perl-cairo -perl-canary-stability -perl-capture-tiny -perl-carp -perl-carp-assert -perl-carp-clan -perl-catalyst-action-renderview -perl-catalyst-action-rest -perl-catalyst-component-instancepercontext -perl-catalyst-devel -perl-catalyst-plugin-cache -perl-catalyst-plugin-configloader -perl-catalyst-plugin-static-simple -perl-catalyst-runtime -perl-catalyst-view-json -perl-cgi -perl-cgi-simple -perl-cgi-struct -perl-chart-gnuplot -perl-chi -perl-chi-driver-memcached -perl-class-accessor -perl-class-accessor-grouped -perl-class-accessor-lvalue -perl-class-c3 -perl-class-c3-adopt-next -perl-class-c3-componentised -perl-class-data-inheritable -perl-class-inspector -perl-class-load -perl-class-load-xs -perl-class-method-modifiers -perl-class-singleton -perl-class-tiny -perl-clone -perl-clone-choose -perl-clone-pp -perl-common-sense -perl-compress-bzip2 -perl-compress-lzo -perl-compress-raw-bzip2 -perl-compress-raw-zlib -perl-config-any -perl-config-general -perl-config-inifiles -perl-config-simple -perl-config-tiny -perl-context-preserve -perl-contextual-return -perl-convert-nls-date-format -perl-cookie-baker -perl-cpan-meta-check -perl-cpanel-json-xs -perl-css-minifier-xs -perl-data-dump -perl-data-dumper -perl-data-dumper-concise -perl-data-optlist -perl-data-predicate -perl-data-stag -perl-data-uuid -perl-data-visitor -perl-date-exception -perl-date-manip -perl-date-utils -perl-datetime -perl-datetime-format-builder -perl-datetime-format-iso8601 -perl-datetime-format-mysql -perl-datetime-format-oracle -perl-datetime-format-pg -perl-datetime-format-strptime -perl-datetime-locale -perl-datetime-timezone -perl-db-file -perl-dbd-mysql -perl-dbd-oracle -perl-dbd-pg -perl-dbd-sqlite -perl-dbi -perl-dbix-class -perl-devel-checklib -perl-devel-cover -perl-devel-cycle -perl-devel-globaldestruction -perl-devel-overloadinfo -perl-devel-size -perl-devel-stacktrace -perl-devel-stacktrace-ashtml -perl-devel-symdump -perl-digest-jhash -perl-digest-md5 -perl-digest-md5-file -perl-digest-sha1 -perl-dist-checkconflicts -perl-email-abstract -perl-email-address-xs -perl-email-date-format -perl-email-messageid -perl-email-mime -perl-email-mime-contenttype -perl-email-mime-encodings -perl-email-sender -perl-email-simple -perl-email-stuffer -perl-encode-locale -perl-error -perl-eval-closure -perl-exception-class -perl-exporter-auto -perl-exporter-lite -perl-exporter-tiny -perl-extutils-config -perl-extutils-depends -perl-extutils-helpers -perl-extutils-installpaths -perl-extutils-makemaker -perl-extutils-pkgconfig -perl-ffi-checklib -perl-file-changenotify -perl-file-chdir -perl-file-copy-recursive -perl-file-find-rule -perl-file-grep -perl-file-homedir -perl-file-listing -perl-file-pushd -perl-file-remove -perl-file-sharedir -perl-file-sharedir-install -perl-file-slurp -perl-file-slurp-tiny -perl-file-slurper -perl-file-spec -perl-file-temp -perl-file-which -perl-filesys-notify-simple -perl-font-ttf -perl-forks -perl-fth -perl-gd -perl-gdgraph -perl-gdgraph-histogram -perl-gdtextutil -perl-getopt-argvfile -perl-getopt-long-descriptive -perl-getopt-tabular -perl-graph -perl-graph-readwrite -perl-graphviz -perl-gzip-faster -perl-hash-merge -perl-hash-moreutils -perl-hash-multivalue -perl-heap -perl-hook-lexwrap -perl-html-parser -perl-html-tagset -perl-html-template -perl-http-body -perl-http-cookiejar -perl-http-cookies -perl-http-daemon -perl-http-date -perl-http-entity-parser -perl-http-headers-fast -perl-http-message -perl-http-multipartparser -perl-http-negotiate -perl-http-parser-xs -perl-http-request-ascgi -perl-http-server-simple -perl-http-tiny -perl-import-into -perl-inline -perl-inline-c -perl-io-all -perl-io-compress -perl-io-html -perl-io-prompt -perl-io-sessiondata -perl-io-socket-ssl -perl-io-string -perl-io-stringy -perl-io-tty -perl-ipc-run -perl-ipc-run3 -perl-ipc-sharelite -perl-ipc-system-simple -perl-javascript-minifier-xs -perl-json -perl-json-any -perl-json-maybexs -perl-json-xs -perl-kyotocabinet -perl-libwww-perl -perl-libxml-perl -perl-lingua-en-inflect -perl-list-compare -perl-list-moreutils -perl-list-moreutils-xs -perl-list-someutils -perl-log-any -perl-log-any-adapter-callback -perl-log-dispatch -perl-log-dispatch-filerotate -perl-log-log4perl -perl-logger-simple -perl-lwp-mediatypes -perl-lwp-protocol-https -perl-mailtools -perl-math-bezier -perl-math-bigint -perl-math-bigrat -perl-math-cdf -perl-math-cephes -perl-math-matrixreal -perl-math-round -perl-math-symbolic -perl-math-vecstat -perl-mce -perl-memory-process -perl-metacpan-client -perl-mime-types -perl-mni-perllib -perl-mock-config -perl-module-build -perl-module-build-tiny -perl-module-corelist -perl-module-find -perl-module-implementation -perl-module-install -perl-module-mask -perl-module-pluggable -perl-module-runtime -perl-module-runtime-conflicts -perl-module-scandeps -perl-module-util -perl-mojolicious -perl-moo -perl-moose -perl-moosex-emulate-class-accessor-fast -perl-moosex-getopt -perl-moosex-methodattributes -perl-moosex-role-parameterized -perl-moox-types-mooselike -perl-moox-types-mooselike-numeric -perl-mozilla-ca -perl-mro-compat -perl-namespace-autoclean -perl-namespace-clean -perl-net-cidr-lite -perl-net-http -perl-net-ip -perl-net-scp-expect -perl-net-server -perl-net-server-ss-prefork -perl-net-ssleay -perl-number-compare -perl-number-format -perl-object-insideout -perl-package-deprecationmanager -perl-package-stash -perl-package-stash-xs -perl-package-variant -perl-padwalker -perl-parallel-forkmanager -perl-params-util -perl-params-validate -perl-params-validationcompiler -perl-parse-recdescent -perl-parse-yapp -perl-parselex -perl-parsetemplate -perl-path-class -perl-path-tiny -perl-pathtools -perl-pdf-api2 -perl-pegex -perl-perl-critic -perl-perl-critic-moose -perl-perl-tidy -perl-perl-unsafe-signals -perl-perl-version -perl-perl4-corelibs -perl-perl6-slurp -perl-perlio-gzip -perl-perlio-utf8-strict -perl-plack -perl-plack-middleware-assets -perl-plack-middleware-crossorigin -perl-plack-middleware-deflater -perl-plack-middleware-fixmissingbodyinredirect -perl-plack-middleware-methodoverride -perl-plack-middleware-removeredundantbody -perl-plack-middleware-reverseproxy -perl-plack-test-externalserver -perl-pod-coverage -perl-pod-parser -perl-pod-spell -perl-posix-strftime-compiler -perl-ppi -perl-ppix-quotelike -perl-ppix-regexp -perl-ppix-utils -perl-proc-daemon -perl-proc-processtable -perl-readonly -perl-readonly-xs -perl-ref-util -perl-regexp-common -perl-role-tiny -perl-rose-datetime -perl-rose-db -perl-rose-db-object -perl-rose-object -perl-safe-isa -perl-scalar-list-utils -perl-scalar-util-numeric -perl-scope-guard -perl-search-elasticsearch -perl-sereal -perl-sereal-decoder -perl-sereal-encoder -perl-server-starter -perl-set-intervaltree -perl-set-intspan -perl-set-object -perl-set-scalar -perl-soap-lite -perl-sort-naturally -perl-specio -perl-spiffy -perl-sql-abstract -perl-sql-abstract-classic -perl-sql-reservedwords -perl-sql-translator -perl-star-fusion -perl-starman -perl-statistics-basic -perl-statistics-descriptive -perl-statistics-pca -perl-stream-buffered -perl-strictures -perl-string-approx -perl-string-crc32 -perl-string-format -perl-string-numeric -perl-string-rewriteprefix -perl-sub-exporter -perl-sub-exporter-progressive -perl-sub-identify -perl-sub-install -perl-sub-name -perl-sub-quote -perl-sub-uplevel -perl-svg -perl-swissknife -perl-sys-sigaction -perl-task-weaken -perl-template-toolkit -perl-term-ansicolor-markup -perl-term-readline-gnu -perl-term-table -perl-termreadkey -perl-test-base -perl-test-class -perl-test-cleannamespaces -perl-test-deep -perl-test-diaginc -perl-test-differences -perl-test-exception -perl-test-fatal -perl-test-file -perl-test-file-contents -perl-test-file-sharedir -perl-test-json -perl-test-leaktrace -perl-test-longstring -perl-test-memory-cycle -perl-test-mockobject -perl-test-mocktime -perl-test-more -perl-test-most -perl-test-needs -perl-test-nowarnings -perl-test-object -perl-test-output -perl-test-perl-critic -perl-test-pod -perl-test-pod-coverage -perl-test-requires -perl-test-requiresinternet -perl-test-sharedfork -perl-test-subcalls -perl-test-tcp -perl-test-time -perl-test-time-hires -perl-test-trap -perl-test-warn -perl-test-warnings -perl-test-weaken -perl-test-without-module -perl-test-xml -perl-test-xml-simple -perl-test-xpath -perl-test-yaml -perl-test2-plugin-nowarnings -perl-test2-suite -perl-text-csv -perl-text-csv-xs -perl-text-diff -perl-text-format -perl-text-glob -perl-text-nsp -perl-text-simpletable -perl-text-soundex -perl-text-unidecode -perl-thread-queue -perl-threads -perl-throwable -perl-tie-ixhash -perl-tie-toobject -perl-time-clock -perl-time-duration -perl-time-duration-parse -perl-time-hires -perl-time-piece -perl-timedate -perl-tk -perl-tree-simple -perl-tree-simple-visitorfactory -perl-try-tiny -perl-type-tiny -perl-types-serialiser -perl-universal-can -perl-universal-isa -perl-uri -perl-uri-encode -perl-uri-find -perl-uri-ws -perl-want -perl-www-form-urlencoded -perl-www-robotrules -perl-xml-dom -perl-xml-dom-xpath -perl-xml-filter-buffertext -perl-xml-hash-xs -perl-xml-libxml -perl-xml-libxslt -perl-xml-namespacesupport -perl-xml-parser -perl-xml-parser-lite -perl-xml-quote -perl-xml-regexp -perl-xml-sax -perl-xml-sax-base -perl-xml-sax-writer -perl-xml-semanticdiff -perl-xml-simple -perl-xml-twig -perl-xml-writer -perl-xml-xpath -perl-xml-xpathengine -perl-yaml -perl-yaml-libyaml -perl-yaml-syck -perl-yaml-tiny -pestpp -petaca -petsc -pexsi -pfapack -pfft -pfind -pflask -pflogger -pflotran -pfunit -pgdspider -pgplot -ph5concat -phantompeakqualtools -pharokka -phast -phasta -phist -phoenix -photos -photos-f -photospline -php -phrap-crossmatch-swat -phred -phylip -phylobayesmpi -phyluce -picard -picsar -picsarlite -pidx -pig -pigz -pika -pika-algorithms -pilercr -pilon -pindel -pinentry -pinfo -pioman -pipework -pipx -piranha -pism -pixman -pixz -pkg-config -pkgconf -pktools -planck-likelihood -plantuml -plasma -plink -plink-ng -plink2 -plog -ploticus -plplot -plsm -plumed -ply -pmdk -pmemkv -pmerge -pmgr-collective -pmix -pmlib -pnfft -pngquant -pngwriter -pnmpi -poamsa -pocl -podio -podman -podman-compose -poke -polymake -polyml -polypolish -poorjit -poplddecay -poppler -poppler-data -popt -porta -portage -portcullis -ports-of-call -possvm -postgis -postgresql -povray -powerapi -powertop -ppl -pplacer -ppopen-appl-amr-fdm -ppopen-appl-bem -ppopen-appl-bem-at -ppopen-appl-dem-util -ppopen-appl-fdm -ppopen-appl-fdm-at -ppopen-appl-fem -ppopen-appl-fvm -ppopen-at -ppopen-math-mp -ppopen-math-vis -prank -precice -predixy -premake-core -presentproto -preseq -pressio-log -pressio-ops -pressio-rom -presto -prettier -price -prime95 -primer3 -prinseq-lite -printproto -prism -prmon -prng -probconsrna -procenv -process-in-process -procps -procps-ng -prod-util -prodigal -professor -profugusmc -proj -prokka -prometheus -prometheus-cpp -prophecy4f -protobuf -protobuf-c -proxymngr -prrte -pruners-ninja -ps-lite -psalg -psblas -pscmc -psi4 -psimd -psipred -pslib -psm -psmc -psrcat -psrchive -psrdada -pstreams -pthreadpool -pugixml -puk -pukabi -pulseaudio -pumgen -pumi -purify -pv -pvm -pwgen -pxz -py-3to2 -py-4suite-xml -py-a2wsgi -py-abcpy -py-abipy -py-about-time -py-absl-py -py-accelerate -py-accessible-pygments -py-accimage -py-acme-tiny -py-acres -py-adal -py-adb-enhanced -py-addict -py-adios -py-adios4dolfinx -py-advancedhtmlparser -py-aenum -py-affine -py-agate -py-agate-dbf -py-agate-excel -py-agate-sql -py-ahpy -py-aiobotocore -py-aiocontextvars -py-aiodns -py-aiofiles -py-aiohappyeyeballs -py-aiohttp -py-aiohttp-cors -py-aioitertools -py-aiojobs -py-aioredis -py-aiosignal -py-aiosqlite -py-alabaster -py-alembic -py-alive-progress -py-alpaca-eval -py-alpaca-farm -py-alphafold -py-altair -py-altgraph -py-amici -py-amityping -py-amplpy -py-ampltools -py-amqp -py-amrex -py-angel -py-aniso8601 -py-anndata -py-annexremote -py-annotated-types -py-annoy -py-ansi2html -py-ansible -py-ansimarkup -py-ansiwrap -py-antimeridian -py-antlr4-python3-runtime -py-antspyx -py-anuga -py-anvio -py-anybadge -py-anyio -py-anytree -py-anywidget -py-apache-libcloud -py-apebench -py-apex -py-apeye -py-apeye-core -py-apipkg -py-apispec -py-app-model -py-appdirs -py-applicationinsights -py-appnope -py-apptools -py-apscheduler -py-arcgis -py-arch -py-archspec -py-arcp -py-argcomplete -py-argh -py-argon2-cffi -py-argon2-cffi-bindings -py-argparse-dataclass -py-argparse-manpage -py-args -py-arkouda -py-arm-pyart -py-arpeggio -py-arrow -py-art -py-arviz -py-asciitree -py-asdf -py-asdf-astropy -py-asdf-coordinates-schemas -py-asdf-standard -py-asdf-transform-schemas -py-asdf-unit-schemas -py-asdfghjkl -py-ase -py-asgiref -py-asn1crypto -py-aspy-yaml -py-asserts -py-asteval -py-astor -py-astpretty -py-astroid -py-astropy -py-astropy-healpix -py-astropy-helpers -py-astropy-iers-data -py-asttokens -py-astunparse -py-async-generator -py-async-lru -py-async-timeout -py-asyncio -py-asynctest -py-atomicwrites -py-atpublic -py-atropos -py-ats -py-attmap -py-attrs -py-audioread -py-auditwheel -py-autocfg -py-autodocsumm -py-autograd -py-autograd-gamma -py-automat -py-autopep8 -py-autoray -py-autoreject -py-auxlib -py-avro -py-avro-json-serializer -py-avro-python3 -py-awesome-slugify -py-awkward -py-awkward-cpp -py-awkward0 -py-awscrt -py-ax-platform -py-azote -py-azure-batch -py-azure-cli-command-modules-nspkg -py-azure-cli-core -py-azure-cli-nspkg -py-azure-cli-telemetry -py-azure-common -py-azure-core -py-azure-cosmos -py-azure-datalake-store -py-azure-functions-devops-build -py-azure-graphrbac -py-azure-identity -py-azure-keyvault -py-azure-keyvault-certificates -py-azure-keyvault-keys -py-azure-keyvault-nspkg -py-azure-keyvault-secrets -py-azure-loganalytics -py-azure-mgmt-advisor -py-azure-mgmt-apimanagement -py-azure-mgmt-appconfiguration -py-azure-mgmt-applicationinsights -py-azure-mgmt-authorization -py-azure-mgmt-batch -py-azure-mgmt-batchai -py-azure-mgmt-billing -py-azure-mgmt-botservice -py-azure-mgmt-cdn -py-azure-mgmt-cognitiveservices -py-azure-mgmt-compute -py-azure-mgmt-consumption -py-azure-mgmt-containerinstance -py-azure-mgmt-containerregistry -py-azure-mgmt-containerservice -py-azure-mgmt-core -py-azure-mgmt-cosmosdb -py-azure-mgmt-datalake-analytics -py-azure-mgmt-datalake-store -py-azure-mgmt-datamigration -py-azure-mgmt-deploymentmanager -py-azure-mgmt-devtestlabs -py-azure-mgmt-dns -py-azure-mgmt-eventgrid -py-azure-mgmt-eventhub -py-azure-mgmt-hdinsight -py-azure-mgmt-imagebuilder -py-azure-mgmt-iotcentral -py-azure-mgmt-iothub -py-azure-mgmt-iothubprovisioningservices -py-azure-mgmt-keyvault -py-azure-mgmt-kusto -py-azure-mgmt-loganalytics -py-azure-mgmt-managedservices -py-azure-mgmt-managementgroups -py-azure-mgmt-maps -py-azure-mgmt-marketplaceordering -py-azure-mgmt-media -py-azure-mgmt-monitor -py-azure-mgmt-msi -py-azure-mgmt-netapp -py-azure-mgmt-network -py-azure-mgmt-nspkg -py-azure-mgmt-policyinsights -py-azure-mgmt-privatedns -py-azure-mgmt-rdbms -py-azure-mgmt-recoveryservices -py-azure-mgmt-recoveryservicesbackup -py-azure-mgmt-redhatopenshift -py-azure-mgmt-redis -py-azure-mgmt-relay -py-azure-mgmt-reservations -py-azure-mgmt-resource -py-azure-mgmt-search -py-azure-mgmt-security -py-azure-mgmt-servicebus -py-azure-mgmt-servicefabric -py-azure-mgmt-signalr -py-azure-mgmt-sql -py-azure-mgmt-sqlvirtualmachine -py-azure-mgmt-storage -py-azure-mgmt-trafficmanager -py-azure-mgmt-web -py-azure-multiapi-storage -py-azure-nspkg -py-azure-storage-blob -py-azure-storage-common -py-azure-storage-nspkg -py-babel -py-backcall -py-backoff -py-backpack-for-pytorch -py-backports-abc -py-backports-cached-property -py-backports-entry-points-selectable -py-backports-lzma -py-backports-os -py-backports-ssl-match-hostname -py-backports-tarfile -py-backports-tempfile -py-backports-weakref -py-backports-zoneinfo -py-bagit -py-bagit-profile -py-bakta -py-bandit -py-barectf -py-basemap -py-bash-kernel -py-basis-set-exchange -py-batchspawner -py-bayesian-optimization -py-bcbio-gff -py-bcolz -py-bcrypt -py-bdbag -py-beaker -py-beancount -py-beartype -py-beautifulsoup4 -py-beniget -py-bidict -py-bids-validator -py-bids-validator-deno -py-bidscoin -py-bidskit -py-bidsschematools -py-bigdft -py-bigfloat -py-billiard -py-binary -py-binaryornot -py-bintrees -py-binwalk -py-biobb-common -py-biobb-gromacs -py-biobb-io -py-biobb-model -py-biobb-structure-checking -py-biobb-structure-utils -py-bioblend -py-biom-format -py-biomine -py-biopandas -py-biopython -py-biosppy -py-biotite -py-biotraj -py-bitarray -py-bitshuffle -py-bitstring -py-bitstruct -py-black -py-blake3 -py-bleach -py-blessed -py-blessings -py-blight -py-blinker -py-blis -py-blosc -py-blosc2 -py-blosum -py-bluepyefe -py-bluepyemodel -py-bluepyopt -py-bmap-tools -py-bmtk -py-bokeh -py-boltons -py-boom-boot-manager -py-boost-histogram -py-boto -py-boto3 -py-botocore -py-botorch -py-bottle -py-bottleneck -py-bqplot -py-braceexpand -py-brain-indexer -py-branca -py-bravado -py-bravado-core -py-breakseq2 -py-breathe -py-brian -py-brian2 -py-brotli -py-brotlipy -py-bsddb3 -py-build -py-bx-python -py-cachecontrol -py-cached-property -py-cachetools -py-cachey -py-cachy -py-cairocffi -py-cairosvg -py-caliper-reader -py-callmonitor -py-calver -py-cantoolz -py-carputils -py-cartopy -py-casadi -py-catalogue -py-catkin-pkg -py-cattrs -py-cbor2 -py-cclib -py-cdo -py-cdsapi -py-cekit -py-celery -py-cellprofiler -py-cellprofiler-core -py-centrosome -py-cerberus -py-certifi -py-certipy -py-cf-units -py-cf-xarray -py-cffconvert -py-cffi -py-cfgrib -py-cfgv -py-cftime -py-cgen -py-chai -py-chainer -py-chainforgecodegen -py-chainmap -py-chalice -py-chardet -py-charm4py -py-charset-normalizer -py-chart-studio -py-cheap-repr -py-checkm-genome -py-cheetah3 -py-chemfiles -py-cheroot -py-cherrypy -py-chex -py-choreographer -py-chronyk -py-ci-info -py-ci-sdr -py-cig-pythia -py-cinema-lib -py-cinemasci -py-circus -py-citeproc-py -py-clean-text -py-cleo -py-click -py-click-didyoumean -py-click-option-group -py-click-plugins -py-click-repl -py-cligj -py-clikit -py-climate -py-climax -py-clint -py-clip-anytorch -py-clipboard -py-cloudauthz -py-cloudbridge -py-cloudpickle -py-clustershell -py-cma -py-cmaes -py-cmake-format -py-cmake-parser -py-cmocean -py-cmseq -py-cmsml -py-cmyt -py-coapthon3 -py-coca-pytorch -py-coclust -py-codebasin -py-codepy -py-codespell -py-coherent-licensed -py-coilmq -py-colabtools -py-colorama -py-colorcet -py-colorclass -py-colored -py-colored-traceback -py-coloredlogs -py-colorful -py-colorio -py-colorlog -py-colorlover -py-colormath -py-colorpy -py-colorspacious -py-colossalai -py-colour -py-comm -py-common -py-commonmark -py-conan -py-conda-inject -py-conda-souschef -py-confection -py-configargparse -py-configobj -py-configparser -py-configspace -py-confluent-kafka -py-connectionpool -py-consolekit -py-constantly -py-contextily -py-contextlib2 -py-contexttimer -py-continuum -py-contourpy -py-contrib -py-control -py-convertdate -py-convokit -py-cookiecutter -py-copulas -py-corner -py-correctionlib -py-corrfunc -py-counter -py-courlan -py-cov-core -py-coverage -py-coveralls -py-cppheaderparser -py-cppy -py-cramjam -py-crashtest -py-crc32c -py-crcmod -py-croniter -py-crossmap -py-cryolobm -py-cryptography -py-css-parser -py-cssselect -py-cssselect2 -py-cssutils -py-csvkit -py-ctgan -py-cuda-bindings -py-cudf -py-cufflinks -py-cuml -py-cupy -py-current -py-currentscape -py-curvlinops-for-pytorch -py-custodian -py-custom-inherit -py-cutadapt -py-cvxopt -py-cvxpy -py-cwl-upgrader -py-cwl-utils -py-cwltool -py-cx-oracle -py-cycler -py-cykhash -py-cylc-flow -py-cylc-rose -py-cylp -py-cymem -py-cyordereddict -py-cython -py-cython-bbox -py-cyvcf2 -py-d2to1 -py-dace -py-dacite -py-dadi -py-dalib -py-damask -py-darshan -py-dasbus -py-dash -py-dash-bootstrap-components -py-dash-svg -py-dask -py-dask-awkward -py-dask-expr -py-dask-glm -py-dask-histogram -py-dask-jobqueue -py-dask-ml -py-dask-mpi -py-dask-sphinx-theme -py-databricks-cli -py-dataclasses -py-dataclasses-json -py-datacube -py-datalad -py-datalad-container -py-datalad-deprecated -py-datalad-hirni -py-datalad-metadata-model -py-datalad-metalad -py-datalad-neuroimaging -py-datalad-webapp -py-dataproperty -py-datasets -py-datashader -py-datatrove -py-dateparser -py-dateutils -py-datrie -py-dbf -py-dbfread -py-dcm2bids -py-deap -py-debtcollector -py-debugpy -py-decorator -py-deepdiff -py-deepecho -py-deephyper -py-deepsig-biocomp -py-deepspeed -py-deeptools -py-deeptoolsintervals -py-defusedxml -py-demjson -py-dendropy -py-deprecat -py-deprecated -py-deprecation -py-deprecation-alias -py-descartes -py-devito -py-devlib -py-dgl -py-dh-scikit-optimize -py-dict2css -py-dictdiffer -py-dictobj -py-dill -py-dinosaur -py-dipy -py-dirtyjson -py-disbatch -py-discover -py-diskcache -py-dist-meta -py-distance -py-distlib -py-distributed -py-distro -py-django -py-dlcpar -py-dm-haiku -py-dm-tree -py-dnaio -py-dnspython -py-docker -py-dockerpy-creds -py-docopt -py-docopt-ng -py-docstring-parser -py-docstring-to-markdown -py-docutils -py-docutils-stubs -py-dogpile-cache -py-doit -py-dolfinx-mpc -py-dom-toml -py-domdf-python-tools -py-dominate -py-donfig -py-dotmap -py-dotnetcore2 -py-downhill -py-doxypypy -py-dpath -py-drep -py-drmaa -py-dryscrape -py-duecredit -py-dulwich -py-dunamai -py-dvc -py-dxchange -py-dxfile -py-dynaconf -py-dynim -py-earth2mip -py-earthengine-api -py-easybuild-easyblocks -py-easybuild-easyconfigs -py-easybuild-framework -py-eccodes -py-ecdsa -py-ecmwf-opendata -py-ecmwflibs -py-ecos -py-edam-ontology -py-edffile -py-edfio -py-edflib-python -py-editables -py-editdistance -py-edlib -py-eeglabio -py-eerepr -py-efel -py-efficientnet-pytorch -py-eg -py-einconv -py-einops -py-elastic-transport -py-elasticsearch -py-elasticsearch-dsl -py-elephant -py-elevation -py-ema-pytorch -py-email-validator -py-embedding-reader -py-emcee -py-emoji -py-empy -py-entrypoints -py-enum-tools -py-envisage -py-ephem -py-eprosima-fastdds -py-epydoc -py-equation -py-equinox -py-espresso -py-espressopp -py-et-xmlfile -py-ete3 -py-etelemetry -py-etils -py-eval-type-backport -py-evaluate -py-eventlet -py-evodiff -py-ewah-bool-utils -py-exarl -py-exceptiongroup -py-execnet -py-executing -py-exhale -py-exifread -py-exodus-bundler -py-expandvars -py-expecttest -py-exponax -py-extension-helpers -py-extras -py-ez-setup -py-f90nml -py-f90wrap -py-fabric -py-fabric3 -py-fair-esm -py-fairscale -py-faker -py-falcon -py-fallocate -py-fastai -py-fastaindex -py-fastapi -py-fastapi-utils -py-fastavro -py-fastcache -py-fastcluster -py-fastcore -py-fastcov -py-fastdownload -py-fastdtw -py-fasteners -py-fastfold -py-fastjsonschema -py-fastpath -py-fastprogress -py-fastremap -py-fastrlock -py-fasttext-numpy2 -py-fasttext-numpy2-wheel -py-faust-cchardet -py-fava -py-fenics-basix -py-fenics-dijitso -py-fenics-dolfinx -py-fenics-ffc -py-fenics-ffcx -py-fenics-fiat -py-fenics-instant -py-fenics-ufl -py-fenics-ufl-legacy -py-ffmpy -py-file-magic -py-filecheck -py-filelock -py-filemagic -py-filetype -py-filterpy -py-find-libpython -py-findlibs -py-fiona -py-fire -py-fireworks -py-fiscalyear -py-fisher -py-fits-tools -py-fitsio -py-fitter -py-fixtures -py-flake8 -py-flake8-import-order -py-flake8-polyfill -py-flaky -py-flameprof -py-flash-attn -py-flask -py-flask-babel -py-flask-compress -py-flask-cors -py-flask-paginate -py-flask-restful -py-flask-socketio -py-flask-sqlalchemy -py-flatbuffers -py-flatten-dict -py-flawfinder -py-flax -py-flexcache -py-flexmock -py-flexparser -py-flexx -py-flit -py-flit-core -py-flit-scm -py-flox -py-flufl-lock -py-fluiddyn -py-fluidfft -py-fluidfft-builder -py-fluidfft-fftw -py-fluidfft-fftwmpi -py-fluidfft-mpi-with-fftw -py-fluidfft-p3dfft -py-fluidfft-pfft -py-fluidsim -py-fluidsim-core -py-flye -py-fn-py -py-folium -py-fonttools -py-ford -py-formatizer -py-formulaic -py-fortls -py-fortran-language-server -py-fortranformat -py-fparser -py-fprettify -py-fqdn -py-fracridge -py-fraction -py-freetype-py -py-freezegun -py-frozendict -py-frozenlist -py-fs -py-fsspec -py-fsspec-xrootd -py-ftfy -py-ftputil -py-funcy -py-furo -py-fury -py-fusepy -py-future -py-fuzzywuzzy -py-fypp -py-galaxy-containers -py-galaxy-job-metrics -py-galaxy-objectstore -py-galaxy-sequence-utils -py-galaxy-tool-util -py-galaxy-util -py-galaxy2cwl -py-gast -py-gcovr -py-gcs-oauth2-boto-plugin -py-gcsfs -py-gdc-client -py-gdown -py-gee-asset-manager -py-geeadd -py-geemap -py-geeup -py-gemmforge -py-genders -py-geneimpacts -py-generateds -py-genshi -py-gensim -py-geoalchemy2 -py-geocoder -py-geocube -py-geographiclib -py-geojson -py-geomdl -py-geopandas -py-geoplot -py-geopmdpy -py-geopmpy -py-geopy -py-geoviews -py-gevent -py-gf256 -py-gfal2-python -py-gffutils -py-ghp-import -py-gidgethub -py-gidgetlab -py-gimmik -py-gin-config -py-git-review -py-gitdb -py-gitpython -py-glean-parser -py-glean-sdk -py-glmnet -py-glmnet-python -py-glmsingle -py-glob2 -py-globus-cli -py-globus-sdk -py-gluoncv -py-glymur -py-gmsh -py-gmsh-interop -py-gmxapi -py-gnuplot -py-goatools -py-gooey -py-google -py-google-api-core -py-google-api-python-client -py-google-apitools -py-google-auth -py-google-auth-httplib2 -py-google-auth-oauthlib -py-google-cloud-appengine-logging -py-google-cloud-audit-log -py-google-cloud-batch -py-google-cloud-bigquery -py-google-cloud-core -py-google-cloud-logging -py-google-cloud-storage -py-google-crc32c -py-google-pasta -py-google-reauth -py-google-resumable-media -py-googleapis-common-protos -py-googledrivedownloader -py-gosam -py-gpaw -py-gpaw-data -py-gpustat -py-gputil -py-gpy -py-gpyopt -py-gpytorch -py-gql -py-gradio -py-gradio-client -py-grandalf -py-graphcast -py-grapheme -py-graphene -py-graphlib-backport -py-graphql-core -py-graphql-relay -py-graphql-ws -py-graphviz -py-gravity -py-grayskull -py-greenlet -py-grequests -py-griddataformats -py-griffe -py-gromacswrapper -py-grpc-google-iam-v1 -py-grpcio -py-grpcio-status -py-grpcio-tools -py-gsd -py-gssapi -py-gsutil -py-gtdbtk -py-gunicorn -py-gxformat2 -py-gym -py-h11 -py-h2 -py-h5glance -py-h5io -py-h5netcdf -py-h5py -py-h5sh -py-hacking -py-hail -py-handy-archives -py-hatch -py-hatch-cython -py-hatch-fancy-pypi-readme -py-hatch-jupyter-builder -py-hatch-nodejs-version -py-hatch-requirements-txt -py-hatch-vcs -py-hatchet -py-hatchling -py-hclust2 -py-hdbscan -py-hdfs -py-healpix -py-healpy -py-heapdict -py-heat -py-hep-ml -py-hepdata-converter -py-hepdata-lib -py-hepdata-validator -py-hepstats -py-hepunits -py-hf-transfer -py-hf-xet -py-hieroglyph -py-hiredis -py-hist -py-histbook -py-histogrammar -py-histoprint -py-hjson -py-hmmlearn -py-holland-backup -py-holoviews -py-horovod -py-hpack -py-hpbandster -py-hpccm -py-hsluv -py-hstspreload -py-htgettoken -py-html2text -py-html5lib -py-htmldate -py-htmlgen -py-htseq -py-httpbin -py-httpcore -py-httplib2 -py-httpretty -py-httpstan -py-httptools -py-httpx -py-huggingface-hub -py-humanfriendly -py-humanize -py-hvac -py-hvplot -py-hydra-core -py-hypercorn -py-hyperframe -py-hyperlink -py-hyperopt -py-hypothesis -py-ibm-cloud-sdk-core -py-ibm-watson -py-ics -py-id -py-identify -py-idna -py-idna-ssl -py-igor -py-igor2 -py-igraph -py-igv-notebook -py-illumina-utils -py-ilmbase -py-imagecodecs -py-imagehash -py-imageio -py-imageio-ffmpeg -py-imagesize -py-imbalanced-learn -py-imgaug -py-iminuit -py-immutabledict -py-immutables -py-importlib-metadata -py-importlib-resources -py-imutils -py-in-n-out -py-incremental -py-inflect -py-inheritance -py-iniconfig -py-iniparse -py-inquirer -py-inquirerpy -py-inscriptis -py-installer -py-instrain -py-intbitset -py-intel-openmp -py-intensity-normalization -py-interface-meta -py-interlap -py-intervaltree -py-invoke -py-iocapture -py-iopath -py-ipaddress -py-ipdb -py-ipycanvas -py-ipyevents -py-ipyfilechooser -py-ipykernel -py-ipyleaflet -py-ipympl -py-ipyparallel -py-ipyrad -py-ipython -py-ipython-cluster-helper -py-ipython-genutils -py-ipython-pygments-lexers -py-ipytree -py-ipyvtk-simple -py-ipyvue -py-ipyvuetify -py-ipywidgets -py-irpf90 -py-isa-rwval -py-isal -py-iso8601 -py-isodate -py-isoduration -py-isort -py-iterative-stats -py-itk -py-itolapi -py-itsdangerous -py-jacobi -py-jaconv -py-jamo -py-janus -py-jaraco-classes -py-jaraco-context -py-jaraco-functools -py-jarowinkler -py-jarvis-util -py-javaproperties -py-jax -py-jaxlib -py-jaxtyping -py-jcb -py-jdatetime -py-jdcal -py-jedi -py-jeepney -py-jellyfish -py-jinja2 -py-jinja2-cli -py-jinja2-time -py-jiter -py-jmespath -py-jmp -py-joblib -py-jplephem -py-jproperties -py-jprops -py-jpype1 -py-jraph -py-jsmin -py-json-get -py-json-tricks -py-json2html -py-json5 -py-jsonargparse -py-jsondiff -py-jsonlines -py-jsonpatch -py-jsonpath-ng -py-jsonpickle -py-jsonpointer -py-jsonref -py-jsonschema -py-jsonschema-specifications -py-junit-xml -py-junit2html -py-jupyter -py-jupyter-client -py-jupyter-console -py-jupyter-core -py-jupyter-events -py-jupyter-leaflet -py-jupyter-lsp -py-jupyter-packaging -py-jupyter-server -py-jupyter-server-mathjax -py-jupyter-server-proxy -py-jupyter-server-terminals -py-jupyter-telemetry -py-jupyterhub -py-jupyterlab -py-jupyterlab-pygments -py-jupyterlab-server -py-jupyterlab-widgets -py-jupytext -py-justext -py-jwcrypto -py-kaggle -py-kaldiio -py-kaleido -py-kb-python -py-keras -py-keras-applications -py-keras-preprocessing -py-keras2onnx -py-kerberos -py-keyboard -py-keyring -py-keyrings-alt -py-keystoneauth1 -py-kitchen -py-kiwisolver -py-kmodes -py-knack -py-kneaddata -py-kombu -py-kornia -py-kornia-rs -py-kosh -py-krb5 -py-kt-legacy -py-kubernetes -py-kymatio -py-lagom -py-langcodes -py-langsmith -py-lap -py-laplace-torch -py-lark -py-lark-parser -py-laspy -py-latexcodec -py-law -py-lazy -py-lazy-loader -py-lazy-object-proxy -py-lazy-property -py-lazyarray -py-lcls-krtc -py-ldap3 -py-leather -py-lerc -py-lfpykit -py-lhsmdu -py-liac-arff -py-libclang -py-libconf -py-libcst -py-libensemble -py-liblas -py-librosa -py-libsonata -py-lifelines -py-lightgbm -py-lightly -py-lightly-utils -py-lightning -py-lightning-api-access -py-lightning-cloud -py-lightning-fabric -py-lightning-lite -py-lightning-uq-box -py-lightning-utilities -py-ligo-segments -py-lil-aretomo -py-line-profiler -py-linear-operator -py-linear-tree -py-linecache2 -py-lineenhancer -py-linkchecker -py-linkify-it-py -py-lit -py-litdata -py-littleutils -py-lizard -py-llnl-sina -py-llvmlite -py-lmdb -py-lmfit -py-lmodule -py-localcider -py-locket -py-lockfile -py-logilab-common -py-logistro -py-logmuse -py-loguru -py-loky -py-loompy -py-looseversion -py-louie -py-lpips -py-lru-dict -py-lscsoft-glue -py-lsprotocol -py-luigi -py-lvis -py-lws -py-lxml -py-lz4 -py-lzstring -py-m2r -py-macholib -py-machotools -py-macs2 -py-macs3 -py-maestrowf -py-magicgui -py-mahotas -py-mailchecker -py-make -py-makefun -py-mako -py-mapbox-earcut -py-mapclassify -py-mariadb -py-markdown -py-markdown-include -py-markdown-it-py -py-markdown2 -py-markov-clustering -py-markovify -py-markupsafe -py-marshmallow -py-matminer -py-matplotlib -py-matplotlib-inline -py-matplotlib-scalebar -py-maturin -py-mayavi -py-mbstrdecoder -py-mccabe -py-md-environ -py-mda-xdrlib -py-mdanalysis -py-mdanalysistests -py-mdi -py-mdit-py-plugins -py-mdocfile -py-mdurl -py-meautility -py-mechanize -py-medaka -py-meldmd -py-melissa-core -py-memory-profiler -py-memprof -py-memray -py-mercantile -py-mergedeep -py-merlin -py-meshio -py-meshpy -py-meson-python -py-metaphlan -py-metasv -py-metatensor-core -py-metatensor-learn -py-metatensor-operations -py-metatensor-torch -py-metatomic-torch -py-metis -py-metomi-isodatetime -py-metomi-rose -py-metpy -py-metric-learn -py-metrics -py-mffpy -py-mg-rast-tools -py-mgmetis -py-microsoft-aurora -py-mido -py-mikado -py-mike -py-minio -py-minisom -py-minkowskiengine -py-minrpc -py-misk -py-misopy -py-mistletoe -py-mistune -py-mizani -py-mkdocs -py-mkdocs-autorefs -py-mkdocs-jupyter -py-mkdocs-material -py-mkdocs-material-extensions -py-mkdocstrings -py-mkdocstrings-python -py-ml-collections -py-ml-dtypes -py-mlflow -py-mlperf-logging -py-mlxtend -py-mmcv -py-mmtf-python -py-mne -py-mne-bids -py-mo-pack -py-moarchiving -py-mock -py-model-index -py-modepy -py-modin -py-modred -py-modules-gui -py-moltemplate -py-monai -py-monkeytype -py-monotonic -py-monty -py-more-itertools -py-morph-tool -py-morphio -py-morphosamplers -py-motmetrics -py-mouseinfo -py-moviepy -py-mpi4jax -py-mpi4py -py-mpld3 -py-mpldock -py-mplhep -py-mplhep-data -py-mpmath -py-mrcfile -py-msal -py-msal-extensions -py-msgpack -py-msgpack-numpy -py-msrest -py-msrestazure -py-multi-imbalance -py-multi-key-dict -py-multidict -py-multiecho -py-multipledispatch -py-multiprocess -py-multiqc -py-multiurl -py-mumps4py -py-munch -py-munkres -py-murmurhash -py-mutagen -py-mx -py-mxfold2 -py-myhdl -py-mypy -py-mypy-extensions -py-mysql-connector-python -py-mysqlclient -py-myst-parser -py-namex -py-nanobind -py-nanoget -py-nanomath -py-nanoplot -py-nanostat -py-nanotime -py-nanotron -py-napari -py-napari-console -py-napari-plugin-engine -py-napari-plugin-manager -py-napari-svg -py-nara-wpe -py-narwhals -py-natsort -py-nbclassic -py-nbclient -py-nbconvert -py-nbdime -py-nbformat -py-nbmake -py-nbqa -py-nbsphinx -py-nbstripout -py-nbval -py-nc-time-axis -py-ncbi-genome-download -py-ndg-httpsclient -py-ndindex -py-neo -py-neo4j -py-neobolt -py-neotime -py-neovim-remote -py-neptune-client -py-nest-asyncio -py-nestle -py-netaddr -py-netcdf4 -py-netifaces -py-netket -py-netpyne -py-networkit -py-networkx -py-neuralgcm -py-neurokit2 -py-neurolab -py-neurom -py-neurora -py-neurotools -py-nexus-sdk -py-nexusforge -py-nglview -py-ngs-tools -py-nh3 -py-nibabel -py-nilearn -py-nipype -py-nitransforms -py-niworkflows -py-nltk -py-node-semver -py-nodeenv -py-non-regression-test-tools -py-nose -py-nose-cov -py-nose2 -py-nosexcover -py-notebook -py-notebook-shim -py-npe2 -py-nptyping -py-npx -py-ntlm-auth -py-ntplib -py-nugraph -py-nuitka -py-num2words -py-numba -py-numba4jax -py-numbagg -py-numcodecs -py-numdifftools -py-numexpr -py-numexpr3 -py-numkit -py-numl -py-numpy -py-numpy-groupies -py-numpy-indexed -py-numpy-quaternion -py-numpy-stl -py-numpydoc -py-nvidia-dali -py-nvidia-ml-py -py-nvidia-ml-py3 -py-nvidia-modulus -py-nvidia-nvimagecodec -py-nvidia-nvjpeg2k -py-nvidia-nvtiff -py-nvitop -py-nvtx -py-oauth2client -py-oauthlib -py-obspy -py-ocnn -py-odc-geo -py-odfpy -py-ogb -py-okada-wrapper -py-olcf-velocity -py-olefile -py-omegaconf -py-onnx -py-onnx-opcounter -py-onnxconverter-common -py-onnxmltools -py-onnxruntime -py-ont-fast5-api -py-opcodes -py-open-clip-torch -py-openai -py-openapi-schema-pydantic -py-opencensus -py-opencensus-context -py-opencv-python -py-opendatalab -py-openidc-client -py-openmc -py-openmesh -py-openmim -py-openpmd-validator -py-openpmd-viewer -py-openpyxl -py-openslide-python -py-opentree -py-opentuner -py-opppy -py-ops -py-opt-einsum -py-optax -py-optree -py-optuna -py-or-tools -py-oracledb -py-orbax-checkpoint -py-ordered-set -py-orderly-set -py-orjson -py-os-service-types -py-oset -py-oslo-config -py-oslo-i18n -py-oslo-serialization -py-oslo-utils -py-osqp -py-outdated -py-overpy -py-overrides -py-owlrl -py-owslib -py-oyaml -py-pacifica-downloader -py-pacifica-namespace -py-pacifica-uploader -py-packaging -py-pager -py-paho-mqtt -py-palettable -py-pamela -py-panaroo -py-pandas -py-pandas-datareader -py-pandas-stubs -py-pandocfilters -py-panedr -py-panel -py-papermill -py-paralleltask -py-param -py-parameterized -py-paramiko -py-paramz -py-parasail -py-parmed -py-parse -py-parse-type -py-parsedatetime -py-parsimonious -py-parsl -py-parsley -py-parso -py-partd -py-particle -py-paste -py-pastedeploy -py-pastel -py-pastml -py-patch -py-patch-ng -py-path-py -py-pathlib2 -py-pathml -py-pathos -py-pathspec -py-pathtools -py-pathvalidate -py-pathy -py-patool -py-patsy -py-pauvre -py-pbr -py-pdb-tools -py-pdbfixer -py-pdequinox -py-pdf2image -py-pdm-backend -py-pdm-pep517 -py-pdoc3 -py-peachpy -py-peakutils -py-pebble -py-pem -py-pennylane -py-pennylane-lightning -py-pennylane-lightning-kokkos -py-pep517 -py-pep8 -py-pep8-naming -py-perfdump -py-performance -py-periodictable -py-petastorm -py-petname -py-petsc4py -py-pexpect -py-pfzy -py-pgzip -py-phanotate -py-phonenumbers -py-phonopy -py-photutils -py-phydms -py-phylophlan -py-pickle5 -py-pickleshare -py-picmistandard -py-picrust2 -py-pid -py-pika -py-pillow -py-pillow-simd -py-pint -py-pint-xarray -py-pip -py-pipdeptree -py-piper -py-pipits -py-pispino -py-pivy -py-pkgconfig -py-pkginfo -py-pkgutil-resolve-name -py-plac -py-planar -py-planet -py-planetary-computer -py-platformdirs -py-plotext -py-plotille -py-plotly -py-plotnine -py-pluggy -py-plum-dispatch -py-ply -py-pmw -py-pmw-patched -py-pockets -py-poetry -py-poetry-core -py-poetry-dynamic-versioning -py-poetry-plugin-export -py-poetry-plugin-tweak-dependencies-version -py-polars -py-pomegranate -py-pooch -py-portalocker -py-portend -py-portpicker -py-postcactus -py-poster -py-pot -py-pox -py-poxy -py-poyo -py-ppft -py-pprintpp -py-pre-commit -py-preshed -py-pretrainedmodels -py-pretty-errors -py-prettytable -py-priority -py-profilehooks -py-proglog -py-progress -py-progressbar2 -py-progressbar33 -py-projectq -py-prokaryote -py-prometheus-client -py-prometheus-flask-exporter -py-promise -py-prompt-toolkit -py-propcache -py-properscoring -py-proto-plus -py-protobuf -py-protoc-gen-swagger -py-prov -py-prwlock -py-psalg -py-psana -py-psij-python -py-psmon -py-pspamm -py-psutil -py-psyclone -py-psycopg2 -py-psygnal -py-ptyprocess -py-pubchempy -py-pudb -py-pulp -py-pulsar-galaxy-lib -py-pure-eval -py-pure-sasl -py-puremagic -py-py -py-py-cpuinfo -py-py-spy -py-py-tes -py-py2bit -py-py2neo -py-py4j -py-py6s -py-pyabel -py-pyaestro -py-pyahocorasick -py-pyamg -py-pyaml -py-pyaml-env -py-pyani -py-pyarrow -py-pyasn1 -py-pyasn1-modules -py-pyassimp -py-pyautogui -py-pybedtools -py-pybids -py-pybigwig -py-pybind11 -py-pybind11-stubgen -py-pybktree -py-pybobyqa -py-pybrain -py-pybtex -py-pybtex-docutils -py-pybv -py-pycairo -py-pycares -py-pycbc -py-pychecker -py-pycifrw -py-pyclibrary -py-pycm -py-pycmd -py-pycocotools -py-pycodestyle -py-pycollada -py-pycompadre -py-pyconify -py-pycorenlp -py-pycortex -py-pycosat -py-pycparser -py-pycrypto -py-pycryptodome -py-pyct -py-pycubexr -py-pycuda -py-pycurl -py-pydantic -py-pydantic-compat -py-pydantic-core -py-pydantic-extra-types -py-pydantic-settings -py-pydantic-tes -py-pydap -py-pydata-sphinx-theme -py-pydatalog -py-pydeface -py-pydeprecate -py-pydeps -py-pydevtool -py-pydftracer -py-pydicom -py-pydispatcher -py-pydmd -py-pydocstyle -py-pydoe -py-pydoe2 -py-pydot -py-pydot2 -py-pydotplus -py-pydub -py-pyeda -py-pyedr -py-pyee -py-pyelftools -py-pyem -py-pyenchant -py-pyepsg -py-pyerfa -py-pyeventsystem -py-pyface -py-pyfaidx -py-pyfasta -py-pyfastaq -py-pyfftw -py-pyfiglet -py-pyfits -py-pyflakes -py-pyfr -py-pygame -py-pygdal -py-pygdbmi -py-pygelf -py-pygeos -py-pygetwindow -py-pygit2 -py-pygithub -py-pyglet -py-pygments -py-pygments-pytest -py-pygmsh -py-pygmt -py-pygobject -py-pygps -py-pygpu -py-pygraphviz -py-pygresql -py-pygrib -py-pygtrie -py-pyh5md -py-pyhdf -py-pyheadtail -py-pyhmmer -py-pyhull -py-pyicu -py-pyinstrument -py-pyinstrument-cext -py-pyisemail -py-pyjnius -py-pyjwt -py-pyke -py-pykerberos -py-pykml -py-pykokkos-base -py-pykwalify -py-pylab-sdk -py-pylatex -py-pyld -py-pylev -py-pylibmagic -py-pylikwid -py-pylint -py-pylint-gitlab -py-pylith -py-pylops -py-pymatgen -py-pymatreader -py-pymbolic -py-pymc3 -py-pymdown-extensions -py-pymeeus -py-pyminifier -py-pymol -py-pymongo -py-pymoo -py-pymorph -py-pympler -py-pymsgbox -py-pymummer -py-pymumps -py-pymysql -py-pynacl -py-pynio -py-pynisher -py-pynn -py-pynndescent -py-pynpm -py-pynrrd -py-pynucleus -py-pynvim -py-pynvml -py-pynvtx -py-pyodbc -py-pyogrio -py-pyomo -py-pyopencl -py-pyopengl -py-pyopenssl -py-pypar -py-pyparsing -py-pypdf -py-pypdf2 -py-pypeflow -py-pypeg2 -py-pyperclip -py-pyperf -py-pypinfo -py-pypinyin -py-pypistats -py-pypng -py-pyppeteer -py-pyprecice -py-pyprof2html -py-pyproj -py-pyproject-hooks -py-pyproject-metadata -py-pyproject-parser -py-pypulse -py-pyqi -py-pyqt-builder -py-pyqt4 -py-pyqt5 -py-pyqt5-sip -py-pyqt6 -py-pyqt6-sip -py-pyqtgraph -py-pyquaternion -py-pyreadline -py-pyrect -py-pyrevolve -py-pyrfr -py-pyro-api -py-pyro-ppl -py-pyro4 -py-pyrocko -py-pyrodigal -py-pyrr -py-pyrsistent -py-pysam -py-pyscaf -py-pyscf -py-pyscipopt -py-pyscreeze -py-pyseer -py-pyserial -py-pysftp -py-pyshacl -py-pyshp -py-pyside2 -py-pysimdjson -py-pysmartdl -py-pysmiles -py-pysocks -py-pysolar -py-pyspark -py-pyspellchecker -py-pyspice -py-pyspnego -py-pyspoa -py-pysqlite3 -py-pystac -py-pystac-client -py-pystache -py-pystan -py-pysurfer -py-pytablewriter -py-pytailf -py-pytaridx -py-pytecplot -py-pytesseract -py-pytest -py-pytest-aiohttp -py-pytest-allclose -py-pytest-arraydiff -py-pytest-astropy -py-pytest-astropy-header -py-pytest-asyncio -py-pytest-benchmark -py-pytest-cache -py-pytest-check-links -py-pytest-cov -py-pytest-cpp -py-pytest-datadir -py-pytest-doctestplus -py-pytest-fail-slow -py-pytest-filter-subpackage -py-pytest-flake8 -py-pytest-flakes -py-pytest-forked -py-pytest-html -py-pytest-httpbin -py-pytest-isort -py-pytest-lazy-fixture -py-pytest-memray -py-pytest-metadata -py-pytest-mock -py-pytest-mpi -py-pytest-mypy -py-pytest-openfiles -py-pytest-parallel -py-pytest-pep8 -py-pytest-pylint -py-pytest-qt -py-pytest-random-order -py-pytest-regtest -py-pytest-remotedata -py-pytest-runner -py-pytest-subprocess -py-pytest-timeout -py-pytest-workflow -py-pytest-xdist -py-python-benedict -py-python-bioformats -py-python-box -py-python-calamine -py-python-certifi-win32 -py-python-constraint -py-python-crfsuite -py-python-daemon -py-python-dateutil -py-python-deprecated -py-python-docs-theme -py-python-dotenv -py-python-editor -py-python-engineio -py-python-fmask -py-python-fsutil -py-python-gitlab -py-python-hostlist -py-python-igraph -py-python-javabridge -py-python-jenkins -py-python-jose -py-python-json-logger -py-python-keystoneclient -py-python-ldap -py-python-levenshtein -py-python-libsbml -py-python-logstash -py-python-louvain -py-python-lsp-jsonrpc -py-python-lsp-ruff -py-python-lsp-server -py-python-lzo -py-python-magic -py-python-mapnik -py-python-markdown-math -py-python-memcached -py-python-multipart -py-python-oauth2 -py-python-picard -py-python-pptx -py-python-ptrace -py-python-rapidjson -py-python-slugify -py-python-socketio -py-python-sotools -py-python-subunit -py-python-swiftclient -py-python-utils -py-python-xlib -py-python-xmp-toolkit -py-python3-openid -py-python3-xlib -py-pythonqwt -py-pythonsollya -py-pythran -py-pytimeparse -py-pytng -py-pytoml -py-pytools -py-pytorch-gradual-warmup-lr -py-pytorch-lightning -py-pytorch-sphinx-theme -py-pytorch-warmup -py-pyts -py-pytweening -py-pytz -py-pyu2f -py-pyudev -py-pyugrid -py-pyupgrade -py-pyusb -py-pyutilib -py-pyuwsgi -py-pyvcf -py-pyvista -py-pyvistaqt -py-pyviz-comms -py-pyvolve -py-pywavelets -py-pywcs -py-pywin32 -py-pyworld -py-pyxlsb -py-pyyaml -py-pyyaml-env-tag -py-pyzmq -py-qdldl -py-qiskit-aer -py-qiskit-ibm-provider -py-qiskit-nature -py-qiskit-terra -py-qmtest -py-qpsolvers -py-qpth -py-qrcode -py-qsymm -py-qtawesome -py-qtconsole -py-qtpy -py-quantiphy -py-quantities -py-quantum-blackbird -py-quantum-xir -py-quart -py-quast -py-quaternionic -py-qudida -py-queryablelist -py-querystring-parser -py-questionary -py-qutip -py-qutip-qip -py-radiant-mlhub -py-radical-entk -py-radical-gtod -py-radical-pilot -py-radical-saga -py-radical-utils -py-ranger-fm -py-rapidfuzz -py-rapidfuzz-capi -py-rarfile -py-rasterio -py-rasterstats -py-ratelim -py-ratelimiter -py-raven -py-ray -py-rbtools -py-rdflib -py-rdflib-jsonld -py-rdt -py-reacton -py-readchar -py-readme-renderer -py-recommonmark -py-redis -py-referencing -py-refgenconf -py-refgenie -py-regex -py-regionmask -py-regions -py-reindent -py-relion -py-relion-blush -py-relion-classranker -py-repligit -py-reportlab -py-reportseff -py-repoze-lru -py-reproject -py-requests -py-requests-cache -py-requests-file -py-requests-ftp -py-requests-futures -py-requests-kerberos -py-requests-mock -py-requests-ntlm -py-requests-oauthlib -py-requests-toolbelt -py-requests-unixsocket -py-requirements-parser -py-reretry -py-resampy -py-resize-right -py-resolvelib -py-responses -py-resultsfile -py-retry -py-retry-decorator -py-retrying -py-retworkx -py-rfc3339-validator -py-rfc3986 -py-rfc3986-validator -py-rich -py-rich-argparse -py-rich-click -py-rios -py-rioxarray -py-rise -py-river -py-rmm -py-rnc2rng -py-robocrys -py-robotframework -py-rocrate -py-roifile -py-roman-numerals-py -py-rope -py-rosdep -py-rosdistro -py-rosinstall -py-rosinstall-generator -py-rospkg -py-rotary-embedding-torch -py-rouge-score -py-routes -py-rpds-py -py-rply -py-rpy2 -py-rsa -py-rsatoolbox -py-rseqc -py-rst2pdf -py-rtoml -py-rtree -py-ruamel-ordereddict -py-ruamel-yaml -py-ruamel-yaml-clib -py-ruamel-yaml-jinja2 -py-rucio-clients -py-ruff -py-rustworkx -py-rx -py-s3cmd -py-s3fs -py-s3transfer -py-sacrebleu -py-sacremoses -py-safetensors -py-salib -py-scandir -py-scanpy -py-schema -py-schema-salad -py-scientificpython -py-scifem -py-scikit-build -py-scikit-build-core -py-scikit-fmm -py-scikit-fuzzy -py-scikit-image -py-scikit-learn -py-scikit-learn-extra -py-scikit-matter -py-scikit-optimize -py-scikit-sparse -py-scikits-odes -py-scine-chemoton -py-scine-puffin -py-scinum -py-scipy -py-scooby -py-scoop -py-scp -py-screed -py-scs -py-sdmetrics -py-sdv -py-seaborn -py-secretstorage -py-seekpath -py-segmentation-models-pytorch -py-selenium -py-semantic-version -py-semver -py-send2trash -py-sentencepiece -py-sentry-sdk -py-seqeval -py-sequence-models -py-seriate -py-serpent -py-session-info -py-setproctitle -py-setupmeta -py-setuptools -py-setuptools-cpp -py-setuptools-git -py-setuptools-git-versioning -py-setuptools-reproducible -py-setuptools-rust -py-setuptools-scm -py-setuptools-scm-git-archive -py-sfepy -py-sgp4 -py-sh -py-shap -py-shapely -py-shellescape -py-shellingham -py-shiboken2 -py-shippinglabel -py-shortbred -py-shortuuid -py-shroud -py-shtab -py-simpervisor -py-simple-slurm -py-simpleeval -py-simplegeneric -py-simplejson -py-simplekml -py-simpletraj -py-simpy -py-simsimd -py-singledispatchmethod -py-sip -py-six -py-skl2onnx -py-slepc4py -py-slicer -py-slurm-pipeline -py-smac -py-smart-open -py-smartredis -py-smartsim -py-smartypants -py-smmap -py-smote-variants -py-snakemake-executor-plugin-azure-batch -py-snakemake-executor-plugin-cluster-generic -py-snakemake-executor-plugin-cluster-sync -py-snakemake-executor-plugin-drmaa -py-snakemake-executor-plugin-flux -py-snakemake-executor-plugin-googlebatch -py-snakemake-executor-plugin-kubernetes -py-snakemake-executor-plugin-slurm -py-snakemake-executor-plugin-slurm-jobstep -py-snakemake-executor-plugin-tes -py-snakemake-interface-common -py-snakemake-interface-executor-plugins -py-snakemake-interface-report-plugins -py-snakemake-interface-storage-plugins -py-snakemake-storage-plugin-azure -py-snakemake-storage-plugin-fs -py-snakemake-storage-plugin-ftp -py-snakemake-storage-plugin-gcs -py-snakemake-storage-plugin-http -py-snakemake-storage-plugin-s3 -py-snakemake-storage-plugin-sftp -py-snakemake-storage-plugin-zenodo -py-snakeviz -py-snappy -py-sncosmo -py-sniffio -py-snoop -py-snowballstemmer -py-snuggs -py-sobol-seq -py-social-auth-core -py-sonlib -py-sortedcollections -py-sortedcontainers -py-soundfile -py-soupsieve -py-soyclustering -py-spacy -py-spacy-legacy -py-spacy-loggers -py-spacy-models-en-core-web-sm -py-spacy-models-en-vectors-web-lg -py-sparse -py-spatialist -py-spatialite -py-spatialpandas -py-spdlog -py-spectra -py-spectral -py-speech-recognition -py-spefile -py-spgl1 -py-spglib -py-spherical -py-sphinx -py-sphinx-argparse -py-sphinx-autodoc-typehints -py-sphinx-basic-ng -py-sphinx-book-theme -py-sphinx-bootstrap-theme -py-sphinx-click -py-sphinx-copybutton -py-sphinx-design -py-sphinx-fortran -py-sphinx-gallery -py-sphinx-immaterial -py-sphinx-jinja2-compat -py-sphinx-multiversion -py-sphinx-prompt -py-sphinx-removed-in -py-sphinx-rtd-dark-mode -py-sphinx-rtd-theme -py-sphinx-tabs -py-sphinx-theme-builder -py-sphinx-toolbox -py-sphinxautomodapi -py-sphinxcontrib-applehelp -py-sphinxcontrib-bibtex -py-sphinxcontrib-devhelp -py-sphinxcontrib-htmlhelp -py-sphinxcontrib-issuetracker -py-sphinxcontrib-jquery -py-sphinxcontrib-jsmath -py-sphinxcontrib-mermaid -py-sphinxcontrib-moderncmakedomain -py-sphinxcontrib-napoleon -py-sphinxcontrib-plantuml -py-sphinxcontrib-programoutput -py-sphinxcontrib-qthelp -py-sphinxcontrib-serializinghtml -py-sphinxcontrib-spelling -py-sphinxcontrib-trio -py-sphinxcontrib-websupport -py-sphinxemoji -py-sphobjinv -py-spykeutils -py-spython -py-sqlalchemy -py-sqlalchemy-migrate -py-sqlalchemy-stubs -py-sqlalchemy-utils -py-sqlitedict -py-sqlparse -py-srsly -py-sseclient -py-sshtunnel -py-sspilib -py-stack-data -py-starfile -py-starlette -py-starlette-context -py-starsessions -py-stashcp -py-statmorph -py-statsmodels -py-stdlib-list -py-stestr -py-stevedore -py-stomp-py -py-stopit -py-storm -py-stratify -py-strawberryfields -py-streamlit -py-stringzilla -py-striprtf -py-stsci-distutils -py-stui -py-submitit -py-subrosa -py-subword-nmt -py-superqt -py-supervisor -py-svgpath -py-svgpathtools -py-svgutils -py-svgwrite -py-swagger-spec-validator -py-symengine -py-symfit -py-sympy -py-syned -py-sysrsync -py-systemd-python -py-tabledata -py-tables -py-tabulate -py-tatsu -py-tblib -py-tbparse -py-tcolorpy -py-tempita -py-templateflow -py-tempora -py-tenacity -py-tensorboard -py-tensorboard-data-server -py-tensorboard-plugin-wit -py-tensorboardx -py-tensorflow -py-tensorflow-datasets -py-tensorflow-estimator -py-tensorflow-hub -py-tensorflow-metadata -py-tensorflow-probability -py-tensorly -py-tensorstore -py-termcolor -py-termgraph -py-terminado -py-terminaltables -py-tern -py-tesorter -py-testfixtures -py-testinfra -py-testpath -py-testrepository -py-testresources -py-testscenarios -py-testtools -py-tetoolkit -py-text-unidecode -py-textblob -py-texttable -py-textual -py-textual-plotext -py-textwrap3 -py-textx -py-tf-keras -py-tfdlpack -py-theano -py-thewalrus -py-thinc -py-thop -py-threadpoolctl -py-throttler -py-tidynamics -py-tifffile -py-tiktoken -py-tilelang -py-timm -py-tinyarray -py-tinycss2 -py-tinydb -py-tinyrecord -py-tld -py-tldextract -py-tokenize-rt -py-tokenizers -py-toml -py-tomli -py-tomli-w -py-tomlkit -py-tomopy -py-toolz -py-topiary-asr -py-toposort -py-torch -py-torch-cluster -py-torch-fidelity -py-torch-geometric -py-torch-harmonics -py-torch-nvidia-apex -py-torch-scatter -py-torch-sparse -py-torch-spline-conv -py-torchaudio -py-torchbenchmark -py-torchdata -py-torchdiffeq -py-torchfile -py-torchgeo -py-torchmeta -py-torchmetrics -py-torchseg -py-torchsummary -py-torchtext -py-torchtoolbox -py-torchvision -py-tornado -py-tox -py-toyplot -py-toytree -py-tpot -py-tqdm -py-traceback2 -py-trafilatura -py-trainax -py-traitlets -py-traits -py-traitsui -py-traittypes -py-trame -py-trame-client -py-trame-server -py-transformer-engine -py-transformers -py-transforms3d -py-transonic -py-tree -py-tree-math -py-tree-sitter -py-tree-sitter-c -py-treehash -py-treelib -py-triangle -py-trieregex -py-trimesh -py-triton -py-trojanzoo-sphinx-theme -py-trove-classifiers -py-trx-python -py-tuiview -py-tuspy -py-tuswsgi -py-tweedledum -py-twine -py-twisted -py-typed-ast -py-typeguard -py-typepy -py-typer -py-types-dataclasses -py-types-pkg-resources -py-types-psutil -py-types-python-dateutil -py-types-pytz -py-types-requests -py-types-setuptools -py-types-typed-ast -py-types-urllib3 -py-typesentry -py-typeshed-client -py-typing-extensions -py-typing-inspect -py-typish -py-tzdata -py-tzlocal -py-ubiquerg -py-uc-micro-py -py-ucsf-pyem -py-ucx-py -py-uhi -py-ujson -py-ultralytics -py-umalqurra -py-umap-learn -py-umi-tools -py-uncertainties -py-uncertainty-toolbox -py-unfoldnd -py-unicycler -py-unidecode -py-unittest2py3k -py-universal-pathlib -py-unshare -py-unyt -py-update-checker -py-uproot -py-uproot3 -py-uproot3-methods -py-uri-template -py-uritemplate -py-url-normalize -py-urllib3 -py-urllib3-secure-extra -py-urwid -py-us -py-userpath -py-usgs -py-utils -py-uv -py-uvicorn -py-uvloop -py-uvw -py-uwsgi -py-uxarray -py-validators -py-vascpy -py-vcf-kit -py-vcrpy -py-vcstool -py-vcstools -py-vcversioner -py-vector -py-vector-quantize-pytorch -py-vermin -py-vermouth-martinize -py-versioneer -py-versioneer-518 -py-verspec -py-vesin -py-vine -py-virtualenv -py-virtualenv-clone -py-virtualenvwrapper -py-visdom -py-vispy -py-vl-convert-python -py-voluptuous -py-vsc-base -py-vsc-install -py-vsts -py-vsts-cd-manager -py-wadler-lindig -py-waitress -py-walinuxagent -py-wand -py-wandb -py-warcio -py-warlock -py-wasabi -py-watchdog -py-watchfiles -py-waves -py-wcsaxes -py-wcwidth -py-webargs -py-webcolors -py-webdataset -py-webencodings -py-webkit-server -py-weblogo -py-webob -py-websocket-client -py-websockets -py-werkzeug -py-wesanderson -py-wget -py-whatshap -py-wheel -py-whey -py-whey-pth -py-whichcraft -py-whoosh -py-widgetsnbextension -py-wids -py-win-unicode-console -py-wincertstore -py-word2number -py-wordcloud -py-workload-automation -py-wradlib -py-wrapt -py-wsproto -py-wstool -py-wub -py-wurlitzer -py-ww -py-wxflow -py-wxmplot -py-wxpython -py-x-clip -py-x21 -py-xanadu-cloud-client -py-xarray -py-xarray-regrid -py-xarray-tensorstore -py-xattr -py-xcdat -py-xdot -py-xenv -py-xesmf -py-xgboost -py-xgcm -py-xhistogram -py-xlrd -py-xlsxwriter -py-xlwt -py-xmlplain -py-xmlrunner -py-xmltodict -py-xonsh -py-xopen -py-xpyb -py-xskillscore -py-xtb -py-xvfbwrapper -py-xxhash -py-xyzservices -py-yacman -py-yacs -py-yahmm -py-yajl -py-yamlreader -py-yapf -py-yarl -py-yaspin -py-yolk3k -py-your -py-youtube-dl -py-yq -py-yt -py-yte -py-ytopt -py-ytopt-autotune -py-z3-solver -py-zarr -py-zc-buildout -py-zc-lockfile -py-zfit -py-zfit-interface -py-zfit-physics -py-zict -py-zipfile-deflate64 -py-zipp -py-zipstream-new -py-zope-event -py-zope-interface -py-zstandard -py-zxcvbn -pygmo -pypy -pypy-bootstrap -pystring -pythia6 -pythia8 -python -python-venv -q-e-sirius -qb3 -qca -qcachegrind -qcat -qctool -qd -qemacs -qemu -qgis -qgraf -qhull -qjson -qmcpack -qmd-progress -qnnpack -qorts -qoz -qpdf -qperf -qrmumps -qrupdate -qscintilla -qt -qt-5compat -qt-base -qt-creator -qt-declarative -qt-quick3d -qt-quicktimeline -qt-shadertools -qt-svg -qt-tools -qtgraph -qthreads -qtkeychain -qtltools -qualimap -quandary -quantum-espresso -quartz -qucs -quda -quest -quickjs -quicksilver -quo-vadis -quota -qwt -qwtpolar -r -r-a4 -r-a4base -r-a4classif -r-a4core -r-a4preproc -r-a4reporting -r-abadata -r-abaenrichment -r-abind -r-absseq -r-acde -r-acepack -r-acgh -r-acme -r-ada -r-adabag -r-ade4 -r-adegenet -r-adegraphics -r-adephylo -r-adespatial -r-adgoftest -r-adsplit -r-aer -r-afex -r-affxparser -r-affy -r-affycomp -r-affycompatible -r-affycontam -r-affycoretools -r-affydata -r-affyexpress -r-affyilm -r-affyio -r-affypdnn -r-affyplm -r-affyqcreport -r-affyrnadegradation -r-agdex -r-agilp -r-agimicrorna -r-aims -r-aldex2 -r-allelicimbalance -r-alpine -r-als -r-alsace -r-altcdfenvs -r-amap -r-amelia -r-ampliqueso -r-analysispageserver -r-anaquin -r-aneufinder -r-aneufinderdata -r-animation -r-annaffy -r-annotate -r-annotationdbi -r-annotationfilter -r-annotationforge -r-annotationhub -r-anytime -r-aod -r-ape -r-aplot -r-argparse -r-arm -r-aroma-light -r-arrangements -r-ash -r-askpass -r-asreml -r-assertive -r-assertive-base -r-assertive-code -r-assertive-data -r-assertive-data-uk -r-assertive-data-us -r-assertive-datetimes -r-assertive-files -r-assertive-matrices -r-assertive-models -r-assertive-numbers -r-assertive-properties -r-assertive-reflection -r-assertive-sets -r-assertive-strings -r-assertive-types -r-assertthat -r-automap -r-backports -r-bamsignals -r-base64 -r-base64enc -r-basilisk -r-basilisk-utils -r-bayesm -r-bayesplot -r-bbmisc -r-beachmat -r-beanplot -r-beeswarm -r-bfast -r-bfastspatial -r-bglr -r-bh -r-biasedurn -r-bibtex -r-bigalgebra -r-biglm -r-bigmemory -r-bigmemory-sri -r-bindr -r-bindrcpp -r-bio3d -r-biobase -r-biocfilecache -r-biocgenerics -r-biocinstaller -r-biocio -r-biocmanager -r-biocneighbors -r-biocparallel -r-biocsingular -r-biocstyle -r-biocversion -r-biom-utils -r-biomart -r-biomartr -r-biomformat -r-biostrings -r-biovizbase -r-bit -r-bit64 -r-bitops -r-blavaan -r-blob -r-blockmodeling -r-bluster -r-bmp -r-bookdown -r-boot -r-boruta -r-brew -r-bridgesampling -r-brio -r-brms -r-brobdingnag -r-broom -r-broom-helpers -r-bsgenome -r-bsgenome-hsapiens-ucsc-hg19 -r-bslib -r-bsseq -r-bumphunter -r-bwstest -r-c50 -r-ca -r-cachem -r-cairo -r-callr -r-car -r-caracas -r-cardata -r-caret -r-caretensemble -r-caroline -r-category -r-catools -r-cca -r-ccp -r-cdcfluview -r-cellranger -r-champ -r-champdata -r-checkmate -r-checkpoint -r-chemometrics -r-chipseq -r-chron -r-circlize -r-circstats -r-clarabel -r-class -r-classint -r-cli -r-clipr -r-clisymbols -r-clock -r-clue -r-cluster -r-clustergeneration -r-clusterprofiler -r-cmdstanr -r-cner -r-coda -r-codetools -r-codex -r-coin -r-colorspace -r-colourpicker -r-combinat -r-commonmark -r-complexheatmap -r-compositions -r-compquadform -r-condop -r-conflicted -r-conquer -r-consrank -r-construct -r-convevol -r-copula -r-corhmm -r-corpcor -r-corrplot -r-countrycode -r-covr -r-cowplot -r-cpp11 -r-crayon -r-credentials -r-crosstalk -r-crul -r-ctc -r-cubature -r-cubist -r-curl -r-cvxr -r-dada2 -r-data-table -r-dbi -r-dbplyr -r-debugme -r-decipher -r-delayedarray -r-delayedmatrixstats -r-deldir -r-dendextend -r-densvis -r-deoptim -r-deoptimr -r-deriv -r-desc -r-deseq -r-deseq2 -r-desolve -r-devtools -r-dexseq -r-diagram -r-diagrammer -r-dicekriging -r-dichromat -r-diffobj -r-diffusionmap -r-digest -r-diptest -r-dir-expiry -r-dirichletmultinomial -r-dismo -r-distributional -r-diversitree -r-dmrcate -r-dnacopy -r-do-db -r-doby -r-domc -r-doparallel -r-dorng -r-dose -r-dosnow -r-dotcall64 -r-downlit -r-downloader -r-dplyr -r-dqrng -r-dss -r-dt -r-dtplyr -r-dtw -r-dupradar -r-dygraphs -r-dynamictreecut -r-e1071 -r-earth -r-ebseq -r-ecosolver -r-ecp -r-edger -r-effects -r-elemstatlearn -r-ellipse -r-ellipsis -r-emmeans -r-emmli -r-energy -r-enrichplot -r-ensembldb -r-envstats -r-ergm -r-estimability -r-europepmc -r-evaluate -r-evd -r-exactextractr -r-exomecopy -r-exomedepth -r-experimenthub -r-expint -r-expm -r-factoextra -r-factominer -r-fansi -r-farver -r-fastcluster -r-fastdigest -r-fastdummies -r-fastica -r-fastmap -r-fastmatch -r-fastmatrix -r-fda -r-fdb-infiniummethylation-hg18 -r-fdb-infiniummethylation-hg19 -r-fds -r-ff -r-fftwtools -r-fgsea -r-fields -r-filehash -r-filelock -r-findpython -r-fit-models -r-fitdistrplus -r-flashclust -r-flexclust -r-flexmix -r-fnn -r-fontawesome -r-forcats -r-foreach -r-forecast -r-foreign -r-formatr -r-formula -r-fpc -r-fpcompare -r-fracdiff -r-fs -r-functional -r-furrr -r-futile-logger -r-futile-options -r-future -r-future-apply -r-gamlss -r-gamlss-data -r-gamlss-dist -r-gamm4 -r-gargle -r-gbm -r-gbrd -r-gcrma -r-gdalutilities -r-gdalutils -r-gdata -r-gdsfmt -r-geiger -r-genefilter -r-genelendatabase -r-genemeta -r-geneplotter -r-generics -r-genetics -r-genie3 -r-genomeinfodb -r-genomeinfodbdata -r-genomicalignments -r-genomicfeatures -r-genomicranges -r-gensa -r-geojsonsf -r-geometries -r-geometry -r-geomorph -r-geonames -r-geoquery -r-geor -r-geosphere -r-gert -r-getopt -r-getoptlong -r-ggally -r-ggbeeswarm -r-ggbio -r-ggdendro -r-ggforce -r-ggfun -r-ggjoy -r-ggmap -r-ggnewscale -r-ggplot2 -r-ggplotify -r-ggpubr -r-ggraph -r-ggrastr -r-ggrepel -r-ggridges -r-ggsci -r-ggsignif -r-ggstats -r-ggthemes -r-ggtree -r-ggvis -r-gh -r-gistr -r-git2r -r-gitcreds -r-glimma -r-glmgampoi -r-glmnet -r-globaloptions -r-globals -r-globaltest -r-glue -r-gmodels -r-gmp -r-go-db -r-goftest -r-gofuncr -r-googleauthr -r-googledrive -r-googlesheets4 -r-googlevis -r-goplot -r-gosemsim -r-goseq -r-gostats -r-gower -r-gparotation -r-gplots -r-graph -r-graphlayouts -r-grbase -r-gridbase -r-gridextra -r-gridgraphics -r-gsa -r-gsalib -r-gseabase -r-gsl -r-gsodr -r-gson -r-gss -r-gstat -r-gsubfn -r-gtable -r-gtools -r-gtrellis -r-gviz -r-gwmodel -r-hardhat -r-haven -r-hdf5array -r-hdf5r -r-hdo-db -r-hdrcde -r-here -r-hexbin -r-hh -r-highr -r-hmisc -r-hms -r-hoardr -r-htmltable -r-htmltools -r-htmlwidgets -r-httpcode -r-httpuv -r-httr -r-httr2 -r-humaniformat -r-hwriter -r-hydrogof -r-hydrotsm -r-hypergraph -r-ica -r-ids -r-ieugwasr -r-igraph -r-illumina450probevariants-db -r-illuminahumanmethylation450kanno-ilmn12-hg19 -r-illuminahumanmethylation450kmanifest -r-illuminahumanmethylationepicanno-ilm10b4-hg19 -r-illuminahumanmethylationepicmanifest -r-illuminaio -r-imager -r-impute -r-influencer -r-ini -r-inline -r-insight -r-interactivedisplaybase -r-interp -r-intervals -r-inum -r-ipred -r-iranges -r-irdisplay -r-irkernel -r-irlba -r-isdparser -r-islr -r-iso -r-isoband -r-isva -r-iterators -r-iterpc -r-jade -r-janitor -r-jaspar2018 -r-jomo -r-jpeg -r-jquerylib -r-jsonify -r-jsonlite -r-kableextra -r-kegggraph -r-keggrest -r-kernlab -r-kernsmooth -r-kknn -r-klar -r-knitr -r-kpmt -r-ks -r-ksamples -r-labeling -r-labelled -r-lambda-r -r-laplacesdemon -r-lars -r-later -r-lattice -r-latticeextra -r-lava -r-lavaan -r-lazyeval -r-ldheatmap -r-leafem -r-leaflet -r-leaflet-providers -r-leafpop -r-leaps -r-learnbayes -r-leiden -r-lfe -r-lhs -r-libcoin -r-libpressio -r-lidr -r-lifecycle -r-limma -r-limsolve -r-linprog -r-list -r-listenv -r-lme4 -r-lmertest -r-lmtest -r-lobstr -r-locfit -r-log4r -r-loo -r-lpsolve -r-lpsolveapi -r-lsei -r-lubridate -r-lumi -r-lwgeom -r-magic -r-magick -r-magrittr -r-makecdfenv -r-maldiquant -r-manipulatewidget -r-mapplots -r-mapproj -r-maps -r-maptools -r-mapview -r-markdown -r-marray -r-mass -r-mathjaxr -r-matlab -r-matr -r-matrix -r-matrixgenerics -r-matrixmodels -r-matrixstats -r-mclogit -r-mclust -r-mcmc -r-mcmcglmm -r-mcmcpack -r-mco -r-mda -r-memisc -r-memoise -r-memuse -r-mendelianrandomization -r-mergemaid -r-meta -r-metadat -r-metafor -r-metap -r-metapod -r-methylumi -r-mgcv -r-mgraster -r-mice -r-microbenchmark -r-mime -r-minfi -r-miniui -r-minqa -r-misc3d -r-missmethyl -r-mitml -r-mitools -r-mixtools -r-mlbench -r-mlinterfaces -r-mlr -r-mlrmbo -r-mmwrweek -r-mnormt -r-mockery -r-modelmetrics -r-modelr -r-modeltools -r-mpm -r-mr-raps -r-mrinstruments -r-mrmix -r-mrpresso -r-mscoreutils -r-msnbase -r-multcomp -r-multcompview -r-multicool -r-multitaper -r-multtest -r-munsell -r-mutoss -r-mvtnorm -r-mzid -r-mzr -r-nada -r-nanotime -r-ncbit -r-ncdf4 -r-network -r-networkd3 -r-neuralnet -r-nfactors -r-nimble -r-nleqslv -r-nlme -r-nloptr -r-nmf -r-nmof -r-nnet -r-nnls -r-nonnest2 -r-nor1mix -r-nortest -r-np -r-npsurv -r-numderiv -r-oligoclasses -r-openssl -r-openxlsx -r-optimparallel -r-optimx -r-optparse -r-ordinal -r-org-hs-eg-db -r-organismdbi -r-osqp -r-packrat -r-pacman -r-paleotree -r-pamr -r-pan -r-parallelly -r-parallelmap -r-paramhelpers -r-party -r-partykit -r-patchwork -r-pathview -r-pbapply -r-pbdzmq -r-pbivnorm -r-pbkrtest -r-pcamethods -r-pcapp -r-pegas -r-permute -r-pfam-db -r-phangorn -r-phantompeakqualtools -r-pheatmap -r-philentropy -r-phylobase -r-phyloseq -r-phylostratr -r-phytools -r-picante -r-piggyback -r-pillar -r-pinfsc50 -r-pixmap -r-pkgbuild -r-pkgcache -r-pkgconfig -r-pkgdepends -r-pkgdown -r-pkgload -r-pkgmaker -r-pki -r-pl94171 -r-plogr -r-plot3d -r-plotly -r-plotmo -r-plotrix -r-pls -r-plyr -r-pmcmr -r-pmcmrplus -r-png -r-polspline -r-polyclip -r-polynom -r-pool -r-poorman -r-popgenome -r-popvar -r-posterior -r-powerlaw -r-prabclus -r-pracma -r-praise -r-preprocesscore -r-prettydoc -r-prettyunits -r-proc -r-processx -r-prodlim -r-profvis -r-progress -r-progressr -r-proj -r-proj4 -r-projpred -r-promises -r-protgenerics -r-proto -r-proxy -r-pryr -r-ps -r-pscbs -r-pspline -r-psych -r-ptw -r-purrr -r-pvclust -r-qqconf -r-qs -r-qtl -r-quadprog -r-quantmod -r-quantreg -r-quantro -r-questionr -r-quickjsr -r-quickplot -r-qvalue -r-r-cache -r-r-methodss3 -r-r-oo -r-r-utils -r-r6 -r-radialmr -r-ragg -r-rainbow -r-randomfields -r-randomfieldsutils -r-randomforest -r-randomglm -r-ranger -r-rann -r-rapidjsonr -r-rapiserialize -r-rappdirs -r-raster -r-rbgl -r-rbibutils -r-rbokeh -r-rcmdcheck -r-rcolorbrewer -r-rcpp -r-rcppannoy -r-rcpparmadillo -r-rcppblaze -r-rcppcctz -r-rcppcnpy -r-rcppdate -r-rcppde -r-rcppeigen -r-rcppensmallen -r-rcppgsl -r-rcpphnsw -r-rcppml -r-rcppparallel -r-rcppprogress -r-rcpproll -r-rcpptoml -r-rcppziggurat -r-rcurl -r-rda -r-rdpack -r-readbitmap -r-readr -r-readxl -r-reams -r-recipes -r-reformulas -r-registry -r-rematch -r-rematch2 -r-remotes -r-renv -r-reordercluster -r-reportingtools -r-repr -r-reprex -r-reproducible -r-require -r-reshape -r-reshape2 -r-restfulr -r-reticulate -r-rex -r-rfast -r-rferns -r-rgdal -r-rgenoud -r-rgeos -r-rgexf -r-rgl -r-rgooglemaps -r-rgraphviz -r-rhdf5 -r-rhdf5filters -r-rhdf5lib -r-rhmmer -r-rhtslib -r-rinside -r-rio -r-rjags -r-rjava -r-rjson -r-rjsonio -r-rlang -r-rlas -r-rle -r-rlist -r-rmariadb -r-rmarkdown -r-rminer -r-rmpfr -r-rmpi -r-rms -r-rmutil -r-rmysql -r-rnaseqmap -r-rncl -r-rnexml -r-rngtools -r-rnoaa -r-robust -r-robustbase -r-roc -r-rocr -r-rodbc -r-rook -r-rots -r-roxygen2 -r-rpart -r-rpart-plot -r-rpmm -r-rpostgres -r-rpostgresql -r-rprojroot -r-rpsychi -r-rrblup -r-rrcov -r-rrpp -r-rsamtools -r-rsconnect -r-rsnns -r-rsolnp -r-rspectra -r-rsqlite -r-rstan -r-rstantools -r-rstatix -r-rstudioapi -r-rsubread -r-rsvd -r-rtracklayer -r-rtsne -r-runit -r-runjags -r-ruv -r-rvcheck -r-rversions -r-rvest -r-rviennacl -r-rzmq -r-s2 -r-s4vectors -r-samr -r-sandwich -r-sass -r-satellite -r-scaledmatrix -r-scales -r-scater -r-scattermore -r-scatterpie -r-scatterplot3d -r-scdblfinder -r-scran -r-scrime -r-scs -r-sctransform -r-scuttle -r-sdmtools -r-segmented -r-selectr -r-seqinr -r-seqlogo -r-servr -r-sessioninfo -r-sets -r-seurat -r-seuratobject -r-sf -r-sfheaders -r-sfsmisc -r-sftime -r-shadowtext -r-shape -r-shiny -r-shinydashboard -r-shinyfiles -r-shinyjs -r-shinystan -r-shinythemes -r-shortread -r-siggenes -r-signac -r-simpleaffy -r-singlecellexperiment -r-sitmo -r-sm -r-smoof -r-sn -r-snakecase -r-snow -r-snowfall -r-snprelate -r-snpstats -r-som -r-somaticsignatures -r-sourcetools -r-sp -r-spacetime -r-spades -r-spades-addins -r-spades-core -r-spades-tools -r-spam -r-sparsem -r-sparsematrixstats -r-spatial -r-spatialeco -r-spatialpack -r-spatialreg -r-spatstat -r-spatstat-core -r-spatstat-data -r-spatstat-explore -r-spatstat-geom -r-spatstat-linnet -r-spatstat-model -r-spatstat-random -r-spatstat-sparse -r-spatstat-univar -r-spatstat-utils -r-spdata -r-spdep -r-speedglm -r-spem -r-splancs -r-splines2 -r-splitstackshape -r-sqldf -r-squarem -r-squash -r-sseq -r-stabledist -r-stanheaders -r-stargazer -r-stars -r-statmod -r-statnet-common -r-stringfish -r-stringi -r-stringr -r-strucchange -r-strucchangercpp -r-styler -r-subplex -r-summarizedexperiment -r-suppdists -r-survey -r-survival -r-sva -r-svglite -r-sys -r-systemfonts -r-tarifx -r-taxizedb -r-tclust -r-teachingdemos -r-tensor -r-tensora -r-terra -r-tester -r-testit -r-testthat -r-textshaping -r-tfbstools -r-tfisher -r-tfmpvalue -r-th-data -r-threejs -r-tibble -r-tictoc -r-tidycensus -r-tidygraph -r-tidyr -r-tidyselect -r-tidytree -r-tidyverse -r-tiff -r-tigris -r-timechange -r-timedate -r-tinytex -r-tinytiger -r-tmixclust -r-tmvnsim -r-topgo -r-treeio -r-triebeard -r-trimcluster -r-truncdist -r-truncnorm -r-trust -r-tseries -r-tsne -r-ttr -r-tweenr -r-twosamplemr -r-txdb-hsapiens-ucsc-hg18-knowngene -r-txdb-hsapiens-ucsc-hg19-knowngene -r-tximeta -r-tximport -r-tximportdata -r-tzdb -r-ucminf -r-udunits2 -r-units -r-upsetr -r-urca -r-urlchecker -r-urltools -r-usethis -r-utf8 -r-uuid -r-uwot -r-v8 -r-variantannotation -r-varselrf -r-vcd -r-vcfr -r-vctrs -r-vegan -r-vfs -r-vgam -r-vioplot -r-vipor -r-viridis -r-viridislite -r-visnetwork -r-vroom -r-vsn -r-waldo -r-watermelon -r-webshot -r-wgcna -r-whisker -r-withr -r-wk -r-writexl -r-wru -r-xde -r-xfun -r-xgboost -r-xlconnect -r-xlconnectjars -r-xlsx -r-xlsxjars -r-xmapbridge -r-xml -r-xml2 -r-xnomial -r-xopen -r-xtable -r-xts -r-xvector -r-yaimpute -r-yaml -r-yapsa -r-yaqcaffy -r-yarn -r-yulab-utils -r-zcompositions -r-zeallot -r-zip -r-zlibbioc -r-zoo -r3d -rabbitmq -rabbitmq-c -racket -racon -raft -ragel -raja -raja-perf -ramulator -randfold -random123 -randrproto -range-v3 -rankstr -rapidjson -raptor2 -rarpd -rasdaemon -rasqal -ratel -ravel -raxml -raxml-ng -ray -rayleigh -raylib -rccl -rccl-tests -rclone -rdc -rdkit -rdma-core -rdp-classifier -rdptools -re2 -re2c -readfq -readline -recola -recola-sm -recon -recorder -recordproto -redis -redis-ai -redis-plus-plus -reditools -redland -redland-bindings -redset -redundans -reframe -regale -regcm -regenie -regtools -relax -relion -remhos -rempi -rename -rendercheck -renderproto -repeatafterme -repeatmasker -repeatmodeler -repeatscout -reprimand -resolve -resourceproto -restic -revbayes -revocap-coupler -revocap-refiner -rgb -rhash -rinetd -ripgrep -riscv-gnu-toolchain -rivet -rkcommon -rkt-base -rkt-cext-lib -rkt-compiler-lib -rkt-dynext-lib -rkt-racket-lib -rkt-rackunit-lib -rkt-scheme-lib -rkt-testing-util-lib -rkt-zo-lib -rlwrap -rmats -rmgdft -rmlab -rna-seqc -rnaquast -rnaz -rng-tools -rngstreams -rnpletal -roary -rocal -rocalution -rocblas -rocdecode -rocfft -rocjpeg -rocketmq -rocksdb -rockstar -rocm-bandwidth-test -rocm-clang-ocl -rocm-cmake -rocm-core -rocm-dbgapi -rocm-debug-agent -rocm-device-libs -rocm-examples -rocm-gdb -rocm-opencl -rocm-openmp-extras -rocm-smi-lib -rocm-tensile -rocm-validation-suite -rocminfo -rocmlir -rocprim -rocprofiler-compute -rocprofiler-dev -rocprofiler-register -rocprofiler-sdk -rocprofiler-systems -rocpydecode -rocrand -rocshmem -rocsolver -rocsparse -rocthrust -roctracer-dev -roctracer-dev-api -rocwmma -rodinia -roms -root -rosco -rose -ross -routinator -routino -rpcsvc-proto -rpm -rpp -rr -rrdtool -rsbench -rsem -rsl -rstart -rstudio -rsync -rsyslog -rt-tests -rtags -rtax -rtmpdump -ruby -ruby-asciidoctor -ruby-charlock-holmes -ruby-erubis -ruby-gist -ruby-gnuplot -ruby-hpricot -ruby-mustache -ruby-narray -ruby-rake -ruby-rdiscount -ruby-ronn -ruby-rubyinline -ruby-svn2git -ruby-terminal-table -ruby-thor -ruby-tmuxinator -ruby-unicode-display-width -ruby-xdg -ruby-zentest -runc -rust -rust-bindgen -rust-bootstrap -rust-clap -s4pred -sabre -saga-gis -sailfish -salmon -salmon-tddft -salome-configuration -salome-med -salome-medcoupling -salt -sam2p -sambamba -samblaster -samrai -samtools -samurai -sandbox -sandia-micro-benchmarks -sartre -sarus -satsuma2 -savanna -saws -sbcl -sbcl-bootstrap -sblim-sfcc -sbml -sbp -sbt -scafacos -scala -scalasca -scale -scallop -scalpel -scan-for-matches -scantailor -scc -sccache -scine-core -scine-database -scine-molassembler -scine-qcmaquis -scine-readuct -scine-serenity -scine-sparrow -scine-utilities -scine-xtb -scipoptsuite -scitokens-cpp -scnlib -scons -scorec-core -scorecard -scorep -scorpio -scotch -scr -screen -scripts -scrnsaverproto -scrot -scs -sctk -sdl2 -sdl2-image -sdl2-ttf -sdsl-lite -seacas -seacr -seal -sed -sedacs -seissol -selalib -semiprof -sendme -sensei -sentencepiece -sentieon-genomics -sepp -seq-gen -seqan -seqfu -seqkit -seqprep -seqtk -serenity -serenity-libint -serf -serialbox -sessreg -setserial -setxkbmap -sfcgal -sfcio -sga -sgpp -shadow -shamrock -shapeit -shapeit4 -shapelib -shapemapper -shared-mime-info -shark -shc -sheenbidi -shellcheck -shengbte -sherpa -shiro -shocklibs -shoremap -shortstack -showfont -shred -shtools -shuffile -sicer2 -sickle -sicm -siesta -sigcpp -sigio -signalp -signify -silo -simde -simdjson -simgrid -simmetrix-simmodsuite -simple-dftd3 -simplemoc -simsipm -simul -simulationio -sina -singular-factory -singularity-eos -singularity-hpc -singularityce -sio -sionlib -sirius -sjpeg -skilion-onedrive -skopeo -sl -slang -slate -sleef -slepc -slf4j -slirp4netns -sloccount -slurm -slurm-drmaa -smalt -smartdenovo -smartmontools -smee-client -smof -smproxy -snakemake -snap -snap-berkeley -snap-korf -snappy -snbone -sniffles -snpeff -snphylo -snptest -soapdenovo-trans -soapdenovo2 -socat -soci -sofa-c -sollya -solr -somatic-sniper -sombrero -sonlib -sopt -soqt -sortmerna -sos -sosflow -source-highlight -sourmash -sowing -sox -sp -spaceranger -spack -spack-configs-dav-sdk -spack-configs-facilities -spack-configs-tools-sdk -spades -span-lite -spark -sparse -sparsehash -sparskit -sparta -spath -spatialdata -spatter -spdk -spdlog -specfem3d-globe -spectra -spectre -spectrum-mpi -speex -speexdsp -sperr -spfft -spglib -sph2pipe -spherepack -sphexa -spindle -spiner -spiral-package-fftx -spiral-package-hcol -spiral-package-jit -spiral-package-mpi -spiral-package-simt -spiral-software -spla -spm -spot -sprng -sqlcipher -sqlite -sqlite-jdbc -sqlitebrowser -sqoop -squashfs -squashfs-mount -squashfuse -squid -sra-tools -sratoolkit -srcml -srcml-identifier-getter-tool -srilm -srm-ifce -sse2neon -sshfs -sshpass -ssht -ssmtp -sspace-longread -sspace-standard -sst-core -sst-dumpi -sst-elements -sst-macro -sst-transports -stacks -staden-io-lib -star -star-ccm-plus -starlight -starpu -startup-notification -stat -stata -stc -stdexec -steps -stinger -storm -stow -strace -stream -stress -stress-ng -stressapptest -string-view-lite -stringtie -stripack -structure -strumpack -su2 -sublime-text -subread -subversion -suite-sparse -sumaclust -sumo -sundials -suntans -superchic -superlu -superlu-dist -superlu-mt -supermagic -surfer -survey -sw4 -sw4lite -swan -swap-assembler -swarm -swfft -swftools -swiftsim -swig -swipl -symengine -symlinks -sympack -sympol -sys-sage -sysbench -syscalc -sysfsutils -sysget -sysstat -systemc -systemd -systemtap -sz -sz-cpp -sz3 -szauto -szx -t8code -tabix -tajo -talass -talloc -tamaas -tandem -tangram -tantan -tar -targetp -task -taskd -taskflow -tasmanian -tassel -tau -tauola -tb-lmto -tbl2asn -tblite -tcl -tcl-bwidget -tcl-itcl -tcl-tcllib -tcl-tclxml -tcl-togl -tclap -tcoffee -tcpdump -tcptrace -tcsh -tdengine -tealeaf -tecio -teckit -tecplot -telegraf -telocal -tempestextremes -tempestremap -templight -templight-tools -tempo -tengine -tensorflow-serving-client -tensorpipe -termcap -terminalimageviewer -tesseract -test-drive -tests-sos -testu01 -tetgen -tethex -tetranscripts -texi2html -texinfo -texlive -texstudio -textparser -tfel -the-platinum-searcher -the-silver-searcher -theia-ide -thepeg -thermo4pfm -thesis -thornado-mini -thrift -thrust -thunar -thunar-volman -tidy-html5 -tig -tiled-mm -time -timedatex -timemory -timew -tini -tinker -tiny-tensor-compiler -tinycbor -tinygltf -tinyobjloader -tinyxml -tinyxml2 -tioga -tippecanoe -tiptop -tiramisu -tix -tixi -tk -tkrzw -tl-expected -tldd -tmalign -tmhmm -tmscore -tmux -tnftp -tomcat -toml-f -toml11 -tomlplusplus -topaz -topaz-3dem -topcom -tophat -torch-scatter -torque -totalview -toybox -tpm2-tss -tracer -tracy -tracy-client -tramonto -transabyss -transdecoder -transferbench -transposome -transrate -transset -trapproto -tree -tree-sitter -treelite -treesub -trexio -trf -triangle -trident -trilinos -trilinos-catalyst-ioss-adapter -trimal -trimgalore -trimmomatic -trinity -trinotate -trivy -trnascan-se -trompeloeil -truchas -tskit -tsne-cuda -tulip -tumbler -turbine -turbomole -turnserver -twm -tycho2 -typescript -typhon -typhonio -typos -typst -ucc -uchardet -ucsc-bedclip -ucsc-bedgraphtobigwig -ucx -udunits -ufo-core -ufo-filters -ufs-utils -ufs-weather-model -uftrace -umap -umesimd -umoci -umpire -unblur -uncrustify -unibilium -unifdef -unifyfs -unigen -unison -units -unittest-cpp -universal -universal-ctags -unixodbc -unqlite -unrar -unuran -unzip -upcxx -upp -uqtk -uriparser -usalign -usbutils -usearch -userspace-rcu -ut -utf8cpp -utf8proc -uthash -util-linux -util-linux-uuid -util-macros -uvw -uwtools -vacuumms -vala -valgrind -valijson -vampirtrace -vapor -vardictjava -variorum -varnish-cache -varscan -vasp -vbfnlo -vbz-compression -vc -vcftools -vcsh -vde -vdt -veccore -vecgeom -veclibfort -vecmem -vectorclass-version2 -vegas2 -veloc -velvet -velvetoptimiser -vep -vep-cache -verdict -verible -verilator -verrou -vesta -vfkit -vgm -videoproto -viennarna -viewres -vifi -vigra -vim -vir-simd -virtualgl -visit -visit-cgns -visit-ffp -visit-mfem -visit-silo -visit-unv -viskores -vite -vizglow -vmatch -vmc -vmd -volk -voms -voropp -votca -vpfft -vpic -vsearch -vsftpd -vt -vtable-dumper -vtk -vtk-h -vtk-m -vvtest -w3emc -w3m -w3nco -wannier90 -warpx -wasi-sdk-prebuilt -watch -wayland -wayland-protocols -wcs -wcslib -webbench -weechat -weighttp -wget -wgl -wgrib2 -wgsim -which -whip -whizard -wi4mpi -win-file -win-gpg -win-sdk -win-wdk -winbison -windowswmproto -wiredtiger -wireshark -wise2 -wonton -wordnet -wps -wrf -wrf-io -wrk -wsmancli -wt -wtdbg2 -wxparaver -wxpropgrid -wxwidgets -x11perf -x264 -xabclib -xalan-c -xapian-core -xauth -xbacklight -xbae -xbiff -xbitmaps -xbraid -xcalc -xcb-demo -xcb-proto -xcb-util -xcb-util-cursor -xcb-util-errors -xcb-util-image -xcb-util-keysyms -xcb-util-renderutil -xcb-util-wm -xcb-util-xrm -xcdf -xcfun -xclip -xclipboard -xclock -xcmiscproto -xcmsdb -xcompmgr -xconsole -xcrysden -xcursor-themes -xcursorgen -xdbedizzy -xdelta -xditview -xdm -xdmf3 -xdotool -xdpyinfo -xdriinfo -xedit -xeniumranger -xerces-c -xeus -xev -xextproto -xeyes -xf86bigfontproto -xf86dga -xf86dgaproto -xf86driproto -xf86miscproto -xf86rushproto -xf86vidmodeproto -xfce4-appfinder -xfce4-core -xfce4-panel -xfce4-session -xfce4-settings -xfconf -xfd -xfdesktop -xfindproxy -xfontsel -xforms -xfs -xfsdump -xfsinfo -xfsprogs -xfwm4 -xfwp -xgamma -xgboost -xgc -xhmm -xhost -xineramaproto -xinit -xinput -xios -xkbcomp -xkbdata -xkbevd -xkbprint -xkbutils -xkeyboard-config -xkill -xl -xload -xlogo -xlsatoms -xlsclients -xlsfonts -xmag -xman -xmessage -xmh -xmlf90 -xmlrpc-c -xmlto -xmodmap -xmore -xnedit -xnnpack -xolotl -xorg-cf-files -xorg-docs -xorg-gtest -xorg-server -xorg-sgml-doctools -xorgproto -xphelloworld -xplor-nih -xplsprinters -xpmem -xpr -xprehashprinterlist -xprop -xproperty -xproto -xproxymanagementprotocol -xqilla -xrandr -xrdb -xrdcl-record -xrefresh -xrootd -xrx -xsbench -xscope -xsd -xsdk -xset -xsetmode -xsetpointer -xsetroot -xsimd -xsm -xstdcmap -xtb -xtcdata -xtensor -xtensor-blas -xtensor-python -xterm -xtl -xtrans -xtrap -xts -xv -xvidtune -xvinfo -xwd -xwidgets -xwininfo -xwud -xxd-standalone -xxdiff -xxhash -xyce -xz -yade -yafyaml -yajl -yaksa -yambo -yaml-cpp -yara -yarn -yasm -ycruncher -ycsb -yoda -yorick -yosys -yq -yyjson -z-checker -z3 -zabbix -zerosum -zfp -zfs -ziatest -zig -zip -zipkin -zlib -zlib-ng -zoltan -zookeeper -zookeeper-benchmark -zopfli -zoxide -zpares -zpp -zsh -zstd -zstr -zuo -zycore-c -zydis -zziplib -==> 8611 packages +3dtk lua-mpack py-freetype-py r-ada +3proxy lua-sol2 py-freezegun r-adabag +4ti2 lucene py-frozendict r-ade4 +7zip luit py-frozenlist r-adegenet +abacus lulesh py-fs r-adegraphics +abduco lumpy-sv py-fsspec r-adephylo +abi-compliance-checker lustre py-fsspec-xrootd r-adespatial +abi-dumper lvarray py-ftfy r-adgoftest +abinit lvm2 py-ftputil r-adsplit +abseil-cpp lwgrp py-funcy r-aer +abyss lwm2 py-furo r-afex +accfft lwtnn py-fury r-affxparser +acct lxc py-fusepy r-affy +accumulo lynx py-future r-affycomp +ace lz4 py-fuzzywuzzy r-affycompatible +acfl lzma py-fypp r-affycontam +ack lzo py-galaxy-containers r-affycoretools +acl lzop py-galaxy-job-metrics r-affydata +acpica-tools m4 py-galaxy-objectstore r-affyexpress +acpid macfuse py-galaxy-sequence-utils r-affyilm +activeharmony macsio py-galaxy-tool-util r-affyio +activemq mad-numdiff py-galaxy-util r-affypdnn +acts madgraph5amc py-galaxy2cwl r-affyplm +acts-algebra-plugins madis py-gast r-affyqcreport +acts-dd4hep madx py-gcovr r-affyrnadegradation +actsvg maeparser py-gcs-oauth2-boto-plugin r-agdex +additivefoam mafft py-gcsfs r-agilp +addrwatch magic-enum py-gdc-client r-agimicrorna +adept magics py-gdown r-aims +adept-utils magma py-gee-asset-manager r-aldex2 +adf mahout py-geeadd r-allelicimbalance +adiak makedepend py-geemap r-alpine +adios makedepf90 py-geeup r-als +adios-catalyst maker py-gemmforge r-alsace +adios2 mallocmc py-gemmi r-altcdfenvs +adlbx maloc py-genders r-amap +admixtools malt py-geneimpacts r-amelia +adms mamba py-generateds r-ampliqueso +adol-c man-db py-genshi r-analysispageserver +advancecomp mapl py-gensim r-anaquin +adwaita-icon-theme mapnik py-geoalchemy2 r-aneufinder +aegean mapserver py-geocoder r-aneufinderdata +aeskeyfind mapsplice2 py-geocube r-animation +aespipe maq py-geographiclib r-annaffy +affinity maqao py-geojson r-annotate +agile mariadb py-geomdl r-annotationdbi +agrep mariadb-c-client py-geopandas r-annotationfilter +aida mark py-geoplot r-annotationforge +akantu masa py-geopmdpy r-annotationhub +alan mash py-geopmpy r-anytime +albany masurca py-geopy r-aod +albert mathematica py-geoviews r-ape +alembic mathic py-gest-api r-aplot +alglib mathicgb py-gevent r-argparse +all-library matio py-gf256 r-arm +allpaths-lg matlab py-gfal2-python r-aroma-light +alluxio matrix-switch py-gffutils r-arrangements +alpaka maven py-ghp-import r-ash +alpgen maverick py-gidgethub r-askpass +alps mawk py-gidgetlab r-asreml +alpscore mbdyn py-gimmik r-assertive +alquimia mbedtls py-gin-config r-assertive-base +alsa-lib mc py-git-review r-assertive-code +alsa-plugins mcl py-gitdb r-assertive-data +aluminum mcpp py-gitpython r-assertive-data-uk +amber mct py-glean-parser r-assertive-data-us +ambertools mctc-lib py-glean-sdk r-assertive-datetimes +amd-aocl mcutils py-glmnet r-assertive-files +amdblis mdb py-glmnet-python r-assertive-matrices +amdfftw mdspan py-glmsingle r-assertive-models +amdlibflame mdsplus py-glob2 r-assertive-numbers +amdlibm mdtest py-globus-cli r-assertive-properties +amdscalapack med py-globus-sdk r-assertive-reflection +amdsmi medipack py-gluoncv r-assertive-sets +amduprof meep py-glymur r-assertive-strings +amg2013 mefit py-gmsh r-assertive-types +amg2023 megadock py-gmsh-interop r-assertthat +amg4psblas megahit py-gmxapi r-automap +amgx melissa py-gnuplot r-backports +aml memaxes py-goatools r-bamsignals +amp memcached py-gooey r-base64 +ampl meme py-google r-base64enc +ampliconnoise memkind py-google-api-core r-basilisk +ampt memtailor py-google-api-python-client r-basilisk-utils +amqp-cpp memtester py-google-apitools r-bayesfactor +amr-wind mepo py-google-auth r-bayesm +amrex meraculous py-google-auth-httplib2 r-bayesplot +amrfinder mercurial py-google-auth-oauthlib r-bbmisc +amrvis mercury py-google-cloud-appengine-logging r-beachmat +ams mergiraf py-google-cloud-audit-log r-beanplot +anaconda3 mesa py-google-cloud-batch r-beeswarm +andi mesa-demos py-google-cloud-bigquery r-bench +angsd mesa-glu py-google-cloud-core r-bfast +anicalculator meshkit py-google-cloud-logging r-bfastspatial +ant meshlab py-google-cloud-storage r-bglr +antimony meshoptimizer py-google-crc32c r-bh +antlr meshtool py-google-pasta r-biasedurn +antlr4-complete meson py-google-reauth r-bibtex +antlr4-cpp-runtime mesquite py-google-resumable-media r-bigalgebra +ants met py-googleapis-common-protos r-biglm +any2fasta metabat py-googledrivedownloader r-bigmemory +aocc metacarpa py-gosam r-bigmemory-sri +aocl-compression metaeuk py-gpaw r-bindr +aocl-crypto metal py-gpaw-data r-bindrcpp +aocl-da metall py-gpustat r-bio3d +aocl-dlp metaphysicl py-gputil r-biobase +aocl-libmem methyldackel py-gpy r-biocfilecache +aocl-sparse metis py-gpyopt r-biocgenerics +aocl-utils metkit py-gpytorch r-biocinstaller +aoflagger metplus py-gql r-biocio +aom mfem py-gradio r-biocmanager +aotriton mg py-gradio-client r-biocneighbors +aotriton-llvm mgard py-grandalf r-biocparallel +apache-tvm mgardx py-graphcast r-biocsingular +apachetop mgcfd-op2 py-grapheme r-biocstyle +ape mgis py-graphene r-biocversion +aperture-photometry microbiomeutil py-graphlib-backport r-biom-utils +apex microsocks py-graphql-core r-biomart +apfel migraphx py-graphql-relay r-biomartr +apfelxx migrate py-graphql-ws r-biomformat +apktool migrate-package-prs py-graphviz r-biostrings +apple-clang mii py-gravity r-biovizbase +apple-gl mille py-grayskull r-bit +apple-glu millepede py-greenlet r-bit64 +apple-libunwind mimalloc py-grequests r-bitops +apple-libuuid mimic-mcl py-griddataformats r-blavaan +applewmproto minc-toolkit py-griffe r-blob +appres minced py-gromacswrapper r-blockmodeling +apptainer mindthegap py-grpc-google-iam-v1 r-bluster +apr miniamr py-grpcio r-bmp +apr-util miniapp-ascent py-grpcio-status r-bookdown +aqlprofile miniasm py-grpcio-tools r-boot +aragorn miniconda3 py-gsd r-boruta +arbor minife py-gssapi r-brew +arborx miniforge3 py-gsutil r-bridgesampling +arc minigan py-gtdbtk r-brio +archer minighost py-gunicorn r-brms +aretomo minigmg py-gxformat2 r-brobdingnag +aretomo2 minimap2 py-gym r-broom +aretomo3 minimd py-h11 r-broom-helpers +argobots minio py-h2 r-bsgenome +argon2 miniocli py-h3 r-bsgenome-hsapiens-ucsc-hg19 +argp-standalone miniqmc py-h5glance r-bslib +args minisign py-h5io r-bsseq +argtable minismac2d py-h5netcdf r-bumphunter +aria2 minitri py-h5py r-bwstest +arkouda minivite py-h5sh r-c50 +arm-forge minixyce py-hacking r-ca +arm-kernels minizip py-hail r-cachem +armadillo minuit py-handy-archives r-cairo +armcimpi miopen-hip py-hatch r-callr +armcomputelibrary mira py-hatch-cython r-car +armpl-gcc miranda py-hatch-fancy-pypi-readme r-caracas +arpack-ng mirdeep2 py-hatch-jupyter-builder r-cardata +arrayfire mitofates py-hatch-nodejs-version r-caret +arrow mitos py-hatch-requirements-txt r-caretensemble +asagi mivisionx py-hatch-vcs r-caroline +ascent mixcr py-hatchet r-category +asciidoc mkfontdir py-hatchling r-catools +asciidoc-py3 mkfontscale py-hclust2 r-cca +asdcplib mlc-llm py-hdbscan r-ccp +asdf-cxx mlhka py-hdf5plugin r-cdcfluview +asio mlocate py-hdfs r-cellranger +aspa mlpack py-healpix r-champ +aspcud mlperf-deepcam py-healpy r-champdata +aspect mlst py-heapdict r-checkmate +aspell mmg py-heat r-checkpoint +aspell6-de mmseqs2 py-heavyball r-chemometrics +aspell6-en mmv py-hep-ml r-chipseq +aspell6-es moab py-hepdata-converter r-chron +aspera-cli mochi-margo py-hepdata-lib r-circlize +assimp mochi-thallium py-hepdata-validator r-circstats +astra model-angelo py-hepstats r-clarabel +astral model-traits py-hepunits r-class +astyle modeltest-ng py-heudiconv r-classint +at-spi2-atk modern-wheel py-hf-transfer r-cli +at-spi2-core modylas py-hf-xet r-clipr +atf mojitos py-hieroglyph r-clisymbols +atfl mokutil py-highspy r-clock +athena molcas py-hiredis r-clue +atk mold py-hist r-cluster +atlas molden py-histbook r-clustergeneration +atom-dft molgw py-histogrammar r-clusterprofiler +atompaw mongo-c-driver py-histoprint r-cmdstanr +atop mongo-cxx-driver py-hjson r-cner +attr mongodb-async-driver py-hmmlearn r-coda +audacious mono py-holland-backup r-codetools +audacity montage py-holoviews r-codex +audit-userspace moosefs py-horovod r-coin +augustus moreutils py-hpack r-colorspace +authd mosesdecoder py-hpbandster r-colourpicker +authselect mosh py-hpccm r-combinat +autoconf mosquitto py-hsluv r-commonmark +autoconf-archive mothur py-hstspreload r-complexheatmap +autodiff motif py-htgettoken r-compositions +autodock-gpu motioncor2 py-html2text r-compquadform +autodock-vina mount-point-attributes py-html5lib r-condop +autogen mozjpeg py-htmldate r-conflicted +automaded mozjs py-htmlgen r-conquer +automake mpark-variant py-htseq r-consrank +autossh mpas-model py-httpbin r-construct +avizo mpb py-httpcore r-contfrac +aws-ofi-nccl mpc py-httplib2 r-convevol +aws-ofi-rccl mpdecimal py-httpretty r-copula +aws-parallelcluster mpe2 py-httpstan r-corhmm +aws-sdk-cpp mpest py-httptools r-corpcor +awscli mpfi py-httpx r-corrplot +awscli-v2 mpfr py-huggingface-hub r-countrycode +axel mpi-bash py-humanfriendly r-covr +axl mpi-rockstar py-humanize r-cowplot +axom mpi-serial py-hvac r-cpp11 +azcopy mpi-sync-clocks py-hvplot r-crayon +babelflow mpi-test-suite py-hydra-core r-credentials +babelstream mpibenchmark py-hypercorn r-crosstalk +babeltrace mpibind py-hyperframe r-crul +babeltrace2 mpich py-hyperlink r-ctc +babl mpidiff py-hyperopt r-cubature +bacio mpifileutils py-hypothesis r-cubist +backupninja mpigraph py-ibm-cloud-sdk-core r-curl +backward-cpp mpilander py-ibm-watson r-cvxr +bam-readcount mpileaks py-ics r-d3r +bamaddrg mpip py-id r-dada2 +bamdst mpir py-identify r-data-table +bamtools mpitrampoline py-idna r-dbi +bamutil mpiwrapper py-idna-ssl r-dbplyr +banner mpix-launch-swift py-igor r-debugme +bannergrab mpl py-igor2 r-decipher +barrnap mppp py-igraph r-delayedarray +bart mpsolve py-igv-notebook r-delayedmatrixstats +barvinok mpt py-igwn-auth-utils r-deldir +bash mptensor py-ihm r-dendextend +bash-completion mrbayes py-illumina-utils r-densvis +bashtop mrbench py-ilmbase r-deoptim +bat mrchem py-imagecodecs r-deoptimr +batchedblas mrcpp py-imagecorruptions-imaug r-deriv +batctl mrnet py-imagehash r-desc +bats mrtrix3 py-imageio r-deseq +baurmc mruby py-imageio-ffmpeg r-deseq2 +bazel mscclpp py-imagesize r-desolve +bbcp mscgen py-imaug r-devtools +bbmap msgpack-c py-imbalanced-learn r-dexseq +bc mshadow py-imgaug r-diagram +bcache msmc py-iminuit r-diagrammer +bcftools msmc2 py-immutabledict r-dicekriging +bdftopcf msmpi py-immutables r-dichromat +bdii msolve py-importlib-metadata r-diffobj +bdsim msr-safe py-importlib-resources r-diffusionmap +bdw-gc mstk py-imutils r-digest +beagle mstore py-in-n-out r-diptest +beakerlib msvc py-incremental r-dir-expiry +bear mt-metis py-inflect r-dirichletmultinomial +beast-tracer mtn py-inheritance r-dismo +beast1 mui py-iniconfig r-distributional +beast2 mujoco py-iniparse r-diversitree +beatnik multicharge py-inquirer r-dmrcate +bedops multitail py-inquirerpy r-dnacopy +bedtools2 multitime py-inscriptis r-do-db +beforelight multiverso py-installer r-doby +benchmark mumax py-instrain r-domc +berkeley-db mummer py-intake r-doparallel +berkeleygw mummer4 py-intake-esm r-dorng +bertini mumps py-intbitset r-dose +bfs munge py-intel-openmp r-dosnow +bgen muparser py-intensity-normalization r-dotcall64 +bgpdump muparserx py-interface-meta r-downlit +bib2xhtml muscle py-interlap r-downloader +bigdft-atlab muscle5 py-intervaltree r-dplyr +bigdft-chess muse py-invoke r-dqrng +bigdft-core music py-iocapture r-dss +bigdft-futile musica py-iopath r-dt +bigdft-libabinit musl py-ipaddress r-dtplyr +bigdft-liborbs must py-ipdb r-dtw +bigdft-psolver muster py-ipycanvas r-dupradar +bigdft-spred mutationpp py-ipyevents r-dygraphs +bigdft-suite mvapich py-ipyfilechooser r-dynamictreecut +bigreqsproto mvapich-plus py-ipykernel r-e1071 +bigwhoop mvapich2 py-ipyleaflet r-earth +bind9 mxm py-ipympl r-ebseq +binder mxml py-ipyparallel r-ecosolver +binutils mxnet py-ipyrad r-ecp +bioawk mypaint-brushes py-ipython r-edger +biobambam2 mysql py-ipython-cluster-helper r-effects +biobloom mysql-connector-c py-ipython-genutils r-elemstatlearn +biopieces mysqlpp py-ipython-pygments-lexers r-ellipse +bird n2p2 py-ipytree r-ellipsis +bismark nacos py-ipyvtk-simple r-elliptic +bison nag py-ipyvue r-emmeans +bitgroomingz nalu py-ipyvuetify r-emmli +bitlbee nalu-wind py-ipywidgets r-energy +bitmap namd py-irpf90 r-enrichplot +bitsery nano py-isa-rwval r-ensembldb +blackhat nanoflann py-isal r-envstats +blake3 nanomsg py-iso8601 r-ergm +blaspp nanopb py-isodate r-estimability +blast-plus nasm py-isoduration r-europepmc +blast2go nauty py-isort r-evaluate +blat navi py-itables r-evd +blaze nb py-iterative-stats r-exactextractr +blis nbdkit py-itk r-exomecopy +bliss ncbi-magicblast py-itolapi r-exomedepth +blitz ncbi-rmblastn py-itsdangerous r-experimenthub +blktrace ncbi-toolkit py-jacobi r-expint +bloaty ncbi-vdb py-jaconv r-expm +blogbench nccl py-jamo r-factoextra +blt nccl-fastsocket py-janus r-factominer +bmake nccl-tests py-jaraco-classes r-fansi +bmi nccmp py-jaraco-context r-farver +bml ncdu py-jaraco-functools r-fastcluster +bohrium ncftp py-jarowinkler r-fastdigest +boinc-client ncio py-jarvis-util r-fastdummies +bolt ncl py-javaproperties r-fastica +bonniepp nco py-jax r-fastmap +bookleaf-cpp ncompress py-jaxlib r-fastmatch +boost ncurses py-jaxtyping r-fastmatrix +boostmplcartesianproduct ncview py-jcb r-fda +boringssl ncvis py-jdatetime r-fdb-infiniummethylation-hg18 +botan ndiff py-jdcal r-fdb-infiniummethylation-hg19 +bowtie ndzip py-jedi r-fds +bowtie2 neartree py-jeepney r-ff +boxlib neic-finitefault py-jellyfish r-fftwtools +bpp-core nek5000 py-jinja2 r-fgsea +bpp-phyl nekbone py-jinja2-cli r-fields +bpp-phyl-omics nekcem py-jinja2-humanize-extension r-filehash +bpp-popgen neko py-jinja2-time r-filelock +bpp-seq nekrs py-jiter r-findpython +bpp-seq-omics nektar py-jmespath r-fit-models +bpp-suite nektools py-jmp r-fitdistrplus +bracken nemsio py-joblib r-flashclust +brahma nemsiogfs py-jplephem r-flexclust +braker neo4j py-jproperties r-flexmix +branson neocmakelsp py-jprops r-fnn +breakdancer neofoam py-jpype1 r-fontawesome +bref3 neon py-jraph r-forcats +breseq neovim py-jsmin r-foreach +bricks nep py-json-get r-forecast +bridger neper py-json-tricks r-foreign +brigand nest py-json2html r-formatr +brltty net-snmp py-json5 r-formula +brotli netcdf-c py-jsonargparse r-fpc +brpc netcdf-cxx py-jsondiff r-fpcompare +brunsli netcdf-cxx4 py-jsonlines r-fracdiff +brynet netcdf-fortran py-jsonpatch r-fs +bsseeker2 netcdf95 py-jsonpath-ng r-functional +btllib netdata py-jsonpickle r-furrr +btop netgauge py-jsonpointer r-futile-logger +bubblewrap netgen py-jsonref r-futile-options +bucky netkit-ftp py-jsonschema r-future +buddy netlib-lapack py-jsonschema-specifications r-future-apply +bueno netlib-scalapack py-junit-xml r-gamlss +bufr netlib-xblas py-junit2html r-gamlss-data +bufr-query netpbm py-jupyter r-gamlss-dist +bulker netperf py-jupyter-client r-gamm4 +bump2version nettle py-jupyter-console r-gargle +bumpversion networkdirect py-jupyter-core r-gbm +busco neuron py-jupyter-events r-gbrd +busybox neve py-jupyter-leaflet r-gcrma +butter newt py-jupyter-lsp r-gdalutilities +butterflypack nextdenovo py-jupyter-packaging r-gdalutils +bwa nextflow py-jupyter-server r-gdata +bwtool nf-core-tools py-jupyter-server-mathjax r-gdsfmt +byacc nf-seqerakit py-jupyter-server-proxy r-geiger +byfl nf-tower-agent py-jupyter-server-terminals r-genefilter +byobu nf-tower-cli py-jupyter-telemetry r-genelendatabase +byte-lite nf-wave-cli py-jupyterhub r-genemeta +byte-unixbench nfft py-jupyterlab r-geneplotter +byteman nfs-ganesha py-jupyterlab-pygments r-generics +bzip2 nfs-utils py-jupyterlab-server r-genetics +c-ares nghttp2 py-jupyterlab-widgets r-genie3 +c-blosc nginx py-jupytext r-genomeinfodb +c-blosc2 ngmerge py-justext r-genomeinfodbdata +c-lime ngmlr py-jwcrypto r-genomicalignments +c-raft ngspice py-kaggle r-genomicfeatures +c3d nicstat py-kaldiio r-genomicranges +ca-certificates-mozilla nim py-kaleido r-gensa +cabana nimrod-aai py-kb-python r-geojsonsf +cabana-pd ninja py-keras r-geometries +cachefilesd ninja-fortran py-keras-applications r-geometry +caffe ninja-phylogeny py-keras-preprocessing r-geomorph +cairo nix py-keras2onnx r-geonames +cairomm njet py-kerberos r-geoquery +caliper nlcglib py-kerchunk r-geor +callflow nlohmann-json py-key-value-aio r-geosphere +callpath nlohmann-json-schema-validator py-keyboard r-gert +camellia nlopt py-keyring r-getopt +camp nmad py-keyrings-alt r-getoptlong +camx nn-c py-keystoneauth1 r-ggally +canal nnn py-kitchen r-ggbeeswarm +cans nnpack py-kiwisolver r-ggbio +cantera nnvm py-kmodes r-ggdendro +canu node-js py-knack r-ggforce +cap3 nopayloadclient py-kneaddata r-ggfun +capnproto normaliz py-kombu r-ggjoy +capstone notmuch py-kornia r-ggmap +cardioid npb py-kornia-rs r-ggnewscale +care npm py-kosh r-ggpattern +cargo-c npth py-krb5 r-ggplot2 +cargs nq py-kt-legacy r-ggplotify +casacore nrm py-kubernetes r-ggpubr +casacore-measures ns-3-dev py-kymatio r-ggraph +cask nseg py-lagom r-ggrastr +casper nsimd py-langcodes r-ggrepel +cassandra nsjail py-langsmith r-ggridges +cassini-headers nspr py-language-data r-ggsci +castep nss py-lap r-ggsignif +catch2 ntirpc py-laplace-torch r-ggstats +cbc ntl py-lark r-ggthemes +cbench ntpoly py-lark-parser r-ggtree +cbflib numactl py-laspy r-ggvis +cbindgen numamma py-latexcodec r-gh +cblas numap py-law r-gistr +cbqn numaprof py-lazy r-git2r +cbtf numdiff py-lazy-loader r-gitcreds +cbtf-argonavis nut py-lazy-object-proxy r-glimma +cbtf-argonavis-gui nvbandwidth py-lazy-property r-glmgampoi +cbtf-krell nvcomp py-lazyarray r-glmnet +cbtf-lanl nvdimmsim py-lcls-krtc r-globaloptions +cc65 nvhpc py-ldap3 r-globals +ccache nvidia-container-toolkit py-leather r-globaltest +cce nvidia-nsight-systems py-leidenalg r-glue +ccfits nvpl-blas py-lerc r-gmodels +ccls nvpl-common py-lfpykit r-gmp +ccs-qcd nvpl-fft py-lhsmdu r-go-db +cctools nvpl-lapack py-liac-arff r-goftest +cdbfasta nvpl-scalapack py-libclang r-gofuncr +cdd nvptx-tools py-libconf r-googleauthr +cddlib nvshmem py-libcst r-googledrive +cdecimal nvtop py-libensemble r-googlesheets4 +cdhit nvtx py-liblas r-googlevis +cdi nwchem py-librosa r-goplot +cdo nyancat py-librt r-gosemsim +cdt oc py-libsonata r-goseq +ceed ocaml py-lifelines r-gostats +celeritas ocamlbuild py-lightgbm r-gower +cellpose occa py-lightly r-gparotation +cellranger oci-systemd-hook py-lightly-utils r-gplots +centrifuge ocl-icd py-lightning r-graph +cepgen oclgrind py-lightning-api-access r-graphlayouts +cereal oclint py-lightning-cloud r-grbase +ceres-solver oclock py-lightning-fabric r-gridbase +cernlib octa py-lightning-lite r-gridextra +cfitsio octave py-lightning-uq-box r-gridgraphics +cgal octave-arduino py-lightning-utilities r-gridpattern +cgdb octave-control py-lightpipes r-gsa +cgdcbxd octave-gsl py-ligo-segments r-gsalib +cget octave-instrctl py-lil-aretomo r-gseabase +cgl octave-io py-line-profiler r-gsl +cgm octave-optim py-linear-operator r-gsodr +cgns octave-quaternion py-linear-tree r-gson +cgsi-gsoap octave-signal py-linecache2 r-gss +chaco octave-splines py-lineenhancer r-gstat +chafa octave-statistics py-linkchecker r-gsubfn +chai octave-struct py-linkify-it-py r-gtable +chameleon octave-symbolic py-lit r-gtools +changa octopus py-litdata r-gtrellis +channelflow odc py-littleutils r-gviz +chaparral odgi py-lizard r-gwmodel +chapel of-catalyst py-llama-cpp-python r-hardhat +chaplin of-precice py-llnl-sina r-haven +charliecloud ollama py-llvmlite r-hdf5array +charmpp ome-common-cpp py-lmdb r-hdf5r +chatterbug ome-files-cpp py-lmfit r-hdo-db +check ome-model py-lmodule r-hdrcde +chemfiles omega-h py-localcider r-here +chexmix omm py-locket r-hexbin +chez-scheme omm-bundle py-lockfile r-hh +chgcentre omnictl py-logilab-common r-highr +chlorop omniperf py-logistro r-hmisc +chombo omnitrace py-logmuse r-hms +chrony ompss py-logomaker r-hoardr +chrpath ompss-2 py-loguru r-htmltable +cimfomfa ompt-openmp py-loky r-htmltools +cinch oneapi-igc py-loompy r-htmlwidgets +circe2 oneapi-level-zero py-looseversion r-httpcode +circos onednn py-louie r-httpuv +cistem oniguruma py-lpips r-httr +citcoms onnx py-lru-dict r-httr2 +cityhash ont-guppy py-lscsoft-glue r-humaniformat +civetweb oommf py-lsprotocol r-hwriter +cjson oomph py-luigi r-hydrogof +ck op2-dsl py-lupa r-hydrotsm +clamav opa-psm2 py-lvis r-hypergeo +clamr opam py-lws r-hypergraph +clapack opari2 py-lxml r-ica +clara opdilib py-lz4 r-ids +claude-code open-iscsi py-lzstring r-ieugwasr +claw open-isns py-m2r r-igraph +clblast open3d py-macholib r-illumina450probevariants-db +cleaveland4 openal-soft py-machotools r-illuminahumanmethylation450kanno-ilmn12-hg19 +cleverleaf openbabel py-macs2 r-illuminahumanmethylation450kmanifest +clfft openblas py-macs3 r-illuminahumanmethylationepicanno-ilm10b4-hg19 +clhep opencarp py-maestrowf r-illuminahumanmethylationepicmanifest +cli11 opencascade py-magicgui r-illuminaio +clinfo opencl-c-headers py-mahotas r-imager +clingo opencl-clhpp py-mailchecker r-impute +clingo-bootstrap opencl-headers py-make r-influencer +clingo-bootstrap-pgo opencl-icd-loader py-makefun r-ini +cln opencoarrays py-mako r-inline +cloc opencolorio py-mapbox-earcut r-insight +cloog opencv py-mapclassify r-interactivedisplaybase +cloverleaf opendatadetector py-mariadb r-interp +cloverleaf-ref opendx py-marisa-trie r-intervals +cloverleaf3d openexr py-markdown r-inum +clp openfast py-markdown-include r-ipred +clustal-omega openfdtd py-markdown-it-py r-iranges +clustalw openfoam py-markdown2 r-irdisplay +cmake openfoam-org py-markov-clustering r-irkernel +cmaq openfpgaloader py-markovify r-irlba +cmark openfst py-markupsafe r-isdparser +cmdlime opengl py-marshmallow r-islr +cmdstan openglu py-matminer r-iso +cminpack openimagedenoise py-matplotlib r-isoband +cmocka openimageio py-matplotlib-inline r-isva +cmockery openipmi py-matplotlib-scalebar r-iterators +cmor openjdk py-maturin r-iterpc +cni-plugins openjpeg py-mayavi r-jade +cnmem openkim-models py-mbstrdecoder r-janitor +cnpy openldap py-mccabe r-jaspar2018 +cntk openlibm py-md-environ r-jomo +cntk1bitsgd openloops py-mda-xdrlib r-jpeg +cnvnator openmc py-mdahole2 r-jquerylib +codar-cheetah openmm py-mdanalysis r-jsonify +code-server openmolcas py-mdanalysistests r-jsonlite +codec2 openmpi py-mdi r-kableextra +codecov openmx py-mdit-py-plugins r-kegggraph +codee opennurbs py-mdocfile r-keggrest +codes openpa py-mdurl r-kernlab +codipack openpbs py-meautility r-kernsmooth +coevp openpmd-api py-mechanize r-kknn +cohmm openradioss-engine py-medaka r-klar +cohomcalg openradioss-starter py-meldmd r-knitr +coin3d openrasmol py-melissa-core r-kpmt +coinhsl openresty py-memelite r-ks +coinmp openscenegraph py-memory-profiler r-ksamples +coinutils openslide py-memprof r-labeling +collectd openslp py-memray r-labelled +collier openspeedshop py-mendeleev r-lambda-r +colm openspeedshop-utils py-mercantile r-laplacesdemon +colordiff openssh py-mergedeep r-lars +comd openssl py-merlin r-later +comet opensta py-meshio r-lattice +comgr openstf py-meshpy r-latticeextra +commons-lang opensubdiv py-meson-python r-lava +commons-lang3 opentsdb py-metaphlan r-lavaan +commons-logging openturns py-metasv r-lazyeval +compadre openvdb py-metatensor-core r-ldheatmap +compiler-wrapper openvkl py-metatensor-learn r-leafem +composable-kernel openwsman py-metatensor-operations r-leaflet +compose ophidia-analytics-framework py-metatensor-torch r-leaflet-providers +compositeproto ophidia-io-server py-metatomic-torch r-leafpop +composyx ophidia-primitives py-metatrain r-leaps +conda4aarch64 ophidia-server py-metis r-learnbayes +conduit opium py-metomi-isodatetime r-leiden +conmon optional-lite py-metomi-rose r-lfe +connect-proxy optipng py-metpy r-lhs +conquest optix-dev py-metric-learn r-libcoin +conserver opus py-metrics r-libpressio +console-bridge or-tools py-mffpy r-lidr +constype oracle-instant-client py-mg-rast-tools r-lifecycle +consul oras py-mgmetis r-limma +cool orbit2 py-microsoft-aurora r-limsolve +coordgen orc py-mido r-linprog +coral orca py-mikado r-list +corenlp orca-faccts py-mike r-listenv +coreutils orfm py-minio r-lme4 +corset orientdb py-minisom r-lmertest +cosbench orthofiller py-minkowskiengine r-lmtest +cosign orthofinder py-minrpc r-lobstr +cosimio orthomcl py-misk r-locfit +cosma osg-ca-certs py-misopy r-log4r +cosmoflow-benchmark osi py-mistletoe r-loo +cosmomc osmctools py-mistune r-lpsolve +cosp2 osmesa py-mizani r-lpsolveapi +costa osmosis py-mkdocs r-lsei +costo ospray py-mkdocs-autorefs r-lubridate +cotter osqp py-mkdocs-jupyter r-lumi +countdown ossp-uuid py-mkdocs-material r-lwgeom +covfie osu-micro-benchmarks py-mkdocs-material-extensions r-magic +cowsay otf py-mkdocstrings r-magick +cp2k otf-cpt py-mkdocstrings-python r-magrittr +cpat otf2 py-ml-collections r-makecdfenv +cpio ovito py-ml-dtypes r-maldiquant +cplex oxide-rs py-mlflow r-manipulatewidget +cpmd p11-kit py-mlperf-logging r-mapplots +cpp-argparse p3dfft3 py-mlxtend r-mapproj +cpp-httplib p4est py-mmcv r-maps +cpp-logger p7zip py-mmengine r-maptools +cpp-termcolor pacbio-daligner py-mmtf-python r-mapview +cppad pacbio-damasker py-mne r-markdown +cppcheck pacbio-dazz-db py-mne-bids r-marray +cppcodec pacbio-dextractor py-mo-pack r-mass +cppcoro pace py-moarchiving r-mathjaxr +cppgsl pacifica-cli py-mock r-matlab +cpprestsdk packmol py-model-index r-matr +cpptrace pacparser py-modelcif r-matrix +cppunit pacvim py-modepy r-matrixgenerics +cppzmq paddle py-modin r-matrixmodels +cpr padicotm py-modisco r-matrixstats +cprnc pagit py-modred r-mclogit +cpu-features pagmo py-modules-gui r-mclust +cpuinfo pagmo2 py-moltemplate r-mcmc +cqrlib paintor py-monai r-mcmcglmm +cquery pajeng py-monkeytype r-mcmcpack +cracklib pal py-monotonic r-mco +cradl palace py-monty r-mda +cram palisade-development py-more-itertools r-memisc +cray-fftw paml py-morph-tool r-memoise +cray-libsci panda py-morphio r-memuse +cray-mpich pandaseq py-morphosamplers r-mendelianrandomization +cray-mvapich2 pandoc py-motmetrics r-mergemaid +cray-pmi pandoramonitoring py-mouseinfo r-meta +creduce pandorapfa py-moviepy r-metadat +crmc pandorasdk py-mpi4jax r-metafor +croc pango py-mpi4py r-metap +cromwell pangolin py-mpld3 r-metapod +cromwell-womtool pangomm py-mpldock r-methylumi +cronie papi py-mplhep r-mgcv +crosstool-ng papyrus py-mplhep-data r-mgraster +crow paraconf py-mpmath r-mice +crtm paradiseo py-mrcfile r-microbenchmark +crtm-fix parafeed py-msal r-mime +crunch parallel py-msal-extensions r-minfi +crux-toolkit parallel-hashmap py-msgpack r-miniui +cry parallel-netcdf py-msgpack-numpy r-minqa +cryodrgn parallelio py-msrest r-misc3d +cryoef parallelmergetree py-msrestazure r-missmethyl +cryptopp paraview py-mui4py r-mitml +cryptsetup pareval py-multi-imbalance r-mitools +csa-c parflow py-multi-key-dict r-mixtools +cscope parmetis py-multidict r-mlbench +csdp parmgridgen py-multiecho r-mlinterfaces +csvtk parmmg py-multipledispatch r-mlr +ctffind parquet-format py-multiprocess r-mlrmbo +ctpl parsec py-multiqc r-mmwrweek +ctre parsimonator py-multiurl r-mnormt +cub parsplice py-mumps4py r-mockery +cuba parthenon py-munch r-modelmetrics +cubature partons py-munkres r-modelr +cube partons-elementary-utils py-murmurhash r-modeltools +cube-blade partons-numa py-mutagen r-mpm +cubelib pass py-mx r-mr-raps +cubew passt py-mxfold2 r-mrinstruments +cubist pasta py-myhdl r-mrmix +cublasmp pastix py-mypy r-mrpresso +cuda patch py-mypy-extensions r-mscoreutils +cuda-memtest patchelf py-mysql-connector-python r-msnbase +cudd patchutils py-mysqlclient r-multcomp +cudnn pathfinder py-myst-parser r-multcompview +cudss pax-utils py-namex r-multicool +cufflinks pbbam py-nanobind r-multitaper +cufftmp pblat py-nanoget r-multtest +cunit pbmpi py-nanomath r-munsell +cups pbwt py-nanoplot r-mutoss +curl pbzip2 py-nanostat r-mvtnorm +cusolvermp pciutils py-nanotime r-mzid +cusparselt pcl py-nanotron r-mzr +cusz pcma py-napari r-nada +cutensor pcre py-napari-console r-nanotime +cutlass pcre2 py-napari-plugin-engine r-ncbit +cvector pcsclite py-napari-plugin-manager r-ncdf4 +cvise pdal py-napari-svg r-network +cvs pdc py-nara-wpe r-networkd3 +cxi-driver pdf2svg py-narwhals r-neuralnet +cxxopts pdftk py-natsort r-nfactors +cxxtest pdi py-nbclassic r-nimble +cyrus-sasl pdiplugin-decl-hdf5 py-nbclient r-nleqslv +czmq pdiplugin-decl-netcdf py-nbconvert r-nlme +daemonize pdiplugin-mpi py-nbdime r-nloptr +dakota pdiplugin-pycall py-nbformat r-nmf +daligner pdiplugin-serialize py-nbmake r-nmof +dalton pdiplugin-set-value py-nbqa r-nnet +damageproto pdiplugin-trace py-nbsphinx r-nnls +damaris pdiplugin-user-code py-nbstripout r-nonnest2 +damask pdsh py-nbval r-nor1mix +damask-grid pdt py-nc-time-axis r-nortest +damask-mesh pegtl py-ncbi-genome-download r-np +damselfly pelican py-ndg-httpsclient r-npsurv +daos pennant py-ndindex r-numderiv +darshan-runtime percept py-neo r-oligoclasses +darshan-util percolator py-neo4j r-openssl +dash percona-server py-neobolt r-openxlsx +datamash perfstubs py-neotime r-optimparallel +dataspaces perl py-neovim-remote r-optimx +datatransferkit perl-acme-damn py-neptune-client r-optparse +date perl-algorithm-c3 py-nest-asyncio r-ordinal +dateutils perl-algorithm-diff py-nestle r-org-hs-eg-db +dav-sdk perl-alien-build py-netaddr r-organismdbi +davix perl-alien-build-plugin-download-gitlab py-netcdf4 r-osqp +dbcsr perl-alien-libxml2 py-netifaces r-packrat +dbow2 perl-any-uri-escape py-netket r-pacman +dbus perl-apache-logformat-compiler py-netpyne r-paleotree +dbus-glib perl-app-cmd py-networkit r-pamr +dbxtool perl-appconfig py-networkx r-pan +dcap perl-archive-zip py-neuralgcm r-parallelly +dcm2niix perl-array-utils py-neurokit2 r-parallelmap +dcmtk perl-b-cow py-neurolab r-paramhelpers +dctz perl-b-hooks-endofscope py-neurom r-party +dd4hep perl-b-keywords py-neurora r-partykit +ddc perl-bignum py-neurotools r-patchwork +ddd perl-bio-asn1-entrezgene py-nexus-sdk r-pathview +dealii perl-bio-bigfile py-nexusforge r-pbapply +dealii-parameter-gui perl-bio-cluster py-nglview r-pbdzmq +debbuild perl-bio-db-hts py-ngs-tools r-pbivnorm +debugedit perl-bio-ensembl py-nh3 r-pbkrtest +decentralized-internet perl-bio-ensembl-funcgen py-nibabel r-pcamethods +deconseq-standalone perl-bio-ensembl-io py-nilearn r-pcapp +deconwolf perl-bio-ensembl-variation py-nipype r-pegas +dedisp perl-bio-eutilities py-nitransforms r-pepxmltab +deepmdkit perl-bio-searchio-hmmer py-niworkflows r-permute +dejagnu perl-bio-variation py-nltk r-pfam-db +delly2 perl-bioperl py-node-semver r-phangorn +delphes perl-bit-vector py-nodeenv r-phantompeakqualtools +delta perl-bsd-resource py-non-regression-test-tools r-pheatmap +demuxlet perl-cache-cache py-nose r-philentropy +deno perl-cache-memcached py-nose-cov r-phylobase +denovogear perl-cairo py-nose2 r-phyloseq +detray perl-canary-stability py-nosexcover r-phylostratr +dfelibs perl-capture-tiny py-notebook r-phytools +dftbplus perl-carp py-notebook-shim r-picante +dftd3-lib perl-carp-assert py-npe2 r-piggyback +dftd4 perl-carp-clan py-nptyping r-pillar +dftfe perl-catalyst-action-renderview py-npx r-pinfsc50 +dhpmm-f perl-catalyst-action-rest py-ntlm-auth r-pixmap +dhtest perl-catalyst-component-instancepercontext py-ntplib r-pkgbuild +dia perl-catalyst-devel py-nugraph r-pkgcache +dia-umpire-se perl-catalyst-plugin-cache py-nuitka r-pkgconfig +dialign perl-catalyst-plugin-configloader py-num2words r-pkgdepends +dialign-tx perl-catalyst-plugin-static-simple py-numba r-pkgdown +diamond perl-catalyst-runtime py-numba4jax r-pkgload +dicom3tools perl-catalyst-view-json py-numbagg r-pkgmaker +diffmark perl-cgi py-numcodecs r-pki +diffsplice perl-cgi-simple py-numdifftools r-pl94171 +difftastic perl-cgi-struct py-numexpr r-plogr +diffutils perl-chart-gnuplot py-numexpr3 r-plot3d +digitrounding perl-chi py-numkit r-plotly +dihydrogen perl-chi-driver-memcached py-numl r-plotmo +dimemas perl-class-accessor py-numpy r-plotrix +dineof perl-class-accessor-grouped py-numpy-groupies r-pls +ding-libs perl-class-accessor-lvalue py-numpy-indexed r-plyr +dire perl-class-c3 py-numpy-quaternion r-pmcmr +direnv perl-class-c3-adopt-next py-numpy-stl r-pmcmrplus +discotec perl-class-c3-componentised py-numpydoc r-png +discovar perl-class-data-inheritable py-nvidia-dali r-polspline +discovardenovo perl-class-inspector py-nvidia-ml-py r-polyclip +disktype perl-class-load py-nvidia-ml-py3 r-polynom +dislin perl-class-load-xs py-nvidia-modulus r-pool +distbench perl-class-method-modifiers py-nvidia-nvcomp r-poorman +distcc perl-class-singleton py-nvidia-nvimagecodec r-popgenome +diy perl-class-tiny py-nvidia-nvjpeg2k r-popvar +dla-future perl-clone py-nvidia-nvtiff r-posterior +dla-future-fortran perl-clone-choose py-nvidia-physicsnemo r-powerlaw +dlb perl-clone-pp py-nvitop r-prabclus +dlib perl-common-sense py-nvtx r-pracma +dlpack perl-compress-bzip2 py-oauth2client r-praise +dmd perl-compress-lzo py-oauthlib r-preprocesscore +dmidecode perl-compress-raw-bzip2 py-obspy r-prettydoc +dmlc-core perl-compress-raw-zlib py-ocnn r-prettyunits +dmtcp perl-config-any py-odc-geo r-proc +dmxproto perl-config-general py-odfpy r-processx +dnsmap perl-config-inifiles py-ogb r-prodlim +dnsmasq perl-config-simple py-okada-wrapper r-profmem +dnstop perl-config-tiny py-olcf-velocity r-profvis +dnstracer perl-context-preserve py-olefile r-progress +docbook-xml perl-contextual-return py-olmoearth-pretrain-minimal r-progressr +docbook-xsl perl-convert-nls-date-format py-omegaconf r-proj +dock perl-cookie-baker py-onnx r-proj4 +doctest perl-cpan-meta-check py-onnx-opcounter r-projpred +dolfinx-mpc perl-cpanel-json-xs py-onnxconverter-common r-promises +dorado perl-css-minifier-xs py-onnxmltools r-protgenerics +dorian3d-dlib perl-data-dump py-onnxruntime r-proto +dos2unix perl-data-dumper py-ont-fast5-api r-proxy +dosfstools perl-data-dumper-concise py-opcodes r-pryr +dotconf perl-data-optlist py-open-clip-torch r-ps +dotnet-core-sdk perl-data-predicate py-openai r-pscbs +double-batched-fft-library perl-data-stag py-openai-whisper r-pspline +double-conversion perl-data-uuid py-openapi-schema-pydantic r-psych +doxygen perl-data-visitor py-opencensus r-ptw +dpdk perl-date-exception py-opencensus-context r-purrr +dplasma perl-date-manip py-opencv-python r-pvclust +dpmjet perl-date-utils py-opendatalab r-qqconf +draco perl-datetime py-openidc-client r-qs +dracut perl-datetime-format-builder py-openmc r-qtl +dramsim2 perl-datetime-format-iso8601 py-openmesh r-quadprog +dramsim3 perl-datetime-format-mysql py-openmim r-quantmod +dri2proto perl-datetime-format-oracle py-openpmd-validator r-quantreg +dri3proto perl-datetime-format-pg py-openpmd-viewer r-quantro +drill perl-datetime-format-strptime py-openpyxl r-questionr +drishti perl-datetime-locale py-openslide-python r-quickjsr +dropwatch perl-datetime-timezone py-opentelemetry-api r-quickplot +druid perl-db-file py-opentelemetry-exporter-prometheus r-qvalue +ds perl-dbd-mysql py-opentelemetry-instrumentation r-r-cache +dsdp perl-dbd-oracle py-opentelemetry-sdk r-r-methodss3 +dsfmt perl-dbd-pg py-opentelemetry-semantic-conventions r-r-oo +dsqss perl-dbd-sqlite py-opentree r-r-utils +dsrc perl-dbi py-opentuner r-r6 +dssp perl-dbix-class py-opppy r-radialmr +dtc perl-devel-checklib py-ops r-ragg +dtcmp perl-devel-cover py-opt-einsum r-rainbow +dtf perl-devel-cycle py-optax r-randomfields +duckdb perl-devel-globaldestruction py-optree r-randomfieldsutils +duperemove perl-devel-overloadinfo py-optuna r-randomforest +dust perl-devel-size py-or-tools r-randomglm +dwz perl-devel-stacktrace py-oracledb r-ranger +dxt-explorer perl-devel-stacktrace-ashtml py-orbax-checkpoint r-rann +dyninst perl-devel-symdump py-ordered-set r-rapidjsonr +dysco perl-digest-jhash py-orderly-set r-rapiserialize +e2fsprogs perl-digest-md5 py-orjson r-rappdirs +e3sm-kernels perl-digest-md5-file py-os-service-types r-raster +e3sm-scorpio perl-digest-sha1 py-oset r-rbgl +e4s-alc perl-dist-checkconflicts py-oslo-config r-rbibutils +e4s-cl perl-email-abstract py-oslo-i18n r-rbokeh +ea-utils perl-email-address-xs py-oslo-serialization r-rcmdcheck +eagle perl-email-date-format py-oslo-utils r-rcolorbrewer +earlyoom perl-email-messageid py-osqp r-rcpp +easi perl-email-mime py-outdated r-rcppannoy +easybuild perl-email-mime-contenttype py-overpy r-rcpparmadillo +easyloggingpp perl-email-mime-encodings py-overrides r-rcppblaze +ebms perl-email-sender py-owlrl r-rcppcctz +ecbuild perl-email-simple py-owslib r-rcppcnpy +eccodes perl-email-stuffer py-oyaml r-rcppdate +eccodes-cosmo-resources perl-encode-locale py-p2j r-rcppde +ecdsautils perl-error py-pacifica-downloader r-rcppeigen +ecflow perl-eval-closure py-pacifica-namespace r-rcppensmallen +eckit perl-exception-class py-pacifica-uploader r-rcppgsl +eclipse-gcj-parser perl-exporter-auto py-packaging r-rcpphnsw +ecmwf-atlas perl-exporter-lite py-pager r-rcppml +ecos perl-exporter-tiny py-paho-mqtt r-rcppparallel +ecoslim perl-extutils-config py-palettable r-rcppprogress +ecp-data-vis-sdk perl-extutils-depends py-pamela r-rcpproll +ecp-proxy-apps perl-extutils-helpers py-panaroo r-rcpptoml +ectrans perl-extutils-installpaths py-pandas r-rcppziggurat +ed perl-extutils-makemaker py-pandas-datareader r-rcurl +editline perl-extutils-pkgconfig py-pandas-stubs r-rda +editorconfig perl-ffi-checklib py-pandera r-rdpack +editres perl-file-changenotify py-pandocfilters r-readbitmap +edm4hep perl-file-chdir py-panedr r-readr +eem perl-file-copy-recursive py-panel r-readxl +efivar perl-file-find-rule py-papermill r-reams +egl perl-file-grep py-paralleltask r-recipes +eigen perl-file-homedir py-param r-reformulas +eigenexa perl-file-listing py-parameterized r-registry +elasticsearch perl-file-pushd py-paramiko r-rematch +elastix perl-file-remove py-paramz r-rematch2 +elbencho perl-file-sharedir py-parasail r-remotes +elfio perl-file-sharedir-install py-parmed r-renv +elfutils perl-file-slurp py-parse r-reordercluster +elk perl-file-slurp-tiny py-parse-type r-reportingtools +elmerfem perl-file-slurper py-parsedatetime r-repr +elpa perl-file-spec py-parsimonious r-reprex +elsd perl-file-temp py-parsl r-reproducible +elsdc perl-file-which py-parsley r-require +elsi perl-filesys-notify-simple py-parso r-reshape +emacs perl-font-ttf py-partd r-reshape2 +ember perl-forks py-particle r-restfulr +emblmygff3 perl-fth py-paste r-reticulate +emboss perl-gd py-pastedeploy r-rex +embree perl-gdgraph py-pastel r-rfast +enca perl-gdgraph-histogram py-pastml r-rferns +enchant perl-gdtextutil py-patch r-rgdal +energyplus perl-getopt-argvfile py-patch-ng r-rgenoud +ensmallen perl-getopt-long-descriptive py-path-py r-rgeos +entrezdirect perl-getopt-tabular py-pathlib-abc r-rgexf +entt perl-graph py-pathlib2 r-rgl +environment-modules perl-graph-readwrite py-pathml r-rgooglemaps +enzo perl-graphviz py-pathos r-rgraphviz +enzyme perl-gzip-faster py-pathsimanalysis r-rhdf5 +eospac perl-hash-merge py-pathspec r-rhdf5filters +epic perl-hash-moreutils py-pathtools r-rhdf5lib +epics-base perl-hash-multivalue py-pathvalidate r-rhmmer +epics-ca-gateway perl-heap py-pathy r-rhtslib +epics-pcas perl-hook-lexwrap py-patool r-rinside +epics-snmp perl-html-parser py-patsy r-rio +eprosima-fastcdr perl-html-tagset py-pauvre r-rjags +eprosima-fastdds perl-html-template py-pbr r-rjava +epsic perl-http-body py-pdb-tools r-rjson +eq-r perl-http-cookiejar py-pdbfixer r-rjsonio +er perl-http-cookies py-pdequinox r-rlang +erf perl-http-daemon py-pdf2image r-rlas +erfa perl-http-date py-pdm-backend r-rle +erlang perl-http-entity-parser py-pdm-pep517 r-rlist +ermod perl-http-headers-fast py-pdoc3 r-rmariadb +erne perl-http-message py-peachpy r-rmarkdown +es-shell perl-http-multipartparser py-peakutils r-rminer +esmf perl-http-negotiate py-pebble r-rmpfr +espanso perl-http-parser-xs py-peft r-rmpi +essl perl-http-request-ascgi py-pelicanfs r-rms +estarlight perl-http-server-simple py-pem r-rmutil +esys-particle perl-http-tiny py-pendulum r-rmysql +etcd perl-import-into py-pennylane r-rnaseqmap +ethminer perl-inline py-pennylane-lightning r-rncl +ethtool perl-inline-c py-pennylane-lightning-kokkos r-rnexml +etsf-io perl-io-all py-pep517 r-rngtools +eve perl-io-compress py-pep8 r-rnoaa +evemu perl-io-html py-pep8-naming r-robust +everytrace perl-io-prompt py-perfdump r-robustbase +everytrace-example perl-io-sessiondata py-performance r-roc +evieext perl-io-socket-ssl py-periodictable r-rocr +evtgen perl-io-string py-petastorm r-rodbc +exabayes perl-io-stringy py-petname r-rook +exaca perl-io-tty py-petsc4py r-rots +exactextract perl-ipc-run py-pexpect r-roxygen2 +exago perl-ipc-run3 py-pfzy r-rpart +examl perl-ipc-sharelite py-pgzip r-rpart-plot +exampm perl-ipc-system-simple py-phanotate r-rpmm +exasp2 perl-javascript-minifier-xs py-phonenumbers r-rpostgres +exawind perl-json py-phonopy r-rpostgresql +exaworks perl-json-any py-photutils r-rprojroot +exchcxx perl-json-maybexs py-phydms r-rpsychi +exciting perl-json-xs py-phylophlan r-rrblup +exempi perl-kyotocabinet py-pickle5 r-rrcov +exiv2 perl-libwww-perl py-pickleshare r-rrpp +exmcutils perl-libxml-perl py-picmistandard r-rsamtools +exo perl-lingua-en-inflect py-picrust2 r-rsconnect +exodusii perl-list-compare py-pid r-rsnns +exonerate perl-list-moreutils py-pika r-rsolnp +exonerate-gff3 perl-list-moreutils-xs py-pillow r-rspectra +expat perl-list-someutils py-pillow-simd r-rsqlite +expect perl-log-any py-pint r-rstan +express perl-log-any-adapter-callback py-pint-xarray r-rstantools +exprtk perl-log-dispatch py-pip r-rstatix +extrae perl-log-dispatch-filerotate py-pipcl r-rstudioapi +exuberant-ctags perl-log-log4perl py-pipdeptree r-rsubread +eza perl-logger-simple py-piper r-rsvd +eztrace perl-lwp-mediatypes py-pipits r-rtracklayer +f2c perl-lwp-protocol-https py-pispino r-rtsne +f3d perl-mailtools py-pivy r-runit +f77-zmq perl-math-bezier py-pkgconfig r-runjags +f90cache perl-math-bigint py-pkginfo r-ruv +fabtests perl-math-bigrat py-pkgutil-resolve-name r-rvcheck +fabulous perl-math-cdf py-plac r-rversions +faircmakemodules perl-math-cephes py-plaid r-rvest +fairlogger perl-math-matrixreal py-planar r-rviennacl +fairmq perl-math-round py-planet r-rzmq +fairroot perl-math-symbolic py-planetary-computer r-s2 +fairsoft-bundle perl-math-vecstat py-platformdirs r-s4vectors +fairsoft-config perl-mce py-plotext r-s7 +faiss perl-memory-process py-plotille r-samr +fakechroot perl-metacpan-client py-plotly r-sandwich +faketime perl-mime-types py-plotnine r-sass +fakexrandr perl-mni-perllib py-pluggy r-satellite +falco perl-mock-config py-plum-dispatch r-scaledmatrix +falcon perl-module-build py-ply r-scales +fann perl-module-build-tiny py-pmtiles r-scater +faodel perl-module-corelist py-pmw r-scattermore +fargparse perl-module-find py-pmw-patched r-scatterpie +fasd perl-module-implementation py-pockets r-scatterplot3d +fast-float perl-module-install py-poetry r-scdblfinder +fast-global-file-status perl-module-mask py-poetry-core r-scran +fasta perl-module-pluggable py-poetry-dynamic-versioning r-scrime +fastani perl-module-runtime py-poetry-plugin-export r-scs +fastdb perl-module-runtime-conflicts py-poetry-plugin-tweak-dependencies-version r-sctransform +fastdfs perl-module-scandeps py-polars r-scuttle +fastjar perl-module-util py-pomegranate r-sdmtools +fastjet perl-mojolicious py-pooch r-segmented +fastjson perl-moo py-portalocker r-selectr +fastmath perl-moose py-portend r-seqinr +fastme perl-moosex-emulate-class-accessor-fast py-portpicker r-seqlogo +fastor perl-moosex-getopt py-postcactus r-servr +fastp perl-moosex-methodattributes py-poster r-sessioninfo +fastphase perl-moosex-role-parameterized py-pot r-sets +fastplong perl-moox-types-mooselike py-pox r-seurat +fastq-scan perl-moox-types-mooselike-numeric py-poxy r-seuratobject +fastq-screen perl-mozilla-ca py-poyo r-sf +fastqc perl-mro-compat py-ppft r-sfheaders +fastqvalidator perl-namespace-autoclean py-pprintpp r-sfsmisc +fasttext perl-namespace-clean py-pre-commit r-sftime +fasttransforms perl-net-cidr-lite py-preshed r-shadowtext +fasttree perl-net-http py-pretrainedmodels r-shape +fastx-toolkit perl-net-ip py-pretty-errors r-shiny +faust perl-net-scp-expect py-prettytable r-shinydashboard +fbgemm perl-net-server py-priority r-shinyfiles +fca perl-net-server-ss-prefork py-profilehooks r-shinyfiletree +fcgi perl-net-ssleay py-proglog r-shinyjs +fckit perl-number-compare py-progress r-shinystan +fd perl-number-format py-progressbar2 r-shinythemes +fdb perl-object-insideout py-progressbar33 r-shinywidgets +fds perl-package-deprecationmanager py-projectq r-shortread +fdupes perl-package-stash py-prokaryote r-siggenes +feh perl-package-stash-xs py-prometheus-client r-signac +fenics perl-package-variant py-prometheus-flask-exporter r-simpleaffy +fenics-basix perl-padwalker py-promise r-singlecellexperiment +fenics-dolfinx perl-parallel-forkmanager py-prompt-toolkit r-sitmo +fenics-ufcx perl-params-util py-propcache r-sm +feq-parse perl-params-validate py-properscoring r-smoof +fermi perl-params-validationcompiler py-proto-plus r-sn +fermikit perl-parse-recdescent py-protobuf r-snakecase +fermisciencetools perl-parse-yapp py-protoc-gen-swagger r-snow +ferret perl-parselex py-prov r-snowfall +feynhiggs perl-parsetemplate py-proxystore r-snprelate +ffb perl-path-class py-prwlock r-snpstats +fflas-ffpack perl-path-tiny py-psalg r-som +ffmpeg perl-pathtools py-psana r-somaticsignatures +ffr perl-pdf-api2 py-psij-python r-sourcetools +ffsb perl-pegex py-psmon r-sp +ffte perl-perl-critic py-pspamm r-spacetime +fftw perl-perl-critic-moose py-psutil r-spades +fftx perl-perl-tidy py-psyclone r-spades-addins +fgsl perl-perl-unsafe-signals py-psycopg2 r-spades-core +fiat perl-perl-version py-psygnal r-spades-tools +fides perl-perl4-corelibs py-ptyprocess r-spam +figcone perl-perl6-slurp py-pubchempy r-sparsem +figlet perl-perlio-gzip py-pudb r-sparsematrixstats +figtree perl-perlio-utf8-strict py-pulp r-spatial +file perl-plack py-pulsar-galaxy-lib r-spatialeco +filebench perl-plack-middleware-assets py-pure-eval r-spatialpack +filo perl-plack-middleware-crossorigin py-pure-sasl r-spatialreg +filtlong perl-plack-middleware-deflater py-puremagic r-spatstat +fimpute perl-plack-middleware-fixmissingbodyinredirect py-py r-spatstat-core +finch perl-plack-middleware-methodoverride py-py-cpuinfo r-spatstat-data +findbugs perl-plack-middleware-removeredundantbody py-py-spy r-spatstat-explore +findutils perl-plack-middleware-reverseproxy py-py-tes r-spatstat-geom +fio perl-plack-test-externalserver py-py2bit r-spatstat-linnet +fipscheck perl-pod-coverage py-py2neo r-spatstat-model +fish perl-pod-parser py-py4j r-spatstat-random +fixesproto perl-pod-spell py-py6s r-spatstat-sparse +fj perl-posix-strftime-compiler py-pyabel r-spatstat-univar +fjcontrib perl-ppi py-pyaestro r-spatstat-utils +fl perl-ppix-quotelike py-pyahocorasick r-spdata +flac perl-ppix-regexp py-pyamg r-spdep +flamegraph perl-ppix-utils py-pyaml r-speedglm +flamemaster perl-proc-daemon py-pyaml-env r-spem +flann perl-proc-processtable py-pyani r-splancs +flap perl-readonly py-pyarrow r-splines2 +flash perl-readonly-xs py-pyasn1 r-splitstackshape +flashdimmsim perl-ref-util py-pyasn1-modules r-sqldf +flatbuffers perl-regexp-common py-pyassimp r-squarem +flatcc perl-role-tiny py-pyautogui r-squash +flcl perl-rose-datetime py-pybedtools r-sseq +flecsi perl-rose-db py-pybids r-stabledist +flecsph perl-rose-db-object py-pybigwig r-stanheaders +fleur perl-rose-object py-pybind11 r-stargazer +flex perl-safe-isa py-pybind11-stubgen r-stars +flexi perl-scalar-list-utils py-pybktree r-statmod +flexiblas perl-scalar-util-numeric py-pybobyqa r-statnet-common +flibcpp perl-scope-guard py-pybrain r-stringfish +flink perl-search-elasticsearch py-pybtex r-stringi +flint perl-sereal py-pybtex-docutils r-stringr +flit perl-sereal-decoder py-pybv r-strucchange +fltk perl-sereal-encoder py-pycairo r-strucchangercpp +fluidnumerics-self perl-server-starter py-pycares r-styler +flume perl-set-intervaltree py-pycbc r-subplex +flux perl-set-intspan py-pycgns r-summarizedexperiment +flux-core perl-set-object py-pychecker r-suppdists +flux-pmix perl-set-scalar py-pycifrw r-survey +flux-python perl-soap-lite py-pyclibrary r-survival +flux-sched perl-sort-naturally py-pycm r-sva +flux-security perl-specio py-pycmd r-svglite +fluxbox perl-spiffy py-pycocotools r-sys +fmi4cpp perl-sql-abstract py-pycodestyle r-systemfonts +fms perl-sql-abstract-classic py-pycollada r-tarifx +fmt perl-sql-reservedwords py-pycompadre r-taxizedb +foam-extend perl-sql-translator py-pyconify r-tclust +foldseek perl-star-fusion py-pycorenlp r-teachingdemos +folly perl-starman py-pycortex r-tensor +font-util perl-statistics-basic py-pycosat r-tensora +fontcacheproto perl-statistics-descriptive py-pycparser r-terra +fontconfig perl-statistics-pca py-pycrypto r-tester +fontsproto perl-stream-buffered py-pycryptodome r-testit +fonttosfnt perl-strictures py-pycryptodomex r-testthat +foonathan-memory perl-string-approx py-pyct r-textshaping +form perl-string-crc32 py-pycubexr r-tfbstools +formetis perl-string-format py-pycuda r-tfisher +fortrilinos perl-string-numeric py-pycurl r-tfmpvalue +fortuno perl-string-rewriteprefix py-pydantic r-th-data +fossil perl-sub-exporter py-pydantic-compat r-threejs +foundationdb perl-sub-exporter-progressive py-pydantic-core r-tibble +fox perl-sub-identify py-pydantic-extra-types r-tictoc +fp16 perl-sub-install py-pydantic-settings r-tidycensus +fpart perl-sub-name py-pydantic-tes r-tidygraph +fpc perl-sub-quote py-pydap r-tidyr +fpchecker perl-sub-uplevel py-pydata-sphinx-theme r-tidyselect +fping perl-svg py-pydatalog r-tidytree +fplll perl-swissknife py-pydeface r-tidyverse +fplo perl-sys-sigaction py-pydeprecate r-tiff +fpm perl-task-weaken py-pydeps r-tigris +fpocket perl-template-toolkit py-pydevtool r-timechange +fpzip perl-term-ansicolor-markup py-pydftracer r-timedate +fq perl-term-readline-gnu py-pydicom r-tinytex +fqtrim perl-term-table py-pydispatcher r-tinytiger +fr-hit perl-termreadkey py-pydmd r-tmixclust +fraggenescan perl-test-base py-pydocstyle r-tmvnsim +freebayes perl-test-class py-pydoe r-topgo +freecad perl-test-cleannamespaces py-pydoe2 r-treeio +freefem perl-test-deep py-pydot r-triebeard +freeglut perl-test-diaginc py-pydot2 r-trimcluster +freeimage perl-test-differences py-pydotplus r-truncdist +freeipmi perl-test-exception py-pydub r-truncnorm +freesasa perl-test-fatal py-pyeda r-trust +freesurfer perl-test-file py-pyedr r-tseries +freetype perl-test-file-contents py-pyee r-tsne +freexl perl-test-file-sharedir py-pyelftools r-ttr +fribidi perl-test-json py-pyem r-tweenr +frobby perl-test-leaktrace py-pyenchant r-twosamplemr +frontier-client perl-test-longstring py-pyepsg r-txdb-hsapiens-ucsc-hg18-knowngene +frontistr perl-test-memory-cycle py-pyerfa r-txdb-hsapiens-ucsc-hg19-knowngene +frugally-deep perl-test-mockobject py-pyeventsystem r-tximeta +fseq perl-test-mocktime py-pyface r-tximport +fsl perl-test-more py-pyfaidx r-tximportdata +fslsfonts perl-test-most py-pyfasta r-tzdb +fstobdf perl-test-needs py-pyfastaq r-ucminf +fstrack perl-test-nowarnings py-pyfftw r-udunits2 +ftgl perl-test-object py-pyfiglet r-units +ftjam perl-test-output py-pyfits r-upsetr +ftk perl-test-perl-critic py-pyfive r-urca +ftobjectlibrary perl-test-pod py-pyflakes r-urlchecker +ftxui perl-test-pod-coverage py-pyfr r-urltools +fujitsu-fftw perl-test-requires py-pygame r-usethis +fujitsu-frontistr perl-test-requiresinternet py-pygdal r-utf8 +fujitsu-mpi perl-test-sharedfork py-pygdbmi r-uuid +fujitsu-ssl2 perl-test-subcalls py-pygelf r-uwot +fullock perl-test-tcp py-pygeos r-v8 +func perl-test-time py-pygetwindow r-variantannotation +functionalplus perl-test-time-hires py-pygit2 r-varselrf +funhpc perl-test-trap py-pygithub r-vcd +funwave perl-test-warn py-pyglet r-vcfr +fuse-overlayfs perl-test-warnings py-pygments r-vctrs +fusion-io perl-test-weaken py-pygments-pytest r-vegan +fvtkhdf perl-test-without-module py-pygmsh r-vfs +fwq perl-test-xml py-pygmt r-vgam +fxdiv perl-test-xml-simple py-pygobject r-vioplot +fxt perl-test-xpath py-pygps r-vipor +fyba perl-test-yaml py-pygpu r-viridis +fzf perl-test2-plugin-nowarnings py-pygraphviz r-viridislite +g2 perl-test2-suite py-pygresql r-visnetwork +g2c perl-text-csv py-pygrib r-vroom +g2o perl-text-csv-xs py-pygtrie r-vsn +g2tmpl perl-text-diff py-pyh5md r-waldo +g4abla perl-text-format py-pyhdf r-watermelon +g4adept perl-text-glob py-pyheadtail r-webshot +g4channeling perl-text-nsp py-pyhmmer r-wgcna +g4emlow perl-text-simpletable py-pyhull r-whisker +g4ensdfstate perl-text-soundex py-pyicu r-withr +g4hepem perl-text-unidecode py-pyinstrument r-wk +g4incl perl-thread-queue py-pyinstrument-cext r-writexl +g4ndl perl-threads py-pyisemail r-wru +g4neutronxs perl-throwable py-pyjnius r-xde +g4nudexlib perl-tie-ixhash py-pyjwt r-xfun +g4particlexs perl-tie-toobject py-pyke r-xgboost +g4photonevaporation perl-time-clock py-pykerberos r-xlconnect +g4pii perl-time-duration py-pykml r-xlconnectjars +g4radioactivedecay perl-time-duration-parse py-pykokkos-base r-xlsx +g4realsurface perl-time-hires py-pykwalify r-xlsxjars +g4saiddata perl-time-piece py-pylab-sdk r-xmapbridge +g4tendl perl-timedate py-pylatex r-xml +g4urrpt perl-tk py-pyld r-xml2 +g4vg perl-tree-simple py-pylev r-xnomial +gadap perl-tree-simple-visitorfactory py-pylibjpeg-libjpeg r-xopen +gamess-ri-mp2-miniapp perl-try-tiny py-pylibjpeg-openjpeg r-xtable +gams perl-type-tiny py-pylibjpeg-rle r-xts +gapbs perl-types-serialiser py-pylibmagic r-xvector +gapcloser perl-universal-can py-pylikwid r-yaimpute +gapfiller perl-universal-isa py-pylint r-yaml +garcon perl-uri py-pylint-gitlab r-yapsa +garfieldpp perl-uri-encode py-pylith r-yaqcaffy +gasnet perl-uri-find py-pylops r-yarn +gatb-core perl-uri-ws py-pymatgen r-yulab-utils +gate perl-want py-pymatreader r-zcompositions +gatepet2stir perl-www-form-urlencoded py-pymbolic r-zeallot +gatetools perl-www-robotrules py-pymc3 r-zip +gatk perl-xml-dom py-pymdown-extensions r-zlibbioc +gau2grid perl-xml-dom-xpath py-pymeeus r-zoo +gaudi perl-xml-filter-buffertext py-pyminifier r3d +gaussian perl-xml-hash-xs py-pymol rabbitmq +gaussian-view perl-xml-libxml py-pymongo rabbitmq-c +gauxc perl-xml-libxslt py-pymoo racket +gawk perl-xml-namespacesupport py-pymorph racon +gbl perl-xml-parser py-pympler raft +gblocks perl-xml-parser-lite py-pymsgbox ragel +gcc perl-xml-quote py-pymummer raja +gcc-runtime perl-xml-regexp py-pymumps raja-perf +gccmakedep perl-xml-sax py-pymupdf ramulator +gccxml perl-xml-sax-base py-pymupdf-fonts randfold +gchp perl-xml-sax-writer py-pymysql random123 +gcta perl-xml-semanticdiff py-pynacl randrproto +gdal perl-xml-simple py-pynio range-v3 +gdb perl-xml-twig py-pynisher rank-run +gdbm perl-xml-writer py-pynn rankstr +gdk-pixbuf perl-xml-xpath py-pynndescent rapidjson +gdl perl-xml-xpathengine py-pynpm raptor2 +gdrcopy perl-yaml py-pynrrd rarpd +geant3 perl-yaml-libyaml py-pynucleus rasdaemon +geant4 perl-yaml-syck py-pynumpress rasqal +geant4-data perl-yaml-tiny py-pynvim ratel +geant4-vmc pestpp py-pynvml ravel +geany petaca py-pynvtx raxml +gearshifft petsc py-pyodbc raxml-ng +gegelati pexsi py-pyogrio ray +gegl pfapack py-pyomo rayleigh +gem5 pfft py-pyopencl raylib +gemma pfind py-pyopengl rccl +gemmlowp pflare py-pyopenssl rccl-tests +genemark-et pflask py-pypar rclone +generalbrokenlines pflogger py-pyparsing rdc +generate-ninja pflotran py-pypdf rdkit +generax pfunit py-pypdf2 rdma-core +genesis pgdspider py-pypeflow rdp-classifier +genfit pgplot py-pypeg2 rdptools +gengeo ph5concat py-pyperclip re2 +gengetopt phantompeakqualtools py-pyperf re2c +genie pharokka py-pypinfo readfq +genomefinisher phast py-pypinyin readline +genometools phasta py-pypistats realm +genomeworks phist py-pypng recola +genrich phoenix py-pyppeteer recola-sm +geode photos py-pyprecice recon +geoip-api-c photos-f py-pyprof2html recorder +geomodel photospline py-pyproj recordproto +geos php py-pyproject-hooks redis +getorganelle phrap-crossmatch-swat py-pyproject-metadata redis-ai +gettext phred py-pyproject-parser redis-plus-plus +gexiv2 phylip py-pypulse reditools +gfal2 phylobayesmpi py-pyqi redland +gfal2-util phyluce py-pyqt-builder redland-bindings +gfan picard py-pyqt4 redset +gffcompare picsar py-pyqt5 redundans +gffread picsarlite py-pyqt5-sip reframe +gflags pidx py-pyqt6 regale +gfsio pig py-pyqt6-sip regcm +gftl pigz py-pyqtgraph regenie +gftl-shared pika py-pyquaternion regtools +ggml pika-algorithms py-pyreadline relax +gh pilercr py-pyrect relion +ghex pilon py-pyrevolve remhos +ghost pindel py-pyrfr rempi +ghostscript pinentry py-pyro-api rename +ghostscript-fonts pinfo py-pyro-ppl rendercheck +giblib pioman py-pyro4 renderproto +giflib pipework py-pyroaring repeatafterme +gimp pipx py-pyrocko repeatmasker +ginac piranha py-pyrodigal repeatmodeler +ginkgo pism py-pyrodigal-gv repeatscout +giraph pixman py-pyrometheus reprimand +git pixz py-pyrr resolve +git-annex pkg-config py-pyrsistent resourceproto +git-fat-git pkgconf py-pysam restic +git-filter-repo pktools py-pyscaf revbayes +git-imerge planck-likelihood py-pyscf revocap-coupler +git-lfs plantuml py-pyscipopt revocap-refiner +gitconddb plasma py-pyscreeze rgb +givaro plink py-pyseer rhash +gl2ps plink-ng py-pyserial rinetd +glab plink2 py-pysftp ripgrep +glew plog py-pyshacl riscv-gnu-toolchain +glfmultiples ploticus py-pyshp rivet +glfw plplot py-pyside2 rkcommon +glib plsm py-pysimdjson rkt-base +glib-bootstrap plumed py-pysindy rkt-cext-lib +glib-networking ply py-pysmartdl rkt-compiler-lib +glibc pmdk py-pysmiles rkt-dynext-lib +glibmm pmemkv py-pysocks rkt-racket-lib +glimmer pmerge py-pysolar rkt-rackunit-lib +glm pmgr-collective py-pyspark rkt-scheme-lib +global pmix py-pyspellchecker rkt-testing-util-lib +globalarrays pmlib py-pyspice rkt-zo-lib +globus-callout pnfft py-pyspnego rlwrap +globus-common pngquant py-pyspoa rmats +globus-ftp-client pngwriter py-pyspod rmgdft +globus-ftp-control pnmpi py-pysqlite3 rmlab +globus-gass-copy poamsa py-pystac rna-seqc +globus-gass-transfer pocl py-pystac-client rnaquast +globus-gsi-callback podio py-pystache rnaz +globus-gsi-cert-utils podman py-pystan rng-tools +globus-gsi-credential podman-compose py-pysurfer rngstreams +globus-gsi-openssl-error poke py-pytablewriter rnpletal +globus-gsi-proxy-core polymake py-pytailf roary +globus-gsi-proxy-ssl polyml py-pytaridx rocal +globus-gsi-sysconfig polypolish py-pytecplot rocalution +globus-gss-assist poorjit py-pytesseract rocblas +globus-gssapi-error poplddecay py-pytest rocdecode +globus-gssapi-gsi poppler py-pytest-aiohttp rocfft +globus-io poppler-data py-pytest-allclose rocjpeg +globus-openssl-module popt py-pytest-arraydiff rocketmq +globus-xio porta py-pytest-astropy rocksdb +globus-xio-gsi-driver portage py-pytest-astropy-header rockstar +globus-xio-pipe-driver portcullis py-pytest-asyncio rocm-bandwidth-test +globus-xio-popen-driver ports-of-call py-pytest-benchmark rocm-clang-ocl +glog possvm py-pytest-cache rocm-cmake +gloo postgis py-pytest-check-links rocm-core +glow postgresql py-pytest-cmake rocm-dbgapi +glpk povray py-pytest-cov rocm-debug-agent +glproto powerapi py-pytest-cpp rocm-device-libs +gluegen powertop py-pytest-datadir rocm-examples +glusterfs ppl py-pytest-doctestplus rocm-gdb +glvis pplacer py-pytest-fail-slow rocm-opencl +glx ppopen-appl-amr-fdm py-pytest-filter-subpackage rocm-openmp-extras +gmake ppopen-appl-bem py-pytest-flake8 rocm-smi-lib +gmap-gsnap ppopen-appl-bem-at py-pytest-flakes rocm-tensile +gmic ppopen-appl-dem-util py-pytest-forked rocm-validation-suite +gmime ppopen-appl-fdm py-pytest-html rocminfo +gmodel ppopen-appl-fdm-at py-pytest-httpbin rocmlir +gmp ppopen-appl-fem py-pytest-isort rocprim +gmsh ppopen-appl-fvm py-pytest-lazy-fixture rocprofiler-compute +gmt ppopen-at py-pytest-memray rocprofiler-compute-viewer +gmtsar ppopen-math-mp py-pytest-metadata rocprofiler-dev +gnat ppopen-math-vis py-pytest-mock rocprofiler-register +gnds pprof py-pytest-mpi rocprofiler-sdk +gnina prank py-pytest-mypy rocprofiler-systems +gnome-common precice py-pytest-openfiles rocpydecode +gnuconfig predixy py-pytest-parallel rocrand +gnupg premake-core py-pytest-pep8 rocshmem +gnuplot presentproto py-pytest-pylint rocsolver +gnuradio preseq py-pytest-qt rocsparse +gnutls pressio-log py-pytest-random-order rocthrust +go pressio-ops py-pytest-regtest roctracer-dev +go-bootstrap pressio-rom py-pytest-remotedata roctracer-dev-api +go-md2man presto py-pytest-reportlog rocwmma +go-sh prettier py-pytest-retry rodinia +goaccess price py-pytest-runner roms +gobject-introspection prime95 py-pytest-socket root +goblin-hmc-sim primer3 py-pytest-subprocess roounfold +gocryptfs prinseq-lite py-pytest-timeout rosco +goimports printproto py-pytest-workflow rose +goma prism py-pytest-xdist ross +gomplate prmon py-python-benedict routinator +google-cloud-cli prng py-python-bioformats routino +google-cloud-cpp probconsrna py-python-box rpcsvc-proto +google-crc32c procenv py-python-calamine rpm +googletest process-in-process py-python-certifi-win32 rpp +gopls procps py-python-constraint rr +gosam-contrib procps-ng py-python-crfsuite rrdtool +goshimmer prod-util py-python-daemon rsbench +gotcha prodigal py-python-dateutil rsem +gource professor py-python-deprecated rsl +gpcnet profugusmc py-python-discovery rstart +gperf proj py-python-docs-theme rstudio +gperftools prokka py-python-docx rsync +gpgme prometheus py-python-dotenv rsyslog +gpi-2 prometheus-cpp py-python-editor rt-tests +gpi-space prophecy4f py-python-engineio rtags +gplates proteowizard py-python-fmask rtax +gprofng-gui protobuf py-python-fsutil rtmpdump +gprolog protobuf-c py-python-gitlab ruby +gptl proxymngr py-python-hostlist ruby-asciidoctor +gptune prrte py-python-igraph ruby-charlock-holmes +gpu-burn pruners-ninja py-python-javabridge ruby-erubis +gpuscout ps-lite py-python-jenkins ruby-gist +gqrx psalg py-python-jose ruby-gnuplot +gr-osmosdr psblas py-python-json-logger ruby-hpricot +grabix pscmc py-python-keystoneclient ruby-mustache +grace psi4 py-python-ldap ruby-narray +grackle psimd py-python-levenshtein ruby-rake +gradle psipred py-python-libsbml ruby-rdiscount +grads pslib py-python-logstash ruby-ronn +grafana psm py-python-louvain ruby-rubyinline +graph500 psmc py-python-lsp-jsonrpc ruby-svn2git +graphblast psrcat py-python-lsp-ruff ruby-terminal-table +graphicsmagick psrchive py-python-lsp-server ruby-thor +graphite2 psrdada py-python-lzo ruby-tmuxinator +graphlib pstreams py-python-magic ruby-unicode-display-width +graphmap pthreadpool py-python-mapnik ruby-xdg +graphviz pueue py-python-markdown-math ruby-zentest +grass pugixml py-python-memcached runc +graylog2-server puk py-python-multipart rust +green-mbpt pukabi py-python-mumps rust-bindgen +green-seet pulseaudio py-python-oauth2 rust-bootstrap +greenx pumgen py-python-picard rust-clap +grep pumi py-python-pptx s4pred +grib-util purify py-python-ptrace s5cmd +gribjump pv py-python-rapidjson sabre +grid pvm py-python-slugify saga-gis +gridlab-d pwgen py-python-socketio sage +gridtools pxz py-python-sotools sailfish +grnboost py-3to2 py-python-subunit salmon +groff py-4suite-xml py-python-swiftclient salmon-tddft +gromacs py-a2wsgi py-python-utils salome-configuration +gromacs-chain-coordinate py-abcpy py-python-xlib salome-medcoupling +gromacs-swaxs py-abipy py-python-xmp-toolkit saltfm +grpc py-about-time py-python3-openid sam2p +gsettings-desktop-schemas py-absl-py py-python3-xlib sambamba +gsi-ncdiag py-accelerate py-pythonqwt samblaster +gsibec py-accessible-pygments py-pythonsollya samrai +gsl py-accimage py-pythran samtools +gsl-lite py-acme-tiny py-pytimeparse samurai +gslib py-acres py-pytng sandbox +gsoap py-adal py-pytokens sandia-micro-benchmarks +gspell py-adb-enhanced py-pytoml sartre +gtfsort py-addict py-pytools sarus +gtk-doc py-adios py-pytorch-gradual-warmup-lr satsuma2 +gtkmm py-adios4dolfinx py-pytorch-lightning savanna +gtkorvo-atl py-advancedhtmlparser py-pytorch-sphinx-theme saws +gtkorvo-cercs-env py-aenum py-pytorch-warmup sbcl +gtkorvo-dill py-affine py-pyts sbcl-bootstrap +gtkorvo-enet py-agate py-pytuq sblim-sfcc +gtkplus py-agate-dbf py-pytweening sbml +gtksourceview py-agate-excel py-pytz sbp +gts py-agate-sql py-pyu2f sbt +guacamole-client py-ahpy py-pyudev scafacos +guacamole-server py-aiobotocore py-pyugrid scala +guidance py-aiocontextvars py-pyupgrade scalasca +guile py-aiodns py-pyusb scale +gunrock py-aiofiles py-pyutilib scallop +gurobi py-aiohappyeyeballs py-pyuwsgi scalpel +gvproxy py-aiohttp py-pyvcf scan-for-matches +gxsview py-aiohttp-cors py-pyvips scantailor +gzip py-aioitertools py-pyvista scc +h2database py-aiojobs py-pyvistaqt sccache +h5bench py-aioredis py-pyviz-comms scine-core +h5cpp py-aiosignal py-pyvolve scine-database +h5hut py-aiosqlite py-pywavelets scine-molassembler +h5part py-aiowebdav2 py-pywcs scine-qcmaquis +h5utils py-alabaster py-pywin32 scine-readuct +h5z-zfp py-albucore py-pywinpty scine-serenity +haccabana py-alembic py-pyworld scine-sparrow +hacckernels py-alive-progress py-pyxlsb scine-utilities +hackrf-host py-alpaca-eval py-pyyaml scine-xtb +hadoop py-alpaca-farm py-pyyaml-env-tag scipoptsuite +hadoop-xrootd py-alphafold py-pyzmq scitokens-cpp +hal py-altair py-qdldl scnlib +half py-altgraph py-qiskit-aer scons +halide py-amici py-qiskit-ibm-provider scorecard +hama py-amityping py-qiskit-nature scorep +hammer py-amplpy py-qiskit-terra scorpio +hapcut2 py-ampltools py-qmtest scotch +hapdip py-amqp py-qpsolvers scr +haploview py-amrex py-qpth screen +haproxy py-angel py-qrcode scripts +hard py-aniso8601 py-qsymm scrnsaverproto +hardlink py-anndata py-qtawesome scrot +harfbuzz py-annexremote py-qtconsole scs +harminv py-annotated-types py-qtpy sctk +hashcat py-annoy py-quantiphy sdl2 +haveged py-ansi2html py-quantities sdl2-image +hazelcast py-ansible py-quantum-blackbird sdl2-ttf +hbase py-ansimarkup py-quantum-xir sdsl-lite +hbm-dramsim2 py-ansiwrap py-quart seacas +hc py-antimeridian py-quast seacr +hcoll py-antipickle py-quaternionic seal +hdf py-antlr4-python3-runtime py-qudida sed +hdf-eos2 py-antspyx py-queryablelist sedacs +hdf-eos5 py-anuga py-querystring-parser seissol +hdf5 py-anvio py-questionary selalib +hdf5-blosc py-anybadge py-qutip semiprof +hdf5-vfd-gds py-anyio py-qutip-qip sendme +hdf5-vol-async py-anytree py-rachis sensei +hdf5-vol-cache py-anywidget py-radiant-mlhub sentencepiece +hdf5-vol-daos py-apache-libcloud py-radical-entk sentieon-genomics +hdf5-vol-external-passthrough py-apache-tvm-ffi py-radical-gtod sepp +hdf5-vol-log py-apebench py-radical-pilot seq-gen +hdfview py-apex py-radical-saga seqan +healpix-cxx py-apeye py-radical-utils seqfu +heaptrack py-apeye-core py-ranger-fm seqkit +heasoft py-apipkg py-rapidfuzz seqprep +heffte py-apispec py-rapidfuzz-capi seqtk +heimdall py-app-model py-rarfile serenity +helib py-appdirs py-rassumfrassum serenity-libint +helics py-applicationinsights py-rasterio serf +helm py-appnope py-rasterstats serialbox +help2man py-apprise py-ratelim sessreg +henson py-apptools py-ratelimiter setserial +hepmc py-apscheduler py-raven setxkbmap +hepmc3 py-arcgis py-ray sfcgal +hepmcanalysis py-arch py-rbtools sfcio +heppdt py-archspec py-rdflib sfml +heputils py-arcp py-rdflib-jsonld sga +hermes py-argcomplete py-rdt sgpp +hermes-shm py-argh py-reacton shadow +herwig3 py-argon2-cffi py-readchar shadowenv +herwigpp py-argon2-cffi-bindings py-readme-renderer shamrock +hevea py-argparse-dataclass py-recommonmark shapeit +heyoka py-argparse-manpage py-redis shapeit4 +hh-suite py-args py-referencing shapelib +hibench py-arkouda py-refgenconf shapemapper +hicolor-icon-theme py-arm-pyart py-refgenie shared-mime-info +hicops py-arpeggio py-regex shark +hicup py-arrow py-regionmask shc +highfive py-art py-regions sheenbidi +highway py-arviz py-reindent shellcheck +highwayhash py-asciitree py-relion shengbte +hiop py-asdf py-relion-blush sherpa +hip py-asdf-astropy py-relion-classranker shiro +hip-tensor py-asdf-coordinates-schemas py-repligit shocklibs +hip-tests py-asdf-standard py-reportlab shoremap +hipace py-asdf-transform-schemas py-reportseff shortstack +hipblas py-asdf-unit-schemas py-repoze-lru showfont +hipblas-common py-asdfghjkl py-reproject shred +hipblaslt py-ase py-requests shtns +hipcc py-asgi-lifespan py-requests-cache shtools +hipcub py-asgiref py-requests-file shuffile +hipdnn py-asn1crypto py-requests-ftp sicer2 +hipfft py-aspy-yaml py-requests-futures sickle +hipfort py-asserts py-requests-kerberos sicm +hipify-clang py-ast-serialize py-requests-mock siesta +hiprand py-asteval py-requests-ntlm sigcpp +hipsolver py-astor py-requests-oauthlib sigio +hipsparse py-astpretty py-requests-toolbelt signalp +hipsparselt py-astroid py-requests-unixsocket signify +hipsycl py-astropy py-requirements-parser silo +hiptt py-astropy-healpix py-reretry simde +hiredis py-astropy-helpers py-resampy simdjson +hisat2 py-astropy-iers-data py-resize-right simgrid +hisea py-asttokens py-resolvelib simmetrix-simmodsuite +hive py-astunparse py-responses simple-dftd3 +hivex py-async-generator py-resultsfile simplemoc +hmmer py-async-lru py-retry simsipm +hohqmesh py-async-timeout py-retry-decorator simul +homer py-asyncio py-retrying simulationio +hoomd-blue py-asyncpg py-retworkx sina +hoppet py-asynctest py-rfc3339-validator singular-factory +hotspot py-atomicwrites py-rfc3986 singularity-eos +hp2p py-atpublic py-rfc3986-validator singularity-hpc +hpc-beeflow py-atropos py-rfc3987-syntax singularityce +hpcc py-ats py-rich sio +hpccg py-attmap py-rich-argparse sionlib +hpcg py-attrs py-rich-click sirius +hpckit py-audioread py-rio-pmtiles sjpeg +hpctoolkit py-auditwheel py-rios skilion-onedrive +hpcviewer py-authlib py-rioxarray skopeo +hpcx-mpi py-autocfg py-rise sl +hpddm py-autodocsumm py-river slang +hpgmg py-autograd py-rmm slate +hping py-autograd-gamma py-rnc2rng sleef +hpl py-automat py-robocrys slepc +hpx py-autopep8 py-robotframework slf4j +hpx-kokkos py-autoray py-rocrate slirp4netns +hpx5 py-autoreject py-roifile sloccount +hsa-amd-aqlprofile py-auxlib py-roman-numerals slurm +hsa-rocr-dev py-avro py-roman-numerals-py slurm-drmaa +hsakmt py-avro-json-serializer py-rope smalt +hsakmt-roct py-avro-python3 py-rosdep smartdenovo +hsf-cmaketools py-awesome-slugify py-rosdistro smartmontools +hssp py-awkward py-rosinstall smee-client +hstr py-awkward-cpp py-rosinstall-generator smof +hto4l py-awkward0 py-rospkg smproxy +htop py-awscrt py-rotary-embedding-torch snakemake +htslib py-ax-platform py-rouge-score snap +http-get py-azote py-routes snap-berkeley +http-load py-azure-batch py-rpds-py snap-korf +http-parser py-azure-cli-command-modules-nspkg py-rply snappy +http-ping py-azure-cli-core py-rpy2 snbone +http-post py-azure-cli-nspkg py-rsa sniffles +httpd py-azure-cli-telemetry py-rsatoolbox snpeff +httperf py-azure-common py-rseqc snphylo +httpie py-azure-core py-rst2pdf snptest +httping py-azure-cosmos py-rtoml soapdenovo-trans +httpress py-azure-datalake-store py-rtree soapdenovo2 +hub py-azure-functions-devops-build py-ruamel-ordereddict socat +hudi py-azure-graphrbac py-ruamel-yaml soci +hugo py-azure-identity py-ruamel-yaml-clib sofa-c +hunspell py-azure-keyvault py-ruamel-yaml-jinja2 sollya +hw-probe py-azure-keyvault-certificates py-rucio-clients solr +hwdata py-azure-keyvault-keys py-ruff somatic-sniper +hwloc py-azure-keyvault-nspkg py-rustworkx sombrero +hwmalloc py-azure-keyvault-secrets py-rx sonlib +hybpiper py-azure-loganalytics py-s3cmd sopt +hybrid-lambda py-azure-mgmt-advisor py-s3fs soqt +hybridsim py-azure-mgmt-apimanagement py-s3transfer sortmerna +hycom py-azure-mgmt-appconfiguration py-sacrebleu sos +hydra py-azure-mgmt-applicationinsights py-sacremoses sosflow +hydrogen py-azure-mgmt-authorization py-safe-netrc source-highlight +hypar py-azure-mgmt-batch py-safetensors sourmash +hyperfine py-azure-mgmt-batchai py-salib sowing +hyperqueue py-azure-mgmt-billing py-sarif-tools sox +hyperscan py-azure-mgmt-botservice py-scandir sp +hyphen py-azure-mgmt-cdn py-scanpy spaceranger +hyphy py-azure-mgmt-cognitiveservices py-schema spack +hypre py-azure-mgmt-compute py-schema-salad spack-configs-dav-sdk +hypre-cmake py-azure-mgmt-consumption py-scientificpython spack-configs-facilities +hypredrive py-azure-mgmt-containerinstance py-scifem spack-configs-tools-sdk +hztool py-azure-mgmt-containerregistry py-scikit-build spades +i3 py-azure-mgmt-containerservice py-scikit-build-core span-lite +ibm-databroker py-azure-mgmt-core py-scikit-fmm spark +ibmisc py-azure-mgmt-cosmosdb py-scikit-fuzzy sparse +icarus py-azure-mgmt-datalake-analytics py-scikit-image sparsehash +iceauth py-azure-mgmt-datalake-store py-scikit-learn sparskit +icedtea py-azure-mgmt-datamigration py-scikit-learn-extra sparta +icet py-azure-mgmt-deploymentmanager py-scikit-matter spath +icey py-azure-mgmt-devtestlabs py-scikit-optimize spatialdata +ico py-azure-mgmt-dns py-scikit-sparse spatter +icon py-azure-mgmt-eventgrid py-scikits-odes spdk +icu4c py-azure-mgmt-eventhub py-scine-chemoton spdlog +id3lib py-azure-mgmt-hdinsight py-scine-puffin specfem3d-globe +idba py-azure-mgmt-imagebuilder py-scinum spectra +idg py-azure-mgmt-iotcentral py-scipy spectre +idl py-azure-mgmt-iothub py-scitokens spectrum-mpi +iegenlib py-azure-mgmt-iothubprovisioningservices py-scooby speex +ignite py-azure-mgmt-keyvault py-scoop speexdsp +igprof py-azure-mgmt-kusto py-scp sperr +igraph py-azure-mgmt-loganalytics py-screed spfft +igv py-azure-mgmt-managedservices py-scs spglib +igvtools py-azure-mgmt-managementgroups py-sdmetrics sph2pipe +ike-scan py-azure-mgmt-maps py-sdnotify spherepack +ilmbase py-azure-mgmt-marketplaceordering py-sdv sphexa +ima-evm-utils py-azure-mgmt-media py-seaborn spindle +imagemagick py-azure-mgmt-monitor py-secretstorage spiner +imake py-azure-mgmt-msi py-seekpath spiral-package-fftx +imath py-azure-mgmt-netapp py-segmentation-models-pytorch spiral-package-hcol +imgui py-azure-mgmt-network py-selenium spiral-package-jit +imlib2 py-azure-mgmt-nspkg py-semantic-version spiral-package-mpi +imod py-azure-mgmt-policyinsights py-semver spiral-package-simt +imp py-azure-mgmt-privatedns py-send2trash spiral-software +impalajit py-azure-mgmt-rdbms py-sentencepiece spla +improved-rdock py-azure-mgmt-recoveryservices py-sentry-sdk spm +impute2 py-azure-mgmt-recoveryservicesbackup py-seqeval spot +indicators py-azure-mgmt-redhatopenshift py-sequence-models sprng +infernal py-azure-mgmt-redis py-seriate sqlcipher +influxdb py-azure-mgmt-relay py-serpent sqlite +iniparser py-azure-mgmt-reservations py-session-info sqlite-jdbc +inputproto py-azure-mgmt-resource py-setproctitle sqlitebrowser +integratorxx py-azure-mgmt-search py-setupmeta sqoop +intel-gpu-tools py-azure-mgmt-security py-setuptools squashfs +intel-gtpin py-azure-mgmt-servicebus py-setuptools-cpp squashfs-mount +intel-llvm py-azure-mgmt-servicefabric py-setuptools-git squashfuse +intel-mlc py-azure-mgmt-signalr py-setuptools-git-versioning squid +intel-mpi-benchmarks py-azure-mgmt-sql py-setuptools-reproducible sra-tools +intel-oneapi-advisor py-azure-mgmt-sqlvirtualmachine py-setuptools-rust sratoolkit +intel-oneapi-ccl py-azure-mgmt-storage py-setuptools-scm srcml +intel-oneapi-compilers py-azure-mgmt-trafficmanager py-setuptools-scm-git-archive srcml-identifier-getter-tool +intel-oneapi-compilers-classic py-azure-mgmt-web py-sfepy srilm +intel-oneapi-dal py-azure-multiapi-storage py-sgp4 srm-ifce +intel-oneapi-dnn py-azure-nspkg py-sh sse2neon +intel-oneapi-dpct py-azure-storage-blob py-shap sshfs +intel-oneapi-dpl py-azure-storage-common py-shapely sshpass +intel-oneapi-inspector py-azure-storage-nspkg py-shellescape ssht +intel-oneapi-ipp py-b2luigi py-shellingham ssmtp +intel-oneapi-ippcp py-babel py-shiboken2 sspace-longread +intel-oneapi-itac py-backcall py-shippinglabel sspace-standard +intel-oneapi-mkl py-backoff py-shortbred sst-core +intel-oneapi-mpi py-backpack-for-pytorch py-shortuuid sst-dumpi +intel-oneapi-runtime py-backports-abc py-shroud sst-elements +intel-oneapi-tbb py-backports-cached-property py-shtab sst-macro +intel-oneapi-vpl py-backports-entry-points-selectable py-simpervisor sst-transports +intel-oneapi-vtune py-backports-lzma py-simple-slurm stacks +intel-pin py-backports-os py-simpleeval staden-io-lib +intel-tbb py-backports-ssl-match-hostname py-simplegeneric star +intel-xed py-backports-tarfile py-simplejson star-ccm-plus +interproscan py-backports-tempfile py-simplekml starlight +intltool py-backports-weakref py-simpletraj starpu +ioapi py-backports-zoneinfo py-simpy starship +ior py-bagit py-simsimd startup-notification +iotaa py-bagit-profile py-singledispatchmethod stat +iozone py-bakta py-sip stata +ip py-bandit py-six stc +ipcalc py-barectf py-skl2onnx stdexec +iperf2 py-basemap py-slepc4py steps +iperf3 py-bash-kernel py-slicer stinger +ipm py-basis-set-exchange py-slurm-pipeline storm +ipopt py-batchspawner py-smac stow +iproute2 py-bayesian-optimization py-smart-open strace +iptraf-ng py-bcbio-gff py-smartredis stream +iq-tree py-bcolz py-smartsim stress +irep py-bcrypt py-smartypants stress-ng +isa-l py-bdbag py-smmap stressapptest +isa-l-crypto py-beaker py-smolagents string-view-lite +isaac py-beancount py-smote-variants stringtie +isaac-server py-beartype py-snakemake-executor-plugin-azure-batch stripack +isc-dhcp py-beautifulsoup4 py-snakemake-executor-plugin-cluster-generic structure +iscdtoolbox-commons py-beniget py-snakemake-executor-plugin-cluster-sync strumpack +iscdtoolbox-elasticity py-bibtexparser py-snakemake-executor-plugin-drmaa su2 +isescan py-bidict py-snakemake-executor-plugin-flux sublime-text +isl py-bids-validator py-snakemake-executor-plugin-googlebatch subread +iso-codes py-bids-validator-deno py-snakemake-executor-plugin-kubernetes subversion +isoquant py-bidscoin py-snakemake-executor-plugin-slurm suite-sparse +ispc py-bidskit py-snakemake-executor-plugin-slurm-jobstep sumaclust +istio py-bidsschematools py-snakemake-executor-plugin-tes sumo +itensor py-bigdft py-snakemake-interface-common sundials +itk py-bigfloat py-snakemake-interface-executor-plugins suntans +itstool py-billiard py-snakemake-interface-logger-plugins superchic +itsx py-binary py-snakemake-interface-report-plugins superlu +iwyu py-binaryornot py-snakemake-interface-scheduler-plugins superlu-dist +jacamar-ci py-bintrees py-snakemake-interface-storage-plugins superlu-mt +jackcess py-binwalk py-snakemake-storage-plugin-azure supermagic +jafka py-biobb-common py-snakemake-storage-plugin-fs surfer +jags py-biobb-gromacs py-snakemake-storage-plugin-ftp survey +jali py-biobb-io py-snakemake-storage-plugin-gcs sw4 +jansi py-biobb-model py-snakemake-storage-plugin-http sw4lite +jansi-native py-biobb-structure-checking py-snakemake-storage-plugin-pelican swan +jansson py-biobb-structure-utils py-snakemake-storage-plugin-rucio swap-assembler +jasper py-bioblend py-snakemake-storage-plugin-s3 swarm +javafx py-biom-format py-snakemake-storage-plugin-sftp swfft +jbigkit py-biomine py-snakemake-storage-plugin-zenodo swftools +jblob py-biopandas py-snakeviz swiftsim +jchronoss py-biopython py-snappy swig +jdk py-biosppy py-sncosmo swipl +jedi-cmake py-biotite py-sniffio syclomatic +jellyfish py-biotraj py-snoop symengine +jemalloc py-bitarray py-snowballstemmer symlinks +jetty-project py-bitshuffle py-snuggs sympack +jhpcn-df py-bitstring py-sobol-seq sympol +jimtcl py-bitstruct py-social-auth-core sys-sage +jline3 py-black py-sonlib sysbench +jmol py-blake3 py-sortedcollections syscalc +jogl py-bleach py-sortedcontainers sysfsutils +jonquil py-blessed py-soundfile sysget +jose py-blessings py-soupsieve sysstat +jpegoptim py-blight py-soyclustering systemc +jq py-blinker py-spacy systemd +json-c py-blis py-spacy-legacy systemtap +json-cwx py-blosc py-spacy-loggers sz +json-fortran py-blosc2 py-spacy-models-en-core-web-sm sz-cpp +json-glib py-blosum py-spacy-models-en-vectors-web-lg sz3 +jsoncons py-bluepyefe py-sparse szauto +jsoncpp py-bluepyemodel py-spatialist szx +jsonnet py-bluepyopt py-spatialite t8code +jstorm py-bmap-tools py-spatialpandas tabix +jube py-bmtk py-spdlog tajo +judy py-bokeh py-spectra talass +jujutsu py-boltons py-spectral talloc +julea py-boom-boot-manager py-speech-recognition talosctl +julia py-boost-histogram py-spefile tamaas +jump py-boto py-spgl1 tandem +junit4 py-boto3 py-spglib tangram +just py-botocore py-spherical tantan +justbuild py-botorch py-sphericart tar +jwt-cpp py-bottle py-sphericart-torch targetp +jxrlib-debian py-bottleneck py-sphinx task +k8 py-bqplot py-sphinx-argparse taskd +kadath py-braceexpand py-sphinx-autodoc-typehints taskflow +kafka py-brain-indexer py-sphinx-basic-ng tasmanian +kagen py-branca py-sphinx-book-theme tassel +kahip py-bravado py-sphinx-bootstrap-theme tau +kaiju py-bravado-core py-sphinx-click tauola +kakoune py-breakseq2 py-sphinx-copybutton tb-lmto +kakoune-lsp py-breathe py-sphinx-design tbl2asn +kaks-calculator py-brian py-sphinx-fortran tblite +kaldi py-brian2 py-sphinx-gallery tcl +kalign py-brotli py-sphinx-github-changelog tcl-bwidget +kallisto py-brotlipy py-sphinx-immaterial tcl-itcl +karma py-bsddb3 py-sphinx-jinja2-compat tcl-tcllib +kassiopeia py-build py-sphinx-multiversion tcl-tclxml +kbd py-bx-python py-sphinx-prompt tcl-togl +kbproto py-cachecontrol py-sphinx-removed-in tclap +kcov py-cached-property py-sphinx-rtd-dark-mode tcoffee +kdiff3 py-cachetools py-sphinx-rtd-theme tcpdump +kea py-cachey py-sphinx-tabs tcptrace +kealib py-cachy py-sphinx-theme-builder tcsh +keepalived py-cairocffi py-sphinx-toolbox tdengine +keepassxc py-cairosvg py-sphinxautomodapi tealeaf +kenlm py-caliper-reader py-sphinxcontrib-applehelp tecio +kentutils py-callmonitor py-sphinxcontrib-bibtex teckit +keyutils py-calver py-sphinxcontrib-devhelp tecplot +khmer py-cantoolz py-sphinxcontrib-htmlhelp telegraf +kibana py-carputils py-sphinxcontrib-issuetracker telocal +kicad py-cartopy py-sphinxcontrib-jquery tempestextremes +kim-api py-casadi py-sphinxcontrib-jsmath tempestremap +kinesis py-catalogue py-sphinxcontrib-mermaid templight +kineto py-catkin-pkg py-sphinxcontrib-moderncmakedomain templight-tools +kitty py-cattrs py-sphinxcontrib-napoleon tempo +kmergenie py-cbor2 py-sphinxcontrib-plantuml tengine +kmod py-cclib py-sphinxcontrib-programoutput tensorflow-serving-client +knem py-cdo py-sphinxcontrib-qthelp tensorpipe +kokkos py-cdsapi py-sphinxcontrib-serializinghtml termcap +kokkos-fft py-cekit py-sphinxcontrib-spelling terminalimageviewer +kokkos-kernels py-celery py-sphinxcontrib-tikz tesseract +kokkos-nvcc-wrapper py-cellprofiler py-sphinxcontrib-trio test-drive +kokkos-tools py-cellprofiler-core py-sphinxcontrib-websupport tests-sos +koliop py-centrosome py-sphinxemoji testu01 +kraken py-cerberus py-sphobjinv tetgen +kraken2 py-certifi py-spykeutils tethex +krakenuniq py-certipy py-spython tetranscripts +krb5 py-cf-units py-sqlalchemy texi2html +krims py-cf-xarray py-sqlalchemy-migrate texinfo +kripke py-cffconvert py-sqlalchemy-stubs texlive +kubectl py-cffi py-sqlalchemy-utils texstudio +kubernetes py-cfgrib py-sqlitedict textparser +kumi py-cfgv py-sqlparse tfel +kvasir-mpl py-cftime py-srsly the-platinum-searcher +kvtree py-cgen py-sseclient the-silver-searcher +kylin py-chai py-sshtunnel theia-ide +kynema py-chai-lab py-sspilib thepeg +kynema-driver py-chainer py-stack-data thermo4pfm +kynema-fmb py-chainforgecodegen py-starfile thesis +kynema-sgf py-chainmap py-starlette thornado-mini +kynema-ugf py-chalice py-starlette-context thrift +kyotocabinet py-chardet py-starsessions thrust +ladot py-charm4py py-stashcp thunar +laghos py-charset-normalizer py-statmorph thunar-volman +lame py-chart-studio py-statsmodels tidy-html5 +lammps py-cheap-repr py-stdlib-list tig +lammps-example-plugin py-checkm-genome py-stestr tiled-mm +landsfcutil py-cheetah3 py-stevedore time +lanl-cmake-modules py-chemfiles py-stomp-py timedatex +lapackpp py-chemiscope py-stopit timemory +last py-cheroot py-storm timew +lastz py-cherrypy py-stratify tini +laszip py-chex py-strawberryfields tinker +latex2html py-choreographer py-streamlit tiny-tensor-compiler +latte py-chronyk py-stringzilla tinycbor +launchmon py-ci-info py-striprtf tinygltf +laynii py-ci-sdr py-stsci-distutils tinyobjloader +lazygit py-cig-pythia py-stui tinyxml +lazyten py-cinema-lib py-submitit tinyxml2 +lbann py-cinemasci py-subrosa tioga +lbfgspp py-circus py-subword-nmt tippecanoe +lbxproxy py-citeproc-py py-supermercado tiptop +lc-framework py-clarabel py-superqt tiramisu +lcals py-clean-text py-supervisor tix +lcc py-cleo py-svgpath tixi +lcgenv py-click py-svgpathtools tk +lci py-click-didyoumean py-svgutils tkrzw +lcio py-click-option-group py-svgwrite tl-expected +lcms py-click-plugins py-swagger-spec-validator tldd +lcov py-click-repl py-symengine tmalign +ldak py-cligj py-symfit tmhmm +ldc py-clikit py-sympy tmscore +ldc-bootstrap py-climate py-syned tmux +ldsc py-climax py-sysrsync tnftp +lean4 py-clint py-systemd-python tofu-ls +legion py-clip-anytorch py-tabledata tomcat +lemon py-clipboard py-tables toml-f +leptonica py-cloudauthz py-tabulate toml11 +lerc py-cloudbridge py-tatsu tomlplusplus +less py-cloudpathlib py-tblib topaz +lesstif py-cloudpickle py-tbparse topaz-3dem +leveldb py-clustershell py-tcolorpy topcom +lfortran py-cma py-tempita tophat +lftp py-cmaes py-templateflow torch-scatter +lhapdf py-cmake-format py-tempora torque +lhapdf5 py-cmake-parser py-tenacity totalview +lhapdfsets py-cmocean py-tensorboard toybox +libabigail py-cmseq py-tensorboard-data-server tpm2-tss +libaec py-cmsml py-tensorboard-plugin-wit tracer +libaio py-cmyt py-tensorboardx tracy +libao py-coapthon3 py-tensorflow tracy-client +libapplewm py-coca-pytorch py-tensorflow-datasets tramonto +libapreq2 py-coclust py-tensorflow-estimator transabyss +libarchive py-codebasin py-tensorflow-hub transdecoder +libasr py-codecarbon py-tensorflow-metadata transferbench +libassuan py-codechecker py-tensorflow-probability transposome +libatasmart py-codepy py-tensorly transrate +libatomic-ops py-codespell py-tensorstore transset +libavif py-coherent-licensed py-termcolor trapproto +libbacktrace py-coilmq py-termgraph tree +libbeagle py-colabtools py-terminado tree-sitter +libbeato py-colorama py-terminaltables treelite +libbeef py-colorcet py-tern treesub +libbigwig py-colorclass py-tesorter trexio +libbinio py-colored py-testfixtures trf +libblastrampoline py-colored-traceback py-testinfra triangle +libbsd py-coloredlogs py-testpath trident +libbson py-colorful py-testrepository trilinos +libbytesize py-colorio py-testresources trilinos-catalyst-ioss-adapter +libcanberra py-colorlog py-testscenarios trimal +libcap py-colorlover py-testtools trimgalore +libcap-ng py-colormath py-tetoolkit trimmomatic +libcatalyst py-colorpy py-text-unidecode trinity +libceed py-colorspacious py-textblob trinotate +libcerf py-colossalai py-texttable trivy +libcgroup py-colour py-textual trnascan-se +libcifpp py-comm py-textual-fspicker trng +libcint py-common py-textual-plotext trompeloeil +libcircle py-commonmark py-textwrap3 truchas +libconfig py-conan py-textx tskit +libconfuse py-conda-inject py-tf-keras tsne-cuda +libcroco py-conda-souschef py-tf2onnx tulip +libctl py-confection py-tfdlpack tumbler +libcudf py-configargparse py-theano turbine +libcuml py-configobj py-thewalrus turbomole +libcumlprims py-configparser py-thinc turbovnc +libcxi py-configspace py-thop turnserver +libcxxwrap-julia py-confluent-kafka py-threadpoolctl twm +libcyaml py-connectionpool py-throttler tycho2 +libdaemon py-consolekit py-tidynamics typescript +libdap4 py-constantly py-tifffile typhon +libdatrie py-contextily py-tiktoken typhonio +libdc1394 py-contextlib2 py-tilelang typos +libde265 py-contexttimer py-timezonefinder typst +libdeflate py-continuum py-timm ucc +libdicom py-contourpy py-tinyarray uchardet +libdisplay-info py-contrib py-tinycss2 ucsc-bedclip +libdistributed py-control py-tinydb ucsc-bedgraphtobigwig +libdivsufsort py-convertdate py-tinyrecord ucx +libdmx py-convokit py-tld udunits +libdrm py-cookiecutter py-tldextract ufo-core +libdwarf py-coolname py-tmtools ufo-filters +libeatmydata py-copulas py-tokenize-rt ufs-utils +libecpint py-corner py-tokenizers ufs-weather-model +libedit py-correctionlib py-toml uftrace +libefence py-corrfunc py-tomli umap +libelf py-counter py-tomli-w umesimd +libemos py-courlan py-tomlkit umoci +libepoxy py-cov-core py-tomopy umpire +libestr py-coverage py-toolz unblur +libev py-coveralls py-topiary-asr uncrustify +libevdev py-cppheaderparser py-toposort unibilium +libevent py-cppy py-torch unifdef +libevpath py-cramjam py-torch-c-dlpack-ext unifyfs +libexif py-crashtest py-torch-cluster unigen +libfabric py-crc32c py-torch-fidelity unison +libfastcommon py-crcmod py-torch-geometric units +libfastjson py-croniter py-torch-harmonics units-llnl +libffi py-crossmap py-torch-nvidia-apex unittest-cpp +libffs py-cryolobm py-torch-scatter universal +libfirefly py-cryptography py-torch-sparse universal-ctags +libfive py-css-parser py-torch-spex unixodbc +libflame py-cssselect py-torch-spline-conv unqlite +libfms py-cssselect2 py-torchaudio unrar +libfontenc py-cssutils py-torchbenchmark unuran +libfort py-csvkit py-torchdata unzip +libfs py-ctgan py-torchdiffeq upcxx +libftdi py-cuda-bindings py-torchfile upp +libfuse py-cuda-core py-torchgeo uqtk +libfyaml py-cuda-pathfinder py-torchmeta uriparser +libgain py-cudf py-torchmetrics usalign +libgcrypt py-cufflinks py-torchseg usbutils +libgd py-cuml py-torchsummary usearch +libgdsii py-cupy py-torchtext userspace-rcu +libgee py-current py-torchtoolbox ut +libgeopm py-currentscape py-torchvision utf8cpp +libgeopmd py-curryreader py-tornado utf8proc +libgeotiff py-curvlinops-for-pytorch py-tox uthash +libgff py-custodian py-toyplot util-linux +libgit2 py-custom-inherit py-toytree util-linux-uuid +libgit2-glib py-cutadapt py-tpot util-macros +libgpg-error py-cvxopt py-tqdm uvw +libgpiod py-cvxpy py-traceback2 uwtools +libgpuarray py-cwl-upgrader py-trafilatura vacuumms +libgridxc py-cwl-utils py-trainax vala +libgssglue py-cwltool py-traitlets valgrind +libgta py-cx-oracle py-traits valijson +libgtextutils py-cycler py-traitsui vampirtrace +libgtop py-cykhash py-traittypes vapor +libgudev py-cylc-flow py-trame vardictjava +libhandy py-cylc-rose py-trame-client variorum +libharu py-cylp py-trame-common varnish-cache +libhbaapi py-cymem py-trame-server varscan +libheif py-cyordereddict py-trame-vtk vasp +libhio py-cython py-trame-vuetify vbfnlo +libhugetlbfs py-cython-bbox py-transformer-engine vbz-compression +libiberty py-cyvcf2 py-transformers vc +libibumad py-d2to1 py-transforms3d vcftools +libical py-dace py-transonic vcsh +libicd py-dacite py-tree vde +libice py-dadi py-tree-math vdt +libiconv py-dalib py-tree-sitter veccore +libid3tag py-damask py-tree-sitter-c vecgeom +libidl py-darshan py-treehash veclibfort +libidn py-dasbus py-treelib vecmem +libidn2 py-dash py-triangle vectorclass-version2 +libimagequant py-dash-bootstrap-components py-trieregex vegas2 +libimobiledevice py-dash-svg py-trimesh velero +libinih py-dask py-triton veloc +libint py-dask-awkward py-trl velvet +libisal py-dask-expr py-trojanzoo-sphinx-theme velvetoptimiser +libiscsi py-dask-glm py-trove-classifiers vep +libjpeg py-dask-histogram py-trx-python vep-cache +libjpeg-turbo py-dask-jobqueue py-tuiview verdict +libjson py-dask-ml py-tuspy verible +libjwt py-dask-mpi py-tuswsgi verilator +libjxl py-dask-sphinx-theme py-tweedledum verrou +libkcapi py-databricks-cli py-twine vesta +libkml py-dataclasses py-twisted vfkit +libksba py-dataclasses-json py-ty vgm +liblas py-datacube py-typed-ast videoproto +liblbfgs py-datalad py-typeguard viennarna +liblbxutil py-datalad-container py-typepy viewres +libleidenalg py-datalad-deprecated py-typer vifi +liblockfile py-datalad-hirni py-types-dataclasses vigra +liblognorm py-datalad-metadata-model py-types-geopandas vim +liblouis py-datalad-metalad py-types-pkg-resources vir-simd +libluv py-datalad-neuroimaging py-types-psutil virtualgl +liblzf py-datalad-webapp py-types-python-dateutil visit +libmacaroons py-dataproperty py-types-pytz visit-cgns +libmad py-datasets py-types-pyyaml visit-ffp +libmatheval py-datashader py-types-requests visit-mfem +libmaus2 py-datatrove py-types-setuptools visit-silo +libmaxminddb py-dateparser py-types-shapely visit-unv +libmbim py-dateutils py-types-tqdm viskores +libmcfp py-datrie py-types-typed-ast vite +libmcrypt py-dbf py-types-urllib3 vizglow +libmd py-dbfread py-typesentry vmatch +libmesh py-dcm2bids py-typeshed-client vmc +libmetalink py-dcmstack py-typing-extensions vmd +libmetatensor py-deap py-typing-inspect volk +libmetatensor-torch py-debtcollector py-typing-inspection voms +libmetatomic-torch py-debugpy py-typish voropp +libmicrodns py-decorator py-tzdata votca +libmicrohttpd py-deepdiff py-tzlocal vpfft +libmmtf-cpp py-deepecho py-ubiquerg vpic +libmng py-deephyper py-uc-micro-py vsearch +libmnl py-deepmerge py-ucsf-pyem vsftpd +libmo-unpack py-deepsig-biocomp py-ucx-py vt +libmodbus py-deepspeed py-uhi vtable-dumper +libmolgrid py-deeptools py-ujson vtk +libmonitor py-deeptoolsintervals py-ultralytics vtk-h +libmpdclient py-defusedxml py-umalqurra vtk-m +libmypaint py-deisa py-umap-learn vvtest +libnbc py-deisa-core py-umi-tools w3emc +libndp py-deisa-dask py-uncertainties w3m +libnet py-demjson py-uncertainty-toolbox w3nco +libnetfilter-conntrack py-dendropy py-unfoldnd wannier90 +libnetfilter-cthelper py-deprecat py-unicycler warpx +libnetfilter-cttimeout py-deprecated py-unidecode wasi-sdk-prebuilt +libnetfilter-queue py-deprecation py-unittest2py3k watch +libnetworkit py-deprecation-alias py-universal-pathlib wayland +libnfnetlink py-derivative py-unshare wayland-protocols +libnfs py-descartes py-unyt wcs +libnfsidmap py-devito py-update-checker wcslib +libnftnl py-devlib py-uproot webbench +libnids py-dgl py-uproot3 weechat +libnl py-dh-scikit-optimize py-uproot3-methods weighttp +libnotify py-diagnostic py-uqinn wget +libnova py-dict2css py-uri-template wgl +libnrm py-dictdiffer py-uritemplate wgrib2 +libnsl py-dictobj py-url-normalize wgsim +libogg py-dill py-urllib3 which +liboldx py-dinosaur py-urllib3-secure-extra whip +libopts py-dipy py-urwid whizard +libp11 py-dirtyjson py-us wi4mpi +libpam py-disbatch py-userpath win-file +libpaper py-discover py-usgs win-gpg +libpcap py-diskcache py-utils win-sdk +libpciaccess py-dist-meta py-uv win-wdk +libpfm4 py-distance py-uv-build winbison +libpipeline py-distlib py-uv-dynamic-versioning windowswmproto +libplist py-distributed py-uvicorn wiredtiger +libpmemobj-cpp py-distro py-uvloop wireshark +libpng py-django py-uvw wise2 +libpostal py-dlcpar py-uwsgi wonton +libpressio py-dm-haiku py-uxarray wordnet +libpressio-adios1 py-dm-tree py-validate-pyproject wps +libpressio-adios2 py-dnaio py-validators wrf +libpressio-dataset py-dnspython py-vascpy wrf-io +libpressio-errorinjector py-docker py-vcf-kit wrk +libpressio-jit py-dockerpy-creds py-vcrpy wsmancli +libpressio-nvcomp py-docket py-vcstool wt +libpressio-opt py-docopt py-vcstools wtdbg2 +libpressio-predict py-docopt-ng py-vcversioner wxparaver +libpressio-rmetric py-docstring-parser py-vector wxpropgrid +libpressio-sperr py-docstring-to-markdown py-vector-quantize-pytorch wxwidgets +libpressio-tools py-docutils py-vermin x11perf +libpressio-tthresh py-docutils-stubs py-vermouth-martinize x264 +libproxy py-dogpile-cache py-versioneer xabclib +libpsl py-doit py-versioneer-518 xalan-c +libpsm3 py-dolfinx-mpc py-versioningit xapian-core +libpsml py-dom-toml py-verspec xauth +libpspio py-domdf-python-tools py-vesin xbacklight +libpthread-stubs py-dominate py-vine xbae +libpulsar py-donfig py-virtualenv xbiff +libqglviewer py-dotmap py-virtualenv-clone xbitmaps +libqrencode py-dotnetcore2 py-virtualenvwrapper xbraid +libquo py-downhill py-visdom xcalc +libraqm py-doxypypy py-vispy xcb-demo +libraw1394 py-dpath py-vl-convert-python xcb-proto +librdkafka py-drep py-voluptuous xcb-util +librelp py-drmaa py-vsc-base xcb-util-cursor +libreproc py-dryscrape py-vsc-install xcb-util-errors +libressl py-duecredit py-vsts xcb-util-image +libristra py-dulwich py-vsts-cd-manager xcb-util-keysyms +librmm py-dunamai py-wadler-lindig xcb-util-renderutil +librom py-dvc py-waitress xcb-util-wm +librsb py-dxchange py-walinuxagent xcb-util-xrm +librsvg py-dxfile py-wand xcdf +librtlsdr py-dynaconf py-wandb xcfun +librttopo py-dynim py-warcio xclip +libsakura py-earth2mip py-warlock xclipboard +libsamplerate py-earthengine-api py-wasabi xclock +libseccomp py-easybuild-easyblocks py-watchdog xcmiscproto +libsecret py-easybuild-easyconfigs py-watchfiles xcmsdb +libsegfault py-easybuild-framework py-waterdynamics xcompmgr +libsharp py-eccodes py-waves xconsole +libshm py-ecdsa py-wcsaxes xcrysden +libsigcpp py-ecmwf-opendata py-wcwidth xcursor-themes +libsignal-protocol-c py-ecmwflibs py-webargs xcursorgen +libsigsegv py-ecos py-webcolors xdbedizzy +libsixel py-edam-ontology py-webdataset xdelta +libslirp py-edffile py-webdavclient3 xditview +libsm py-edfio py-webencodings xdm +libsmeagol py-edflib-python py-webkit-server xdmf3 +libsndfile py-editables py-weblogo xdotool +libsodium py-editdistance py-webob xdpyinfo +libsolv py-edlib py-websocket-client xdriinfo +libspatialindex py-eeglabio py-websockets xedit +libspatialite py-eerepr py-werkzeug xeniumranger +libspiro py-efel py-wesanderson xerces-c +libsplash py-efficientnet-pytorch py-wget xeus +libspng py-eg py-whatshap xev +libssh py-eigenpy py-wheel xextproto +libssh2 py-einconv py-whenever xeyes +libstdcompat py-einops py-whey xf86bigfontproto +libsvm py-elastic-transport py-whey-pth xf86dga +libszip py-elasticsearch py-whichcraft xf86dgaproto +libtar py-elasticsearch-dsl py-whoosh xf86driproto +libtasn1 py-elecsolver py-widgetsnbextension xf86miscproto +libtermkey py-elephant py-wids xf86rushproto +libthai py-elevation py-wigners xf86vidmodeproto +libtheora py-ema-pytorch py-win-unicode-console xfce4-appfinder +libtiff py-email-validator py-wincertstore xfce4-core +libtirpc py-embedding-reader py-word2number xfce4-panel +libtlx py-emcee py-wordcloud xfce4-session +libtomlc99 py-emoji py-workload-automation xfce4-settings +libtommath py-empy py-wradlib xfconf +libtool py-entrypoints py-wrapt xfd +libtorrent py-enum-tools py-wsproto xfdesktop +libtraceevent py-envisage py-wstool xfindproxy +libtree py-ephem py-wub xfontsel +libuecc py-eprosima-fastdds py-wurlitzer xforms +libunistring py-epydoc py-ww xfs +libunwind py-equation py-wxflow xfsdump +liburcu py-equinox py-wxmplot xfsinfo +liburing py-espresso py-wxpython xfsprogs +libusb py-espressopp py-x-clip xfwm4 +libusbmuxd py-et-xmlfile py-x21 xfwp +libuser py-ete3 py-xanadu-cloud-client xgamma +libuv py-etelemetry py-xarray xgboost +libuv-julia py-etils py-xarray-regrid xgc +libva py-eval-type-backport py-xarray-tensorstore xhmm +libvdwxc py-evaluate py-xattr xhost +libverto py-eventlet py-xcdat xictools +libvips py-evodiff py-xdot xineramaproto +libvorbis py-ewah-bool-utils py-xenv xinit +libvori py-exarl py-xesmf xinput +libvpx py-exceptiongroup py-xgboost xios +libvterm py-execnet py-xgcm xkbcomp +libwebp py-executing py-xhistogram xkbdata +libwebsockets py-exhale py-xlrd xkbevd +libwhich py-exifread py-xlsxwriter xkbprint +libwindowswm py-exodus-bundler py-xlwt xkbutils +libwmf py-expandvars py-xmlplain xkeyboard-config +libwnck py-expecttest py-xmlrunner xkill +libx11 py-exponax py-xmltodict xl +libxau py-extension-helpers py-xonsh xload +libxaw py-extras py-xopen xlogo +libxaw3d py-ez-setup py-xpyb xlsatoms +libxc py-f90nml py-xskillscore xlsclients +libxcb py-f90wrap py-xtb xlsfonts +libxcomposite py-fabric py-xvfbwrapper xmag +libxcrypt py-fabric3 py-xxhash xman +libxcursor py-fair-esm py-xyzservices xmessage +libxcvt py-fairscale py-yacman xmh +libxdamage py-faker py-yacs xmlf90 +libxdmcp py-fakeredis py-yahmm xmlrpc-c +libxevie py-falcon py-yajl xmlto +libxext py-fallocate py-yamlreader xmodmap +libxfce4ui py-fastai py-yapf xmore +libxfce4util py-fastaindex py-yarl xnedit +libxfixes py-fastapi py-yaspin xnnpack +libxfont py-fastapi-utils py-yolk3k xolotl +libxfont2 py-fastavro py-your xorg-cf-files +libxfontcache py-fastcache py-youtube-dl xorg-docs +libxft py-fastcluster py-yq xorg-gtest +libxi py-fastcore py-yt xorg-server +libxinerama py-fastcov py-yt-dlp xorg-sgml-doctools +libxkbcommon py-fastdownload py-yt-dlp-ejs xorgproto +libxkbfile py-fastdtw py-yte xphelloworld +libxkbui py-fasteners py-ytopt xplor-nih +libxml2 py-fastfold py-ytopt-autotune xplsprinters +libxmu py-fastjsonschema py-z3-solver xpmem +libxp py-fastobo py-zarr xpr +libxpm py-fastpath py-zc-buildout xprehashprinterlist +libxpresent py-fastprogress py-zc-lockfile xprop +libxprintapputil py-fastremap py-zensical xproperty +libxprintutil py-fastrlock py-zfit xproto +libxrandr py-fasttext-numpy2 py-zfit-interface xproxymanagementprotocol +libxrender py-fasttext-numpy2-wheel py-zfit-physics xqilla +libxres py-faust-cchardet py-zict xrandr +libxscrnsaver py-fava py-zipfile-deflate64 xrdb +libxshmfence py-fenics-basix py-zipp xrdcl-record +libxslt py-fenics-dijitso py-zipstream-new xrefresh +libxsmm py-fenics-dolfinx py-zope-event xrootd +libxstream py-fenics-ffc py-zope-interface xrx +libxt py-fenics-ffcx py-zstandard xsbench +libxtrap py-fenics-fiat py-zxcvbn xscope +libxtst py-fenics-instant pygmo xsd +libxv py-fenics-ufl pypy xsdk +libxvmc py-fenics-ufl-legacy pypy-bootstrap xset +libxxf86dga py-ffmpy pyrefly xsetmode +libxxf86misc py-fief-client pystring xsetpointer +libxxf86vm py-file-magic pythia6 xsetroot +libyaml py-filecheck pythia8 xsimd +libyogrt py-filelock python xsm +libzip py-filemagic python-venv xstdcmap +libzmq py-filetype q-e-sirius xtb +liftoff py-filterpy qb3 xtcdata +liggghts py-find-libpython qca xtensor +lighttpd py-findlibs qcachegrind xtensor-blas +ligra py-fiona qcat xtensor-python +likwid py-fire qctool xterm +lima py-fireworks qd xtl +linaro-forge py-fiscalyear qemacs xtrans +linkphase3 py-fisher qemu xtrap +linktest py-fits-tools qgis xts +linsys-v py-fitsio qgraf xv +linux-external-modules py-fitter qhull xvidtune +linux-headers py-fixtures qjson xvinfo +linux-pam py-flake8 qmcpack xwd +linux-perf py-flake8-import-order qmd-progress xwidgets +lis py-flake8-polyfill qnnpack xwininfo +listres py-flaky qorts xwud +litestream py-flameprof qoz xxd-standalone +lizard py-flash-attn qpdf xxdiff +lksctp-tools py-flask qperf xxhash +llama-cpp py-flask-babel qrmumps xyce +llhttp py-flask-compress qrupdate xz +llvm py-flask-cors qscintilla yade +llvm-amdgpu py-flask-paginate qt yafyaml +llvm-doe py-flask-restful qt-5compat yajl +llvm-openmp py-flask-socketio qt-base yaksa +llvm-openmp-ompt py-flask-sqlalchemy qt-creator yambo +lm-sensors py-flatbuffers qt-declarative yaml-cpp +lmbench py-flatten-dict qt-quick3d yamlfmt +lmdb py-flawfinder qt-quicktimeline yara +lmod py-flax qt-shadertools yarn +lndir py-flexcache qt-svg yasm +lodepng py-flexmock qt-tools ycruncher +log4c py-flexparser qtgraph ycsb +log4cplus py-flexx qthreads yoda +log4cpp py-flit qtkeychain yorick +log4cxx py-flit-core qtltools yosys +logrotate py-flit-scm qualimap yq +logstash py-flox quandary yyjson +loki py-flufl-lock quantum-espresso z-checker +looptools py-fluiddyn quartz z3 +lordec py-fluidfft qucs zabbix +lorene py-fluidfft-builder quda zerosum +lp-solve py-fluidfft-fftw quest zfp +lrose-core py-fluidfft-fftwmpi quickjs zfs +lrslib py-fluidfft-mpi-with-fftw quicksilver ziatest +lrzip py-fluidfft-p3dfft quo-vadis zig +lsd py-fluidfft-pfft quota zip +lsf py-fluidsim qwt zipkin +lshw py-fluidsim-core qwtpolar zlib +lsof py-flye r zlib-ng +lsquic py-fn-py r-a4 zoltan +lsscsi py-folium r-a4base zookeeper +ltp py-fonttools r-a4classif zookeeper-benchmark +ltr-retriever py-ford r-a4core zopfli +ltrace py-formatizer r-a4preproc zoxide +lua py-formulaic r-a4reporting zpares +lua-bit32 py-fortls r-abadata zpp +lua-bitlib py-fortran-language-server r-abaenrichment zsh +lua-ffi py-fortranformat r-abind zstd +lua-lpeg py-fparser r-absseq zstr +lua-luafilesystem py-fprettify r-acde zuo +lua-luajit py-fqdn r-acepack zycore-c +lua-luajit-openresty py-fracridge r-acgh zydis +lua-luaposix py-fraction r-acme zziplib +==> 8900 packages diff --git a/outputs/basics/mirror.out b/outputs/basics/mirror.out index 0a69262f8a..810c08f8b1 100644 --- a/outputs/basics/mirror.out +++ b/outputs/basics/mirror.out @@ -1,12 +1 @@ -$ spack mirror add tutorial /mirror -$ spack buildcache keys --install --trust -==> Fetching file:///mirror/blobs/sha256/f6/f6ea4378846cd46ab23fc727c20afc772f03c83a8b3b57b275f511f196d6b9d9 - [100%] 56.00 B @ 407.8 KB/s -==> Fetching file:///mirror/blobs/sha256/e6/e6b951d7df78889b27537f245504b97a6d211a2ae023fe9922a4beb51238a35c - [100%] 10.43 KB @ 177.7 MB/s -gpg: key A8E0CA3C1C2ADA2F: 7 signatures not checked due to missing keys -gpg: key A8E0CA3C1C2ADA2F: public key "Spack Project Official Binaries " imported -gpg: Total number processed: 1 -gpg: imported: 1 -gpg: no ultimately trusted keys found -gpg: inserting ownertrust of 6 +$ spack mirror add --unsigned tutorial /mirror diff --git a/outputs/basics/providers-mpi.out b/outputs/basics/providers-mpi.out new file mode 100644 index 0000000000..399020d8e9 --- /dev/null +++ b/outputs/basics/providers-mpi.out @@ -0,0 +1,7 @@ +$ spack providers mpi +mpi: +-- no arch / no compilers --------------------------------------- +cray-mpich@:8 fujitsu-mpi mpi-serial mpich@:1.2 mpich@:4.3 mpitrampoline mpt@3: mvapich-plus mvapich2@2.3: openmpi@:1.2 openmpi@1.7.5:1.10.7 +cray-mpich@9: hpcx-mpi mpich@:1.0 mpich@:3.1 mpich@5: mpt msmpi mvapich2 nmad openmpi@1.3:1.7.2 openmpi@2.0.0: +cray-mvapich2 intel-oneapi-mpi mpich@:1.1 mpich@:3.2 mpilander mpt@1: mvapich mvapich2@2.1: nvhpc openmpi@1.7.3:1.7.4 spectrum-mpi + diff --git a/outputs/basics/spec-hdf5-compilers.out b/outputs/basics/spec-hdf5-compilers.out new file mode 100644 index 0000000000..bf0be07241 --- /dev/null +++ b/outputs/basics/spec-hdf5-compilers.out @@ -0,0 +1,44 @@ +$ spack spec hdf5 %c,cxx=clang %fortran=gcc + - hdf5@1.14.6+cxx+fortran~hl~ipo~java~map+mpi+shared~subfiling~szip~threadsafe+tools api=default build_system=cmake build_type=Release cxxstd=11 generator=make platform=linux os=ubuntu26.04 target=x86_64_v3 %fortran=gcc@15.2.0 %c,cxx=clang@21.1.8 +[b] ^cmake@3.31.11~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^curl@8.20.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^nghttp2@1.67.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^openssl@3.6.1~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^ca-certificates-mozilla@2026-03-19 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^ncurses@6.6~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ^compiler-wrapper@1.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] ^gcc@15.2.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] ^gcc-runtime@15.2.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] ^glibc@2.43 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[e] ^llvm@21.1.8+clang~cuda~flang~gold+libomptarget~libomptarget_debug~link_llvm_dylib~lld~lldb+llvm_dylib+lua~mlir+offload+polly~python~split_dwarf~utils~z3~zstd build_system=cmake build_type=Release compiler-rt=runtime generator=ninja libcxx=runtime libunwind=runtime openmp=runtime shlib_symbol_version=none targets:=aarch64,amdgpu,nvptx,x86 version_suffix=none platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] ^mpich@5.0.1~argobots~cuda+fortran+hwloc+hydra~level_zero+libxml2+pci~rocm+romio~slurm~vci~verbs+wrapperrpath~xpmem build_system=autotools datatype-engine=auto device=ch4 netmod=ofi pmi=default platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx,fortran=gcc@15.2.0 +[b] ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^gettext@1.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^hwloc@2.13.0~cairo~cuda~gl~level_zero~libudev+libxml2~nvml~opencl+pci~rocm build_system=autotools libs:=shared,static patches:=b4db98b platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ^libfabric@2.5.1~asan~cuda~debug~kdreg~level_zero~lsan~rocm~tsan~ubsan~uring build_system=autotools fabrics:=sockets,tcp,udp platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^libpciaccess@0.17 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^util-macros@1.20.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^python@3.14.5+bz2+ctypes+dbm~debug~freethreading+libxml2+lzma~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~static~tests~tkinter+uuid+zlib+zstd build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^expat@2.8.1+libbsd build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^sqlite@3.53.1+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^zlib-ng@2.3.3+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 + diff --git a/outputs/basics/spec-tcl-zlib-clang.out b/outputs/basics/spec-tcl-zlib-clang.out new file mode 100644 index 0000000000..c182005802 --- /dev/null +++ b/outputs/basics/spec-tcl-zlib-clang.out @@ -0,0 +1,10 @@ +$ spack spec -l tcl ^zlib-ng@2.0.7 %clang +[b] 53i7gbs tcl@8.6.17 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] mmywg7x ^compiler-wrapper@1.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] yjlog5x ^gcc@15.2.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] xm76mt3 ^gcc-runtime@15.2.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] yc4n2pp ^glibc@2.43 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] r4lhaok ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] kie72sp ^zlib-ng@2.0.7+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=clang@21.1.8 +[e] px4mv6l ^llvm@21.1.8+clang~cuda~flang~gold+libomptarget~libomptarget_debug~link_llvm_dylib~lld~lldb+llvm_dylib+lua~mlir+offload+polly~python~split_dwarf~utils~z3~zstd build_system=cmake build_type=Release compiler-rt=runtime generator=ninja libcxx=runtime libunwind=runtime openmp=runtime shlib_symbol_version=none targets:=aarch64,amdgpu,nvptx,x86 version_suffix=none platform=linux os=ubuntu26.04 target=x86_64_v3 + diff --git a/outputs/basics/spec-tcl-zlib-hash.out b/outputs/basics/spec-tcl-zlib-hash.out new file mode 100644 index 0000000000..1dfd166338 --- /dev/null +++ b/outputs/basics/spec-tcl-zlib-hash.out @@ -0,0 +1,10 @@ +$ spack spec tcl ^/kie +[+] tcl@8.6.17 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ^compiler-wrapper@1.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] ^gcc@15.2.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] ^gcc-runtime@15.2.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] ^glibc@2.43 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^zlib-ng@2.0.7+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=clang@21.1.8 +[e] ^llvm@21.1.8+clang~cuda~flang~gold+libomptarget~libomptarget_debug~link_llvm_dylib~lld~lldb+llvm_dylib+lua~mlir+offload+polly~python~split_dwarf~utils~z3~zstd build_system=cmake build_type=Release compiler-rt=runtime generator=ninja libcxx=runtime libunwind=runtime openmp=runtime shlib_symbol_version=none targets:=aarch64,amdgpu,nvptx,x86 version_suffix=none platform=linux os=ubuntu26.04 target=x86_64_v3 + diff --git a/outputs/basics/spec-zziplib.out b/outputs/basics/spec-zziplib.out index 17ee245c1f..7b789863e7 100644 --- a/outputs/basics/spec-zziplib.out +++ b/outputs/basics/spec-zziplib.out @@ -1,67 +1,58 @@ -$ spack spec zziplib %gcc@12 - - zziplib@0.13.78~ipo build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^cmake@3.31.9~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - ^curl@8.15.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 -[+] ^nghttp2@1.48.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^ncurses@6.5-20250705~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 -[+] ^compiler-wrapper@1.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 - - ^coreutils@9.7~gprefix build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] ^gcc@12.3.0~binutils+bootstrap~graphite~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^gawk@5.3.1~nls build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^libsigsegv@2.14 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[e] ^gcc@11.4.0~binutils+bootstrap~graphite~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^gcc-runtime@11.4.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^gmp@6.3.0+cxx build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^automake@1.16.5 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^m4@1.4.20+sigsegv build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^libtool@2.4.7 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^mpc@1.3.1 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^mpfr@4.2.1 build_system=autotools libs:=shared,static patches:=3ec29a6 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^autoconf-archive@2023.02.20 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^gdbm@1.25 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^gettext@0.23.1+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^libxml2@2.13.5~http+pic~python+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^pigz@2.8 build_system=makefile platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^xz@5.6.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^ncurses@6.5-20250705~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^zlib-ng@2.0.7 cflags=-O3 +compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^gcc-runtime@12.3.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[e] ^glibc@2.35 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^python@3.14.0+bz2+ctypes+dbm~debug+libxml2+lzma~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib+zstd build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^expat@2.7.3+libbsd build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^gdbm@1.25 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^gettext@0.23.1+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^libxml2@2.13.5~http+pic~python+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^pigz@2.8 build_system=makefile platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - ^openssl@3.6.0~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 -[+] ^ca-certificates-mozilla@2025-08-12 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 - - ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^sqlite@3.50.4+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^xz@5.6.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - ^unzip@6.0 build_system=makefile patches:=179330d,24582ff,251d575,3371314,44599c8,47e9def,4e5a081,59c0983,64f6498,74bc961,7d8e5c7,81ca46c,881d2ed,aced0f2,b6f64d7,b7a14c3,c9a863e,ee9e260,f6f6236,f88b9d4,fde8f9d platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^zip@3.0 build_system=makefile patches:=14dc880,3bc30ba,5068e7c,51f48db,66ab4ce,a92fc4e,a95ed93,b930b69,eb83fc8,f7d0bc4,fa8312c platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^zlib-ng@2.2.4+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 +$ spack spec zziplib %gcc@16 + - zziplib@0.13.80~ipo build_system=cmake build_type=Release generator=make platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^cmake@3.31.11~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^curl@8.20.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^nghttp2@1.67.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[e] ^gcc@15.2.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] ^gcc-runtime@15.2.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] ^ncurses@6.6~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ^compiler-wrapper@1.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 + - ^coreutils@9.10~gprefix build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[+] ^openssl@3.6.1~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^ca-certificates-mozilla@2026-03-19 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[+] ^gcc@16.1.0+binutils+bootstrap~graphite+libsanitizer~mold~nvptx~piclibs+profiled+strip build_system=autotools build_type=Release languages:='c,c++,fortran' platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ^binutils@2.46.0~debuginfod+gas~gprofng~headers~interwork+ld~libiberty~lto~nls~pgo+plugins build_system=autotools compress_debug_sections=zlib libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^gawk@5.4.0~nls build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^gmp@6.3.0+cxx build_system=autotools libs:=shared,static patches:=28a6673 platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ^automake@1.18.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^m4@1.4.21+sigsegv build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^libsigsegv@2.15 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^libtool@2.5.4 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^file@5.46+static build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^mpc@1.4.1 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^mpfr@4.2.2 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^autoconf-archive@2024.10.16 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^gcc-runtime@16.1.0 build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 +[e] ^glibc@2.43 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 +[b] ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^python@3.14.5+bz2+ctypes+dbm~debug~freethreading+libxml2+lzma~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~static~tests~tkinter+uuid+zlib+zstd build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^expat@2.8.1+libbsd build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[b] ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^gettext@1.0+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 +[+] ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^sqlite@3.53.1+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[+] ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 +[b] ^unzip@6.0 build_system=makefile patches:=179330d,24582ff,251d575,3371314,44599c8,47e9def,4e5a081,59c0983,64f6498,74bc961,7d8e5c7,81ca46c,881d2ed,aced0f2,b6f64d7,b7a14c3,c9a863e,ee9e260,f6f6236,f88b9d4,fde8f9d platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@15.2.0 + - ^zip@3.0 build_system=makefile patches:=14dc880,195095a,3bc30ba,5068e7c,51f48db,66ab4ce,a92fc4e,a95ed93,b930b69,eb83fc8,f7d0bc4,fa8312c platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[+] ^zlib-ng@2.3.3+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@15.2.0 diff --git a/outputs/basics/tcl-zlib-clang.out b/outputs/basics/tcl-zlib-clang.out index b4c3a0591b..b047feecfe 100644 --- a/outputs/basics/tcl-zlib-clang.out +++ b/outputs/basics/tcl-zlib-clang.out @@ -1,14 +1,7 @@ $ spack install tcl ^zlib-ng@2.0.7 %clang -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /usr (external llvm-14.0.0-qr2e4rdcbjmj4zokqhkstk3yitfyba7v) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-um7p6trqwrnsqapkzk5la2aqzcqky2dz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/75/751ebd94e77a39c48a0199bb1df7d465bf36581647a13ee274c49026d1dca348 - [100%] 16.12 MB @ 401.3 GB/s -==> Extracting tcl-8.6.17-ibbzvxtmiqzkhacq7f65pyupibc4wvnz from binary cache -==> tcl: Successfully installed tcl-8.6.17-ibbzvxtmiqzkhacq7f65pyupibc4wvnz - Search: 0.00s. Fetch: 0.19s. Install: 1.00s. Extract: 0.94s. Relocate: 0.06s. Total: 1.19s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-ibbzvxtmiqzkhacq7f65pyupibc4wvnz -==> Installing tcl-8.6.17-ibbzvxtmiqzkhacq7f65pyupibc4wvnz [7/7] +[ ] kie72sp zlib-ng@2.0.7 fetching from build cache (0s) +[ ] kie72sp zlib-ng@2.0.7 relocating (0s) +[+] kie72sp zlib-ng@2.0.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-kie72sp5o6k6qp7wr4dg7ccq5xdoadfg (0s) +[ ] 53i7gbs tcl@8.6.17 fetching from build cache (0s) +[ ] 53i7gbs tcl@8.6.17 relocating (0s) +[+] 53i7gbs tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-53i7gbsb6wbhk55vv62jpqudomfmw6f7 (0s) diff --git a/outputs/basics/tcl-zlib-hash.out b/outputs/basics/tcl-zlib-hash.out deleted file mode 100644 index 0bee4f8dbe..0000000000 --- a/outputs/basics/tcl-zlib-hash.out +++ /dev/null @@ -1,14 +0,0 @@ -$ spack install tcl ^/qla -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -==> Fetching file:///mirror/blobs/sha256/d8/d8d39a8adcbdced977371947a8c04345f31aef23409780c4fa6b6e257f59fc8d - [100%] 16.13 MB @ 401.3 GB/s -==> Extracting tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq from binary cache -==> tcl: Successfully installed tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq - Search: 0.00s. Fetch: 0.19s. Install: 1.01s. Extract: 0.95s. Relocate: 0.06s. Total: 1.20s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq -==> Installing tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq [7/7] diff --git a/outputs/basics/tcl.out b/outputs/basics/tcl.out deleted file mode 100644 index 74fbad416b..0000000000 --- a/outputs/basics/tcl.out +++ /dev/null @@ -1,20 +0,0 @@ -$ spack install tcl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/ff/ffb2fabc060249fff7e2b34e57cd6de403b72025a1e78dcaed55ddec9e8f2fd1 - [100%] 220.69 KB @ 535.1 MB/s -==> Extracting zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd from binary cache -==> zlib-ng: Successfully installed zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd - Search: 0.00s. Fetch: 0.17s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.22s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd -==> Installing zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd [6/7] -==> Fetching file:///mirror/blobs/sha256/00/002f82b15e261bc3b23cb8fb003b2f8a83b267bc52bbd2061e1ad67e09183a73 - [100%] 16.13 MB @ 401.3 GB/s -==> Extracting tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 from binary cache -==> tcl: Successfully installed tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 - Search: 0.00s. Fetch: 0.03s. Install: 0.98s. Extract: 0.92s. Relocate: 0.06s. Total: 1.01s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 -==> Installing tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 [7/7] diff --git a/outputs/basics/trilinos-find-mpich.out b/outputs/basics/trilinos-find-mpich.out new file mode 100644 index 0000000000..2ca11eee3a --- /dev/null +++ b/outputs/basics/trilinos-find-mpich.out @@ -0,0 +1,7 @@ +$ spack find ^mpich +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx,fortran=gcc@15.2.0 ------ +trilinos@17.1.1 + +-- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ +hdf5@1.14.6 +==> 2 installed packages diff --git a/outputs/basics/trilinos-hdf5.out b/outputs/basics/trilinos-hdf5.out index fc77c3f6e0..6218b08b2f 100644 --- a/outputs/basics/trilinos-hdf5.out +++ b/outputs/basics/trilinos-hdf5.out @@ -1,32 +1,4 @@ -$ spack install trilinos +hdf5 ^hdf5+hl+mpi ^mpich -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd -==> Fetching file:///mirror/blobs/sha256/c7/c7ed19feafe0f0046e4f0689facd006014ff8e8744548b4cb1e39b5a9c1fb19e - [100%] 39.02 MB @ 391.3 GB/s -==> Extracting trilinos-16.1.0-k3ozjlurkcq33qpoqses4strvmxtexpe from binary cache -==> trilinos: Successfully installed trilinos-16.1.0-k3ozjlurkcq33qpoqses4strvmxtexpe - Search: 0.00s. Fetch: 0.22s. Install: 1.55s. Extract: 1.38s. Relocate: 0.14s. Total: 1.77s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-16.1.0-k3ozjlurkcq33qpoqses4strvmxtexpe -==> Installing trilinos-16.1.0-k3ozjlurkcq33qpoqses4strvmxtexpe [25/25] +$ spack install trilinos +hdf5 ^mpich +[ ] 3sqhxga trilinos@17.1.1 fetching from build cache (0s) +[ ] 3sqhxga trilinos@17.1.1 relocating (0s) +[+] 3sqhxga trilinos@17.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-17.1.1-3sqhxgauqbdivdlcr6gdh2km37fiky5j (1s) diff --git a/outputs/basics/trilinos.out b/outputs/basics/trilinos.out index 648aedea22..5b5db451d3 100644 --- a/outputs/basics/trilinos.out +++ b/outputs/basics/trilinos.out @@ -1,61 +1,13 @@ $ spack install trilinos -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -==> Fetching file:///mirror/blobs/sha256/d9/d966a88895b095541c290ecfce5555fdfdb74d87d83bef2e08f25cec5c7cbd2f - [100%] 23.97 MB @ 451.2 GB/s -==> Extracting openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt from binary cache -==> openblas: Successfully installed openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt - Search: 0.00s. Fetch: 0.20s. Install: 0.64s. Extract: 0.58s. Relocate: 0.04s. Total: 0.84s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt -==> Installing openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt [18/36] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w -==> Fetching file:///mirror/blobs/sha256/51/516c893799325a240194084e2c9ca9e5c4bfd9c246f9262c3f6169f8531e8ca6 - [100%] 61.03 MB @ 877.2 MB/s -==> Extracting kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 from binary cache -==> kokkos: Successfully installed kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 - Search: 0.00s. Fetch: 0.01s. Install: 0.14s. Extract: 0.12s. Relocate: 0.01s. Total: 0.15s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 -==> Installing kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 [32/36] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e -==> Fetching file:///mirror/blobs/sha256/4e/4e747077084932d0b9e2f79313978109211fedfe1f695d5d4e5ad6681ec10278 - [100%] 61.16 MB @ 401.0 GB/s -==> Extracting kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght from binary cache -==> kokkos-kernels: Successfully installed kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght - Search: 0.00s. Fetch: 0.01s. Install: 0.19s. Extract: 0.16s. Relocate: 0.01s. Total: 0.20s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght -==> Installing kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght [34/36] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln -==> Fetching file:///mirror/blobs/sha256/e8/e8e9738ee974efbf1676f64752e74a7548f6d7a2ef89385f32170c76234007e2 - [100%] 38.92 MB @ 441.4 GB/s -==> Extracting trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv from binary cache -==> trilinos: Successfully installed trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv - Search: 0.00s. Fetch: 0.06s. Install: 1.53s. Extract: 1.35s. Relocate: 0.14s. Total: 1.59s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv -==> Installing trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv [36/36] +[ ] 7kdghmr openblas@0.3.33 fetching from build cache (0s) +[ ] kpwomw3 kokkos@5.1.1 fetching from build cache (0s) +[ ] kpwomw3 kokkos@5.1.1 relocating (0s) +[ ] 7kdghmr openblas@0.3.33 relocating (0s) +[+] kpwomw3 kokkos@5.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-5.1.1-kpwomw3oxg75uzjlwi2j62ncy7uq356m (0s) +[ ] 5zilkuz kokkos-kernels@5.1.1 fetching from build cache (0s) +[ ] 5zilkuz kokkos-kernels@5.1.1 relocating (0s) +[+] 7kdghmr openblas@0.3.33 /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.33-7kdghmrs2gv3hijtczxgksuak43u6vsh (0s) +[+] 5zilkuz kokkos-kernels@5.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-5.1.1-5zilkuzvnsxj6abvzudjlshewffiatse (0s) +[ ] u43pchx trilinos@17.1.1 fetching from build cache (0s) +[ ] u43pchx trilinos@17.1.1 relocating (0s) +[+] u43pchx trilinos@17.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-17.1.1-u43pchxcfkd7syptwimxl4lozm5jmy2h (0s) diff --git a/outputs/basics/uninstall-ambiguous.out b/outputs/basics/uninstall-ambiguous.out index 6f769d0f82..50149ce630 100644 --- a/outputs/basics/uninstall-ambiguous.out +++ b/outputs/basics/uninstall-ambiguous.out @@ -1,8 +1,8 @@ $ spack uninstall trilinos ==> Error: trilinos matches multiple packages: - -- linux-ubuntu22.04-x86_64_v3 / %c,cxx,fortran=gcc@11.4.0 ------ - tj433ut trilinos@16.1.0 k3ozjlu trilinos@16.1.0 + -- linux-ubuntu26.04-x86_64_v3 / %c,cxx,fortran=gcc@15.2.0 ------ + u43pchx trilinos@17.1.1 3sqhxga trilinos@17.1.1 ==> Error: You can either: a) use a more specific spec, or diff --git a/outputs/basics/uninstall-needed.out b/outputs/basics/uninstall-needed.out index 2f30f02eb8..4c243b25e7 100644 --- a/outputs/basics/uninstall-needed.out +++ b/outputs/basics/uninstall-needed.out @@ -1,11 +1,11 @@ -$ spack uninstall zlib-ng/um7 +$ spack uninstall zlib-ng/kie ==> Refusing to uninstall the following specs - -- linux-ubuntu22.04-x86_64_v3 / %c,cxx=clang@14.0.0 ------------ - um7p6tr zlib-ng@2.0.7 + -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=clang@21.1.8 ------------ + kie72sp zlib-ng@2.0.7 ==> The following dependents are still installed: - -- linux-ubuntu22.04-x86_64_v3 / %c,cxx=clang@14.0.0 ------------ - ibbzvxt tcl@8.6.17 + -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- + 53i7gbs tcl@8.6.17 ==> Error: There are still dependents. use `spack uninstall --dependents` to remove dependents too diff --git a/outputs/basics/uninstall-r-needed.out b/outputs/basics/uninstall-r-needed.out index 04242f6b3c..2fe0224e56 100644 --- a/outputs/basics/uninstall-r-needed.out +++ b/outputs/basics/uninstall-r-needed.out @@ -1,3 +1,3 @@ -$ spack uninstall -y -R zlib-ng/um7 -==> Successfully uninstalled tcl@8.6.17 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3/ibbzvxt -==> Successfully uninstalled zlib-ng@2.0.7+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3/um7p6tr +$ spack uninstall -y -R zlib-ng/kie +==> Successfully uninstalled tcl@8.6.17 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3/53i7gbs +==> Successfully uninstalled zlib-ng@2.0.7+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3/kie72sp diff --git a/outputs/basics/uninstall-specific.out b/outputs/basics/uninstall-specific.out index 70b074dcff..a0d15ee323 100644 --- a/outputs/basics/uninstall-specific.out +++ b/outputs/basics/uninstall-specific.out @@ -1,6 +1,6 @@ -$ spack uninstall /tj4 +$ spack uninstall /u43 y - -- linux-ubuntu22.04-x86_64_v3 / %c,cxx,fortran=gcc@11.4.0 ------ - tj433ut trilinos@16.1.0 + -- linux-ubuntu26.04-x86_64_v3 / %c,cxx,fortran=gcc@15.2.0 ------ + u43pchx trilinos@17.1.1 -==> 1 packages will be uninstalled. Do you want to proceed? [y/N] ==> Successfully uninstalled trilinos@16.1.0~adelus~adios2+amesos+amesos2+anasazi+aztec~basker+belos~boost~chaco~complex~cuda~cuda_constexpr~cuda_rdc~debug~dtk+epetra+epetraext~epetraextbtf~epetraextexperimental~epetraextgraphreorderings~exodus+explicit_template_instantiation~float+fortran~gtest~hdf5~hypre+ifpack+ifpack2~intrepid~intrepid2~ipo~isorropia+kokkos~mesquite~minitensor+ml+mpi+muelu~mumps~nox~openmp~pamgen~panzer~phalanx~piro~python~rocm~rocm_rdc~rol~rythmos+sacado~scorec~shards+shared~shylu~stk~stokhos~stratimikos~strumpack~suite-sparse~superlu-dist~teko~tempus~test~thyra+tpetra~trilinoscouplings~wrapper~x11~zoltan~zoltan2 build_system=cmake build_type=Release cxxstd=17 generator=make gotype=long_long platform=linux os=ubuntu22.04 target=x86_64_v3/tj433ut +==> 1 packages will be uninstalled. Do you want to proceed? [y/N] ==> Successfully uninstalled trilinos@17.1.1~adelus~adios2+amesos2+anasazi~basker+belos~boost~chaco~complex~cuda~cuda_constexpr~cuda_rdc~cusparse~debug~dtk~exodus+explicit_template_instantiation~float+fortran~gtest~hdf5~hypre+ifpack2~intrepid2~ipo+kokkos~mesquite~minitensor+mpi+muelu~mumps~nox~openmp~pamgen~panzer~phalanx~piro~python~rocm~rocm_rdc~rol+sacado~scorec~shards+shared~shylu~stk~stokhos~stratimikos~strumpack~suite-sparse~superlu-dist~teko~tempus~test~thyra+tpetra~trilinoscouplings~wrapper~x11~zoltan~zoltan2 build_system=cmake build_type=Release cxxstd=20 generator=make gotype=long_long platform=linux os=ubuntu26.04 target=x86_64_v3/u43pchx diff --git a/outputs/basics/uninstall-zlib.out b/outputs/basics/uninstall-zlib.out index 22c9e6b330..4b850a095f 100644 --- a/outputs/basics/uninstall-zlib.out +++ b/outputs/basics/uninstall-zlib.out @@ -1,2 +1,2 @@ -$ spack uninstall -y zlib-ng %gcc@10 -==> Successfully uninstalled zlib-ng@2.2.4+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3/updxeye +$ spack uninstall -y zlib-ng %gcc@14 +==> Successfully uninstalled zlib-ng@2.3.3+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3/slhcf4i diff --git a/outputs/basics/versions-zlib.out b/outputs/basics/versions-zlib.out index 6a47807a69..21cc94a3aa 100644 --- a/outputs/basics/versions-zlib.out +++ b/outputs/basics/versions-zlib.out @@ -1,5 +1,5 @@ $ spack versions zlib-ng ==> Safe versions (already checksummed): - 2.2.4 2.2.3 2.2.2 2.2.1 2.1.7 2.1.6 2.1.5 2.1.4 2.0.7 2.0.0 + 2.3.3 2.3.2 2.2.5 2.2.4 2.2.3 2.2.2 2.2.1 2.1.7 2.1.6 2.1.5 2.1.4 2.0.7 2.0.0 ==> Remote versions (not yet checksummed): - 2.3.0-rc2 2.3.0-rc1 2.2.5 2.2.0 2.1.8 + 2.3.1 2.3.0-rc2 2.3.0-rc1 2.1.8 diff --git a/outputs/basics/zlib-2.0.7.out b/outputs/basics/zlib-2.0.7.out index 89d6a1fc20..d053d97e70 100644 --- a/outputs/basics/zlib-2.0.7.out +++ b/outputs/basics/zlib-2.0.7.out @@ -1,13 +1,8 @@ $ spack install zlib-ng@2.0.7 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /usr (external llvm-14.0.0-qr2e4rdcbjmj4zokqhkstk3yitfyba7v) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/20/2085c20a1109b030f20fc22fcedf9d26221e06992c78cb0741bda2908f371e53 - [100%] 196.30 KB @ 499.6 MB/s -==> Extracting zlib-ng-2.0.7-um7p6trqwrnsqapkzk5la2aqzcqky2dz from binary cache -==> zlib-ng: Successfully installed zlib-ng-2.0.7-um7p6trqwrnsqapkzk5la2aqzcqky2dz - Search: 0.00s. Fetch: 0.17s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.22s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-um7p6trqwrnsqapkzk5la2aqzcqky2dz -==> Installing zlib-ng-2.0.7-um7p6trqwrnsqapkzk5la2aqzcqky2dz [6/6] +[e] yc4n2pp glibc@2.43 /usr (0s) +[ ] xm76mt3 gcc-runtime@15.2.0 fetching from build cache (0s) +[ ] xm76mt3 gcc-runtime@15.2.0 relocating (0s) +[+] xm76mt3 gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-xm76mt35elmqwrjdlibzhngqkiqnyq4p (0s) +[ ] aeoqp4e zlib-ng@2.0.7 fetching from build cache (1s) +[ ] aeoqp4e zlib-ng@2.0.7 relocating (1s) +[+] aeoqp4e zlib-ng@2.0.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-aeoqp4ey2pntuxsbajc5hwovr5l4qy2l (1s) diff --git a/outputs/basics/zlib-build-type.out b/outputs/basics/zlib-build-type.out new file mode 100644 index 0000000000..73a2842271 --- /dev/null +++ b/outputs/basics/zlib-build-type.out @@ -0,0 +1,4 @@ +$ spack install zlib-ng build_type=Debug +[ ] t7jnrlg zlib-ng@2.3.3 fetching from build cache (0s) +[ ] t7jnrlg zlib-ng@2.3.3 relocating (0s) +[+] t7jnrlg zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-t7jnrlgayhc4bsqd4tj3l53turszyny5 (0s) diff --git a/outputs/basics/zlib-clang.out b/outputs/basics/zlib-clang.out index 4a177df674..ff8bc199e6 100644 --- a/outputs/basics/zlib-clang.out +++ b/outputs/basics/zlib-clang.out @@ -1,28 +1,4 @@ $ spack install zlib-ng %clang -==> Fetching file:///mirror/blobs/sha256/26/26ccb2dd448159527529cfe52ba032f5fceecec872ff580cfed6fde523663934 - [100%] 351.34 KB @ 689.9 MB/s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /usr (external llvm-14.0.0-qr2e4rdcbjmj4zokqhkstk3yitfyba7v) -==> Fetching file:///mirror/blobs/sha256/cc/cc94a1eb6710d8556df7f38940e55a2496551b567ad5cbc6c1be80d24ad02c99 - [100%] 10.48 MB @ 401.3 GB/s -==> Extracting gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh from binary cache -==> gcc-runtime: Successfully installed gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh - Search: 0.00s. Fetch: 0.18s. Install: 0.26s. Extract: 0.23s. Relocate: 0.03s. Total: 0.44s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -==> Installing gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh [5/7] -==> Fetching file:///mirror/blobs/sha256/fd/fd27cb50518ba7449532809cf527a065fd7a84fae10042d1aa53b929899cc007 - [100%] 462.31 KB @ 737.6 MB/s -==> Extracting gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma from binary cache -==> gmake: Successfully installed gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Installing gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma [6/7] -==> Fetching file:///mirror/blobs/sha256/be/be279bb783c2fc29d9943d4fa11aab2704e9c0114c91f2aabd882d16b36fa2c6 - [100%] 240.79 KB @ 627.3 MB/s -==> Extracting zlib-ng-2.2.4-ct2r7xmldphegkos5g43flc6lm2nltcd from binary cache -==> zlib-ng: Successfully installed zlib-ng-2.2.4-ct2r7xmldphegkos5g43flc6lm2nltcd - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.02s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-ct2r7xmldphegkos5g43flc6lm2nltcd -==> Installing zlib-ng-2.2.4-ct2r7xmldphegkos5g43flc6lm2nltcd [7/7] +[ ] 5dji3nx zlib-ng@2.3.3 fetching from build cache (0s) +[ ] 5dji3nx zlib-ng@2.3.3 relocating (0s) +[+] 5dji3nx zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-5dji3nxkz53p6yf6icvu3rnyhz66mg7d (0s) diff --git a/outputs/basics/zlib-gcc-10.out b/outputs/basics/zlib-gcc-10.out deleted file mode 100644 index 8f5cae9399..0000000000 --- a/outputs/basics/zlib-gcc-10.out +++ /dev/null @@ -1,25 +0,0 @@ -$ spack install zlib-ng %gcc@10 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-10.5.0-ntkvysydhiybjhukdyndi7mf7nhsv4u7) -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -==> Fetching file:///mirror/blobs/sha256/74/7451c122b920fb458060a9b2ad9c19f599c210674ebe10f79357eb4e15c01f31 - [100%] 10.48 MB @ 371.2 GB/s -==> Extracting gcc-runtime-10.5.0-ahapkrsgqx4wwndxh4ix2xzrcbotpvnp from binary cache -==> gcc-runtime: Successfully installed gcc-runtime-10.5.0-ahapkrsgqx4wwndxh4ix2xzrcbotpvnp - Search: 0.00s. Fetch: 0.18s. Install: 0.26s. Extract: 0.23s. Relocate: 0.03s. Total: 0.44s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-10.5.0-ahapkrsgqx4wwndxh4ix2xzrcbotpvnp -==> Installing gcc-runtime-10.5.0-ahapkrsgqx4wwndxh4ix2xzrcbotpvnp [4/6] -==> Fetching file:///mirror/blobs/sha256/62/62350cfe0247aa8ce61f72a6b0eb8aaf19d1504123cf18236fc1ba81dc1f33a6 - [100%] 458.45 KB @ 786.8 MB/s -==> Extracting gmake-4.4.1-ufbescpw7rn7y7qxjx5yl776iojz3y5n from binary cache -==> gmake: Successfully installed gmake-4.4.1-ufbescpw7rn7y7qxjx5yl776iojz3y5n - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-ufbescpw7rn7y7qxjx5yl776iojz3y5n -==> Installing gmake-4.4.1-ufbescpw7rn7y7qxjx5yl776iojz3y5n [5/6] -==> Fetching file:///mirror/blobs/sha256/dd/ddb82d46c5ee682bda269c4a781010f0374102750dbfe10d8fb9d5f52f317380 - [100%] 221.37 KB @ 574.9 MB/s -==> Extracting zlib-ng-2.2.4-updxeyeustk7kqztd67jvjv4umdxjy7g from binary cache -==> zlib-ng: Successfully installed zlib-ng-2.2.4-updxeyeustk7kqztd67jvjv4umdxjy7g - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-updxeyeustk7kqztd67jvjv4umdxjy7g -==> Installing zlib-ng-2.2.4-updxeyeustk7kqztd67jvjv4umdxjy7g [6/6] diff --git a/outputs/basics/zlib-gcc-14.out b/outputs/basics/zlib-gcc-14.out new file mode 100644 index 0000000000..db37d54060 --- /dev/null +++ b/outputs/basics/zlib-gcc-14.out @@ -0,0 +1,4 @@ +$ spack install zlib-ng %gcc@14 +[ ] slhcf4i zlib-ng@2.3.3 fetching from build cache (0s) +[ ] slhcf4i zlib-ng@2.3.3 relocating (0s) +[+] slhcf4i zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-slhcf4ikhifycngjjlz2hyjkx24qi5md (0s) diff --git a/outputs/basics/zlib-ipo.out b/outputs/basics/zlib-ipo.out new file mode 100644 index 0000000000..518ab2ec37 --- /dev/null +++ b/outputs/basics/zlib-ipo.out @@ -0,0 +1,4 @@ +$ spack install zlib-ng +ipo +[ ] 6l3ycpy zlib-ng@2.3.3 fetching from build cache (1s) +[ ] 6l3ycpy zlib-ng@2.3.3 relocating (1s) +[+] 6l3ycpy zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-6l3ycpy4crfl6ry4jax3p6crw3byw5oa (1s) diff --git a/outputs/defs.sh b/outputs/defs.sh index b9527403a8..84b1cf02e4 100755 --- a/outputs/defs.sh +++ b/outputs/defs.sh @@ -14,7 +14,7 @@ fi raw_outputs="${PROJECT}/raw" # used by scripts -tutorial_branch=releases/v1.1 +tutorial_branch=releases/v1.2 packages_release=v2025.11.0 print_status() { diff --git a/tutorial_basics.rst b/tutorial_basics.rst index c282186aeb..02254a9c00 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -9,21 +9,31 @@ Basic Installation Tutorial ========================================= This tutorial will provide a step-by-step guide for installing software with Spack. -We will begin by introducing the ``spack install`` command, highlighting the versatility of Spack’s spec syntax and the flexibility it offers users. + +A few fundamental ideas underpin everything that follows: + +1. Spack builds software either from source or from prebuilt binaries. +2. Spack keeps every configuration of a package isolated from every other, so many versions, compilers, and build options can coexist on the same machine. +3. Each configuration is identified by a hash of its full provenance. +4. Spack reuses an existing build whenever it can, instead of rebuilding from scratch. + +Keep these points in mind, as we'll illustrate them with examples. + +We will begin by introducing the ``spack install`` command, highlighting the versatility of Spack's spec syntax and the flexibility it offers users. Next, we will demonstrate how to use the ``spack find`` command to view installed packages, as well as the ``spack uninstall`` command to remove them. Additionally, we will discuss how Spack manages compilers, with a particular focus on using Spack-built compilers within the Spack environment. Throughout the tutorial, we will present complete command outputs; however, we will often emphasize only the most relevant sections or simply confirm successful execution. -All examples and outputs are based on an Ubuntu 22.04 Docker image. +All examples and outputs are based on an Ubuntu 26.04 Docker image. .. _basics-tutorial-install: ---------------- -Installing Spack +Setting Up Spack ---------------- -Spack is ready to use immediately after installation. -To get started, we simply clone the Spack repository and check out the latest release, v1.1. +Spack is ready to use immediately -- there is no separate build or install step. +To get started, we simply clone the Spack repository and check out the latest v1.2 release: .. literalinclude:: outputs/basics/clone.out :language: console @@ -37,10 +47,13 @@ Spack has some nice command line integration tools, so instead of simply prepend And now we're good to go! ------------------ -What is in Spack? ------------------ +.. _basics-tutorial-install-packages: + +------------------- +Installing Packages +------------------- +Before installing anything, let's see what Spack has to offer. The ``spack list`` command shows available packages. .. literalinclude:: outputs/basics/list.out @@ -56,235 +69,300 @@ For example, let's view all available Python packages. :language: console :lines: 1-6 -------------------- -Installing Packages -------------------- - -Installing a package with Spack is very simple. -To install a software package, type: +Once we've found a package, installing it is as simple as typing ``spack install`` followed by its name: .. code-block:: console $ spack install -Let's go ahead and install ``gmake``, +Let's install ``gmake``: .. literalinclude:: outputs/basics/gmake.out :language: spec -You will see Spack installed ``gmake``, ``gcc``, ``gcc-runtime``, and ``glibc``. -The ``glibc`` and ``gcc-runtime`` packages are automatically tracked by Spack to manage consistency requirements among compiler runtimes. -These do not represent separate software builds from source, but are records of the compiler runtime components Spack used for the install. -For the rest of this section, we'll ignore these components and focus on the packages explicitly installed and their listed dependencies. +In the output, the ``[e]`` marker denotes a package that was found on the system rather than built by Spack. +Spack's output lists ``gmake``, ``gcc``, ``gcc-runtime``, ``glibc``, and ``compiler-wrapper``: -The ``gcc`` package was found on the system and Spack used it because ``gmake`` requires a compiler to build from source. -Compilers are handled somewhat specially in Spack; Spack searches the ``PATH`` environment variable for compilers automatically. -We can run ``spack compiler list`` or simply ``spack compilers`` to show all the compilers Spack found. +* ``gmake`` is the package we requested. +* ``gcc`` is the compiler used to build ``gmake``, which needs a C compiler. +* The ``gcc-runtime`` and ``glibc`` packages are records of the compiler runtime Spack used, which it tracks to keep those components consistent across a build. +* ``compiler-wrapper`` is a wrapper Spack uses to inject the right include, library, and RPATH flags when it invokes the compiler. + +**In Spack a compiler is an ordinary dependency rather than a special case**, so ``gmake`` depends on one just as it depends on anything else. +Spack automatically searches your ``PATH`` for installed compilers, so the ones already on the system are ready to use. +Run ``spack compiler list`` (or simply ``spack compilers``) to see the ones it found: .. literalinclude:: outputs/basics/compiler-list.out :language: console -All compilers that Spack found will be configured as external packages -- we'll talk more about externals in the "Spack Concepts" slides and in :ref:`Configuration Tutorial ` later on. +All compilers Spack found are configured as *external packages*. +We'll cover externals in the "Spack Concepts" slides and in the :ref:`Configuration Tutorial ` later on. -Spack can install software either from source or from a binary cache. -Packages in the binary cache are signed with GPG for security. -For this tutorial we have prepared a binary cache so we don't have to wait for slow compilation from source. -To enable installation from the binary cache, we'll need to configure Spack with the location of the cache and trust the GPG key that the binaries were signed with. +**Spack can install software either from source or from a binary cache.** +We just built ``gmake`` from source. +To speed up the rest of the tutorial, let's add a binary cache: .. literalinclude:: outputs/basics/mirror.out :language: console -We'll learn more about configuring Spack later in the tutorial, but for now we can install the rest of the packages in the tutorial from the cache using the same ``spack install`` command. -By default, this will install the binary cached version if it exists and fall back to installing the package from source if it does not. +From here on, the same ``spack install`` command will fetch a package from the cache when a matching binary exists and fall back to building from source when it doesn't. -Now that we understand how Spack handles installations, let's explore how we can customize what gets installed. -Spack's "spec" syntax is the interface by which we can request specific configurations of a package. -The ``%`` sigil is used to specify direct dependencies like a package's compiler. -For example, we can install zlib (a commonly used compression library), but instead of building it with the GCC compiler as we did for gmake previously, we'll install it with ``%clang`` to build it with the clang compiler. +--------------- +The Spec Syntax +--------------- -.. literalinclude:: outputs/basics/zlib-clang.out - :language: spec +So far we've installed packages with their default configuration. +Spack's *spec syntax* is how we request a specific configuration of a package. +A *spec* describes a package together with any constraints we want to place on how it is built: its version, its build options, the compiler it uses, and even the configuration of its dependencies. +Each kind of constraint has its own sigil, which the subsections below introduce one at a time, building up from a bare package name to fully constrained dependency graphs. -Notice that this installation is located separately from the previous one. -We'll explore this concept in more detail later, but this separation is fundamental to how Spack supports multiple configurations and versions of software packages simultaneously. +^^^^^^^^ +Versions +^^^^^^^^ -Now that we've seen how Spack handles separate installations, let's explore this capability by installing multiple versions of the same package. -Before we install additional versions, we can check the versions available to us using the ``spack versions`` command. -Let's check what versions of zlib-ng are available, and then we'll install a different version to demonstrate Spack's flexibility in managing multiple package versions. +We can install multiple versions of the same package side by side. +Before installing a specific version, let's check which versions of ``zlib-ng`` are available using the ``spack versions`` command. .. literalinclude:: outputs/basics/versions-zlib.out :language: spec -The ``@`` sigil is used to specify versions. +We select one with the ``@`` sigil: .. literalinclude:: outputs/basics/zlib-2.0.7.out :language: spec -The spec syntax is recursive -- any syntax we can specify for the "root" package (``zlib-ng``) we can also use for a dependency. +The ``@`` sigil also accepts ranges -- such as ``@2.1:`` (2.1 or newer), ``@:2.1`` (up to 2.1), or ``@2.0:2.2`` (anywhere in between 2.0 and 2.2) -- letting Spack pick any version that satisfies the constraint. -.. literalinclude:: outputs/basics/zlib-gcc-10.out - :language: spec +^^^^^^^^ +Variants +^^^^^^^^ + +Besides versions, packages expose build options called *variants*. +To see which variants a package defines, along with their defaults, use ``spack info``: + +.. literalinclude:: outputs/basics/info-zlib.out + :language: console -The spec syntax in Spack also supports compiler flags. -We can specify parameters such as ``cppflags``, ``cflags``, ``cxxflags``, ``fflags``, ``ldflags``, and ``ldlibs``. -If any of these values contain spaces, we'll need to enclose them in quotes on the command line. -Spack’s compiler wrappers will automatically inject these flags into the appropriate compilation commands. +Boolean variants are enabled with the ``+`` sigil and disabled with the ``~`` sigil. +For example, ``zlib-ng`` has an ``ipo`` variant that enables interprocedural optimization, which we can turn on with ``+ipo``: -.. literalinclude:: outputs/basics/zlib-O3.out +.. literalinclude:: outputs/basics/zlib-ipo.out :language: spec -After installing packages, we can use the ``spack find`` command to query which packages are installed. -Notice that by default, some installed packages appear identical in the output. -To help distinguish between them, we can add the ``-l`` flag to display each package’s unique hash. -Additionally, if we include the ``-f`` flag, Spack will show any non-empty compiler flags that were used during installation. +Not every variant is boolean. +Some take a value, which we assign with ``name=value`` syntax. +Here we build ``zlib-ng`` in debug mode through its ``build_type`` variant. -.. literalinclude:: outputs/basics/find.out +.. literalinclude:: outputs/basics/zlib-build-type.out :language: spec -.. literalinclude:: outputs/basics/find-lf.out +Some variants are *conditional*: the indented ``when`` lines in the ``spack info`` output mark them. +Here ``build_type``, ``generator``, and ``ipo`` are available only ``when build_system=cmake`` -- that is, when zlib-ng is built with CMake instead of Autotools. +Requesting one of them, as we just did with ``+ipo``, therefore also selects the CMake build system. + +.. note:: + + The same ``name=value`` syntax also sets compiler flags on a build: Spack accepts ``cflags``, ``cxxflags``, ``cppflags``, ``fflags``, ``ldflags``, and ``ldlibs`` -- written like ``cflags="-O3"`` (quote values containing spaces) -- and its compiler wrappers inject them into the right commands. + This is an escape hatch, though: a package's variants and build system usually select appropriate options already, so reach for explicit flags only when you genuinely need them. + +^^^^^^^^^^^^^^^^^^^ +Direct Dependencies +^^^^^^^^^^^^^^^^^^^ + +The ``%`` sigil specifies a direct dependency of the package we're installing. +The most common direct dependency is a compiler -- every package built from source needs one -- so that is what we will use ``%`` for here. +So far we've let Spack choose the compiler, building ``zlib-ng`` with GCC just as we did for gmake. +This time we'll build it with Clang instead, using ``%clang``: + +.. literalinclude:: outputs/basics/zlib-clang.out :language: spec -Spack generates a unique hash for each spec. -This hash reflects the complete provenance of the package, so any change to the spec—such as compiler version, build options, or dependencies—will result in a different hash. -Spack uses these hashes both to compare specs and to create unique installation directories for every possible configuration. +This installation is located separately from the previous one. +As described in the overview, this separation is fundamental to how Spack supports multiple configurations and versions of software packages simultaneously. -As we work with more complex packages that have multiple software dependencies, we will see that Spack efficiently reuses existing packages to satisfy dependency requirements. -By default, Spack prioritizes reusing installations that already exist, whether they are stored locally or available from configured remote binary caches. -This approach helps us avoid unnecessary rebuilds of common dependencies, which is especially valuable if we update Spack frequently. +**The spec syntax is recursive** -- any syntax we can specify for the "root" package we can also use for a dependency. +For example, since a compiler is just another dependency, we can pin its version with ``@``, just as we did for ``zlib-ng``: -.. literalinclude:: outputs/basics/tcl.out +.. literalinclude:: outputs/basics/zlib-gcc-14.out :language: spec -Sometimes it is simpler to specify dependencies without caring whether they are direct or transitive dependencies. -To do that, use the ``^`` sigil. -Note that a dependency specified by ``^`` is always applied to the root package, whereas a direct dependency specified by ``%`` is applied to either the root or any intervening dependency specified by ``^``. +^^^^^^^^^^^^^^^^^^^^^^^ +Transitive Dependencies +^^^^^^^^^^^^^^^^^^^^^^^ -.. literalinclude:: outputs/basics/tcl-zlib-clang.out +The ``^`` sigil can constrain any dependency of a root spec, whether direct or transitive. + +We need a package with dependencies to try it on. +The ``tcl`` package depends on ``zlib-ng``, so let's preview how Spack would build ``tcl`` with constraints on its ``zlib-ng`` dependency using ``spack spec``; the ``-l`` flag adds each node's hash: + +.. literalinclude:: outputs/basics/spec-tcl-zlib-clang.out :language: spec -We can also refer to packages from the command line by their package hash. -Earlier, when we used the ``spack find -lf`` command, we saw that the hash for our optimized installation of zlib-ng (with ``cflags="-O3"``) began with ``umrbkwv``. -Instead of typing out the entire spec, we can now build explicitly with that package by using the ``/`` sigil followed by its hash. +This is the *concretized* spec: Spack has filled in every dependency, along with its version, variants, and compiler. +In the output, ``[+]`` marks specs already installed, ``[e]`` those provided externally by the system, and ``[b]`` those available in a cache but not yet installed. +Notice also that ``%`` binds to the spec it follows. +Because ``%clang`` comes after ``^zlib-ng@2.0.7``, only ``zlib-ng`` is built with Clang, while ``tcl`` keeps the default compiler. -Similar to tools like Git, we do not need to enter the entire hash on the command line—just enough digits to uniquely identify the package. -If the prefix we provide matches more than one installed package, Spack will report an error and prompt us to be more specific. +Now let's install it: -.. literalinclude:: outputs/basics/tcl-zlib-hash.out +.. literalinclude:: outputs/basics/tcl-zlib-clang.out :language: spec -The ``spack find`` command can also take a ``-d`` flag, which can show dependency information. -Note that each package has a top-level entry, even if it also appears as a dependency. +By default, Spack installs from a binary cache when it can, rather than building from source. +The build-only dependencies a source build needs (such as ``gmake``) are skipped for a prebuilt binary. + +Each build has a unique hash, shown in the ``-l`` output above, reflecting its complete provenance. +Any change to the spec (version, build options, compiler, or a dependency) produces a different hash and its own installation directory. +We can refer to a build directly by its hash with the ``/`` sigil, instead of retyping its full spec. +For example, rather than writing ``^zlib-ng@2.0.7 %clang`` again, we can point ``tcl`` at that exact build by its hash: -.. literalinclude:: outputs/basics/find-ldf.out +.. literalinclude:: outputs/basics/spec-tcl-zlib-hash.out :language: spec -Spack models the dependencies of packages as a directed acyclic graph (DAG). -The ``spack find -d`` command shows the tree representation of that graph, which loses some dependency relationship information. -We can also use the ``spack graph`` command to view the entire DAG as a graph. +As with Git, we only need enough leading digits to identify the build uniquely; if the prefix matches more than one installed package, Spack reports an error and asks us to be more specific. + +The ``spack spec`` output above lists these dependencies as a tree, but Spack actually models them as a directed acyclic graph (DAG). +A package can be shared by several dependents, which a tree can't show. +The ``spack graph`` command renders that full graph: .. literalinclude:: outputs/basics/graph-tcl.out :language: spec -Let's move on to slightly more complicated packages. -HDF5 is a good example of a more complicated package, with an MPI dependency. -If we install it with default settings it will build with OpenMPI. -We can check the install plan in advance to ensure it's what we want to install using the ``spack spec`` command. -The ``spack spec`` command accepts the same spec syntax. +For more complex packages, ``spack graph`` can also emit Graphviz output (``--dot``) to render as an SVG, and ``--color`` draws build-only dependencies in a different color from link and run dependencies. -.. literalinclude:: outputs/basics/hdf5-spec.out - :language: spec +^^^^^^^^^^^^^^^^^^^^ +Virtual Dependencies +^^^^^^^^^^^^^^^^^^^^ + +Let's move on to a more complicated package. +``hdf5`` is a good example: it depends on ``mpi``, but ``mpi`` is not an ordinary package. +It is a *virtual package* -- an interface that several real packages provide -- and Spack handles dependencies on such interfaces through "virtual dependencies". -Assuming we're happy with that configuration, we will now install it. +By default ``hdf5`` builds against ``openmpi``: .. literalinclude:: outputs/basics/hdf5.out :language: spec -Spack packages can also have build options, called variants. -Boolean variants can be specified using the ``+`` (enable) and ``~`` or ``-`` (disable) sigils. -There are two sigils for "disable" to avoid conflicts with shell parsing in different situations. -Variants (boolean or otherwise) can also be specified using the same syntax as compiler flags. -Here we can install HDF5 without MPI support. +but we might want to build it against a *different* ``mpi`` implementation. +To see which packages provide the ``mpi`` interface, ask Spack with ``spack providers``: -.. literalinclude:: outputs/basics/hdf5-no-mpi.out - :language: spec +.. literalinclude:: outputs/basics/providers-mpi.out + :language: console -We might also want to install HDF5 with a different MPI implementation. -While ``mpi`` itself is a virtual package representing an interface, other packages can depend on such abstract interfaces. -Spack handles these through "virtual dependencies." -A package, such as HDF5, can depend on the ``mpi`` virtual package (the interface). -Actual MPI implementation packages (like ``openmpi``, ``mpich``, ``mvapich2``, etc.) provide the MPI interface. Any of these providers can be requested to satisfy an MPI dependency. -For example, we can build HDF5 with MPI support provided by MPICH by specifying a dependency on ``mpich`` (e.g., ``hdf5 ^mpich``). -Spack also supports versioning of virtual dependencies. -A package can depend on the MPI interface at version 3 (e.g., ``hdf5 ^mpi@3``), and provider packages specify what version of the interface *they* provide. -The partial spec ``^mpi@3`` can be satisfied by any of several MPI implementation packages that provide MPI version 3. +For example, we can build ``hdf5`` with MPI support provided by MPICH by specifying a dependency on ``mpich``: + +.. literalinclude:: outputs/basics/hdf5-mpich.out + :language: spec We've actually already been using virtual packages when we changed compilers earlier. Compilers are providers for virtual packages like ``c``, ``cxx``, and ``fortran``. Because these are often provided by the same package but we might want to use C and C++ from one compiler and Fortran from another, we need a syntax to specify which virtual a package provides. -We call this "virtual assignment", and can be specified by ``%virtual=provider`` or ``^virtual=provider``. +We call this "virtual assignment", which can be specified with ``%virtual=provider`` or ``^virtual=provider``. + +For example, we can ask Spack for an ``hdf5`` that uses Clang for the C and C++ components but GCC for Fortran: + +.. literalinclude:: outputs/basics/spec-hdf5-compilers.out + :language: spec + :lines: 1-2 + +The same syntax works for ``mpi``: we could have written ``hdf5 ^mpi=mpich`` instead of ``hdf5 ^mpich``. +There's no need, though, because the only way for ``hdf5`` to depend on ``mpich`` is for ``mpich`` to provide ``mpi``. +This is also why we didn't have to specify which virtuals ``gcc`` and ``clang`` provided earlier when building simpler packages. + +^^^^^^^^^^^^^^^^^^^^^ +Spec Syntax Reference +^^^^^^^^^^^^^^^^^^^^^ + +We have now seen every piece of the spec syntax. +Taken together, the sigils let us constrain any part of a build: + +* ``@`` selects a version or a version range. +* ``+`` and ``~`` toggle boolean variants, and ``name=value`` sets the others. +* ``%`` constrains a direct dependency, such as a compiler. +* ``^`` constrains any dependency in the graph, whether direct or transitive. +* ``/`` refers to an already-installed build by its hash. +* ``%virtual=provider`` and ``^virtual=provider`` pick which package provides a virtual. + +Because the syntax is recursive, each of these can be applied to a dependency just as it is to the root package. +There is no need to memorize all of this: ``spack help --spec`` prints a concise summary you can return to whenever you need it. -For example if we wanted to install hdf5 using GCC for the C and C++ components but Intel OneAPI for the Fortran compiler we could write: +.. literalinclude:: outputs/basics/help-spec.out + :language: console -.. code-block:: spec +.. _basics-tutorial-query: - hdf5 %c,cxx=gcc %fortran=oneapi +---------------------- +Querying Installations +---------------------- -However, we'll keep it simple for now and install HDF5 with MPI support provided by MPICH. -We could use the same syntax for ``^mpi=mpich``, but there's no need because the only way for ``hdf5`` to depend on ``mpich`` is to provide ``mpi``. -This is also why we didn't care to specify which virtuals ``gcc`` and ``clang`` provided earlier when building simpler packages. +Now that we have installed a variety of packages, we can use the ``spack find`` command to query which packages are installed. -.. literalinclude:: outputs/basics/hdf5-hl-mpi.out +.. literalinclude:: outputs/basics/find.out :language: spec -.. note:: +Spack groups the output by architecture and by the compiler used to build each package. +Notice that by default, some installed packages appear identical in the output. +To help distinguish between them, we can add the ``-l`` flag to display each package's unique hash. + +.. literalinclude:: outputs/basics/find-l.out + :language: spec + +As we saw when referring to builds by hash, every installed package has a distinct hash, so configurations that look alike in the default output still occupy separate installations. + +``spack find`` can also show what each installed package depends on with the ``-d`` flag. +For example, here is the ``tcl`` we installed, shown with its dependency tree: + +.. literalinclude:: outputs/basics/find-d-tcl.out + :language: spec + +The ``spack find`` command can also accept what we call "anonymous specs": expressions in spec syntax that do not contain a package name. +For example, ``spack find ^mpich`` will return every installed package that depends on MPICH. - It is frequently sufficient to specify ``%gcc`` even for packages that use multiple languages, because Spack prefers to minimize the number of packages needed for a build. - Later on we will discuss more complex compiler requests, and how and when they are useful. +.. literalinclude:: outputs/basics/find-dep-mpich.out + :language: spec -We'll do a quick check in on what we have installed so far. +The ``find`` command can show which packages were installed explicitly (rather than pulled in as a dependency) using the lowercase ``-x`` flag; the uppercase ``-X`` flag shows implicit installs only. +It can also show the path to which a package was installed using the ``-p`` flag. -.. literalinclude:: outputs/basics/find-ldf-2.out +.. literalinclude:: outputs/basics/find-px.out :language: spec -HDF5 is more complicated than our basic example of zlib-ng and Tcl, but it's still within the realm of software that an experienced HPC user could reasonably expect to manually install given a bit of time. -Now let's look at an even more complicated package. +.. _basics-tutorial-trilinos: + +------------------- +A Realistic Example +------------------- + +Now that we know the spec syntax and how to query installations, let's put them to work on a realistic package. .. literalinclude:: outputs/basics/trilinos.out :language: spec Now we're starting to see the power of Spack. Depending on the spec, Trilinos can have over 30 direct dependencies, many of which have dependencies of their own. -Installing more complex packages can take days or weeks even for an experienced user. +Only a handful are new here, though: the rest of that large graph was already installed earlier in the tutorial, so Spack reuses those builds instead of repeating them. +Installing a package this complex by hand can take an experienced user days or weeks. Although we've done a binary installation for the tutorial, a source installation of Trilinos using Spack takes about 3 hours (depending on the system), but only 20 seconds of programmer time. -Spack manages consistency of the entire DAG. -Every MPI dependency will be satisfied by the same configuration of MPI, etc. -If we install Trilinos again specifying a dependency on our previous HDF5 built with MPICH: +Spack manages the consistency of the entire DAG: every package that depends on MPI is satisfied by the same MPI. +Let's install Trilinos again, this time reusing the HDF5 we built with MPICH: .. literalinclude:: outputs/basics/trilinos-hdf5.out :language: spec -We see that every package in the Trilinos DAG that depends on MPI now uses MPICH. - -.. literalinclude:: outputs/basics/find-d-trilinos.out - :language: spec - -As we discussed before, the ``spack find -d`` command shows the dependency information as a tree. -While that is often sufficient, many complicated packages, including Trilinos, have dependencies that cannot be fully represented as a tree. -Again, the ``spack graph`` command shows the full DAG of the dependency information. +Only ``trilinos`` itself was installed -- the rest of the graph, including our MPICH-based ``hdf5``, was already present and reused. +We can confirm that the whole graph uses MPICH with the anonymous spec ``spack find ^mpich``: -.. literalinclude:: outputs/basics/graph-trilinos.out +.. literalinclude:: outputs/basics/trilinos-find-mpich.out :language: spec -You can control how the output is displayed with a number of options. - -The ASCII output from ``spack graph`` can be difficult to parse for complicated packages. -The output can be changed to the Graphviz ``.dot`` format using the ``--dot`` flag. +A dependency graph this large is unreadable as ASCII art. +We can instead render it as an image with ``spack graph --dot``: .. code-block:: console - $ spack graph --dot trilinos | dot -Tpdf > trilinos_graph.pdf + $ spack graph --dot trilinos | dot -Tsvg > trilinos_graph.svg .. _basics-tutorial-uninstall: @@ -292,12 +370,9 @@ The output can be changed to the Graphviz ``.dot`` format using the ``--dot`` fl Uninstalling Packages --------------------- -Earlier we installed many configurations each of zlib-ng and Tcl. +Earlier we installed several configurations of ``zlib-ng``. Now we will go through and uninstall some of those packages that we didn't really need. -.. literalinclude:: outputs/basics/find-d-tcl.out - :language: spec - .. literalinclude:: outputs/basics/find-zlib.out :language: spec @@ -309,86 +384,59 @@ We can uninstall packages by spec using the same syntax as install. .. literalinclude:: outputs/basics/find-lf-zlib.out :language: spec -We can also uninstall packages by referring only to their hash. - -We can use either the ``--force`` (or ``-f``) flag or the ``--dependents`` (or ``-R``) flag to remove packages that are required by another installed package. -Use ``--force`` to remove just the specified package, leaving dependents broken. -Use ``--dependents`` to remove the specified package and all of its dependents. +We can also refer to a package by its hash instead of a full spec. +But Spack won't remove a package that another installed package still needs: .. literalinclude:: outputs/basics/uninstall-needed.out :language: spec +To remove it anyway, use ``--force`` (or ``-f``) to delete just that package and leave its dependents broken, or ``--dependents`` (or ``-R``) to remove it together with everything that depends on it: + .. literalinclude:: outputs/basics/uninstall-r-needed.out :language: spec -Spack will not uninstall packages that are not sufficiently specified (i.e., if the spec is ambiguous and matches multiple installed packages). -The ``--all`` (or ``-a``) flag can be used to uninstall all packages matching an ambiguous spec. +Spack refuses to uninstall a package when the spec is ambiguous -- when it matches more than one installed package: .. literalinclude:: outputs/basics/uninstall-ambiguous.out :language: spec -.. literalinclude:: outputs/basics/uninstall-specific.out - :language: spec - ------------------------------ -Advanced ``spack find`` Usage ------------------------------ - -We will go over some additional uses for the ``spack find`` command not already covered in the :ref:`basics-tutorial-install` and :ref:`basics-tutorial-uninstall` sections. - -The ``spack find`` command can accept what we call "anonymous specs." -These are expressions in spec syntax that do not contain a package name. -For example, ``spack find ^mpich`` will return every installed package that depends on MPICH, and ``spack find cflags="-O3"`` will return every package which was built with ``cflags="-O3"``. - -.. literalinclude:: outputs/basics/find-dep-mpich.out - :language: spec - -.. literalinclude:: outputs/basics/find-O3.out - :language: spec - -The ``find`` command can also show which packages were installed explicitly (rather than pulled in as a dependency) using the lowercase ``-x`` flag. -The uppercase ``-X`` flag shows implicit installs only. -The ``find`` command can also show the path to which a Spack package was installed using the ``-p`` flag. +As the error suggests, we can disambiguate with a more specific spec, refer to the exact build by its hash, or pass ``--all`` (or ``-a``) to remove every match. +Here we remove one of the two Trilinos builds by its hash: -.. literalinclude:: outputs/basics/find-px.out +.. literalinclude:: outputs/basics/uninstall-specific.out :language: spec --------------------- Customizing Compilers --------------------- -Spack manages a list of available compilers on the system, detected automatically from the user's ``PATH`` variable. -The ``spack compilers`` command is an alias for ``spack compiler list``. - -.. literalinclude:: outputs/basics/compilers.out - :language: console - -These compilers are maintained in a YAML file. -Later in the tutorial we will discuss how to configure external compilers by hand for special cases. -Spack can also use compilers built by Spack to compile later packages. +In the :ref:`Installing Packages ` section, we saw that Spack detects the compilers already on your ``PATH`` and configures them as external packages. +Spack can also install a compiler itself and then use it to compile other packages. -.. literalinclude:: outputs/basics/install-gcc-12.1.0.out +.. literalinclude:: outputs/basics/install-gcc-16.out :language: spec +Once installed, it appears with a ``[+]`` in the list of available compilers: + .. literalinclude:: outputs/basics/compilers-2.out - :language: spec + :language: console -Now ``gcc@12`` is immediately available to use. +The ``gcc@16`` compiler is immediately available to use: .. literalinclude:: outputs/basics/spec-zziplib.out :language: spec + :lines: 1-2 -For the rest of the tutorial we will sometimes use this new compiler, and sometimes we want to demonstrate things without it. -For now, we will uninstall it to avoid using it in the next section. +We won't need this compiler in the next chapter, so we'll uninstall it for now. .. literalinclude:: outputs/basics/compiler-uninstall.out :language: spec -.. note:: +---------- +Next Steps +---------- - The spec syntax may be confusing for new users. - Spack can provide information about commands you run frequently. - For instance, see the output of ``spack help --spec``: +You can now install packages from source or from a binary cache, request specific configurations with the spec syntax, query what is installed, uninstall what you no longer need, and have Spack build and use its own compilers. +These commands work one package at a time, which is enough to get started but quickly becomes unwieldy for a whole software stack. - .. literalinclude:: outputs/basics/help-spec.out - :language: console +The :ref:`Environments Tutorial ` is the natural next step: it shows how to group specs into a documented, reproducible collection that you can install, share, and rebuild as a unit.