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 053a96216d..1b9da32d52 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: 2343, done.K -remote: Counting objects: 100% (2343/2343), done.K -remote: Compressing objects: 100% (1589/1589), done.K -remote:nTotale2343 (delta2309),3reused 1265 (delta 234), pack-reused 0 (from 0)K -Receiving objects: 100% (2343/2343), 5.32 MiB | 18.47 MiB/s, done. -Resolving deltas: 100% (309/309), 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 1328 (delta 249), pack-reused 0 (from 0)K +Receiving objects: 100% (2411/2411), 5.48 MiB | 13.53 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..820becc0eb 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..65ca4f9b96 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..48868154c7 --- /dev/null +++ b/outputs/basics/find-l.out @@ -0,0 +1,27 @@ +$ 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 jceyzq7 hdf5@1.14.6 vbwvgwx libiconv@1.18 2t2useu numactl@2.0.19 nldxmxw prrte@4.1.0 +cdyuto2 gmake@4.4.1 uwyh3xy libedit@3.1-20251016 qzkk5ym libpciaccess@0.17 afklka7 pigz@2.8 f5xe4px tar@1.35 +as6mmcj hdf5@1.14.6 oopqoag libevent@2.1.12 bkzcu2s libxcrypt@4.5.2 yvl6jpi pkgconf@2.5.1 hhjyyqy xz@5.8.3 +7cwv3st hdf5@1.14.6 itb4a2s libfabric@2.5.1 ujlg2ua libxml2@2.15.3 ycyqykw pmix@6.1.0 + +-- linux-ubuntu26.04-x86_64_v3 / no compilers ------------------- +mmywg7x compiler-wrapper@1.1.0 yjlog5x gcc@15.2.0 xm76mt3 gcc-runtime@15.2.0 px4mv6l llvm@21.1.8 +5zrvmb3 gcc@14.3.0 yhhe2we gcc-runtime@15.2.0 yc4n2pp glibc@2.43 +==> 45 installed packages diff --git a/outputs/basics/find-ldf-2.out b/outputs/basics/find-ldf-2.out deleted file mode 100644 index 4d859eb4ad..0000000000 --- a/outputs/basics/find-ldf-2.out +++ /dev/null @@ -1,1262 +0,0 @@ -$ spack find -ldf --- linux-ubuntu22.04-x86_64 / no compilers ---------------------- -4xgkopt gcc@11.4.0 - -jfjsr3p 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 - -ikkzcak gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -4xgkopt gcc@11.4.0 -dr7kup4 gcc-runtime@11.4.0 -jfjsr3p 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 - -dr7kup4 gcc-runtime@11.4.0 -4xgkopt gcc@11.4.0 -jfjsr3p 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 f3922460c4..0000000000 --- a/outputs/basics/find-ldf.out +++ /dev/null @@ -1,121 +0,0 @@ -$ spack find -ldf --- linux-ubuntu22.04-x86_64 / no compilers ---------------------- -4xgkopt gcc@11.4.0 - -jfjsr3p 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 ------------------ -ikkzcak gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -4xgkopt gcc@11.4.0 -dr7kup4 gcc-runtime@11.4.0 -jfjsr3p 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 - -dr7kup4 gcc-runtime@11.4.0 -4xgkopt gcc@11.4.0 -jfjsr3p 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 ce88928afd..0000000000 --- a/outputs/basics/find-lf.out +++ /dev/null @@ -1,24 +0,0 @@ -$ spack find -lf --- linux-ubuntu22.04-x86_64 / no compilers ---------------------- -4xgkopt gcc@11.4.0 jfjsr3p 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 ------------------ -ikkzcak 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 dr7kup4 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 66832051bc..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-ikkzcakbjrn76u5l3eavzliyjhrdvagn -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..feb95365ba 100644 --- a/outputs/basics/find.out +++ b/outputs/basics/find.out @@ -1,23 +1,25 @@ $ 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 krb5@1.22.2 openssh@10.3p1 tcl@8.6.17 zlib-ng@2.3.3 zlib-ng@2.3.3 +hwloc@2.13.0 ncurses@6.6 openssl@3.6.1 zlib-ng@2.0.7 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 libevent@2.1.12 libpciaccess@0.17 numactl@2.0.19 pmix@6.1.0 xz@5.8.3 +gmake@4.4.1 hdf5@1.14.6 libfabric@2.5.1 libxcrypt@4.5.2 pigz@2.8 prrte@4.1.0 +hdf5@1.14.6 libedit@3.1-20251016 libiconv@1.18 libxml2@2.15.3 pkgconf@2.5.1 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 713567c35a..9151225bd8 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-4xgkoptcicxn25t4t6n3zp4ujbdn7pgo) -[+] /usr (external glibc-2.35-jfjsr3pnnii2tcvxku73bl5apu6jxfct) -==> 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 @ 67.3 MB/s -==> No patches needed for compiler-wrapper -==> compiler-wrapper: Executing phase: 'install' -==> compiler-wrapper: Successfully installed compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 - Stage: 0.05s. Install: 0.00s. Post-install: 0.01s. Total: 0.09s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -==> No binary for gcc-runtime-11.4.0-dr7kup45zat5rlc3hfgnyu2xliolb5v5 found: installing from source -==> Installing gcc-runtime-11.4.0-dr7kup45zat5rlc3hfgnyu2xliolb5v5 [4/5] -==> No patches needed for gcc-runtime -==> gcc-runtime: Executing phase: 'install' -==> gcc-runtime: Successfully installed gcc-runtime-11.4.0-dr7kup45zat5rlc3hfgnyu2xliolb5v5 - Stage: 0.00s. Install: 0.04s. Post-install: 0.03s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-dr7kup45zat5rlc3hfgnyu2xliolb5v5 -==> No binary for gmake-4.4.1-ikkzcakbjrn76u5l3eavzliyjhrdvagn found: installing from source -==> Installing gmake-4.4.1-ikkzcakbjrn76u5l3eavzliyjhrdvagn [5/5] -==> Fetching https://mirror.spack.io/_source-cache/archive/dd/dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3.tar.gz - [100%] 62.35 MB @ 153.0 MB/s -==> No patches needed for gmake -==> gmake: Executing phase: 'install' -==> gmake: Successfully installed gmake-4.4.1-ikkzcakbjrn76u5l3eavzliyjhrdvagn - Stage: 0.12s. Install: 10.37s. Post-install: 0.01s. Total: 10.52s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-ikkzcakbjrn76u5l3eavzliyjhrdvagn +[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) +[ ] 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) +[+] yhhe2we gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-yhhe2wecmh7n4qwwmqxictetytv2m6wo (0s) +[ ] cdyuto2 gmake@4.4.1 staging (0s) +[ ] cdyuto2 gmake@4.4.1 install (0s) +[+] cdyuto2 gmake@4.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-cdyuto2vcd73fdknitpbrk3mofaa6hw5 (19s) 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 d42dbabc81..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/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /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 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /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/55/55a205ae4e5c626a44a4e4e8ec35b0aeeb9f03851a3abbfd4eafa3acea384cab - [100%] 62.84 MB @ 441.9 GB/s -==> Extracting libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 from binary cache -==> libxml2: Successfully installed libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 - Search: 0.00s. Fetch: 0.17s. Install: 0.35s. Extract: 0.11s. Relocate: 0.01s. Total: 0.52s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 -==> Installing libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 [16/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -==> Fetching file:///mirror/blobs/sha256/1f/1f49703b0c810fdbfdc81f37e47ce182bb088c058ec15a6622f8927f0e1e6605 - [100%] 61.27 MB @ 431.6 GB/s -==> Extracting libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg from binary cache -==> libfabric: Successfully installed libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg - Search: 0.00s. Fetch: 0.01s. Install: 0.08s. Extract: 0.06s. Relocate: 0.01s. Total: 0.09s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg -==> Installing libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg [18/44] -==> Fetching file:///mirror/blobs/sha256/e2/e20e59828c817957d0e552e2dc3c24090b80ef4a58ea8ca61f71c6f11ebc00c5 - [100%] 63.82 MB @ 472.1 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 [19/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -==> Fetching file:///mirror/blobs/sha256/db/db254673cf42d6054fc35d8b78a7c8982bb1396c0ae9ee069145fa0b2c995bec - [100%] 90.69 KB @ 435.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 [21/44] -==> Fetching file:///mirror/blobs/sha256/55/55d366e1ed4d9bff834caf7183afcef1b30dc15273a977e313fbb57ee0e22d79 - [100%] 92.66 KB @ 423.8 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.03s. 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 [22/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -==> Fetching file:///mirror/blobs/sha256/a4/a415291ec0b68c751833d609eddbe3ad9e78e2fd558829cabf6c2980075046be - [100%] 178.05 KB @ 692.7 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.04s. 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 [26/44] -==> Fetching file:///mirror/blobs/sha256/62/62b08538ad6658858a7ca22c6df132b44bde7e26c857c5c0fb110bf017cd41b4 - [100%] 61.29 MB @ 401.6 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 [27/44] -==> Fetching file:///mirror/blobs/sha256/3f/3f941a4a6d8c6a544de9b9f9ca2c1edebbd0855a8282414be03b7ee494255ed6 - [100%] 65.22 MB @ 442.2 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.16s. 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 [28/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -==> Fetching file:///mirror/blobs/sha256/19/19f0c67fa4a6fbba8d28a816970d6ae9a6fb809294c33add6da436d1b5c246d3 - [100%] 466.57 KB @ 471.2 GB/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 [30/44] -==> Fetching file:///mirror/blobs/sha256/e6/e64dc42db3bb276afc20902f2fcb1fee549d7e1eec9c27568d8b68a9070d4ba5 - [100%] 12.98 MB @ 452.4 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.59s. Extract: 0.54s. Relocate: 0.03s. Total: 0.61s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n -==> Installing gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n [31/44] -==> Fetching file:///mirror/blobs/sha256/a1/a18f1c335be58a3aeb39c092dfe0c73984c32e2580f486d092dea5b1e407da17 - [100%] 11.28 MB @ 492.4 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.24s. Extract: 0.21s. Relocate: 0.02s. Total: 0.26s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d -==> Installing sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d [32/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -==> Fetching file:///mirror/blobs/sha256/e5/e5157be2079ccc99173d7fd2213486da7176e82e8bf23ce080a7a02bdb7d47c7 - [100%] 689.50 KB @ 461.2 GB/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 [34/44] -==> Fetching file:///mirror/blobs/sha256/13/13e18b86d168af128baf45c9ca8119ad4c2e2d76eb7a0b8047b79514c8e454a2 - [100%] 15.58 MB @ 482.4 GB/s -==> Extracting perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o from binary cache -==> perl: Successfully installed perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o - Search: 0.00s. Fetch: 0.02s. Install: 0.75s. Extract: 0.64s. Relocate: 0.09s. Total: 0.77s -[+] /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/d1/d16803492b1ade6e17bdf6601fc680467c31aa18850921432a42e4d741dfd406 - [100%] 68.28 MB @ 462.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.23s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk -==> Installing openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk [36/44] -==> Fetching file:///mirror/blobs/sha256/cd/cd166b12945d26bbf6a21ea4ca8d15c84ec769064c9364eb562d8fe70c28af37 - [100%] 61.03 MB @ 471.4 GB/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 [37/44] -==> Fetching file:///mirror/blobs/sha256/26/268194947254564c7d44943e697d3d29e811524c9ac80506a88d436b9b0a12d6 - [100%] 99.41 MB @ 582.5 GB/s -==> Extracting python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q from binary cache -==> python: Successfully installed python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q - Search: 0.00s. Fetch: 0.11s. Install: 3.24s. Extract: 3.11s. Relocate: 0.11s. Total: 3.36s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q -==> Installing python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q [38/44] -==> Fetching file:///mirror/blobs/sha256/05/05cd00b722dcc2a1b80fc862d101e4f46753f4e50b0993328bdf63946d37bc9e - [100%] 61.29 MB @ 491.6 GB/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/72/72fe4c49a0e381512d8c31a5a347af494a64b3d7f4631c6d67773d06bdb3fc81 - [100%] 707.31 KB @ 491.3 GB/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 [40/44] -==> Fetching file:///mirror/blobs/sha256/68/689d4351df4932ce11f2828fde890996b3824266c37e139a5d2e2a01b33030fa - [100%] 31.66 MB @ 592.5 GB/s -==> Extracting cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft from binary cache -==> cmake: Successfully installed cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft - Search: 0.00s. Fetch: 0.04s. Install: 1.18s. Extract: 1.10s. Relocate: 0.05s. Total: 1.22s -[+] /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 @ 462.0 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.06s. 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 @ 412.4 GB/s -==> Extracting mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd from binary cache -==> mpich: Successfully installed mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd - Search: 0.00s. Fetch: 0.02s. Install: 0.96s. Extract: 0.90s. Relocate: 0.03s. Total: 0.98s -[+] /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 @ 462.0 GB/s -==> Extracting hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd from binary cache -==> hdf5: Successfully installed hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd - Search: 0.00s. Fetch: 0.01s. Install: 0.20s. Extract: 0.14s. Relocate: 0.03s. Total: 0.21s -[+] /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..0b3346d4af --- /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 (1s) +[ ] itb4a2s libfabric@2.5.1 relocating (1s) +[+] itb4a2s libfabric@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.5.1-itb4a2swgfzelii4nbzmo3fzdnfq5rhy (1s) +[ ] 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 (1s) +[ ] jceyzq7 hdf5@1.14.6 fetching from build cache (0s) +[ ] jceyzq7 hdf5@1.14.6 relocating (0s) +[+] 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 18e9747c36..55db01c341 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/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -[+] /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/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /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/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -[+] /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 @ 402.1 GB/s -==> Extracting hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh from binary cache -==> hdf5: Successfully installed hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh - Search: 0.00s. Fetch: 0.40s. Install: 0.19s. Extract: 0.16s. Relocate: 0.02s. Total: 0.59s -[+] /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 (1s) +[+] as6mmcj hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-as6mmcjwjlgjhglp62wogxim6exfgtvd (1s) 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 4e1f84aca2..2665d0d8db 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 @ 525.6 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.18s. Install: 0.05s. Extract: 0.04s. Relocate: 0.00s. Total: 0.23s -[+] /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/c6/c62eaf4a6c39647f96fdb028cbacbd1a80df424ab98658992cb8279939ed8c41 - [100%] 62.56 MB @ 412.0 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.11s. Extract: 0.08s. Relocate: 0.02s. Total: 0.12s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -==> Installing mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle [7/49] -==> Fetching file:///mirror/blobs/sha256/66/66b47dd2659fdd1aeca7d50aa2b32c9e5edde63a74e5233d3af0fa9ea98e12e6 - [100%] 62.20 MB @ 431.8 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 [8/49] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -==> Fetching file:///mirror/blobs/sha256/b1/b1906ca502af23b4b0f3282011456bd4ca5523260fd89da710f430a253435c0a - [100%] 32.41 KB @ 161.5 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.02s. 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/3f/3fac396598eef662dd75093538ce2e36aa3338b60b65b9c50e86fba06f3b4bc8 - [100%] 61.57 MB @ 461.7 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 [11/49] -==> Fetching file:///mirror/blobs/sha256/d1/d17384f0564b5ebf91d4af10fbca9a24a9f60aefb00c518b111ff8a69f32e6eb - [100%] 61.87 MB @ 441.8 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.10s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -==> Installing xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph [12/49] -==> Fetching file:///mirror/blobs/sha256/44/4494a8094c6307a283260425c2fcae18f131557165dff36a1fee8c7865c0d8f8 - [100%] 117.07 KB @ 457.6 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 [13/49] -==> Fetching file:///mirror/blobs/sha256/1d/1dfdc937ee8598e5d68494ac32c40bae8a780ae6d002f970ced9df2337813a45 - [100%] 463.08 KB @ 451.1 GB/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 [14/49] -==> Fetching file:///mirror/blobs/sha256/c6/c6d49b50b0d0d82666133a31f3073ec9bedaf33e3cc2eb2b56eecfd976973063 - [100%] 63.50 MB @ 442.0 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.09s. Extract: 0.08s. Relocate: 0.01s. 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 [15/49] -==> Fetching file:///mirror/blobs/sha256/34/34adb03543f15fe57c37dd1be4b1c985278c6f9146df526aeda980e6cb70ba75 - [100%] 61.13 MB @ 471.5 GB/s -==> Extracting diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk from binary cache -==> diffutils: Successfully installed diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk - 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/diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk -==> Installing diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk [16/49] -==> Fetching file:///mirror/blobs/sha256/27/27af2631f6615cec0d1b2406c35636d51fa37af79c17946c6130805e7c207b06 - [100%] 92.66 KB @ 416.1 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 [17/49] -==> Fetching file:///mirror/blobs/sha256/8a/8a5c03cbe85a0616b5a7453c2e49c73459bca8d68fa34ffc30983f196bd05c99 - [100%] 61.34 MB @ 431.7 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.06s. 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 [18/49] -==> Fetching file:///mirror/blobs/sha256/10/10009edc0ab662fc4ced331ddbdf14aeef167df2b2dc41f7933dcd9d127c9cb5 - [100%] 62.84 MB @ 541.9 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.01s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -==> Installing libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo [19/49] -==> Fetching file:///mirror/blobs/sha256/78/7881079c346d61e1dfba6b1b3ca14a553d238f7eca9f4acdc8c57e5b54214367 - [100%] 196.78 KB @ 668.3 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 [20/49] -==> Fetching file:///mirror/blobs/sha256/4e/4ed43030e94ab138bf850645bd620d9002ab739ca3e77f16ae6bae30283e97f5 - [100%] 67.06 MB @ 452.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.01s. Install: 0.55s. Extract: 0.53s. Relocate: 0.01s. Total: 0.57s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -==> Installing ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz [21/49] -==> Fetching file:///mirror/blobs/sha256/c2/c2c4bbbacae5135ceab3532639bae0ea3a94a66b0ebf0afd55fa6fb0a4bb663f - [100%] 737.83 KB @ 471.2 GB/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.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -==> Installing m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g [22/49] -==> Fetching file:///mirror/blobs/sha256/ce/ce4f5147cf39139b278ca64732cad4621a778ba23d0411154f8c764b5683f574 - [100%] 898.08 KB @ 571.3 GB/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 [23/49] -==> Fetching file:///mirror/blobs/sha256/7a/7a18b14df737930ea1c770febdf5eedf98552e5dfc62e3cb9d405a19fce3ec3b - [100%] 304.49 KB @ 798.2 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.04s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -==> Installing bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [24/49] -==> Fetching file:///mirror/blobs/sha256/b5/b5f1aa7fd742a997b6da16a3bc722058e760f1b08e7a48e95857c7211e156bb0 - [100%] 65.21 MB @ 512.1 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.19s. Extract: 0.16s. 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 [25/49] -==> Fetching file:///mirror/blobs/sha256/48/4888cf6a6164231bdbf7db524bdb5e6625d6fcc78050679a637aa622b8286397 - [100%] 956.91 KB @ 471.4 GB/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/45/45c1e7c02f8c8fbd907bdef165d55df31c77bc10c73036f2391ca5f39aac0281 - [100%] 61.75 MB @ 561.8 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 [27/49] -==> Fetching file:///mirror/blobs/sha256/65/658171bfb6af49d486f682120270e8df942cac83c90a52d4500ff1c8dfbe514a - [100%] 61.95 MB @ 451.8 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 [28/49] -==> Fetching file:///mirror/blobs/sha256/45/45305870482486982cfc11ad7645b9bfc9ec49c7fff03110ac948e3848482cf9 - [100%] 61.29 MB @ 401.5 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.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -==> Installing tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [29/49] -==> Fetching file:///mirror/blobs/sha256/c5/c50e18794a41a9e14570ec807cfdbc565907a7aefab4021c1bba6b7a477ebee2 - [100%] 61.01 MB @ 541.5 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 @ 462.4 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.58s. Extract: 0.53s. Relocate: 0.04s. Total: 0.60s -[+] /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 @ 492.4 GB/s -==> Extracting perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t from binary cache -==> perl: Successfully installed perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t - Search: 0.00s. Fetch: 0.02s. Install: 0.74s. Extract: 0.64s. Relocate: 0.10s. Total: 0.76s -[+] /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 @ 471.7 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/76/769c8eaef6cf77a19fe64faaed4427136ed3e3df9a5c5956450ccff49832d8a0 - [100%] 61.03 MB @ 601.6 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 [34/49] -==> Fetching file:///mirror/blobs/sha256/b4/b4b3cb6b253eaecc83bfa130098ac8f01a70fd0f2a8870451fcd74aaa1e29ecd - [100%] 68.29 MB @ 422.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/ae/aee4ab2b46849d36e4ed1e6aff9db9bb55ab413eff401b37154ec324570a8dd1 - [100%] 771.91 KB @ 571.3 GB/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 [36/49] -==> Fetching file:///mirror/blobs/sha256/1a/1adc6688eb4e32d0cd8929461927011ff1d1634ea19982efe86954af39575786 - [100%] 807.31 KB @ 531.4 GB/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.08s. 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 [37/49] -==> Fetching file:///mirror/blobs/sha256/d3/d3a777a6a63cab468b47c9ff4d197de43448ac2d69b27e9773ff8f07c99f2038 - [100%] 518.48 KB @ 461.1 GB/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.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj -==> Installing flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj [38/49] -==> Fetching file:///mirror/blobs/sha256/25/251ef730f1ff850ab1b34a1d626fca215106667757afdd592811abd8a35b4cb4 - [100%] 707.26 KB @ 501.3 GB/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.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau -==> Installing automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau [39/49] -==> Fetching file:///mirror/blobs/sha256/92/9241a95cbd75686a0858b3e9e6340a113fa143a8a6f5ee25e1e9f42a7fc52232 - [100%] 62.03 MB @ 451.8 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.13s. Extract: 0.07s. Relocate: 0.04s. Total: 0.14s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu -==> Installing krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu [40/49] -==> Fetching file:///mirror/blobs/sha256/62/62111ab6149e8de545095a260d5ddac19529c6e23696164ca08f2c6c4b960909 - [100%] 61.38 MB @ 481.7 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.07s. Extract: 0.04s. 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 [41/49] -==> Fetching file:///mirror/blobs/sha256/ed/ed019861f13fc782c00c428b0d206fd96d2409d923c32772084fe788117f24d6 - [100%] 63.00 MB @ 572.0 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 [42/49] -==> Fetching file:///mirror/blobs/sha256/08/0871232ee4fc67d77039b6f53912897ff81c6614ea5d45410120e300ed7f8e31 - [100%] 427.92 KB @ 501.0 GB/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 [43/49] -==> Fetching file:///mirror/blobs/sha256/ae/ae236b7dbea2d551b84907dc52b129e78bde46e2f545bd07e5cd2e5a1817939f - [100%] 63.06 MB @ 431.5 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 [44/49] -==> Fetching file:///mirror/blobs/sha256/83/8333941640a5fd6568dfe48908b7adc12ba97163affa301281e80e0d9f1a672a - [100%] 31.66 MB @ 482.5 GB/s -==> Extracting cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t from binary cache -==> cmake: Successfully installed cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t - Search: 0.00s. Fetch: 0.04s. Install: 1.18s. Extract: 1.11s. Relocate: 0.06s. Total: 1.23s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t -==> Installing cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t [45/49] -==> Fetching file:///mirror/blobs/sha256/14/14509fcf26e36631b550c2401a1f9adc8246f781120fda7e4201f1548f772804 - [100%] 66.41 MB @ 462.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.01s. Install: 0.20s. Extract: 0.16s. 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 [46/49] -==> Fetching file:///mirror/blobs/sha256/07/078f59369bf8079cde7b22e60697307d41294d228794e96e6d0d1b895f434e39 - [100%] 64.89 MB @ 462.2 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.16s. 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 @ 462.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.02s. Install: 0.70s. Extract: 0.65s. Relocate: 0.03s. Total: 0.73s -[+] /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 @ 612.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.43s. Extract: 0.13s. Relocate: 0.04s. Total: 0.44s -[+] /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) +[ ] yvl6jpi pkgconf@2.5.1 fetching from build cache (0s) +[ ] ekvivpv ncurses@6.6 fetching from build cache (0s) +[ ] g72d7i3 zlib-ng@2.3.3 relocating (0s) +[ ] bkzcu2s libxcrypt@4.5.2 fetching from build cache (0s) +[ ] yvl6jpi pkgconf@2.5.1 relocating (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) +[ ] 63aruxk zstd@1.5.7 relocating (0s) +[ ] hhjyyqy xz@5.8.3 relocating (0s) +[ ] vbwvgwx libiconv@1.18 relocating (0s) +[ ] cbtgjrh bzip2@1.0.8 relocating (0s) +[+] g72d7i3 zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-g72d7i3bvgfmroytbp2d6giv67ymputp (0s) +[+] yvl6jpi pkgconf@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-yvl6jpilvkgopkrc2aanfhd3z7lz7r3l (0s) +[ ] 2t2useu numactl@2.0.19 fetching from build cache (0s) +[+] bkzcu2s libxcrypt@4.5.2 /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.5.2-bkzcu2s2hndgbhrkbhtlcnlvxg2em7e3 (0s) +[ ] qzkk5ym libpciaccess@0.17 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) +[+] cbtgjrh bzip2@1.0.8 /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-cbtgjrhpwivtaewryhbkj6zxuukhoekx (0s) +[ ] 2t2useu numactl@2.0.19 relocating (0s) +[ ] qzkk5ym libpciaccess@0.17 relocating (0s) +[ ] afklka7 pigz@2.8 fetching from build cache (0s) +[+] vbwvgwx libiconv@1.18 /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-vbwvgwxvjrccmptlen3ebo555lk5wior (0s) +[ ] 33yozp5 openssl@3.6.1 fetching from build cache (0s) +[ ] afklka7 pigz@2.8 relocating (0s) +[ ] 33yozp5 openssl@3.6.1 relocating (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 /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-afklka7uurghkxzfzr2kpku3hq64dp2w (0s) +[+] qzkk5ym libpciaccess@0.17 /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-qzkk5ymbu3z37kjhgylrkdy7w3hixzna (0s) +[ ] ujlg2ua libxml2@2.15.3 fetching from build cache (0s) +[ ] f5xe4px tar@1.35 fetching from build cache (0s) +[+] 2t2useu numactl@2.0.19 /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.19-2t2useutfyn7jozdzlunsc6336q6fcqx (0s) +[ ] ujlg2ua libxml2@2.15.3 relocating (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) +[+] f5xe4px tar@1.35 /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-f5xe4pxaujwc2cs2ppllgloh7gwbkkyd (0s) +[+] 33yozp5 openssl@3.6.1 /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.1-33yozp5l5ca4dnkgjjf2l2tdvt47mdna (0s) +[ ] oopqoag libevent@2.1.12 fetching from build cache (0s) +[ ] oopqoag libevent@2.1.12 relocating (0s) +[+] oopqoag libevent@2.1.12 /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-oopqoagvk4zhptmzymsbim2dmnfy37zf (1s) +[+] ekvivpv ncurses@6.6 /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.6-ekvivpvwxpsfmbydk42j7me3ckftiheo (1s) +[ ] uwyh3xy libedit@3.1-20251016 fetching from build cache (0s) +[ ] ujctyey hwloc@2.13.0 fetching from build cache (0s) +[ ] sle3ix4 gettext@1.0 fetching from build cache (0s) +[ ] uwyh3xy libedit@3.1-20251016 relocating (0s) +[ ] ujctyey hwloc@2.13.0 relocating (0s) +[ ] sle3ix4 gettext@1.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 (1s) +[ ] nldxmxw prrte@4.1.0 fetching from build cache (0s) +[ ] nldxmxw prrte@4.1.0 relocating (0s) +[+] sle3ix4 gettext@1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-1.0-sle3ix4nizh2w3uwvaokqlqlotlaexbu (1s) +[ ] ldqeqfw krb5@1.22.2 fetching from build cache (0s) +[ ] ldqeqfw krb5@1.22.2 relocating (0s) +[+] nldxmxw prrte@4.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.1.0-nldxmxwkhusnlqwqsuacqvn3t5r6bpjb (0s) +[+] ldqeqfw krb5@1.22.2 /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.22.2-ldqeqfwa76qeegjqhv72by6ayv5xlwae (0s) +[ ] 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 (1s) +[ ] 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 (1s) +[ ] 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..d37f2d7ef7 --- /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 d12c7d0c6d..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/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /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/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/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /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/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk -==> Fetching file:///mirror/blobs/sha256/78/78bdc9d57126ca9978f6f134fcd63b65f193826176545252fe02e4bb1ad8e780 - [100%] 694.36 KB @ 491.2 GB/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.16s. Extract: 0.14s. 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 [17/33] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau -==> Fetching file:///mirror/blobs/sha256/e0/e01036e697dbfdc8fc3ce8a2c4162aaed2ade7cd28f519516941167f7e2029ab - [100%] 63.04 MB @ 512.1 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.41s. Extract: 0.16s. Relocate: 0.03s. Total: 0.42s -[+] /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 @ 451.4 GB/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 @ 502.0 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/79/79a434126cb4944739f23d9450686d25c92f2a51b162f06e451bd0f1f4ce94e2 - [100%] 635.39 KB @ 511.3 GB/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.05s. Extract: 0.02s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog -==> Installing mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog [31/33] -==> Fetching file:///mirror/blobs/sha256/94/94b6854379dc5c2a979fbb57e93a339ce21c8be52a24596eef886dfa741f973f - [100%] 62.37 MB @ 512.0 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 [32/33] -==> Fetching file:///mirror/blobs/sha256/1f/1fc94cabbbd6e9c052ea3a10d368fcbd30d3b2c4f18da478323a5e354cec9596 - [100%] 651.91 MB @ 502.5 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.72s. Install: 12.12s. Extract: 10.92s. Relocate: 1.16s. Total: 12.84s -[+] /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..667ae0bd5c --- /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 (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 (3s) diff --git a/outputs/basics/list-py.out b/outputs/basics/list-py.out index bdea403562..ca4e1b43c6 100644 --- a/outputs/basics/list-py.out +++ b/outputs/basics/list-py.out @@ -1,1430 +1,1009 @@ $ 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-h5io py-pylibmagic +py-4suite-xml py-h5netcdf py-pylikwid +py-a2wsgi py-h5py py-pylint +py-abcpy py-h5sh py-pylint-gitlab +py-abipy py-hacking py-pylith +py-about-time py-hail py-pylops +py-absl-py py-handy-archives py-pymatgen +py-accelerate py-hatch py-pymatreader +py-accessible-pygments py-hatch-cython py-pymbolic +py-accimage py-hatch-fancy-pypi-readme py-pymc3 +py-acme-tiny py-hatch-jupyter-builder py-pymdown-extensions +py-acres py-hatch-nodejs-version py-pymeeus +py-adal py-hatch-requirements-txt py-pyminifier +py-adb-enhanced py-hatch-vcs py-pymol +py-addict py-hatchet py-pymongo +py-adios py-hatchling py-pymoo +py-adios4dolfinx py-hclust2 py-pymorph +py-advancedhtmlparser py-hdbscan py-pympler +py-aenum py-hdf5plugin py-pymsgbox +py-affine py-hdfs py-pymummer +py-agate py-healpix py-pymumps +py-agate-dbf py-healpy py-pymupdf +py-agate-excel py-heapdict py-pymupdf-fonts +py-agate-sql py-heat py-pymysql +py-ahpy py-heavyball py-pynacl +py-aiobotocore py-hep-ml py-pynio +py-aiocontextvars py-hepdata-converter py-pynisher +py-aiodns py-hepdata-lib py-pynn +py-aiofiles py-hepdata-validator py-pynndescent +py-aiohappyeyeballs py-hepstats py-pynpm +py-aiohttp py-hepunits py-pynrrd +py-aiohttp-cors py-heudiconv py-pynucleus +py-aioitertools py-hf-transfer py-pynumpress +py-aiojobs py-hf-xet py-pynvim +py-aioredis py-hieroglyph py-pynvml +py-aiosignal py-highspy py-pynvtx +py-aiosqlite py-hiredis py-pyodbc +py-aiowebdav2 py-hist py-pyogrio +py-alabaster py-histbook py-pyomo +py-albucore py-histogrammar py-pyopencl +py-alembic py-histoprint py-pyopengl +py-alive-progress py-hjson py-pyopenssl +py-alpaca-eval py-hmmlearn py-pypar +py-alpaca-farm py-holland-backup py-pyparsing +py-alphafold py-holoviews py-pypdf +py-altair py-horovod py-pypdf2 +py-altgraph py-hpack py-pypeflow +py-amici py-hpbandster py-pypeg2 +py-amityping py-hpccm py-pyperclip +py-amplpy py-hsluv py-pyperf +py-ampltools py-hstspreload py-pypinfo +py-amqp py-htgettoken py-pypinyin +py-amrex py-html2text py-pypistats +py-angel py-html5lib py-pypng +py-aniso8601 py-htmldate py-pyppeteer +py-anndata py-htmlgen py-pyprecice +py-annexremote py-htseq py-pyprof2html +py-annotated-types py-httpbin py-pyproj +py-annoy py-httpcore py-pyproject-hooks +py-ansi2html py-httplib2 py-pyproject-metadata +py-ansible py-httpretty py-pyproject-parser +py-ansimarkup py-httpstan py-pypulse +py-ansiwrap py-httptools py-pyqi +py-antimeridian py-httpx py-pyqt-builder +py-antipickle py-huggingface-hub py-pyqt4 +py-antlr4-python3-runtime py-humanfriendly py-pyqt5 +py-antspyx py-humanize py-pyqt5-sip +py-anuga py-hvac py-pyqt6 +py-anvio py-hvplot py-pyqt6-sip +py-anybadge py-hydra-core py-pyqtgraph +py-anyio py-hypercorn py-pyquaternion +py-anytree py-hyperframe py-pyreadline +py-anywidget py-hyperlink py-pyrect +py-apache-libcloud py-hyperopt py-pyrevolve +py-apache-tvm-ffi py-hypothesis py-pyrfr +py-apebench py-ibm-cloud-sdk-core py-pyro-api +py-apex py-ibm-watson py-pyro-ppl +py-apeye py-ics py-pyro4 +py-apeye-core py-id py-pyroaring +py-apipkg py-identify py-pyrocko +py-apispec py-idna py-pyrodigal +py-app-model py-idna-ssl py-pyrodigal-gv +py-appdirs py-igor py-pyrometheus +py-applicationinsights py-igor2 py-pyrr +py-appnope py-igraph py-pyrsistent +py-apprise py-igv-notebook py-pysam +py-apptools py-igwn-auth-utils py-pyscaf +py-apscheduler py-ihm py-pyscf +py-arcgis py-illumina-utils py-pyscipopt +py-arch py-ilmbase py-pyscreeze +py-archspec py-imagecodecs py-pyseer +py-arcp py-imagecorruptions-imaug py-pyserial +py-argcomplete py-imagehash py-pysftp +py-argh py-imageio py-pyshacl +py-argon2-cffi py-imageio-ffmpeg py-pyshp +py-argon2-cffi-bindings py-imagesize py-pyside2 +py-argparse-dataclass py-imaug py-pysimdjson +py-argparse-manpage py-imbalanced-learn py-pysindy +py-args py-imgaug py-pysmartdl +py-arkouda py-iminuit py-pysmiles +py-arm-pyart py-immutabledict py-pysocks +py-arpeggio py-immutables py-pysolar +py-arrow py-importlib-metadata py-pyspark +py-art py-importlib-resources py-pyspellchecker +py-arviz py-imutils py-pyspice +py-asciitree py-in-n-out py-pyspnego +py-asdf py-incremental py-pyspoa +py-asdf-astropy py-inflect py-pyspod +py-asdf-coordinates-schemas py-inheritance py-pysqlite3 +py-asdf-standard py-iniconfig py-pystac +py-asdf-transform-schemas py-iniparse py-pystac-client +py-asdf-unit-schemas py-inquirer py-pystache +py-asdfghjkl py-inquirerpy py-pystan +py-ase py-inscriptis py-pysurfer +py-asgi-lifespan py-installer py-pytablewriter +py-asgiref py-instrain py-pytailf +py-asn1crypto py-intake py-pytaridx +py-aspy-yaml py-intake-esm py-pytecplot +py-asserts py-intbitset py-pyteomics +py-ast-serialize py-intel-openmp py-pytesseract +py-asteval py-intensity-normalization py-pytest +py-astor py-interface-meta py-pytest-aiohttp +py-astpretty py-interlap py-pytest-allclose +py-astroid py-intervaltree py-pytest-arraydiff +py-astropy py-invoke py-pytest-astropy +py-astropy-healpix py-iocapture py-pytest-astropy-header +py-astropy-helpers py-iopath py-pytest-asyncio +py-astropy-iers-data py-ipaddress py-pytest-benchmark +py-asttokens py-ipdb py-pytest-cache +py-astunparse py-ipycanvas py-pytest-check-links +py-async-generator py-ipyevents py-pytest-cmake +py-async-lru py-ipyfilechooser py-pytest-cov +py-async-timeout py-ipykernel py-pytest-cpp +py-asyncio py-ipyleaflet py-pytest-datadir +py-asyncpg py-ipympl py-pytest-doctestplus +py-asynctest py-ipyparallel py-pytest-fail-slow +py-atomicwrites py-ipyrad py-pytest-filter-subpackage +py-atpublic py-ipython py-pytest-flake8 +py-atropos py-ipython-cluster-helper py-pytest-flakes +py-ats py-ipython-genutils py-pytest-forked +py-attmap py-ipython-pygments-lexers py-pytest-html +py-attrs py-ipytree py-pytest-httpbin +py-audioread py-ipyvtk-simple py-pytest-isort +py-auditwheel py-ipyvue py-pytest-lazy-fixture +py-authlib py-ipyvuetify py-pytest-memray +py-autocfg py-ipywidgets py-pytest-metadata +py-autodocsumm py-irpf90 py-pytest-mock +py-autograd py-isa-rwval py-pytest-mpi +py-autograd-gamma py-isal py-pytest-mypy +py-automat py-iso8601 py-pytest-openfiles +py-autopep8 py-isodate py-pytest-parallel +py-autoray py-isoduration py-pytest-pep8 +py-autoreject py-isort py-pytest-pylint +py-auxlib py-itables py-pytest-qt +py-avro py-iterative-stats py-pytest-random-order +py-avro-json-serializer py-itk py-pytest-regtest +py-avro-python3 py-itolapi py-pytest-remotedata +py-awesome-slugify py-itsdangerous py-pytest-reportlog +py-awkward py-jacobi py-pytest-retry +py-awkward-cpp py-jaconv py-pytest-runner +py-awkward0 py-jamo py-pytest-socket +py-awscrt py-janus py-pytest-subprocess +py-ax-platform py-jaraco-classes py-pytest-timeout +py-azote py-jaraco-context py-pytest-workflow +py-azure-batch py-jaraco-functools py-pytest-xdist +py-azure-cli-command-modules-nspkg py-jarowinkler py-python-benedict +py-azure-cli-core py-jarvis-util py-python-bioformats +py-azure-cli-nspkg py-javaproperties py-python-box +py-azure-cli-telemetry py-jax py-python-calamine +py-azure-common py-jaxlib py-python-certifi-win32 +py-azure-core py-jaxtyping py-python-constraint +py-azure-cosmos py-jcb py-python-crfsuite +py-azure-datalake-store py-jdatetime py-python-daemon +py-azure-functions-devops-build py-jdcal py-python-dateutil +py-azure-graphrbac py-jedi py-python-deprecated +py-azure-identity py-jeepney py-python-discovery +py-azure-keyvault py-jellyfish py-python-docs-theme +py-azure-keyvault-certificates py-jinja2 py-python-docx +py-azure-keyvault-keys py-jinja2-cli py-python-dotenv +py-azure-keyvault-nspkg py-jinja2-humanize-extension py-python-editor +py-azure-keyvault-secrets py-jinja2-time py-python-engineio +py-azure-loganalytics py-jiter py-python-fmask +py-azure-mgmt-advisor py-jmespath py-python-fsutil +py-azure-mgmt-apimanagement py-jmp py-python-gitlab +py-azure-mgmt-appconfiguration py-joblib py-python-hostlist +py-azure-mgmt-applicationinsights py-jplephem py-python-igraph +py-azure-mgmt-authorization py-jproperties py-python-javabridge +py-azure-mgmt-batch py-jprops py-python-jenkins +py-azure-mgmt-batchai py-jpype1 py-python-jose +py-azure-mgmt-billing py-jraph py-python-json-logger +py-azure-mgmt-botservice py-jsmin py-python-keystoneclient +py-azure-mgmt-cdn py-json-get py-python-ldap +py-azure-mgmt-cognitiveservices py-json-tricks py-python-levenshtein +py-azure-mgmt-compute py-json2html py-python-libsbml +py-azure-mgmt-consumption py-json5 py-python-logstash +py-azure-mgmt-containerinstance py-jsonargparse py-python-louvain +py-azure-mgmt-containerregistry py-jsondiff py-python-lsp-jsonrpc +py-azure-mgmt-containerservice py-jsonlines py-python-lsp-ruff +py-azure-mgmt-core py-jsonpatch py-python-lsp-server +py-azure-mgmt-cosmosdb py-jsonpath-ng py-python-lzo +py-azure-mgmt-datalake-analytics py-jsonpickle py-python-magic +py-azure-mgmt-datalake-store py-jsonpointer py-python-mapnik +py-azure-mgmt-datamigration py-jsonref py-python-markdown-math +py-azure-mgmt-deploymentmanager py-jsonschema py-python-memcached +py-azure-mgmt-devtestlabs py-jsonschema-specifications py-python-multipart +py-azure-mgmt-dns py-junit-xml py-python-mumps +py-azure-mgmt-eventgrid py-junit2html py-python-oauth2 +py-azure-mgmt-eventhub py-jupyter py-python-picard +py-azure-mgmt-hdinsight py-jupyter-client py-python-pptx +py-azure-mgmt-imagebuilder py-jupyter-console py-python-ptrace +py-azure-mgmt-iotcentral py-jupyter-core py-python-rapidjson +py-azure-mgmt-iothub py-jupyter-events py-python-slugify +py-azure-mgmt-iothubprovisioningservices py-jupyter-leaflet py-python-socketio +py-azure-mgmt-keyvault py-jupyter-lsp py-python-sotools +py-azure-mgmt-kusto py-jupyter-packaging py-python-subunit +py-azure-mgmt-loganalytics py-jupyter-server py-python-swiftclient +py-azure-mgmt-managedservices py-jupyter-server-mathjax py-python-utils +py-azure-mgmt-managementgroups py-jupyter-server-proxy py-python-xlib +py-azure-mgmt-maps py-jupyter-server-terminals py-python-xmp-toolkit +py-azure-mgmt-marketplaceordering py-jupyter-telemetry py-python3-openid +py-azure-mgmt-media py-jupyterhub py-python3-xlib +py-azure-mgmt-monitor py-jupyterlab py-pythonqwt +py-azure-mgmt-msi py-jupyterlab-pygments py-pythonsollya +py-azure-mgmt-netapp py-jupyterlab-server py-pythran +py-azure-mgmt-network py-jupyterlab-widgets py-pytimeparse +py-azure-mgmt-nspkg py-jupytext py-pytng +py-azure-mgmt-policyinsights py-justext py-pytokens +py-azure-mgmt-privatedns py-jwcrypto py-pytoml +py-azure-mgmt-rdbms py-kaggle py-pytools +py-azure-mgmt-recoveryservices py-kaldiio py-pytorch-gradual-warmup-lr +py-azure-mgmt-recoveryservicesbackup py-kaleido py-pytorch-lightning +py-azure-mgmt-redhatopenshift py-kb-python py-pytorch-sphinx-theme +py-azure-mgmt-redis py-keras py-pytorch-warmup +py-azure-mgmt-relay py-keras-applications py-pyts +py-azure-mgmt-reservations py-keras-preprocessing py-pytuq +py-azure-mgmt-resource py-keras2onnx py-pytweening +py-azure-mgmt-search py-kerberos py-pytz +py-azure-mgmt-security py-kerchunk py-pyu2f +py-azure-mgmt-servicebus py-key-value-aio py-pyudev +py-azure-mgmt-servicefabric py-keyboard py-pyugrid +py-azure-mgmt-signalr py-keyring py-pyupgrade +py-azure-mgmt-sql py-keyrings-alt py-pyusb +py-azure-mgmt-sqlvirtualmachine py-keystoneauth1 py-pyutilib +py-azure-mgmt-storage py-kitchen py-pyuwsgi +py-azure-mgmt-trafficmanager py-kiwisolver py-pyvcf +py-azure-mgmt-web py-kmodes py-pyvips +py-azure-multiapi-storage py-knack py-pyvista +py-azure-nspkg py-kneaddata py-pyvistaqt +py-azure-storage-blob py-kombu py-pyviz-comms +py-azure-storage-common py-kornia py-pyvolve +py-azure-storage-nspkg py-kornia-rs py-pywavelets +py-b2luigi py-kosh py-pywcs +py-babel py-krb5 py-pywin32 +py-backcall py-kt-legacy py-pywinpty +py-backoff py-kubernetes py-pyworld +py-backpack-for-pytorch py-kymatio py-pyxlsb +py-backports-abc py-lagom py-pyyaml +py-backports-cached-property py-langcodes py-pyyaml-env-tag +py-backports-entry-points-selectable py-langsmith py-pyzmq +py-backports-lzma py-language-data py-qdldl +py-backports-os py-lap py-qiskit-aer +py-backports-ssl-match-hostname py-laplace-torch py-qiskit-ibm-provider +py-backports-tarfile py-lark py-qiskit-nature +py-backports-tempfile py-lark-parser py-qiskit-terra +py-backports-weakref py-laspy py-qmtest +py-backports-zoneinfo py-latexcodec py-qpsolvers +py-bagit py-law py-qpth +py-bagit-profile py-lazy py-qrcode +py-bakta py-lazy-loader py-qsymm +py-bandit py-lazy-object-proxy py-qtawesome +py-barectf py-lazy-property py-qtconsole +py-basemap py-lazyarray py-qtpy +py-bash-kernel py-lcls-krtc py-quantiphy +py-basis-set-exchange py-ldap3 py-quantities +py-batchspawner py-leather py-quantum-blackbird +py-bayesian-optimization py-leidenalg py-quantum-xir +py-bcbio-gff py-lerc py-quart +py-bcolz py-lfpykit py-quast +py-bcrypt py-lhsmdu py-quaternionic +py-bdbag py-liac-arff py-qudida +py-beaker py-libclang py-queryablelist +py-beancount py-libconf py-querystring-parser +py-beartype py-libcst py-questionary +py-beautifulsoup4 py-libensemble py-qutip +py-beniget py-liblas py-qutip-qip +py-bibtexparser py-librosa py-rachis +py-bidict py-librt py-radiant-mlhub +py-bids-validator py-libsonata py-radical-entk +py-bids-validator-deno py-lifelines py-radical-gtod +py-bidscoin py-lightgbm py-radical-pilot +py-bidskit py-lightly py-radical-saga +py-bidsschematools py-lightly-utils py-radical-utils +py-bigdft py-lightning py-ranger-fm +py-bigfloat py-lightning-api-access py-rapidfuzz +py-billiard py-lightning-cloud py-rapidfuzz-capi +py-binary py-lightning-fabric py-rarfile +py-binaryornot py-lightning-lite py-rassumfrassum +py-bintrees py-lightning-uq-box py-rasterio +py-binwalk py-lightning-utilities py-rasterstats +py-biobb-common py-lightpipes py-ratelim +py-biobb-gromacs py-ligo-segments py-ratelimiter +py-biobb-io py-lil-aretomo py-raven +py-biobb-model py-line-profiler py-ray +py-biobb-structure-checking py-linear-operator py-rbtools +py-biobb-structure-utils py-linear-tree py-rdflib +py-bioblend py-linecache2 py-rdflib-jsonld +py-biom-format py-lineenhancer py-rdt +py-biomine py-linkchecker py-reacton +py-biopandas py-linkify-it-py py-readchar +py-biopython py-lit py-readme-renderer +py-biosppy py-litdata py-recommonmark +py-biotite py-littleutils py-redis +py-biotraj py-lizard py-referencing +py-bitarray py-llama-cpp-python py-refgenconf +py-bitshuffle py-llnl-sina py-refgenie +py-bitstring py-llvmlite py-regex +py-bitstruct py-lmdb py-regionmask +py-black py-lmfit py-regions +py-blake3 py-lmodule py-reindent +py-bleach py-localcider py-relion +py-blessed py-locket py-relion-blush +py-blessings py-lockfile py-relion-classranker +py-blight py-logilab-common py-repligit +py-blinker py-logistro py-reportlab +py-blis py-logmuse py-reportseff +py-blosc py-logomaker py-repoze-lru +py-blosc2 py-loguru py-reproject +py-blosum py-loky py-requests +py-bluepyefe py-loompy py-requests-cache +py-bluepyemodel py-looseversion py-requests-file +py-bluepyopt py-louie py-requests-ftp +py-bmap-tools py-lpips py-requests-futures +py-bmtk py-lru-dict py-requests-kerberos +py-bokeh py-lscsoft-glue py-requests-mock +py-boltons py-lsprotocol py-requests-ntlm +py-boom-boot-manager py-luigi py-requests-oauthlib +py-boost-histogram py-lupa py-requests-toolbelt +py-boto py-lvis py-requests-unixsocket +py-boto3 py-lws py-requirements-parser +py-botocore py-lxml py-reretry +py-botorch py-lz4 py-resampy +py-bottle py-lzstring py-resize-right +py-bottleneck py-m2r py-resolvelib +py-bqplot py-macholib py-responses +py-braceexpand py-machotools py-resultsfile +py-brain-indexer py-macs2 py-retry +py-branca py-macs3 py-retry-decorator +py-bravado py-maestrowf py-retrying +py-bravado-core py-magicgui py-retworkx +py-breakseq2 py-mahotas py-rfc3339-validator +py-breathe py-mailchecker py-rfc3986 +py-brian py-make py-rfc3986-validator +py-brian2 py-makefun py-rfc3987-syntax +py-brotli py-mako py-rich +py-brotlipy py-mapbox-earcut py-rich-argparse +py-bsddb3 py-mapclassify py-rich-click +py-build py-mariadb py-rio-pmtiles +py-bx-python py-marisa-trie py-rios +py-cachecontrol py-markdown py-rioxarray +py-cached-property py-markdown-include py-rise +py-cachetools py-markdown-it-py py-river +py-cachey py-markdown2 py-rmm +py-cachy py-markov-clustering py-rnc2rng +py-cairocffi py-markovify py-robocrys +py-cairosvg py-markupsafe py-robotframework +py-caliper-reader py-marshmallow py-rocrate +py-callmonitor py-matminer py-roifile +py-calver py-matplotlib py-roman-numerals +py-cantoolz py-matplotlib-inline py-roman-numerals-py +py-carputils py-matplotlib-scalebar py-rope +py-cartopy py-maturin py-rosdep +py-casadi py-mayavi py-rosdistro +py-catalogue py-mbstrdecoder py-rosinstall +py-catkin-pkg py-mccabe py-rosinstall-generator +py-cattrs py-md-environ py-rospkg +py-cbor2 py-mda-xdrlib py-rotary-embedding-torch +py-cclib py-mdahole2 py-rouge-score +py-cdo py-mdanalysis py-routes +py-cdsapi py-mdanalysistests py-rpds-py +py-cekit py-mdi py-rply +py-celery py-mdit-py-plugins py-rpy2 +py-cellprofiler py-mdocfile py-rsa +py-cellprofiler-core py-mdurl py-rsatoolbox +py-centrosome py-meautility py-rseqc +py-cerberus py-mechanize py-rst2pdf +py-certifi py-medaka py-rtoml +py-certipy py-meldmd py-rtree +py-cf-units py-melissa-core py-ruamel-ordereddict +py-cf-xarray py-memelite py-ruamel-yaml +py-cffconvert py-memory-profiler py-ruamel-yaml-clib +py-cffi py-memprof py-ruamel-yaml-jinja2 +py-cfgrib py-memray py-rucio-clients +py-cfgv py-mendeleev py-ruff +py-cftime py-mercantile py-rustworkx +py-cgen py-mergedeep py-rx +py-chai py-merlin py-s3cmd +py-chai-lab py-meshio py-s3fs +py-chainer py-meshpy py-s3transfer +py-chainforgecodegen py-meson-python py-sacrebleu +py-chainmap py-metaphlan py-sacremoses +py-chalice py-metasv py-safe-netrc +py-chardet py-metatensor-core py-safetensors +py-charm4py py-metatensor-learn py-salib +py-charset-normalizer py-metatensor-operations py-sarif-tools +py-chart-studio py-metatensor-torch py-scandir +py-cheap-repr py-metatomic-torch py-scanpy +py-checkm-genome py-metatrain py-schema +py-cheetah3 py-metis py-schema-salad +py-chemfiles py-metomi-isodatetime py-scientificpython +py-chemiscope py-metomi-rose py-scifem +py-cheroot py-metpy py-scikit-build +py-cherrypy py-metric-learn py-scikit-build-core +py-chex py-metrics py-scikit-fmm +py-choreographer py-mffpy py-scikit-fuzzy +py-chronyk py-mg-rast-tools py-scikit-image +py-ci-info py-mgmetis py-scikit-learn +py-ci-sdr py-microsoft-aurora py-scikit-learn-extra +py-cig-pythia py-mido py-scikit-matter +py-cinema-lib py-mikado py-scikit-optimize +py-cinemasci py-mike py-scikit-sparse +py-circus py-minio py-scikits-odes +py-citeproc-py py-minisom py-scine-chemoton +py-clarabel py-minkowskiengine py-scine-puffin +py-clean-text py-minrpc py-scinum +py-cleo py-misk py-scipy +py-click py-misopy py-scitokens +py-click-didyoumean py-mistletoe py-scooby +py-click-option-group py-mistune py-scoop +py-click-plugins py-mizani py-scp +py-click-repl py-mkdocs py-screed +py-cligj py-mkdocs-autorefs py-scs +py-clikit py-mkdocs-jupyter py-sdmetrics +py-climate py-mkdocs-material py-sdnotify +py-climax py-mkdocs-material-extensions py-sdv +py-clint py-mkdocstrings py-seaborn +py-clip-anytorch py-mkdocstrings-python py-secretstorage +py-clipboard py-ml-collections py-seekpath +py-cloudauthz py-ml-dtypes py-segmentation-models-pytorch +py-cloudbridge py-mlflow py-selenium +py-cloudpathlib py-mlperf-logging py-semantic-version +py-cloudpickle py-mlxtend py-semver +py-clustershell py-mmcv py-send2trash +py-cma py-mmengine py-sentencepiece +py-cmaes py-mmtf-python py-sentry-sdk +py-cmake-format py-mne py-seqeval +py-cmake-parser py-mne-bids py-sequence-models +py-cmocean py-mo-pack py-seriate +py-cmseq py-moarchiving py-serpent +py-cmsml py-mock py-session-info +py-cmyt py-model-index py-setproctitle +py-coapthon3 py-modelcif py-setupmeta +py-coca-pytorch py-modepy py-setuptools +py-coclust py-modin py-setuptools-cpp +py-codebasin py-modisco py-setuptools-git +py-codecarbon py-modred py-setuptools-git-versioning +py-codechecker py-modules-gui py-setuptools-reproducible +py-codepy py-moltemplate py-setuptools-rust +py-codespell py-monai py-setuptools-scm +py-coherent-licensed py-monkeytype py-setuptools-scm-git-archive +py-coilmq py-monotonic py-sfepy +py-colabtools py-monty py-sgp4 +py-colorama py-more-itertools py-sh +py-colorcet py-morph-tool py-shap +py-colorclass py-morphio py-shapely +py-colored py-morphosamplers py-shellescape +py-colored-traceback py-motmetrics py-shellingham +py-coloredlogs py-mouseinfo py-shiboken2 +py-colorful py-moviepy py-shippinglabel +py-colorio py-mpi4jax py-shortbred +py-colorlog py-mpi4py py-shortuuid +py-colorlover py-mpld3 py-shroud +py-colormath py-mpldock py-shtab +py-colorpy py-mplhep py-simpervisor +py-colorspacious py-mplhep-data py-simple-slurm +py-colossalai py-mpmath py-simpleeval +py-colour py-mrcfile py-simplegeneric +py-comm py-msal py-simplejson +py-common py-msal-extensions py-simplekml +py-commonmark py-msgpack py-simpletraj +py-conan py-msgpack-numpy py-simpy +py-conda-inject py-msrest py-simsimd +py-conda-souschef py-msrestazure py-singledispatchmethod +py-confection py-mui4py py-sip +py-configargparse py-multi-imbalance py-six +py-configobj py-multi-key-dict py-skl2onnx +py-configparser py-multidict py-slepc4py +py-configspace py-multiecho py-slicer +py-confluent-kafka py-multipledispatch py-slurm-pipeline +py-connectionpool py-multiprocess py-smac +py-consolekit py-multiqc py-smart-open +py-constantly py-multiurl py-smartredis +py-contextily py-mumps4py py-smartsim +py-contextlib2 py-munch py-smartypants +py-contexttimer py-munkres py-smmap +py-continuum py-murmurhash py-smolagents +py-contourpy py-mutagen py-smote-variants +py-contrib py-mx py-snakemake-executor-plugin-azure-batch +py-control py-mxfold2 py-snakemake-executor-plugin-cluster-generic +py-convertdate py-myhdl py-snakemake-executor-plugin-cluster-sync +py-convokit py-mypy py-snakemake-executor-plugin-drmaa +py-cookiecutter py-mypy-extensions py-snakemake-executor-plugin-flux +py-coolname py-mysql-connector-python py-snakemake-executor-plugin-googlebatch +py-copulas py-mysqlclient py-snakemake-executor-plugin-kubernetes +py-corner py-myst-parser py-snakemake-executor-plugin-slurm +py-correctionlib py-namex py-snakemake-executor-plugin-slurm-jobstep +py-corrfunc py-nanobind py-snakemake-executor-plugin-tes +py-counter py-nanoget py-snakemake-interface-common +py-courlan py-nanomath py-snakemake-interface-executor-plugins +py-cov-core py-nanoplot py-snakemake-interface-logger-plugins +py-coverage py-nanostat py-snakemake-interface-report-plugins +py-coveralls py-nanotime py-snakemake-interface-scheduler-plugins +py-cppheaderparser py-nanotron py-snakemake-interface-storage-plugins +py-cppy py-napari py-snakemake-storage-plugin-azure +py-cramjam py-napari-console py-snakemake-storage-plugin-fs +py-crashtest py-napari-plugin-engine py-snakemake-storage-plugin-ftp +py-crc32c py-napari-plugin-manager py-snakemake-storage-plugin-gcs +py-crcmod py-napari-svg py-snakemake-storage-plugin-http +py-croniter py-nara-wpe py-snakemake-storage-plugin-pelican +py-crossmap py-narwhals py-snakemake-storage-plugin-rucio +py-cryolobm py-natsort py-snakemake-storage-plugin-s3 +py-cryptography py-nbclassic py-snakemake-storage-plugin-sftp +py-css-parser py-nbclient py-snakemake-storage-plugin-zenodo +py-cssselect py-nbconvert py-snakeviz +py-cssselect2 py-nbdime py-snappy +py-cssutils py-nbformat py-sncosmo +py-csvkit py-nbmake py-sniffio +py-ctgan py-nbqa py-snoop +py-cuda-bindings py-nbsphinx py-snowballstemmer +py-cuda-core py-nbstripout py-snuggs +py-cuda-pathfinder py-nbval py-sobol-seq +py-cudf py-nc-time-axis py-social-auth-core +py-cufflinks py-ncbi-genome-download py-sonlib +py-cuml py-ndg-httpsclient py-sortedcollections +py-cupy py-ndindex py-sortedcontainers +py-current py-neo py-soundfile +py-currentscape py-neo4j py-soupsieve +py-curryreader py-neobolt py-soyclustering +py-curvlinops-for-pytorch py-neotime py-spacy +py-custodian py-neovim-remote py-spacy-legacy +py-custom-inherit py-neptune-client py-spacy-loggers +py-cutadapt py-nest-asyncio py-spacy-models-en-core-web-sm +py-cvxopt py-nestle py-spacy-models-en-vectors-web-lg +py-cvxpy py-netaddr py-sparse +py-cwl-upgrader py-netcdf4 py-spatialist +py-cwl-utils py-netifaces py-spatialite +py-cwltool py-netket py-spatialpandas +py-cx-oracle py-netpyne py-spdlog +py-cycler py-networkit py-spectra +py-cykhash py-networkx py-spectral +py-cylc-flow py-neuralgcm py-spectrum-utils +py-cylc-rose py-neurokit2 py-speech-recognition +py-cylp py-neurolab py-spefile +py-cymem py-neurom py-spgl1 +py-cyordereddict py-neurora py-spglib +py-cython py-neurotools py-spherical +py-cython-bbox py-nexus-sdk py-sphericart +py-cyvcf2 py-nexusforge py-sphericart-torch +py-d2to1 py-nglview py-sphinx +py-dace py-ngs-tools py-sphinx-argparse +py-dacite py-nh3 py-sphinx-autodoc-typehints +py-dadi py-nibabel py-sphinx-basic-ng +py-dalib py-nilearn py-sphinx-book-theme +py-damask py-nipype py-sphinx-bootstrap-theme +py-darshan py-nitransforms py-sphinx-click +py-dasbus py-niworkflows py-sphinx-copybutton +py-dash py-nltk py-sphinx-design +py-dash-bootstrap-components py-node-semver py-sphinx-fortran +py-dash-svg py-nodeenv py-sphinx-gallery +py-dask py-non-regression-test-tools py-sphinx-github-changelog +py-dask-awkward py-nose py-sphinx-immaterial +py-dask-expr py-nose-cov py-sphinx-jinja2-compat +py-dask-glm py-nose2 py-sphinx-multiversion +py-dask-histogram py-nosexcover py-sphinx-prompt +py-dask-jobqueue py-notebook py-sphinx-removed-in +py-dask-ml py-notebook-shim py-sphinx-rtd-dark-mode +py-dask-mpi py-npe2 py-sphinx-rtd-theme +py-dask-sphinx-theme py-nptyping py-sphinx-tabs +py-databricks-cli py-npx py-sphinx-theme-builder +py-dataclasses py-ntlm-auth py-sphinx-toolbox +py-dataclasses-json py-ntplib py-sphinxautomodapi +py-datacube py-nugraph py-sphinxcontrib-applehelp +py-datalad py-nuitka py-sphinxcontrib-bibtex +py-datalad-container py-num2words py-sphinxcontrib-devhelp +py-datalad-deprecated py-numba py-sphinxcontrib-htmlhelp +py-datalad-hirni py-numba4jax py-sphinxcontrib-issuetracker +py-datalad-metadata-model py-numbagg py-sphinxcontrib-jquery +py-datalad-metalad py-numcodecs py-sphinxcontrib-jsmath +py-datalad-neuroimaging py-numdifftools py-sphinxcontrib-mermaid +py-datalad-webapp py-numexpr py-sphinxcontrib-moderncmakedomain +py-dataproperty py-numexpr3 py-sphinxcontrib-napoleon +py-datasets py-numkit py-sphinxcontrib-plantuml +py-datashader py-numl py-sphinxcontrib-programoutput +py-datatrove py-numpy py-sphinxcontrib-qthelp +py-dateparser py-numpy-groupies py-sphinxcontrib-serializinghtml +py-dateutils py-numpy-indexed py-sphinxcontrib-spelling +py-datrie py-numpy-quaternion py-sphinxcontrib-tikz +py-dbf py-numpy-stl py-sphinxcontrib-trio +py-dbfread py-numpydoc py-sphinxcontrib-websupport +py-dcm2bids py-nvidia-dali py-sphinxemoji +py-dcmstack py-nvidia-ml-py py-sphobjinv +py-deap py-nvidia-ml-py3 py-spykeutils +py-debtcollector py-nvidia-modulus py-spython +py-debugpy py-nvidia-nvcomp py-sqlalchemy +py-decorator py-nvidia-nvimagecodec py-sqlalchemy-migrate +py-deepdiff py-nvidia-nvjpeg2k py-sqlalchemy-stubs +py-deepecho py-nvidia-nvtiff py-sqlalchemy-utils +py-deephyper py-nvidia-physicsnemo py-sqlitedict +py-deepmerge py-nvitop py-sqlparse +py-deepsig-biocomp py-nvtx py-srsly +py-deepspeed py-oauth2client py-sseclient +py-deeptools py-oauthlib py-sshtunnel +py-deeptoolsintervals py-obspy py-sspilib +py-defusedxml py-ocnn py-stack-data +py-deisa py-odc-geo py-starfile +py-deisa-core py-odfpy py-starlette +py-deisa-dask py-ogb py-starlette-context +py-demjson py-okada-wrapper py-starsessions +py-dendropy py-olcf-velocity py-stashcp +py-deprecat py-olefile py-statmorph +py-deprecated py-olmoearth-pretrain-minimal py-statsmodels +py-deprecation py-omegaconf py-stdlib-list +py-deprecation-alias py-onnx py-stestr +py-derivative py-onnx-opcounter py-stevedore +py-descartes py-onnxconverter-common py-stomp-py +py-devito py-onnxmltools py-stopit +py-devlib py-onnxruntime py-storm +py-dgl py-ont-fast5-api py-stratify +py-dh-scikit-optimize py-opcodes py-strawberryfields +py-diagnostic py-open-clip-torch py-streamlit +py-dict2css py-openai py-stringzilla +py-dictdiffer py-openai-whisper py-striprtf +py-dictobj py-openapi-schema-pydantic py-stsci-distutils +py-dill py-opencensus py-stui +py-dinosaur py-opencensus-context py-submitit +py-dipy py-opencv-python py-subrosa +py-dirtyjson py-opendatalab py-subword-nmt +py-disbatch py-openidc-client py-supermercado +py-discover py-openmc py-superqt +py-diskcache py-openmesh py-supervisor +py-dist-meta py-openmim py-svgpath +py-distance py-openpmd-validator py-svgpathtools +py-distlib py-openpmd-viewer py-svgutils +py-distributed py-openpyxl py-svgwrite +py-distro py-openslide-python py-swagger-spec-validator +py-django py-opentelemetry-api py-symengine +py-dlcpar py-opentelemetry-exporter-prometheus py-symfit +py-dm-haiku py-opentelemetry-instrumentation py-sympy +py-dm-tree py-opentelemetry-sdk py-syned +py-dnaio py-opentelemetry-semantic-conventions py-sysrsync +py-dnspython py-opentree py-systemd-python +py-docker py-opentuner py-tabledata +py-dockerpy-creds py-opppy py-tables +py-docket py-ops py-tabulate +py-docopt py-opt-einsum py-tatsu +py-docopt-ng py-optax py-tblib +py-docstring-parser py-optree py-tbparse +py-docstring-to-markdown py-optuna py-tcolorpy +py-docutils py-or-tools py-tempita +py-docutils-stubs py-oracledb py-templateflow +py-dogpile-cache py-orbax-checkpoint py-tempora +py-doit py-ordered-set py-tenacity +py-dolfinx-mpc py-orderly-set py-tensorboard +py-dom-toml py-orjson py-tensorboard-data-server +py-domdf-python-tools py-os-service-types py-tensorboard-plugin-wit +py-dominate py-oset py-tensorboardx +py-donfig py-oslo-config py-tensorflow +py-dotmap py-oslo-i18n py-tensorflow-datasets +py-dotnetcore2 py-oslo-serialization py-tensorflow-estimator +py-downhill py-oslo-utils py-tensorflow-hub +py-doxypypy py-osqp py-tensorflow-metadata +py-dpath py-outdated py-tensorflow-probability +py-drep py-overpy py-tensorly +py-drmaa py-overrides py-tensorstore +py-dryscrape py-owlrl py-termcolor +py-duecredit py-owslib py-termgraph +py-dulwich py-oyaml py-terminado +py-dunamai py-p2j py-terminaltables +py-dvc py-pacifica-downloader py-tern +py-dxchange py-pacifica-namespace py-tesorter +py-dxfile py-pacifica-uploader py-testfixtures +py-dynaconf py-packaging py-testinfra +py-dynim py-pager py-testpath +py-earth2mip py-paho-mqtt py-testrepository +py-earthengine-api py-palettable py-testresources +py-easybuild-easyblocks py-pamela py-testscenarios +py-easybuild-easyconfigs py-panaroo py-testtools +py-easybuild-framework py-pandas py-tetoolkit +py-eccodes py-pandas-datareader py-text-unidecode +py-ecdsa py-pandas-stubs py-textblob +py-ecmwf-opendata py-pandera py-texttable +py-ecmwflibs py-pandocfilters py-textual +py-ecos py-panedr py-textual-fspicker +py-edam-ontology py-panel py-textual-plotext +py-edffile py-papermill py-textwrap3 +py-edfio py-paralleltask py-textx +py-edflib-python py-param py-tf-keras +py-editables py-parameterized py-tf2onnx +py-editdistance py-paramiko py-tfdlpack +py-edlib py-paramz py-theano +py-eeglabio py-parasail py-thewalrus +py-eerepr py-parmed py-thinc +py-efel py-parse py-thop +py-efficientnet-pytorch py-parse-type py-threadpoolctl +py-eg py-parsedatetime py-throttler +py-eigenpy py-parsimonious py-tidynamics +py-einconv py-parsl py-tifffile +py-einops py-parsley py-tiktoken +py-elastic-transport py-parso py-tilelang +py-elasticsearch py-partd py-timezonefinder +py-elasticsearch-dsl py-particle py-timm +py-elecsolver py-paste py-tinyarray +py-elephant py-pastedeploy py-tinycss2 +py-elevation py-pastel py-tinydb +py-ema-pytorch py-pastml py-tinyrecord +py-email-validator py-patch py-tld +py-embedding-reader py-patch-ng py-tldextract +py-emcee py-path-py py-tmtools +py-emoji py-pathlib-abc py-tokenize-rt +py-empy py-pathlib2 py-tokenizers +py-entrypoints py-pathml py-toml +py-enum-tools py-pathos py-tomli +py-envisage py-pathsimanalysis py-tomli-w +py-ephem py-pathspec py-tomlkit +py-eprosima-fastdds py-pathtools py-tomopy +py-epydoc py-pathvalidate py-toolz +py-equation py-pathy py-topiary-asr +py-equinox py-patool py-toposort +py-espresso py-patsy py-torch +py-espressopp py-pauvre py-torch-c-dlpack-ext +py-et-xmlfile py-pbr py-torch-cluster +py-ete3 py-pdb-tools py-torch-fidelity +py-etelemetry py-pdbfixer py-torch-geometric +py-etils py-pdequinox py-torch-harmonics +py-eval-type-backport py-pdf2image py-torch-nvidia-apex +py-evaluate py-pdm-backend py-torch-scatter +py-eventlet py-pdm-pep517 py-torch-sparse +py-evodiff py-pdoc3 py-torch-spex +py-ewah-bool-utils py-peachpy py-torch-spline-conv +py-exarl py-peakutils py-torchaudio +py-exceptiongroup py-pebble py-torchbenchmark +py-execnet py-peft py-torchdata +py-executing py-pelicanfs py-torchdiffeq +py-exhale py-pem py-torchfile +py-exifread py-pendulum py-torchgeo +py-exodus-bundler py-pennylane py-torchmeta +py-expandvars py-pennylane-lightning py-torchmetrics +py-expecttest py-pennylane-lightning-kokkos py-torchseg +py-exponax py-pep517 py-torchsummary +py-extension-helpers py-pep8 py-torchtext +py-extras py-pep8-naming py-torchtoolbox +py-ez-setup py-perfdump py-torchvision +py-f90nml py-performance py-tornado +py-f90wrap py-periodictable py-tox +py-fabric py-petastorm py-toyplot +py-fabric3 py-petname py-toytree +py-fair-esm py-petsc4py py-tpot +py-fairscale py-pexpect py-tqdm +py-faker py-pfzy py-traceback2 +py-fakeredis py-pgzip py-trafilatura +py-falcon py-phanotate py-trainax +py-fallocate py-phonenumbers py-traitlets +py-fastai py-phonopy py-traits +py-fastaindex py-photutils py-traitsui +py-fastapi py-phydms py-traittypes +py-fastapi-utils py-phylophlan py-trame +py-fastavro py-pickle5 py-trame-client +py-fastcache py-pickleshare py-trame-common +py-fastcluster py-picmistandard py-trame-server +py-fastcore py-picrust2 py-trame-vtk +py-fastcov py-pid py-trame-vuetify +py-fastdownload py-pika py-transformer-engine +py-fastdtw py-pillow py-transformers +py-fasteners py-pillow-simd py-transforms3d +py-fastfold py-pint py-transonic +py-fastjsonschema py-pint-xarray py-tree +py-fastobo py-pip py-tree-math +py-fastpath py-pipcl py-tree-sitter +py-fastprogress py-pipdeptree py-tree-sitter-c +py-fastremap py-piper py-treehash +py-fastrlock py-pipits py-treelib +py-fasttext-numpy2 py-pispino py-triangle +py-fasttext-numpy2-wheel py-pivy py-trieregex +py-faust-cchardet py-pkgconfig py-trimesh +py-fava py-pkginfo py-triton +py-fenics-basix py-pkgutil-resolve-name py-trl +py-fenics-dijitso py-plac py-trojanzoo-sphinx-theme +py-fenics-dolfinx py-plaid py-trove-classifiers +py-fenics-ffc py-planar py-trx-python +py-fenics-ffcx py-planet py-tuiview +py-fenics-fiat py-planetary-computer py-tuspy +py-fenics-instant py-platformdirs py-tuswsgi +py-fenics-ufl py-plotext py-tweedledum +py-fenics-ufl-legacy py-plotille py-twine +py-ffmpy py-plotly py-twisted +py-fief-client py-plotnine py-ty +py-file-magic py-pluggy py-typed-ast +py-filecheck py-plum-dispatch py-typeguard +py-filelock py-ply py-typepy +py-filemagic py-pmtiles py-typer +py-filetype py-pmw py-types-dataclasses +py-filterpy py-pmw-patched py-types-geopandas +py-find-libpython py-pockets py-types-pkg-resources +py-findlibs py-poetry py-types-psutil +py-fiona py-poetry-core py-types-python-dateutil +py-fire py-poetry-dynamic-versioning py-types-pytz +py-fireworks py-poetry-plugin-export py-types-pyyaml +py-fiscalyear py-poetry-plugin-tweak-dependencies-version py-types-requests +py-fisher py-polars py-types-setuptools +py-fits-tools py-pomegranate py-types-shapely +py-fitsio py-pooch py-types-tqdm +py-fitter py-portalocker py-types-typed-ast +py-fixtures py-portend py-types-urllib3 +py-flake8 py-portpicker py-typesentry +py-flake8-import-order py-postcactus py-typeshed-client +py-flake8-polyfill py-poster py-typing-extensions +py-flaky py-pot py-typing-inspect +py-flameprof py-pox py-typing-inspection +py-flash-attn py-poxy py-typish +py-flask py-poyo py-tzdata +py-flask-babel py-ppft py-tzlocal +py-flask-compress py-pprintpp py-ubiquerg +py-flask-cors py-pre-commit py-uc-micro-py +py-flask-paginate py-prefect py-ucsf-pyem +py-flask-restful py-preshed py-ucx-py +py-flask-socketio py-pretrainedmodels py-uhi +py-flask-sqlalchemy py-pretty-errors py-ujson +py-flatbuffers py-prettytable py-ultralytics +py-flatten-dict py-priority py-umalqurra +py-flawfinder py-profilehooks py-umap-learn +py-flax py-proglog py-umi-tools +py-flexcache py-progress py-uncertainties +py-flexmock py-progressbar2 py-uncertainty-toolbox +py-flexparser py-progressbar33 py-unfoldnd +py-flexx py-projectq py-unicycler +py-flit py-prokaryote py-unidecode +py-flit-core py-prometheus-client py-unittest2py3k +py-flit-scm py-prometheus-flask-exporter py-universal-pathlib +py-flox py-promise py-unshare +py-flufl-lock py-prompt-toolkit py-unyt +py-fluiddyn py-propcache py-update-checker +py-fluidfft py-properscoring py-uproot +py-fluidfft-builder py-proto-plus py-uproot3 +py-fluidfft-fftw py-protobuf py-uproot3-methods +py-fluidfft-fftwmpi py-protoc-gen-swagger py-uqinn +py-fluidfft-mpi-with-fftw py-prov py-uri-template +py-fluidfft-p3dfft py-proxystore py-uritemplate +py-fluidfft-pfft py-prwlock py-url-normalize +py-fluidsim py-psalg py-urllib3 +py-fluidsim-core py-psana py-urllib3-secure-extra +py-flye py-psij-python py-urwid +py-fn-py py-psims py-us +py-folium py-psmon py-userpath +py-fonttools py-pspamm py-usgs +py-ford py-psutil py-utils +py-formatizer py-psyclone py-uv +py-formulaic py-psycopg2 py-uv-build +py-fortls py-psygnal py-uv-dynamic-versioning +py-fortran-language-server py-ptyprocess py-uvicorn +py-fortranformat py-pubchempy py-uvloop +py-fparser py-pudb py-uvw +py-fprettify py-pulp py-uwsgi +py-fqdn py-pulsar-galaxy-lib py-uxarray +py-fracridge py-pure-eval py-validate-pyproject +py-fraction py-pure-sasl py-validators +py-freetype-py py-puremagic py-vascpy +py-freezegun py-py py-vcf-kit +py-frozendict py-py-cpuinfo py-vcrpy +py-frozenlist py-py-spy py-vcstool +py-fs py-py-tes py-vcstools +py-fsspec py-py2bit py-vcversioner +py-fsspec-xrootd py-py2neo py-vector +py-ftfy py-py4j py-vector-quantize-pytorch +py-ftputil py-py6s py-vermin +py-funcy py-pyabel py-vermouth-martinize +py-furo py-pyaestro py-versioneer +py-fury py-pyahocorasick py-versioneer-518 +py-fusepy py-pyamg py-versioningit +py-future py-pyaml py-verspec +py-fuzzywuzzy py-pyaml-env py-vesin +py-fypp py-pyani py-vine +py-galaxy-containers py-pyarrow py-virtualenv +py-galaxy-job-metrics py-pyasn1 py-virtualenv-clone +py-galaxy-objectstore py-pyasn1-modules py-virtualenvwrapper +py-galaxy-sequence-utils py-pyassimp py-visdom +py-galaxy-tool-util py-pyautogui py-vispy +py-galaxy-util py-pybedtools py-vl-convert-python +py-galaxy2cwl py-pybids py-voluptuous +py-gast py-pybigwig py-vsc-base +py-gcovr py-pybind11 py-vsc-install +py-gcs-oauth2-boto-plugin py-pybind11-stubgen py-vsts +py-gcsfs py-pybktree py-vsts-cd-manager +py-gdc-client py-pybobyqa py-wadler-lindig +py-gdown py-pybrain py-waitress +py-gee-asset-manager py-pybtex py-walinuxagent +py-geeadd py-pybtex-docutils py-wand +py-geemap py-pybv py-wandb +py-geeup py-pycairo py-warcio +py-gemmforge py-pycares py-warlock +py-gemmi py-pycbc py-wasabi +py-genders py-pycgns py-watchdog +py-geneimpacts py-pychecker py-watchfiles +py-generateds py-pycifrw py-waterdynamics +py-genshi py-pyclibrary py-waves +py-gensim py-pycm py-wcsaxes +py-geoalchemy2 py-pycmd py-wcwidth +py-geocoder py-pycocotools py-webargs +py-geocube py-pycodestyle py-webcolors +py-geographiclib py-pycollada py-webdataset +py-geojson py-pycompadre py-webdavclient3 +py-geomdl py-pyconify py-webencodings +py-geopandas py-pycorenlp py-webkit-server +py-geoplot py-pycortex py-weblogo +py-geopmdpy py-pycosat py-webob +py-geopmpy py-pycparser py-websocket-client +py-geopy py-pycrypto py-websockets +py-geoviews py-pycryptodome py-werkzeug +py-gest-api py-pycryptodomex py-wesanderson +py-gevent py-pyct py-wget +py-gf256 py-pycubexr py-whatshap +py-gfal2-python py-pycuda py-wheel +py-gffutils py-pycurl py-whenever +py-ghp-import py-pydantic py-whey +py-gidgethub py-pydantic-compat py-whey-pth +py-gidgetlab py-pydantic-core py-whichcraft +py-gimmik py-pydantic-extra-types py-whoosh +py-gin-config py-pydantic-settings py-widgetsnbextension +py-git-review py-pydantic-tes py-wids +py-gitdb py-pydap py-wigners +py-gitpython py-pydata-sphinx-theme py-win-unicode-console +py-glean-parser py-pydatalog py-wincertstore +py-glean-sdk py-pydeface py-word2number +py-glmnet py-pydeprecate py-wordcloud +py-glmnet-python py-pydeps py-workload-automation +py-glmsingle py-pydevtool py-wradlib +py-glob2 py-pydftracer py-wrapt +py-globus-cli py-pydicom py-wsproto +py-globus-sdk py-pydispatcher py-wstool +py-gluoncv py-pydmd py-wub +py-glymur py-pydocstyle py-wurlitzer +py-gmsh py-pydoe py-ww +py-gmsh-interop py-pydoe2 py-wxflow +py-gmxapi py-pydot py-wxmplot +py-gnuplot py-pydot2 py-wxpython +py-goatools py-pydotplus py-x-clip +py-gooey py-pydub py-x21 +py-google py-pyeda py-xanadu-cloud-client +py-google-api-core py-pyedr py-xarray +py-google-api-python-client py-pyee py-xarray-regrid +py-google-apitools py-pyelftools py-xarray-tensorstore +py-google-auth py-pyem py-xattr +py-google-auth-httplib2 py-pyenchant py-xcdat +py-google-auth-oauthlib py-pyepsg py-xdot +py-google-cloud-appengine-logging py-pyerfa py-xenv +py-google-cloud-audit-log py-pyeventsystem py-xesmf +py-google-cloud-batch py-pyface py-xgboost +py-google-cloud-bigquery py-pyfaidx py-xgcm +py-google-cloud-core py-pyfasta py-xhistogram +py-google-cloud-logging py-pyfastaq py-xlrd +py-google-cloud-storage py-pyfftw py-xlsxwriter +py-google-crc32c py-pyfiglet py-xlwt +py-google-pasta py-pyfits py-xmlplain +py-google-reauth py-pyfive py-xmlrunner +py-google-resumable-media py-pyflakes py-xmltodict +py-googleapis-common-protos py-pyfr py-xonsh +py-googledrivedownloader py-pygame py-xopen +py-gosam py-pygdal py-xpyb +py-gpaw py-pygdbmi py-xskillscore +py-gpaw-data py-pygelf py-xtb +py-gpustat py-pygeos py-xvfbwrapper +py-gputil py-pygetwindow py-xxhash +py-gpy py-pygit2 py-xyzservices +py-gpyopt py-pygithub py-yacman +py-gpytorch py-pyglet py-yacs +py-gql py-pygments py-yahmm +py-gradio py-pygments-pytest py-yajl +py-gradio-client py-pygmsh py-yamlreader +py-grandalf py-pygmt py-yapf +py-graphcast py-pygobject py-yarl +py-grapheme py-pygps py-yaspin +py-graphene py-pygpu py-yolk3k +py-graphlib-backport py-pygraphviz py-your +py-graphql-core py-pygresql py-youtube-dl +py-graphql-relay py-pygrib py-yq +py-graphql-ws py-pygtrie py-yt +py-graphviz py-pyh5md py-yt-dlp +py-gravity py-pyhdf py-yt-dlp-ejs +py-grayskull py-pyheadtail py-yte +py-greenlet py-pyhmmer py-ytopt +py-grequests py-pyhull py-ytopt-autotune +py-griddataformats py-pyicu py-z3-solver +py-griffe py-pyinstrument py-zarr +py-gromacswrapper py-pyinstrument-cext py-zc-buildout +py-grpc-google-iam-v1 py-pyisemail py-zc-lockfile +py-grpcio py-pyjnius py-zensical +py-grpcio-status py-pyjwt py-zfit +py-grpcio-tools py-pyke py-zfit-interface +py-gsd py-pykerberos py-zfit-physics +py-gssapi py-pykml py-zict +py-gsutil py-pykokkos-base py-zipfile-deflate64 +py-gtdbtk py-pykwalify py-zipp +py-gunicorn py-pylab-sdk py-zipstream-new +py-gxformat2 py-pylatex py-zope-event +py-gym py-pyld py-zope-interface +py-h11 py-pylev py-zstandard +py-h2 py-pylibjpeg-libjpeg py-zxcvbn +py-h3 py-pylibjpeg-openjpeg +py-h5glance py-pylibjpeg-rle +==> 3019 packages diff --git a/outputs/basics/list.out b/outputs/basics/list.out index 39f561ef65..4f1a885657 100644 --- a/outputs/basics/list.out +++ b/outputs/basics/list.out @@ -1,8617 +1,4454 @@ $ spack list -remote: Enumerating objects: 19701, done.K -remote: Counting objects: 100% (19701/19701), done.K -remote: Compressing objects: 100% (10552/10552), done.K -remote: Total 19701 (delta 1342), reused 13716 (delta 1225), 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 py-frozendict +3proxy py-frozenlist +4ti2 py-fs +7zip py-fsspec +abacus py-fsspec-xrootd +abduco py-ftfy +abi-compliance-checker py-ftputil +abi-dumper py-funcy +abinit py-furo +abseil-cpp py-fury +abyss py-fusepy +accfft py-future +acct py-fuzzywuzzy +accumulo py-fypp +ace py-galaxy-containers +acfl py-galaxy-job-metrics +ack py-galaxy-objectstore +acl py-galaxy-sequence-utils +acpica-tools py-galaxy-tool-util +acpid py-galaxy-util +activeharmony py-galaxy2cwl +activemq py-gast +acts py-gcovr +acts-algebra-plugins py-gcs-oauth2-boto-plugin +acts-dd4hep py-gcsfs +actsvg py-gdc-client +additivefoam py-gdown +addrwatch py-gee-asset-manager +adept py-geeadd +adept-utils py-geemap +adf py-geeup +adiak py-gemmforge +adios py-gemmi +adios-catalyst py-genders +adios2 py-geneimpacts +adlbx py-generateds +admixtools py-genshi +adms py-gensim +adol-c py-geoalchemy2 +advancecomp py-geocoder +adwaita-icon-theme py-geocube +aegean py-geographiclib +aeskeyfind py-geojson +aespipe py-geomdl +affinity py-geopandas +agile py-geoplot +agrep py-geopmdpy +aida py-geopmpy +akantu py-geopy +alan py-geoviews +albany py-gest-api +albert py-gevent +alembic py-gf256 +alglib py-gfal2-python +all-library py-gffutils +allpaths-lg py-ghp-import +alluxio py-gidgethub +alpaka py-gidgetlab +alpgen py-gimmik +alps py-gin-config +alpscore py-git-review +alquimia py-gitdb +alsa-lib py-gitpython +alsa-plugins py-glean-parser +aluminum py-glean-sdk +amber py-glmnet +ambertools py-glmnet-python +amd-aocl py-glmsingle +amdblis py-glob2 +amdfftw py-globus-cli +amdlibflame py-globus-sdk +amdlibm py-gluoncv +amdscalapack py-glymur +amdsmi py-gmsh +amduprof py-gmsh-interop +amg2013 py-gmxapi +amg2023 py-gnuplot +amg4psblas py-goatools +amgx py-gooey +aml py-google +amp py-google-api-core +ampl py-google-api-python-client +ampliconnoise py-google-apitools +ampt py-google-auth +amqp-cpp py-google-auth-httplib2 +amr-wind py-google-auth-oauthlib +amrex py-google-cloud-appengine-logging +amrfinder py-google-cloud-audit-log +amrvis py-google-cloud-batch +ams py-google-cloud-bigquery +anaconda3 py-google-cloud-core +andi py-google-cloud-logging +angsd py-google-cloud-storage +anicalculator py-google-crc32c +ant py-google-pasta +antimony py-google-reauth +antlr py-google-resumable-media +antlr4-complete py-googleapis-common-protos +antlr4-cpp-runtime py-googledrivedownloader +ants py-gosam +any2fasta py-gpaw +aocc py-gpaw-data +aocl-compression py-gpustat +aocl-crypto py-gputil +aocl-da py-gpy +aocl-dlp py-gpyopt +aocl-libmem py-gpytorch +aocl-sparse py-gql +aocl-utils py-gradio +aoflagger py-gradio-client +aom py-grandalf +aotriton py-graphcast +aotriton-llvm py-grapheme +apache-tvm py-graphene +apachetop py-graphlib-backport +ape py-graphql-core +aperture-photometry py-graphql-relay +apex py-graphql-ws +apfel py-graphviz +apfelxx py-gravity +apktool py-grayskull +apple-clang py-greenlet +apple-gl py-grequests +apple-glu py-griddataformats +apple-libunwind py-griffe +apple-libuuid py-gromacswrapper +applewmproto py-grpc-google-iam-v1 +appres py-grpcio +apptainer py-grpcio-status +apr py-grpcio-tools +apr-util py-gsd +aqlprofile py-gssapi +aragorn py-gsutil +arbor py-gtdbtk +arborx py-gunicorn +arc py-gxformat2 +archer py-gym +aretomo py-h11 +aretomo2 py-h2 +aretomo3 py-h3 +argobots py-h5glance +argon2 py-h5io +argp-standalone py-h5netcdf +args py-h5py +argtable py-h5sh +aria2 py-hacking +arkouda py-hail +arm-forge py-handy-archives +arm-kernels py-hatch +armadillo py-hatch-cython +armcimpi py-hatch-fancy-pypi-readme +armcomputelibrary py-hatch-jupyter-builder +armpl-gcc py-hatch-nodejs-version +arpack-ng py-hatch-requirements-txt +arrayfire py-hatch-vcs +arrow py-hatchet +asagi py-hatchling +ascent py-hclust2 +asciidoc py-hdbscan +asciidoc-py3 py-hdf5plugin +asdcplib py-hdfs +asdf-cxx py-healpix +asio py-healpy +aspa py-heapdict +aspcud py-heat +aspect py-heavyball +aspell py-hep-ml +aspell6-de py-hepdata-converter +aspell6-en py-hepdata-lib +aspell6-es py-hepdata-validator +aspera-cli py-hepstats +assimp py-hepunits +astra py-heudiconv +astral py-hf-transfer +astyle py-hf-xet +at-spi2-atk py-hieroglyph +at-spi2-core py-highspy +atf py-hiredis +atfl py-hist +athena py-histbook +atk py-histogrammar +atlas py-histoprint +atom-dft py-hjson +atompaw py-hmmlearn +atop py-holland-backup +attr py-holoviews +audacious py-horovod +audacity py-hpack +audit-userspace py-hpbandster +augustus py-hpccm +authd py-hsluv +authselect py-hstspreload +autoconf py-htgettoken +autoconf-archive py-html2text +autodiff py-html5lib +autodock-gpu py-htmldate +autodock-vina py-htmlgen +autogen py-htseq +automaded py-httpbin +automake py-httpcore +autossh py-httplib2 +avizo py-httpretty +aws-ofi-nccl py-httpstan +aws-ofi-rccl py-httptools +aws-parallelcluster py-httpx +aws-sdk-cpp py-huggingface-hub +awscli py-humanfriendly +awscli-v2 py-humanize +axel py-hvac +axl py-hvplot +axom py-hydra-core +azcopy py-hypercorn +babelflow py-hyperframe +babelstream py-hyperlink +babeltrace py-hyperopt +babeltrace2 py-hypothesis +babl py-ibm-cloud-sdk-core +bacio py-ibm-watson +backupninja py-ics +backward-cpp py-id +bam-readcount py-identify +bamaddrg py-idna +bamdst py-idna-ssl +bamtools py-igor +bamutil py-igor2 +banner py-igraph +bannergrab py-igv-notebook +barrnap py-igwn-auth-utils +bart py-ihm +barvinok py-illumina-utils +bash py-ilmbase +bash-completion py-imagecodecs +bashtop py-imagecorruptions-imaug +bat py-imagehash +batchedblas py-imageio +batctl py-imageio-ffmpeg +bats py-imagesize +baurmc py-imaug +bazel py-imbalanced-learn +bbcp py-imgaug +bbmap py-iminuit +bc py-immutabledict +bcache py-immutables +bcftools py-importlib-metadata +bdftopcf py-importlib-resources +bdii py-imutils +bdsim py-in-n-out +bdw-gc py-incremental +beagle py-inflect +beakerlib py-inheritance +bear py-iniconfig +beast-tracer py-iniparse +beast1 py-inquirer +beast2 py-inquirerpy +beatnik py-inscriptis +bedops py-installer +bedtools2 py-instrain +beforelight py-intake +benchmark py-intake-esm +berkeley-db py-intbitset +berkeleygw py-intel-openmp +bertini py-intensity-normalization +bfs py-interface-meta +bgen py-interlap +bgpdump py-intervaltree +bib2xhtml py-invoke +bigdft-atlab py-iocapture +bigdft-chess py-iopath +bigdft-core py-ipaddress +bigdft-futile py-ipdb +bigdft-libabinit py-ipycanvas +bigdft-liborbs py-ipyevents +bigdft-psolver py-ipyfilechooser +bigdft-spred py-ipykernel +bigdft-suite py-ipyleaflet +bigreqsproto py-ipympl +bigwhoop py-ipyparallel +bind9 py-ipyrad +binder py-ipython +binutils py-ipython-cluster-helper +bioawk py-ipython-genutils +biobambam2 py-ipython-pygments-lexers +biobloom py-ipytree +biopieces py-ipyvtk-simple +bird py-ipyvue +bismark py-ipyvuetify +bison py-ipywidgets +bitgroomingz py-irpf90 +bitlbee py-isa-rwval +bitmap py-isal +bitsery py-iso8601 +blackhat py-isodate +blake3 py-isoduration +blaspp py-isort +blast-plus py-itables +blast2go py-iterative-stats +blat py-itk +blaze py-itolapi +blis py-itsdangerous +bliss py-jacobi +blitz py-jaconv +blktrace py-jamo +bloaty py-janus +blogbench py-jaraco-classes +blt py-jaraco-context +bmake py-jaraco-functools +bmi py-jarowinkler +bml py-jarvis-util +bohrium py-javaproperties +boinc-client py-jax +bolt py-jaxlib +bonniepp py-jaxtyping +bookleaf-cpp py-jcb +boost py-jdatetime +boostmplcartesianproduct py-jdcal +boringssl py-jedi +botan py-jeepney +bowtie py-jellyfish +bowtie2 py-jinja2 +boxlib py-jinja2-cli +bpp-core py-jinja2-humanize-extension +bpp-phyl py-jinja2-time +bpp-phyl-omics py-jiter +bpp-popgen py-jmespath +bpp-seq py-jmp +bpp-seq-omics py-joblib +bpp-suite py-jplephem +bracken py-jproperties +brahma py-jprops +braker py-jpype1 +branson py-jraph +breakdancer py-jsmin +bref3 py-json-get +breseq py-json-tricks +bricks py-json2html +bridger py-json5 +brigand py-jsonargparse +brltty py-jsondiff +brotli py-jsonlines +brpc py-jsonpatch +brunsli py-jsonpath-ng +brynet py-jsonpickle +bsseeker2 py-jsonpointer +btllib py-jsonref +btop py-jsonschema +bubblewrap py-jsonschema-specifications +bucky py-junit-xml +buddy py-junit2html +bueno py-jupyter +bufr py-jupyter-client +bufr-query py-jupyter-console +bulker py-jupyter-core +bump2version py-jupyter-events +bumpversion py-jupyter-leaflet +busco py-jupyter-lsp +busybox py-jupyter-packaging +butter py-jupyter-server +butterflypack py-jupyter-server-mathjax +bwa py-jupyter-server-proxy +bwtool py-jupyter-server-terminals +byacc py-jupyter-telemetry +byfl py-jupyterhub +byobu py-jupyterlab +byte-lite py-jupyterlab-pygments +byte-unixbench py-jupyterlab-server +byteman py-jupyterlab-widgets +bzip2 py-jupytext +c-ares py-justext +c-blosc py-jwcrypto +c-blosc2 py-kaggle +c-lime py-kaldiio +c-raft py-kaleido +c3d py-kb-python +ca-certificates-mozilla py-keras +cabana py-keras-applications +cabana-pd py-keras-preprocessing +cachefilesd py-keras2onnx +caffe py-kerberos +cairo py-kerchunk +cairomm py-key-value-aio +caliper py-keyboard +callflow py-keyring +callpath py-keyrings-alt +camellia py-keystoneauth1 +camp py-kitchen +camx py-kiwisolver +canal py-kmodes +cans py-knack +cantera py-kneaddata +canu py-kombu +cap3 py-kornia +capnproto py-kornia-rs +capstone py-kosh +cardioid py-krb5 +care py-kt-legacy +cargo-c py-kubernetes +cargs py-kymatio +casacore py-lagom +casacore-measures py-langcodes +cask py-langsmith +casper py-language-data +cassandra py-lap +cassini-headers py-laplace-torch +castep py-lark +catch2 py-lark-parser +cbc py-laspy +cbench py-latexcodec +cbflib py-law +cbindgen py-lazy +cblas py-lazy-loader +cbqn py-lazy-object-proxy +cbtf py-lazy-property +cbtf-argonavis py-lazyarray +cbtf-argonavis-gui py-lcls-krtc +cbtf-krell py-ldap3 +cbtf-lanl py-leather +cc65 py-leidenalg +ccache py-lerc +cce py-lfpykit +ccfits py-lhsmdu +ccls py-liac-arff +ccs-qcd py-libclang +cctools py-libconf +cdbfasta py-libcst +cdd py-libensemble +cddlib py-liblas +cdecimal py-librosa +cdhit py-librt +cdi py-libsonata +cdo py-lifelines +cdt py-lightgbm +ceed py-lightly +celeritas py-lightly-utils +cellpose py-lightning +cellranger py-lightning-api-access +centrifuge py-lightning-cloud +cepgen py-lightning-fabric +cereal py-lightning-lite +ceres-solver py-lightning-uq-box +cernlib py-lightning-utilities +cfitsio py-lightpipes +cgal py-ligo-segments +cgdb py-lil-aretomo +cgdcbxd py-line-profiler +cget py-linear-operator +cgl py-linear-tree +cgm py-linecache2 +cgns py-lineenhancer +cgsi-gsoap py-linkchecker +chaco py-linkify-it-py +chafa py-lit +chai py-litdata +chameleon py-littleutils +changa py-lizard +channelflow py-llama-cpp-python +chaparral py-llnl-sina +chapel py-llvmlite +chaplin py-lmdb +charliecloud py-lmfit +charmpp py-lmodule +chatterbug py-localcider +check py-locket +chemfiles py-lockfile +chexmix py-logilab-common +chez-scheme py-logistro +chgcentre py-logmuse +chlorop py-logomaker +chombo py-loguru +chrony py-loky +chrpath py-loompy +cimfomfa py-looseversion +cinch py-louie +circe2 py-lpips +circos py-lru-dict +cistem py-lscsoft-glue +citcoms py-lsprotocol +cityhash py-luigi +civetweb py-lupa +cjson py-lvis +ck py-lws +clamav py-lxml +clamr py-lz4 +clapack py-lzstring +clara py-m2r +claude-code py-macholib +claw py-machotools +clblast py-macs2 +cleaveland4 py-macs3 +cleverleaf py-maestrowf +clfft py-magicgui +clhep py-mahotas +cli11 py-mailchecker +clinfo py-make +clingo py-makefun +clingo-bootstrap py-mako +clingo-bootstrap-pgo py-mapbox-earcut +cln py-mapclassify +cloc py-mariadb +cloog py-marisa-trie +cloverleaf py-markdown +cloverleaf-ref py-markdown-include +cloverleaf3d py-markdown-it-py +clp py-markdown2 +clustal-omega py-markov-clustering +clustalw py-markovify +cmake py-markupsafe +cmaq py-marshmallow +cmark py-matminer +cmdlime py-matplotlib +cmdstan py-matplotlib-inline +cminpack py-matplotlib-scalebar +cmocka py-maturin +cmockery py-mayavi +cmor py-mbstrdecoder +cni-plugins py-mccabe +cnmem py-md-environ +cnpy py-mda-xdrlib +cntk py-mdahole2 +cntk1bitsgd py-mdanalysis +cnvnator py-mdanalysistests +codar-cheetah py-mdi +code-server py-mdit-py-plugins +codec2 py-mdocfile +codecov py-mdurl +codee py-meautility +codes py-mechanize +codipack py-medaka +coevp py-meldmd +cohmm py-melissa-core +cohomcalg py-memelite +coin3d py-memory-profiler +coinhsl py-memprof +coinmp py-memray +coinutils py-mendeleev +collectd py-mercantile +collier py-mergedeep +colm py-merlin +colordiff py-meshio +comd py-meshpy +comet py-meson-python +comgr py-metaphlan +commons-lang py-metasv +commons-lang3 py-metatensor-core +commons-logging py-metatensor-learn +compadre py-metatensor-operations +compiler-wrapper py-metatensor-torch +composable-kernel py-metatomic-torch +compose py-metatrain +compositeproto py-metis +composyx py-metomi-isodatetime +conda4aarch64 py-metomi-rose +conduit py-metpy +conmon py-metric-learn +connect-proxy py-metrics +conquest py-mffpy +conserver py-mg-rast-tools +console-bridge py-mgmetis +constype py-microsoft-aurora +consul py-mido +cool py-mikado +coordgen py-mike +coral py-minio +corenlp py-minisom +coreutils py-minkowskiengine +corset py-minrpc +cosbench py-misk +cosign py-misopy +cosimio py-mistletoe +cosma py-mistune +cosmoflow-benchmark py-mizani +cosmomc py-mkdocs +cosp2 py-mkdocs-autorefs +costa py-mkdocs-jupyter +costo py-mkdocs-material +cotter py-mkdocs-material-extensions +countdown py-mkdocstrings +covfie py-mkdocstrings-python +cowsay py-ml-collections +cp2k py-ml-dtypes +cpat py-mlflow +cpio py-mlperf-logging +cplex py-mlxtend +cpmd py-mmcv +cpp-argparse py-mmengine +cpp-httplib py-mmtf-python +cpp-logger py-mne +cpp-termcolor py-mne-bids +cppad py-mo-pack +cppcheck py-moarchiving +cppcodec py-mock +cppcoro py-model-index +cppgsl py-modelcif +cpprestsdk py-modepy +cpptrace py-modin +cppunit py-modisco +cppzmq py-modred +cpr py-modules-gui +cprnc py-moltemplate +cpu-features py-monai +cpuinfo py-monkeytype +cqrlib py-monotonic +cquery py-monty +cracklib py-more-itertools +cradl py-morph-tool +cram py-morphio +cray-fftw py-morphosamplers +cray-libsci py-motmetrics +cray-mpich py-mouseinfo +cray-mvapich2 py-moviepy +cray-pmi py-mpi4jax +creduce py-mpi4py +crmc py-mpld3 +croc py-mpldock +cromwell py-mplhep +cromwell-womtool py-mplhep-data +cronie py-mpmath +crosstool-ng py-mrcfile +crow py-msal +crtm py-msal-extensions +crtm-fix py-msgpack +crunch py-msgpack-numpy +crux-toolkit py-msrest +cry py-msrestazure +cryodrgn py-mui4py +cryoef py-multi-imbalance +cryptopp py-multi-key-dict +cryptsetup py-multidict +csa-c py-multiecho +cscope py-multipledispatch +csdp py-multiprocess +csvtk py-multiqc +ctffind py-multiurl +ctpl py-mumps4py +ctre py-munch +cub py-munkres +cuba py-murmurhash +cubature py-mutagen +cube py-mx +cube-blade py-mxfold2 +cubelib py-myhdl +cubew py-mypy +cubist py-mypy-extensions +cublasmp py-mysql-connector-python +cuda py-mysqlclient +cuda-memtest py-myst-parser +cudd py-namex +cudnn py-nanobind +cudss py-nanoget +cufflinks py-nanomath +cufftmp py-nanoplot +cunit py-nanostat +cups py-nanotime +curl py-nanotron +cusolvermp py-napari +cusparselt py-napari-console +cusz py-napari-plugin-engine +cutensor py-napari-plugin-manager +cutlass py-napari-svg +cvector py-nara-wpe +cvise py-narwhals +cvs py-natsort +cxi-driver py-nbclassic +cxxopts py-nbclient +cxxtest py-nbconvert +cyrus-sasl py-nbdime +czmq py-nbformat +daemonize py-nbmake +dakota py-nbqa +daligner py-nbsphinx +dalton py-nbstripout +damageproto py-nbval +damaris py-nc-time-axis +damask py-ncbi-genome-download +damask-grid py-ndg-httpsclient +damask-mesh py-ndindex +damselfly py-neo +daos py-neo4j +darshan-runtime py-neobolt +darshan-util py-neotime +dash py-neovim-remote +datamash py-neptune-client +dataspaces py-nest-asyncio +datatransferkit py-nestle +date py-netaddr +dateutils py-netcdf4 +dav-sdk py-netifaces +davix py-netket +dbcsr py-netpyne +dbow2 py-networkit +dbus py-networkx +dbus-glib py-neuralgcm +dbxtool py-neurokit2 +dcap py-neurolab +dcm2niix py-neurom +dcmtk py-neurora +dctz py-neurotools +dd4hep py-nexus-sdk +ddc py-nexusforge +ddd py-nglview +dealii py-ngs-tools +dealii-parameter-gui py-nh3 +debbuild py-nibabel +debugedit py-nilearn +decentralized-internet py-nipype +deconseq-standalone py-nitransforms +deconwolf py-niworkflows +dedisp py-nltk +deepmdkit py-node-semver +dejagnu py-nodeenv +delly2 py-non-regression-test-tools +delphes py-nose +delta py-nose-cov +demuxlet py-nose2 +deno py-nosexcover +denovogear py-notebook +detray py-notebook-shim +dfelibs py-npe2 +dftbplus py-nptyping +dftd3-lib py-npx +dftd4 py-ntlm-auth +dftfe py-ntplib +dhpmm-f py-nugraph +dhtest py-nuitka +dia py-num2words +dia-umpire-se py-numba +dialign py-numba4jax +dialign-tx py-numbagg +diamond py-numcodecs +dicom3tools py-numdifftools +diffmark py-numexpr +diffsplice py-numexpr3 +difftastic py-numkit +diffutils py-numl +digitrounding py-numpy +dihydrogen py-numpy-groupies +dimemas py-numpy-indexed +dineof py-numpy-quaternion +ding-libs py-numpy-stl +dire py-numpydoc +direnv py-nvidia-dali +discotec py-nvidia-ml-py +discovar py-nvidia-ml-py3 +discovardenovo py-nvidia-modulus +disktype py-nvidia-nvcomp +dislin py-nvidia-nvimagecodec +distbench py-nvidia-nvjpeg2k +distcc py-nvidia-nvtiff +diy py-nvidia-physicsnemo +dla-future py-nvitop +dla-future-fortran py-nvtx +dlb py-oauth2client +dlib py-oauthlib +dlpack py-obspy +dmd py-ocnn +dmidecode py-odc-geo +dmlc-core py-odfpy +dmtcp py-ogb +dmxproto py-okada-wrapper +dnsmap py-olcf-velocity +dnsmasq py-olefile +dnstop py-olmoearth-pretrain-minimal +dnstracer py-omegaconf +docbook-xml py-onnx +docbook-xsl py-onnx-opcounter +dock py-onnxconverter-common +doctest py-onnxmltools +dolfinx-mpc py-onnxruntime +dorado py-ont-fast5-api +dorian3d-dlib py-opcodes +dos2unix py-open-clip-torch +dosfstools py-openai +dotconf py-openai-whisper +dotnet-core-sdk py-openapi-schema-pydantic +double-batched-fft-library py-opencensus +double-conversion py-opencensus-context +doxygen py-opencv-python +dpdk py-opendatalab +dplasma py-openidc-client +dpmjet py-openmc +draco py-openmesh +dracut py-openmim +dramsim2 py-openpmd-validator +dramsim3 py-openpmd-viewer +dri2proto py-openpyxl +dri3proto py-openslide-python +drill py-opentelemetry-api +drishti py-opentelemetry-exporter-prometheus +dropwatch py-opentelemetry-instrumentation +druid py-opentelemetry-sdk +ds py-opentelemetry-semantic-conventions +dsdp py-opentree +dsfmt py-opentuner +dsqss py-opppy +dsrc py-ops +dssp py-opt-einsum +dtc py-optax +dtcmp py-optree +dtf py-optuna +duckdb py-or-tools +duperemove py-oracledb +dust py-orbax-checkpoint +dwz py-ordered-set +dxt-explorer py-orderly-set +dyninst py-orjson +dysco py-os-service-types +e2fsprogs py-oset +e3sm-kernels py-oslo-config +e3sm-scorpio py-oslo-i18n +e4s-alc py-oslo-serialization +e4s-cl py-oslo-utils +ea-utils py-osqp +eagle py-outdated +earlyoom py-overpy +easi py-overrides +easybuild py-owlrl +easyloggingpp py-owslib +ebms py-oyaml +ecbuild py-p2j +eccodes py-pacifica-downloader +eccodes-cosmo-resources py-pacifica-namespace +ecdsautils py-pacifica-uploader +ecflow py-packaging +eckit py-pager +eclipse-gcj-parser py-paho-mqtt +ecmwf-atlas py-palettable +ecos py-pamela +ecoslim py-panaroo +ecp-data-vis-sdk py-pandas +ecp-proxy-apps py-pandas-datareader +ectrans py-pandas-stubs +ed py-pandera +editline py-pandocfilters +editorconfig py-panedr +editres py-panel +edm4hep py-papermill +eem py-paralleltask +efivar py-param +egl py-parameterized +eigen py-paramiko +eigenexa py-paramz +elasticsearch py-parasail +elastix py-parmed +elbencho py-parse +elfio py-parse-type +elfutils py-parsedatetime +elk py-parsimonious +elmerfem py-parsl +elpa py-parsley +elsd py-parso +elsdc py-partd +elsi py-particle +emacs py-paste +ember py-pastedeploy +emblmygff3 py-pastel +emboss py-pastml +embree py-patch +enca py-patch-ng +enchant py-path-py +energyplus py-pathlib-abc +ensmallen py-pathlib2 +entrezdirect py-pathml +entt py-pathos +environment-modules py-pathsimanalysis +enzo py-pathspec +enzyme py-pathtools +eospac py-pathvalidate +epic py-pathy +epics-base py-patool +epics-ca-gateway py-patsy +epics-pcas py-pauvre +epics-snmp py-pbr +eprosima-fastcdr py-pdb-tools +eprosima-fastdds py-pdbfixer +epsic py-pdequinox +eq-r py-pdf2image +er py-pdm-backend +erf py-pdm-pep517 +erfa py-pdoc3 +erlang py-peachpy +ermod py-peakutils +erne py-pebble +es-shell py-peft +esmf py-pelicanfs +espanso py-pem +essl py-pendulum +estarlight py-pennylane +esys-particle py-pennylane-lightning +etcd py-pennylane-lightning-kokkos +ethminer py-pep517 +ethtool py-pep8 +etsf-io py-pep8-naming +eve py-perfdump +evemu py-performance +everytrace py-periodictable +everytrace-example py-petastorm +evieext py-petname +evtgen py-petsc4py +exabayes py-pexpect +exaca py-pfzy +exactextract py-pgzip +exago py-phanotate +examl py-phonenumbers +exampm py-phonopy +exasp2 py-photutils +exawind py-phydms +exaworks py-phylophlan +exchcxx py-pickle5 +exciting py-pickleshare +exempi py-picmistandard +exiv2 py-picrust2 +exmcutils py-pid +exo py-pika +exodusii py-pillow +exonerate py-pillow-simd +exonerate-gff3 py-pint +expat py-pint-xarray +expect py-pip +express py-pipcl +exprtk py-pipdeptree +extrae py-piper +exuberant-ctags py-pipits +eza py-pispino +eztrace py-pivy +f2c py-pkgconfig +f3d py-pkginfo +f77-zmq py-pkgutil-resolve-name +f90cache py-plac +fabtests py-plaid +fabulous py-planar +faircmakemodules py-planet +fairlogger py-planetary-computer +fairmq py-platformdirs +fairroot py-plotext +fairsoft-bundle py-plotille +fairsoft-config py-plotly +faiss py-plotnine +fakechroot py-pluggy +faketime py-plum-dispatch +fakexrandr py-ply +falco py-pmtiles +falcon py-pmw +fann py-pmw-patched +faodel py-pockets +fargparse py-poetry +fasd py-poetry-core +fast-float py-poetry-dynamic-versioning +fast-global-file-status py-poetry-plugin-export +fasta py-poetry-plugin-tweak-dependencies-version +fastani py-polars +fastdb py-pomegranate +fastdfs py-pooch +fastjar py-portalocker +fastjet py-portend +fastjson py-portpicker +fastmath py-postcactus +fastme py-poster +fastor py-pot +fastp py-pox +fastphase py-poxy +fastplong py-poyo +fastq-scan py-ppft +fastq-screen py-pprintpp +fastqc py-pre-commit +fastqvalidator py-prefect +fasttext py-preshed +fasttransforms py-pretrainedmodels +fasttree py-pretty-errors +fastx-toolkit py-prettytable +faust py-priority +fbgemm py-profilehooks +fca py-proglog +fcgi py-progress +fckit py-progressbar2 +fd py-progressbar33 +fdb py-projectq +fds py-prokaryote +fdupes py-prometheus-client +feh py-prometheus-flask-exporter +fenics py-promise +fenics-basix py-prompt-toolkit +fenics-dolfinx py-propcache +fenics-ufcx py-properscoring +feq-parse py-proto-plus +fermi py-protobuf +fermikit py-protoc-gen-swagger +fermisciencetools py-prov +ferret py-proxystore +feynhiggs py-prwlock +ffb py-psalg +fflas-ffpack py-psana +ffmpeg py-psij-python +ffr py-psims +ffsb py-psmon +ffte py-pspamm +fftw py-psutil +fftx py-psyclone +fgsl py-psycopg2 +fiat py-psygnal +fides py-ptyprocess +figcone py-pubchempy +figlet py-pudb +figtree py-pulp +file py-pulsar-galaxy-lib +filebench py-pure-eval +filo py-pure-sasl +filtlong py-puremagic +fimpute py-py +finch py-py-cpuinfo +findbugs py-py-spy +findutils py-py-tes +fio py-py2bit +fipscheck py-py2neo +fish py-py4j +fixesproto py-py6s +fj py-pyabel +fjcontrib py-pyaestro +fl py-pyahocorasick +flac py-pyamg +flamegraph py-pyaml +flamemaster py-pyaml-env +flann py-pyani +flap py-pyarrow +flash py-pyasn1 +flashdimmsim py-pyasn1-modules +flatbuffers py-pyassimp +flatcc py-pyautogui +flcl py-pybedtools +flecsi py-pybids +flecsph py-pybigwig +fleur py-pybind11 +flex py-pybind11-stubgen +flexi py-pybktree +flexiblas py-pybobyqa +flibcpp py-pybrain +flink py-pybtex +flint py-pybtex-docutils +flit py-pybv +fltk py-pycairo +fluidnumerics-self py-pycares +flume py-pycbc +flux py-pycgns +flux-core py-pychecker +flux-pmix py-pycifrw +flux-python py-pyclibrary +flux-sched py-pycm +flux-security py-pycmd +fluxbox py-pycocotools +fmi4cpp py-pycodestyle +fms py-pycollada +fmt py-pycompadre +foam-extend py-pyconify +foldseek py-pycorenlp +folly py-pycortex +font-util py-pycosat +fontcacheproto py-pycparser +fontconfig py-pycrypto +fontsproto py-pycryptodome +fonttosfnt py-pycryptodomex +foonathan-memory py-pyct +form py-pycubexr +formetis py-pycuda +fortrilinos py-pycurl +fortuno py-pydantic +fossil py-pydantic-compat +foundationdb py-pydantic-core +fox py-pydantic-extra-types +fp16 py-pydantic-settings +fpart py-pydantic-tes +fpc py-pydap +fpchecker py-pydata-sphinx-theme +fping py-pydatalog +fplll py-pydeface +fplo py-pydeprecate +fpm py-pydeps +fpocket py-pydevtool +fpzip py-pydftracer +fq py-pydicom +fqtrim py-pydispatcher +fr-hit py-pydmd +fraggenescan py-pydocstyle +freebayes py-pydoe +freecad py-pydoe2 +freefem py-pydot +freeglut py-pydot2 +freeimage py-pydotplus +freeipmi py-pydub +freesasa py-pyeda +freesurfer py-pyedr +freetype py-pyee +freexl py-pyelftools +fribidi py-pyem +frobby py-pyenchant +frontier-client py-pyepsg +frontistr py-pyerfa +frugally-deep py-pyeventsystem +fseq py-pyface +fsl py-pyfaidx +fslsfonts py-pyfasta +fstobdf py-pyfastaq +fstrack py-pyfftw +ftgl py-pyfiglet +ftjam py-pyfits +ftk py-pyfive +ftobjectlibrary py-pyflakes +ftxui py-pyfr +fujitsu-fftw py-pygame +fujitsu-frontistr py-pygdal +fujitsu-mpi py-pygdbmi +fujitsu-ssl2 py-pygelf +fullock py-pygeos +func py-pygetwindow +functionalplus py-pygit2 +funhpc py-pygithub +funwave py-pyglet +fuse-overlayfs py-pygments +fusion-io py-pygments-pytest +fvtkhdf py-pygmsh +fwq py-pygmt +fxdiv py-pygobject +fxt py-pygps +fyba py-pygpu +fzf py-pygraphviz +g2 py-pygresql +g2c py-pygrib +g2o py-pygtrie +g2tmpl py-pyh5md +g4abla py-pyhdf +g4adept py-pyheadtail +g4channeling py-pyhmmer +g4emlow py-pyhull +g4ensdfstate py-pyicu +g4hepem py-pyinstrument +g4incl py-pyinstrument-cext +g4ndl py-pyisemail +g4neutronxs py-pyjnius +g4nudexlib py-pyjwt +g4particlexs py-pyke +g4photonevaporation py-pykerberos +g4pii py-pykml +g4radioactivedecay py-pykokkos-base +g4realsurface py-pykwalify +g4saiddata py-pylab-sdk +g4tendl py-pylatex +g4urrpt py-pyld +g4vg py-pylev +gadap py-pylibjpeg-libjpeg +gamess-ri-mp2-miniapp py-pylibjpeg-openjpeg +gams py-pylibjpeg-rle +gapbs py-pylibmagic +gapcloser py-pylikwid +gapfiller py-pylint +garcon py-pylint-gitlab +garfieldpp py-pylith +gasnet py-pylops +gatb-core py-pymatgen +gate py-pymatreader +gatepet2stir py-pymbolic +gatetools py-pymc3 +gatk py-pymdown-extensions +gau2grid py-pymeeus +gaudi py-pyminifier +gaussian py-pymol +gaussian-view py-pymongo +gauxc py-pymoo +gawk py-pymorph +gbl py-pympler +gblocks py-pymsgbox +gcc py-pymummer +gcc-runtime py-pymumps +gccmakedep py-pymupdf +gccxml py-pymupdf-fonts +gchp py-pymysql +gcta py-pynacl +gdal py-pynio +gdb py-pynisher +gdbm py-pynn +gdk-pixbuf py-pynndescent +gdl py-pynpm +gdrcopy py-pynrrd +geant3 py-pynucleus +geant4 py-pynumpress +geant4-data py-pynvim +geant4-vmc py-pynvml +geany py-pynvtx +gearshifft py-pyodbc +gegelati py-pyogrio +gegl py-pyomo +gem5 py-pyopencl +gemma py-pyopengl +gemmlowp py-pyopenssl +genemark-et py-pypar +generalbrokenlines py-pyparsing +generate-ninja py-pypdf +generax py-pypdf2 +genesis py-pypeflow +genfit py-pypeg2 +gengeo py-pyperclip +gengetopt py-pyperf +genie py-pypinfo +genomefinisher py-pypinyin +genometools py-pypistats +genomeworks py-pypng +genrich py-pyppeteer +geode py-pyprecice +geoip-api-c py-pyprof2html +geomodel py-pyproj +geos py-pyproject-hooks +getorganelle py-pyproject-metadata +gettext py-pyproject-parser +gexiv2 py-pypulse +gfal2 py-pyqi +gfal2-util py-pyqt-builder +gfan py-pyqt4 +gffcompare py-pyqt5 +gffread py-pyqt5-sip +gflags py-pyqt6 +gfsio py-pyqt6-sip +gftl py-pyqtgraph +gftl-shared py-pyquaternion +ggml py-pyreadline +gh py-pyrect +ghex py-pyrevolve +ghost py-pyrfr +ghostscript py-pyro-api +ghostscript-fonts py-pyro-ppl +giblib py-pyro4 +giflib py-pyroaring +gimp py-pyrocko +ginac py-pyrodigal +ginkgo py-pyrodigal-gv +giraph py-pyrometheus +git py-pyrr +git-annex py-pyrsistent +git-fat-git py-pysam +git-filter-repo py-pyscaf +git-imerge py-pyscf +git-lfs py-pyscipopt +gitconddb py-pyscreeze +givaro py-pyseer +gl2ps py-pyserial +glab py-pysftp +glew py-pyshacl +glfmultiples py-pyshp +glfw py-pyside2 +glib py-pysimdjson +glib-bootstrap py-pysindy +glib-networking py-pysmartdl +glibc py-pysmiles +glibmm py-pysocks +glimmer py-pysolar +glm py-pyspark +global py-pyspellchecker +globalarrays py-pyspice +globus-callout py-pyspnego +globus-common py-pyspoa +globus-ftp-client py-pyspod +globus-ftp-control py-pysqlite3 +globus-gass-copy py-pystac +globus-gass-transfer py-pystac-client +globus-gsi-callback py-pystache +globus-gsi-cert-utils py-pystan +globus-gsi-credential py-pysurfer +globus-gsi-openssl-error py-pytablewriter +globus-gsi-proxy-core py-pytailf +globus-gsi-proxy-ssl py-pytaridx +globus-gsi-sysconfig py-pytecplot +globus-gss-assist py-pyteomics +globus-gssapi-error py-pytesseract +globus-gssapi-gsi py-pytest +globus-io py-pytest-aiohttp +globus-openssl-module py-pytest-allclose +globus-xio py-pytest-arraydiff +globus-xio-gsi-driver py-pytest-astropy +globus-xio-pipe-driver py-pytest-astropy-header +globus-xio-popen-driver py-pytest-asyncio +glog py-pytest-benchmark +gloo py-pytest-cache +glow py-pytest-check-links +glpk py-pytest-cmake +glproto py-pytest-cov +gluegen py-pytest-cpp +glusterfs py-pytest-datadir +glvis py-pytest-doctestplus +glx py-pytest-fail-slow +gmake py-pytest-filter-subpackage +gmap-gsnap py-pytest-flake8 +gmic py-pytest-flakes +gmime py-pytest-forked +gmodel py-pytest-html +gmp py-pytest-httpbin +gmsh py-pytest-isort +gmt py-pytest-lazy-fixture +gmtsar py-pytest-memray +gnat py-pytest-metadata +gnds py-pytest-mock +gnina py-pytest-mpi +gnome-common py-pytest-mypy +gnuconfig py-pytest-openfiles +gnupg py-pytest-parallel +gnuplot py-pytest-pep8 +gnuradio py-pytest-pylint +gnutls py-pytest-qt +go py-pytest-random-order +go-bootstrap py-pytest-regtest +go-md2man py-pytest-remotedata +go-sh py-pytest-reportlog +goaccess py-pytest-retry +gobject-introspection py-pytest-runner +goblin-hmc-sim py-pytest-socket +gocryptfs py-pytest-subprocess +goimports py-pytest-timeout +goma py-pytest-workflow +gomplate py-pytest-xdist +google-cloud-cli py-python-benedict +google-cloud-cpp py-python-bioformats +google-crc32c py-python-box +googletest py-python-calamine +gopls py-python-certifi-win32 +gosam-contrib py-python-constraint +goshimmer py-python-crfsuite +gotcha py-python-daemon +gource py-python-dateutil +gpcnet py-python-deprecated +gperf py-python-discovery +gperftools py-python-docs-theme +gpgme py-python-docx +gpi-2 py-python-dotenv +gpi-space py-python-editor +gplates py-python-engineio +gprofng-gui py-python-fmask +gprolog py-python-fsutil +gptl py-python-gitlab +gptune py-python-hostlist +gpu-burn py-python-igraph +gpuscout py-python-javabridge +gqrx py-python-jenkins +gr-osmosdr py-python-jose +grabix py-python-json-logger +grace py-python-keystoneclient +grackle py-python-ldap +gradle py-python-levenshtein +grads py-python-libsbml +grafana py-python-logstash +graph500 py-python-louvain +graphblast py-python-lsp-jsonrpc +graphicsmagick py-python-lsp-ruff +graphite2 py-python-lsp-server +graphlib py-python-lzo +graphmap py-python-magic +graphviz py-python-mapnik +grass py-python-markdown-math +graylog2-server py-python-memcached +green-mbpt py-python-multipart +green-seet py-python-mumps +greenx py-python-oauth2 +grep py-python-picard +grib-util py-python-pptx +gribjump py-python-ptrace +grid py-python-rapidjson +gridlab-d py-python-slugify +gridtools py-python-socketio +grnboost py-python-sotools +groff py-python-subunit +gromacs py-python-swiftclient +gromacs-chain-coordinate py-python-utils +gromacs-swaxs py-python-xlib +grpc py-python-xmp-toolkit +gsettings-desktop-schemas py-python3-openid +gsi-ncdiag py-python3-xlib +gsibec py-pythonqwt +gsl py-pythonsollya +gsl-lite py-pythran +gslib py-pytimeparse +gsoap py-pytng +gspell py-pytokens +gtfsort py-pytoml +gtk-doc py-pytools +gtkmm py-pytorch-gradual-warmup-lr +gtkorvo-atl py-pytorch-lightning +gtkorvo-cercs-env py-pytorch-sphinx-theme +gtkorvo-dill py-pytorch-warmup +gtkorvo-enet py-pyts +gtkplus py-pytuq +gtksourceview py-pytweening +gts py-pytz +guacamole-client py-pyu2f +guacamole-server py-pyudev +guidance py-pyugrid +guile py-pyupgrade +gunrock py-pyusb +gurobi py-pyutilib +gvproxy py-pyuwsgi +gxsview py-pyvcf +gzip py-pyvips +h2database py-pyvista +h5bench py-pyvistaqt +h5cpp py-pyviz-comms +h5hut py-pyvolve +h5part py-pywavelets +h5utils py-pywcs +h5z-zfp py-pywin32 +haccabana py-pywinpty +hacckernels py-pyworld +hackrf-host py-pyxlsb +hadoop py-pyyaml +hadoop-xrootd py-pyyaml-env-tag +hal py-pyzmq +half py-qdldl +halide py-qiskit-aer +hama py-qiskit-ibm-provider +hammer py-qiskit-nature +hapcut2 py-qiskit-terra +hapdip py-qmtest +haploview py-qpsolvers +haproxy py-qpth +hard py-qrcode +hardlink py-qsymm +harfbuzz py-qtawesome +harminv py-qtconsole +hashcat py-qtpy +haveged py-quantiphy +hazelcast py-quantities +hbase py-quantum-blackbird +hbm-dramsim2 py-quantum-xir +hc py-quart +hcoll py-quast +hdf py-quaternionic +hdf-eos2 py-qudida +hdf-eos5 py-queryablelist +hdf5 py-querystring-parser +hdf5-blosc py-questionary +hdf5-vfd-gds py-qutip +hdf5-vol-async py-qutip-qip +hdf5-vol-cache py-rachis +hdf5-vol-daos py-radiant-mlhub +hdf5-vol-external-passthrough py-radical-entk +hdf5-vol-log py-radical-gtod +hdfview py-radical-pilot +healpix-cxx py-radical-saga +heaptrack py-radical-utils +heasoft py-ranger-fm +heffte py-rapidfuzz +heimdall py-rapidfuzz-capi +helib py-rarfile +helics py-rassumfrassum +helm py-rasterio +help2man py-rasterstats +henson py-ratelim +hepmc py-ratelimiter +hepmc3 py-raven +hepmcanalysis py-ray +heppdt py-rbtools +heputils py-rdflib +hermes py-rdflib-jsonld +hermes-shm py-rdt +herwig3 py-reacton +herwigpp py-readchar +hevea py-readme-renderer +heyoka py-recommonmark +hh-suite py-redis +hibench py-referencing +hicolor-icon-theme py-refgenconf +hicops py-refgenie +hicup py-regex +highfive py-regionmask +highway py-regions +highwayhash py-reindent +hiop py-relion +hip py-relion-blush +hip-tensor py-relion-classranker +hip-tests py-repligit +hipace py-reportlab +hipblas py-reportseff +hipblas-common py-repoze-lru +hipblaslt py-reproject +hipcc py-requests +hipcub py-requests-cache +hipdnn py-requests-file +hipfft py-requests-ftp +hipfort py-requests-futures +hipify-clang py-requests-kerberos +hiprand py-requests-mock +hipsolver py-requests-ntlm +hipsparse py-requests-oauthlib +hipsparselt py-requests-toolbelt +hipsycl py-requests-unixsocket +hiptt py-requirements-parser +hiredis py-reretry +hisat2 py-resampy +hisea py-resize-right +hive py-resolvelib +hivex py-responses +hmmer py-resultsfile +hohqmesh py-retry +homer py-retry-decorator +hoomd-blue py-retrying +hoppet py-retworkx +hotspot py-rfc3339-validator +hp2p py-rfc3986 +hpc-beeflow py-rfc3986-validator +hpcc py-rfc3987-syntax +hpccg py-rich +hpcg py-rich-argparse +hpckit py-rich-click +hpctoolkit py-rio-pmtiles +hpcviewer py-rios +hpcx-mpi py-rioxarray +hpddm py-rise +hpgmg py-river +hping py-rmm +hpl py-rnc2rng +hpx py-robocrys +hpx-kokkos py-robotframework +hpx5 py-rocrate +hsa-amd-aqlprofile py-roifile +hsa-rocr-dev py-roman-numerals +hsakmt py-roman-numerals-py +hsakmt-roct py-rope +hsf-cmaketools py-rosdep +hssp py-rosdistro +hstr py-rosinstall +hto4l py-rosinstall-generator +htop py-rospkg +htslib py-rotary-embedding-torch +http-get py-rouge-score +http-load py-routes +http-parser py-rpds-py +http-ping py-rply +http-post py-rpy2 +httpd py-rsa +httperf py-rsatoolbox +httpie py-rseqc +httping py-rst2pdf +httpress py-rtoml +hub py-rtree +hudi py-ruamel-ordereddict +hugo py-ruamel-yaml +hunspell py-ruamel-yaml-clib +hw-probe py-ruamel-yaml-jinja2 +hwdata py-rucio-clients +hwloc py-ruff +hwmalloc py-rustworkx +hybpiper py-rx +hybrid-lambda py-s3cmd +hybridsim py-s3fs +hycom py-s3transfer +hydra py-sacrebleu +hydrogen py-sacremoses +hypar py-safe-netrc +hyperfine py-safetensors +hyperqueue py-salib +hyperscan py-sarif-tools +hyphen py-scandir +hyphy py-scanpy +hypre py-schema +hypre-cmake py-schema-salad +hypredrive py-scientificpython +hztool py-scifem +i3 py-scikit-build +ibm-databroker py-scikit-build-core +ibmisc py-scikit-fmm +icarus py-scikit-fuzzy +iceauth py-scikit-image +icedtea py-scikit-learn +icet py-scikit-learn-extra +icey py-scikit-matter +ico py-scikit-optimize +icon py-scikit-sparse +icu4c py-scikits-odes +id3lib py-scine-chemoton +idba py-scine-puffin +idg py-scinum +idl py-scipy +iegenlib py-scitokens +ignite py-scooby +igprof py-scoop +igraph py-scp +igv py-screed +igvtools py-scs +ike-scan py-sdmetrics +ilmbase py-sdnotify +ima-evm-utils py-sdv +imagemagick py-seaborn +imake py-secretstorage +imath py-seekpath +imgui py-segmentation-models-pytorch +imlib2 py-selenium +imod py-semantic-version +imp py-semver +impalajit py-send2trash +improved-rdock py-sentencepiece +impute2 py-sentry-sdk +indicators py-seqeval +infernal py-sequence-models +influxdb py-seriate +iniparser py-serpent +inputproto py-session-info +integratorxx py-setproctitle +intel-gpu-tools py-setupmeta +intel-gtpin py-setuptools +intel-llvm py-setuptools-cpp +intel-mlc py-setuptools-git +intel-mpi-benchmarks py-setuptools-git-versioning +intel-oneapi-advisor py-setuptools-reproducible +intel-oneapi-ccl py-setuptools-rust +intel-oneapi-compilers py-setuptools-scm +intel-oneapi-compilers-classic py-setuptools-scm-git-archive +intel-oneapi-dal py-sfepy +intel-oneapi-dnn py-sgp4 +intel-oneapi-dpct py-sh +intel-oneapi-dpl py-shap +intel-oneapi-inspector py-shapely +intel-oneapi-ipp py-shellescape +intel-oneapi-ippcp py-shellingham +intel-oneapi-itac py-shiboken2 +intel-oneapi-mkl py-shippinglabel +intel-oneapi-mpi py-shortbred +intel-oneapi-runtime py-shortuuid +intel-oneapi-tbb py-shroud +intel-oneapi-vpl py-shtab +intel-oneapi-vtune py-simpervisor +intel-pin py-simple-slurm +intel-tbb py-simpleeval +intel-xed py-simplegeneric +interproscan py-simplejson +intltool py-simplekml +ioapi py-simpletraj +ior py-simpy +iotaa py-simsimd +iozone py-singledispatchmethod +ip py-sip +ipcalc py-six +iperf2 py-skl2onnx +iperf3 py-slepc4py +ipm py-slicer +ipopt py-slurm-pipeline +iproute2 py-smac +iptraf-ng py-smart-open +iq-tree py-smartredis +irep py-smartsim +isa-l py-smartypants +isa-l-crypto py-smmap +isaac py-smolagents +isaac-server py-smote-variants +isc-dhcp py-snakemake-executor-plugin-azure-batch +iscdtoolbox-commons py-snakemake-executor-plugin-cluster-generic +iscdtoolbox-elasticity py-snakemake-executor-plugin-cluster-sync +isescan py-snakemake-executor-plugin-drmaa +isl py-snakemake-executor-plugin-flux +iso-codes py-snakemake-executor-plugin-googlebatch +isoquant py-snakemake-executor-plugin-kubernetes +ispc py-snakemake-executor-plugin-slurm +istio py-snakemake-executor-plugin-slurm-jobstep +itensor py-snakemake-executor-plugin-tes +itk py-snakemake-interface-common +itstool py-snakemake-interface-executor-plugins +itsx py-snakemake-interface-logger-plugins +iwyu py-snakemake-interface-report-plugins +jacamar-ci py-snakemake-interface-scheduler-plugins +jackcess py-snakemake-interface-storage-plugins +jafka py-snakemake-storage-plugin-azure +jags py-snakemake-storage-plugin-fs +jali py-snakemake-storage-plugin-ftp +jansi py-snakemake-storage-plugin-gcs +jansi-native py-snakemake-storage-plugin-http +jansson py-snakemake-storage-plugin-pelican +jasper py-snakemake-storage-plugin-rucio +javafx py-snakemake-storage-plugin-s3 +jbigkit py-snakemake-storage-plugin-sftp +jblob py-snakemake-storage-plugin-zenodo +jchronoss py-snakeviz +jdk py-snappy +jedi-cmake py-sncosmo +jellyfish py-sniffio +jemalloc py-snoop +jetty-project py-snowballstemmer +jhpcn-df py-snuggs +jimtcl py-sobol-seq +jline3 py-social-auth-core +jmol py-sonlib +jogl py-sortedcollections +jonquil py-sortedcontainers +jose py-soundfile +jpegoptim py-soupsieve +jq py-soyclustering +json-c py-spacy +json-cwx py-spacy-legacy +json-fortran py-spacy-loggers +json-glib py-spacy-models-en-core-web-sm +jsoncons py-spacy-models-en-vectors-web-lg +jsoncpp py-sparse +jsonnet py-spatialist +jstorm py-spatialite +jube py-spatialpandas +judy py-spdlog +jujutsu py-spectra +julea py-spectral +julia py-spectrum-utils +jump py-speech-recognition +junit4 py-spefile +just py-spgl1 +justbuild py-spglib +jwt-cpp py-spherical +jxrlib-debian py-sphericart +k8 py-sphericart-torch +kadath py-sphinx +kafka py-sphinx-argparse +kagen py-sphinx-autodoc-typehints +kahip py-sphinx-basic-ng +kaiju py-sphinx-book-theme +kakoune py-sphinx-bootstrap-theme +kakoune-lsp py-sphinx-click +kaks-calculator py-sphinx-copybutton +kaldi py-sphinx-design +kalign py-sphinx-fortran +kallisto py-sphinx-gallery +karma py-sphinx-github-changelog +kassiopeia py-sphinx-immaterial +kbd py-sphinx-jinja2-compat +kbproto py-sphinx-multiversion +kcov py-sphinx-prompt +kdiff3 py-sphinx-removed-in +kea py-sphinx-rtd-dark-mode +kealib py-sphinx-rtd-theme +keepalived py-sphinx-tabs +keepassxc py-sphinx-theme-builder +kenlm py-sphinx-toolbox +kentutils py-sphinxautomodapi +keyutils py-sphinxcontrib-applehelp +khmer py-sphinxcontrib-bibtex +kibana py-sphinxcontrib-devhelp +kicad py-sphinxcontrib-htmlhelp +kim-api py-sphinxcontrib-issuetracker +kinesis py-sphinxcontrib-jquery +kineto py-sphinxcontrib-jsmath +kitty py-sphinxcontrib-mermaid +kmergenie py-sphinxcontrib-moderncmakedomain +kmod py-sphinxcontrib-napoleon +knem py-sphinxcontrib-plantuml +kokkos py-sphinxcontrib-programoutput +kokkos-fft py-sphinxcontrib-qthelp +kokkos-kernels py-sphinxcontrib-serializinghtml +kokkos-nvcc-wrapper py-sphinxcontrib-spelling +kokkos-tools py-sphinxcontrib-tikz +koliop py-sphinxcontrib-trio +kraken py-sphinxcontrib-websupport +kraken2 py-sphinxemoji +krakenuniq py-sphobjinv +krb5 py-spykeutils +krims py-spython +kripke py-sqlalchemy +kubectl py-sqlalchemy-migrate +kubernetes py-sqlalchemy-stubs +kumi py-sqlalchemy-utils +kvasir-mpl py-sqlitedict +kvtree py-sqlparse +kylin py-srsly +kynema py-sseclient +kynema-driver py-sshtunnel +kynema-fmb py-sspilib +kynema-sgf py-stack-data +kynema-ugf py-starfile +kyotocabinet py-starlette +ladot py-starlette-context +laghos py-starsessions +lame py-stashcp +lammps py-statmorph +lammps-example-plugin py-statsmodels +landsfcutil py-stdlib-list +lanl-cmake-modules py-stestr +lapackpp py-stevedore +last py-stomp-py +lastz py-stopit +laszip py-storm +latex2html py-stratify +latte py-strawberryfields +launchmon py-streamlit +laynii py-stringzilla +lazygit py-striprtf +lazyten py-stsci-distutils +lbann py-stui +lbfgspp py-submitit +lbxproxy py-subrosa +lc-framework py-subword-nmt +lcals py-supermercado +lcc py-superqt +lcgenv py-supervisor +lci py-svgpath +lcio py-svgpathtools +lcms py-svgutils +lcov py-svgwrite +ldak py-swagger-spec-validator +ldc py-symengine +ldc-bootstrap py-symfit +ldsc py-sympy +lean4 py-syned +legion py-sysrsync +lemon py-systemd-python +leptonica py-tabledata +lerc py-tables +less py-tabulate +lesstif py-tatsu +leveldb py-tblib +lfortran py-tbparse +lftp py-tcolorpy +lhapdf py-tempita +lhapdf5 py-templateflow +lhapdfsets py-tempora +libabigail py-tenacity +libaec py-tensorboard +libaio py-tensorboard-data-server +libao py-tensorboard-plugin-wit +libapplewm py-tensorboardx +libapreq2 py-tensorflow +libarchive py-tensorflow-datasets +libasr py-tensorflow-estimator +libassuan py-tensorflow-hub +libatasmart py-tensorflow-metadata +libatomic-ops py-tensorflow-probability +libavif py-tensorly +libbacktrace py-tensorstore +libbeagle py-termcolor +libbeato py-termgraph +libbeef py-terminado +libbigwig py-terminaltables +libbinio py-tern +libblastrampoline py-tesorter +libbsd py-testfixtures +libbson py-testinfra +libbytesize py-testpath +libcanberra py-testrepository +libcap py-testresources +libcap-ng py-testscenarios +libcatalyst py-testtools +libceed py-tetoolkit +libcerf py-text-unidecode +libcgroup py-textblob +libcifpp py-texttable +libcint py-textual +libcircle py-textual-fspicker +libconfig py-textual-plotext +libconfuse py-textwrap3 +libcroco py-textx +libctl py-tf-keras +libcudf py-tf2onnx +libcuml py-tfdlpack +libcumlprims py-theano +libcxi py-thewalrus +libcxxwrap-julia py-thinc +libcyaml py-thop +libdaemon py-threadpoolctl +libdap4 py-throttler +libdatrie py-tidynamics +libdc1394 py-tifffile +libde265 py-tiktoken +libdeflate py-tilelang +libdicom py-timezonefinder +libdisplay-info py-timm +libdistributed py-tinyarray +libdivsufsort py-tinycss2 +libdmx py-tinydb +libdrm py-tinyrecord +libdwarf py-tld +libeatmydata py-tldextract +libecpint py-tmtools +libedit py-tokenize-rt +libefence py-tokenizers +libelf py-toml +libemos py-tomli +libepoxy py-tomli-w +libestr py-tomlkit +libev py-tomopy +libevdev py-toolz +libevent py-topiary-asr +libevpath py-toposort +libexif py-torch +libfabric py-torch-c-dlpack-ext +libfastcommon py-torch-cluster +libfastjson py-torch-fidelity +libffi py-torch-geometric +libffs py-torch-harmonics +libfirefly py-torch-nvidia-apex +libfive py-torch-scatter +libflame py-torch-sparse +libfms py-torch-spex +libfontenc py-torch-spline-conv +libfort py-torchaudio +libfs py-torchbenchmark +libftdi py-torchdata +libfuse py-torchdiffeq +libfyaml py-torchfile +libgain py-torchgeo +libgcrypt py-torchmeta +libgd py-torchmetrics +libgdsii py-torchseg +libgee py-torchsummary +libgeopm py-torchtext +libgeopmd py-torchtoolbox +libgeotiff py-torchvision +libgff py-tornado +libgit2 py-tox +libgit2-glib py-toyplot +libgpg-error py-toytree +libgpiod py-tpot +libgpuarray py-tqdm +libgridxc py-traceback2 +libgssglue py-trafilatura +libgta py-trainax +libgtextutils py-traitlets +libgtop py-traits +libgudev py-traitsui +libhandy py-traittypes +libharu py-trame +libhbaapi py-trame-client +libheif py-trame-common +libhio py-trame-server +libhugetlbfs py-trame-vtk +libiberty py-trame-vuetify +libibumad py-transformer-engine +libical py-transformers +libicd py-transforms3d +libice py-transonic +libiconv py-tree +libid3tag py-tree-math +libidl py-tree-sitter +libidn py-tree-sitter-c +libidn2 py-treehash +libimagequant py-treelib +libimobiledevice py-triangle +libinih py-trieregex +libint py-trimesh +libisal py-triton +libiscsi py-trl +libjpeg py-trojanzoo-sphinx-theme +libjpeg-turbo py-trove-classifiers +libjson py-trx-python +libjwt py-tuiview +libjxl py-tuspy +libkcapi py-tuswsgi +libkml py-tweedledum +libksba py-twine +liblas py-twisted +liblbfgs py-ty +liblbxutil py-typed-ast +libleidenalg py-typeguard +liblockfile py-typepy +liblognorm py-typer +liblouis py-types-dataclasses +libluv py-types-geopandas +liblzf py-types-pkg-resources +libmacaroons py-types-psutil +libmad py-types-python-dateutil +libmatheval py-types-pytz +libmaus2 py-types-pyyaml +libmaxminddb py-types-requests +libmbim py-types-setuptools +libmcfp py-types-shapely +libmcrypt py-types-tqdm +libmd py-types-typed-ast +libmesh py-types-urllib3 +libmetalink py-typesentry +libmetatensor py-typeshed-client +libmetatensor-torch py-typing-extensions +libmetatomic-torch py-typing-inspect +libmicrodns py-typing-inspection +libmicrohttpd py-typish +libmmtf-cpp py-tzdata +libmng py-tzlocal +libmnl py-ubiquerg +libmo-unpack py-uc-micro-py +libmodbus py-ucsf-pyem +libmolgrid py-ucx-py +libmonitor py-uhi +libmpdclient py-ujson +libmypaint py-ultralytics +libnbc py-umalqurra +libndp py-umap-learn +libnet py-umi-tools +libnetfilter-conntrack py-uncertainties +libnetfilter-cthelper py-uncertainty-toolbox +libnetfilter-cttimeout py-unfoldnd +libnetfilter-queue py-unicycler +libnetworkit py-unidecode +libnfnetlink py-unittest2py3k +libnfs py-universal-pathlib +libnfsidmap py-unshare +libnftnl py-unyt +libnids py-update-checker +libnl py-uproot +libnotify py-uproot3 +libnova py-uproot3-methods +libnrm py-uqinn +libnsl py-uri-template +libogg py-uritemplate +liboldx py-url-normalize +libopts py-urllib3 +libp11 py-urllib3-secure-extra +libpam py-urwid +libpaper py-us +libpcap py-userpath +libpciaccess py-usgs +libpfm4 py-utils +libpipeline py-uv +libplist py-uv-build +libpmemobj-cpp py-uv-dynamic-versioning +libpng py-uvicorn +libpostal py-uvloop +libpressio py-uvw +libpressio-adios1 py-uwsgi +libpressio-adios2 py-uxarray +libpressio-dataset py-validate-pyproject +libpressio-errorinjector py-validators +libpressio-jit py-vascpy +libpressio-nvcomp py-vcf-kit +libpressio-opt py-vcrpy +libpressio-predict py-vcstool +libpressio-rmetric py-vcstools +libpressio-sperr py-vcversioner +libpressio-tools py-vector +libpressio-tthresh py-vector-quantize-pytorch +libproxy py-vermin +libpsl py-vermouth-martinize +libpsm3 py-versioneer +libpsml py-versioneer-518 +libpspio py-versioningit +libpthread-stubs py-verspec +libpulsar py-vesin +libqglviewer py-vine +libqrencode py-virtualenv +libquo py-virtualenv-clone +libraqm py-virtualenvwrapper +libraw1394 py-visdom +librdkafka py-vispy +librelp py-vl-convert-python +libreproc py-voluptuous +libressl py-vsc-base +libristra py-vsc-install +librmm py-vsts +librom py-vsts-cd-manager +librsb py-wadler-lindig +librsvg py-waitress +librtlsdr py-walinuxagent +librttopo py-wand +libsakura py-wandb +libsamplerate py-warcio +libseccomp py-warlock +libsecret py-wasabi +libsegfault py-watchdog +libsharp py-watchfiles +libshm py-waterdynamics +libsigcpp py-waves +libsignal-protocol-c py-wcsaxes +libsigsegv py-wcwidth +libsixel py-webargs +libslirp py-webcolors +libsm py-webdataset +libsmeagol py-webdavclient3 +libsndfile py-webencodings +libsodium py-webkit-server +libsolv py-weblogo +libspatialindex py-webob +libspatialite py-websocket-client +libspiro py-websockets +libsplash py-werkzeug +libspng py-wesanderson +libssh py-wget +libssh2 py-whatshap +libstdcompat py-wheel +libsvm py-whenever +libszip py-whey +libtar py-whey-pth +libtasn1 py-whichcraft +libtermkey py-whoosh +libthai py-widgetsnbextension +libtheora py-wids +libtiff py-wigners +libtirpc py-win-unicode-console +libtlx py-wincertstore +libtomlc99 py-word2number +libtommath py-wordcloud +libtool py-workload-automation +libtorrent py-wradlib +libtraceevent py-wrapt +libtree py-wsproto +libuecc py-wstool +libunistring py-wub +libunwind py-wurlitzer +liburcu py-ww +liburing py-wxflow +libusb py-wxmplot +libusbmuxd py-wxpython +libuser py-x-clip +libuv py-x21 +libuv-julia py-xanadu-cloud-client +libva py-xarray +libvdwxc py-xarray-regrid +libverto py-xarray-tensorstore +libvips py-xattr +libvorbis py-xcdat +libvori py-xdot +libvpx py-xenv +libvterm py-xesmf +libwebp py-xgboost +libwebsockets py-xgcm +libwhich py-xhistogram +libwindowswm py-xlrd +libwmf py-xlsxwriter +libwnck py-xlwt +libx11 py-xmlplain +libxau py-xmlrunner +libxaw py-xmltodict +libxaw3d py-xonsh +libxc py-xopen +libxcb py-xpyb +libxcomposite py-xskillscore +libxcrypt py-xtb +libxcursor py-xvfbwrapper +libxcvt py-xxhash +libxdamage py-xyzservices +libxdmcp py-yacman +libxevie py-yacs +libxext py-yahmm +libxfce4ui py-yajl +libxfce4util py-yamlreader +libxfixes py-yapf +libxfont py-yarl +libxfont2 py-yaspin +libxfontcache py-yolk3k +libxft py-your +libxi py-youtube-dl +libxinerama py-yq +libxkbcommon py-yt +libxkbfile py-yt-dlp +libxkbui py-yt-dlp-ejs +libxml2 py-yte +libxmu py-ytopt +libxp py-ytopt-autotune +libxpm py-z3-solver +libxpresent py-zarr +libxprintapputil py-zc-buildout +libxprintutil py-zc-lockfile +libxrandr py-zensical +libxrender py-zfit +libxres py-zfit-interface +libxscrnsaver py-zfit-physics +libxshmfence py-zict +libxslt py-zipfile-deflate64 +libxsmm py-zipp +libxstream py-zipstream-new +libxt py-zope-event +libxtrap py-zope-interface +libxtst py-zstandard +libxv py-zxcvbn +libxvmc pygmo +libxxf86dga pypy +libxxf86misc pypy-bootstrap +libxxf86vm pyrefly +libyaml pystring +libyogrt pythia6 +libzip pythia8 +libzmq python +liftoff python-venv +liggghts q-e-sirius +lighttpd qb3 +ligra qca +likwid qcachegrind +lima qcat +linaro-forge qctool +linkphase3 qd +linktest qemacs +linsys-v qemu +linux-external-modules qgis +linux-headers qgraf +linux-pam qhull +linux-perf qjson +lis qmcpack +listres qmd-progress +litestream qnnpack +lizard qorts +lksctp-tools qoz +llama-cpp qpdf +llhttp qperf +llvm qrmumps +llvm-amdgpu qrupdate +llvm-doe qscintilla +llvm-openmp qt +llvm-openmp-ompt qt-5compat +lm-sensors qt-base +lmbench qt-creator +lmdb qt-declarative +lmod qt-quick3d +lndir qt-quicktimeline +lodepng qt-shadertools +log4c qt-svg +log4cplus qt-tools +log4cpp qtgraph +log4cxx qthreads +logrotate qtkeychain +logstash qtltools +loki qualimap +looptools quandary +lordec quantum-espresso +lorene quartz +lp-solve qucs +lrose-core quda +lrslib quest +lrzip quickjs +lsd quicksilver +lsf quo-vadis +lshw quota +lsof qwt +lsquic qwtpolar +lsscsi r +ltp r-a4 +ltr-retriever r-a4base +ltrace r-a4classif +lua r-a4core +lua-bit32 r-a4preproc +lua-bitlib r-a4reporting +lua-ffi r-abadata +lua-lpeg r-abaenrichment +lua-luafilesystem r-abind +lua-luajit r-absseq +lua-luajit-openresty r-acde +lua-luaposix r-acepack +lua-mpack r-acgh +lua-sol2 r-acme +lucene r-ada +luit r-adabag +lulesh r-ade4 +lumpy-sv r-adegenet +lustre r-adegraphics +lvarray r-adephylo +lvm2 r-adespatial +lwgrp r-adgoftest +lwm2 r-adsplit +lwtnn r-aer +lxc r-afex +lynx r-affxparser +lz4 r-affy +lzma r-affycomp +lzo r-affycompatible +lzop r-affycontam +m4 r-affycoretools +macfuse r-affydata +macsio r-affyexpress +mad-numdiff r-affyilm +madgraph5amc r-affyio +madis r-affypdnn +madx r-affyplm +maeparser r-affyqcreport +mafft r-affyrnadegradation +magic-enum r-agdex +magics r-agilp +magma r-agimicrorna +mahout r-aims +makedepend r-aldex2 +makedepf90 r-allelicimbalance +maker r-alpine +mallocmc r-als +maloc r-alsace +malt r-altcdfenvs +mamba r-amap +man-db r-amelia +mapl r-ampliqueso +mapnik r-analysispageserver +mapserver r-anaquin +mapsplice2 r-aneufinder +maq r-aneufinderdata +maqao r-animation +mariadb r-annaffy +mariadb-c-client r-annotate +mark r-annotationdbi +masa r-annotationfilter +mash r-annotationforge +masurca r-annotationhub +mathematica r-anytime +mathic r-aod +mathicgb r-ape +matio r-aplot +matlab r-argparse +matrix-switch r-arm +maven r-aroma-light +maverick r-arrangements +mawk r-ash +mbdyn r-askpass +mbedtls r-asreml +mc r-assertive +mcl r-assertive-base +mcpp r-assertive-code +mct r-assertive-data +mctc-lib r-assertive-data-uk +mcutils r-assertive-data-us +mdb r-assertive-datetimes +mdspan r-assertive-files +mdsplus r-assertive-matrices +mdtest r-assertive-models +med r-assertive-numbers +medipack r-assertive-properties +meep r-assertive-reflection +mefit r-assertive-sets +megadock r-assertive-strings +megahit r-assertive-types +melissa r-assertthat +memaxes r-automap +memcached r-backports +meme r-bamsignals +memkind r-base64 +memtailor r-base64enc +memtester r-basilisk +mepo r-basilisk-utils +meraculous r-bayesfactor +mercurial r-bayesm +mercury r-bayesplot +mergiraf r-bbmisc +mesa r-beachmat +mesa-demos r-beanplot +mesa-glu r-beeswarm +meshkit r-bench +meshlab r-bfast +meshoptimizer r-bfastspatial +meshtool r-bglr +meson r-bh +mesquite r-biasedurn +met r-bibtex +metabat r-bigalgebra +metacarpa r-biglm +metaeuk r-bigmemory +metal r-bigmemory-sri +metall r-bindr +metaphysicl r-bindrcpp +methyldackel r-bio3d +metis r-biobase +metkit r-biocfilecache +metplus r-biocgenerics +mfem r-biocinstaller +mg r-biocio +mgard r-biocmanager +mgardx r-biocneighbors +mgcfd-op2 r-biocparallel +mgis r-biocsingular +microbiomeutil r-biocstyle +microsocks r-biocversion +migraphx r-biom-utils +migrate r-biomart +migrate-package-prs r-biomartr +mii r-biomformat +mille r-biostrings +millepede r-biovizbase +mimalloc r-bit +mimic-mcl r-bit64 +minc-toolkit r-bitops +minced r-blavaan +mindthegap r-blob +miniamr r-blockmodeling +miniapp-ascent r-bluster +miniasm r-bmp +miniconda3 r-bookdown +minife r-boot +miniforge3 r-boruta +minigan r-brew +minighost r-bridgesampling +minigmg r-brio +minimap2 r-brms +minimd r-brobdingnag +minio r-broom +miniocli r-broom-helpers +miniqmc r-bsgenome +minisign r-bsgenome-hsapiens-ucsc-hg19 +minismac2d r-bslib +minitri r-bsseq +minivite r-bumphunter +minixyce r-bwstest +minizip r-c50 +minuit r-ca +miopen-hip r-cachem +mira r-cairo +miranda r-callr +mirdeep2 r-car +mitofates r-caracas +mitos r-cardata +mivisionx r-caret +mixcr r-caretensemble +mkfontdir r-caroline +mkfontscale r-category +mlc-llm r-catools +mlhka r-cca +mlocate r-ccp +mlpack r-cdcfluview +mlperf-deepcam r-cellranger +mlst r-champ +mmg r-champdata +mmseqs2 r-checkmate +mmv r-checkpoint +moab r-chemometrics +mochi-margo r-chipseq +mochi-thallium r-chron +model-angelo r-circlize +model-traits r-circstats +modeltest-ng r-clarabel +modern-wheel r-class +modylas r-classint +mojitos r-cli +mokutil r-clipr +molcas r-clisymbols +mold r-clock +molden r-clue +molgw r-cluster +mongo-c-driver r-clustergeneration +mongo-cxx-driver r-clusterprofiler +mongodb-async-driver r-cmdstanr +mono r-cner +montage r-coda +moosefs r-codetools +moreutils r-codex +mosesdecoder r-coin +mosh r-colorspace +mosquitto r-colourpicker +mothur r-combinat +motif r-commonmark +motioncor2 r-complexheatmap +mount-point-attributes r-compositions +mozjpeg r-compquadform +mozjs r-condop +mpark-variant r-conflicted +mpas-model r-conquer +mpb r-consrank +mpc r-construct +mpdecimal r-contfrac +mpe2 r-convevol +mpest r-copula +mpfi r-corhmm +mpfr r-corpcor +mpi-bash r-corrplot +mpi-rockstar r-countrycode +mpi-serial r-covr +mpi-sync-clocks r-cowplot +mpi-test-suite r-cpp11 +mpibenchmark r-crayon +mpibind r-credentials +mpich r-crosstalk +mpidiff r-crul +mpifileutils r-ctc +mpigraph r-cubature +mpilander r-cubist +mpileaks r-curl +mpip r-cvxr +mpir r-d3r +mpitrampoline r-dada2 +mpiwrapper r-data-table +mpix-launch-swift r-dbi +mpl r-dbplyr +mppp r-debugme +mpsolve r-decipher +mpt r-delayedarray +mptensor r-delayedmatrixstats +mrbayes r-deldir +mrbench r-dendextend +mrchem r-densvis +mrcpp r-deoptim +mrnet r-deoptimr +mrtrix3 r-deriv +mruby r-desc +mscclpp r-deseq +mscgen r-deseq2 +msgpack-c r-desolve +mshadow r-devtools +msmc r-dexseq +msmc2 r-diagram +msmpi r-diagrammer +msolve r-dicekriging +msr-safe r-dichromat +mstk r-diffobj +mstore r-diffusionmap +msvc r-digest +mt-metis r-diptest +mtn r-dir-expiry +mui r-dirichletmultinomial +mujoco r-dismo +multicharge r-distributional +multitail r-diversitree +multitime r-dmrcate +multiverso r-dnacopy +mumax r-do-db +mummer r-doby +mummer4 r-domc +mumps r-doparallel +munge r-dorng +muparser r-dose +muparserx r-dosnow +muscle r-dotcall64 +muscle5 r-downlit +muse r-downloader +music r-dplyr +musica r-dqrng +musl r-dss +must r-dt +muster r-dtplyr +mutationpp r-dtw +mvapich r-dupradar +mvapich-plus r-dygraphs +mvapich2 r-dynamictreecut +mxm r-e1071 +mxml r-earth +mxnet r-ebseq +mypaint-brushes r-ecosolver +mysql r-ecp +mysql-connector-c r-edger +mysqlpp r-effects +n2p2 r-elemstatlearn +nacos r-ellipse +nag r-ellipsis +nalu r-elliptic +nalu-wind r-emmeans +namd r-emmli +nano r-energy +nanoflann r-enrichplot +nanomsg r-ensembldb +nanopb r-envstats +nasm r-ergm +nauty r-estimability +navi r-europepmc +nb r-evaluate +nbdkit r-evd +ncbi-magicblast r-exactextractr +ncbi-rmblastn r-exomecopy +ncbi-toolkit r-exomedepth +ncbi-vdb r-experimenthub +nccl r-expint +nccl-fastsocket r-expm +nccl-tests r-factoextra +nccmp r-factominer +ncdu r-fansi +ncftp r-farver +ncio r-fastcluster +ncl r-fastdigest +nco r-fastdummies +ncompress r-fastica +ncurses r-fastmap +ncview r-fastmatch +ncvis r-fastmatrix +ndiff r-fda +ndzip r-fdb-infiniummethylation-hg18 +neartree r-fdb-infiniummethylation-hg19 +neic-finitefault r-fds +nek5000 r-ff +nekbone r-fftwtools +nekcem r-fgsea +neko r-fields +nekrs r-filehash +nektar r-filelock +nektools r-findpython +nemsio r-fit-models +nemsiogfs r-fitdistrplus +neo4j r-flashclust +neocmakelsp r-flexclust +neofoam r-flexmix +neon r-fnn +neovim r-fontawesome +nep r-forcats +neper r-foreach +nest r-forecast +net-snmp r-foreign +netcdf-c r-formatr +netcdf-cxx r-formula +netcdf-cxx4 r-fpc +netcdf-fortran r-fpcompare +netcdf95 r-fracdiff +netdata r-fs +netgauge r-functional +netgen r-furrr +netkit-ftp r-futile-logger +netlib-lapack r-futile-options +netlib-scalapack r-future +netlib-xblas r-future-apply +netpbm r-gamlss +netperf r-gamlss-data +nettle r-gamlss-dist +networkdirect r-gamm4 +neuron r-gargle +neve r-gbm +newt r-gbrd +nextdenovo r-gcrma +nextflow r-gdalutilities +nf-core-tools r-gdalutils +nf-seqerakit r-gdata +nf-tower-agent r-gdsfmt +nf-tower-cli r-geiger +nf-wave-cli r-genefilter +nfft r-genelendatabase +nfs-ganesha r-genemeta +nfs-utils r-geneplotter +nghttp2 r-generics +nginx r-genetics +ngmerge r-genie3 +ngmlr r-genomeinfodb +ngspice r-genomeinfodbdata +nicstat r-genomicalignments +nim r-genomicfeatures +nimrod-aai r-genomicranges +ninja r-gensa +ninja-fortran r-geojsonsf +ninja-phylogeny r-geometries +nix r-geometry +njet r-geomorph +nlcglib r-geonames +nlohmann-json r-geoquery +nlohmann-json-schema-validator r-geor +nlopt r-geosphere +nmad r-gert +nn-c r-getopt +nnn r-getoptlong +nnpack r-ggally +nnvm r-ggbeeswarm +node-js r-ggbio +nopayloadclient r-ggdendro +normaliz r-ggforce +notmuch r-ggfun +npb r-ggjoy +npm r-ggmap +npth r-ggnewscale +nq r-ggpattern +nrm r-ggplot2 +ns-3-dev r-ggplotify +nseg r-ggpubr +nsimd r-ggraph +nsjail r-ggrastr +nspr r-ggrepel +nss r-ggridges +ntirpc r-ggsci +ntl r-ggsignif +ntpoly r-ggstats +numactl r-ggthemes +numamma r-ggtree +numap r-ggvis +numaprof r-gh +numdiff r-gistr +nut r-git2r +nvbandwidth r-gitcreds +nvcomp r-glimma +nvdimmsim r-glmgampoi +nvhpc r-glmnet +nvidia-container-toolkit r-globaloptions +nvidia-nsight-systems r-globals +nvpl-blas r-globaltest +nvpl-common r-glue +nvpl-fft r-gmodels +nvpl-lapack r-gmp +nvpl-scalapack r-go-db +nvptx-tools r-goftest +nvshmem r-gofuncr +nvtop r-googleauthr +nvtx r-googledrive +nwchem r-googlesheets4 +nyancat r-googlevis +oc r-goplot +ocaml r-gosemsim +ocamlbuild r-goseq +occa r-gostats +oci-systemd-hook r-gower +ocl-icd r-gparotation +oclgrind r-gplots +oclint r-graph +oclock r-graphlayouts +octa r-grbase +octave r-gridbase +octave-arduino r-gridextra +octave-control r-gridgraphics +octave-gsl r-gridpattern +octave-instrctl r-gsa +octave-io r-gsalib +octave-optim r-gseabase +octave-quaternion r-gsl +octave-signal r-gsodr +octave-splines r-gson +octave-statistics r-gss +octave-struct r-gstat +octave-symbolic r-gsubfn +octopus r-gtable +odc r-gtools +odgi r-gtrellis +of-catalyst r-gviz +of-precice r-gwmodel +ollama r-hardhat +ome-common-cpp r-haven +ome-files-cpp r-hdf5array +ome-model r-hdf5r +omega-h r-hdo-db +omm r-hdrcde +omm-bundle r-here +omnictl r-hexbin +omniperf r-hh +omnitrace r-highr +ompss r-hmisc +ompss-2 r-hms +ompt-openmp r-hoardr +oneapi-igc r-htmltable +oneapi-level-zero r-htmltools +onednn r-htmlwidgets +oniguruma r-httpcode +onnx r-httpuv +ont-guppy r-httr +oommf r-httr2 +oomph r-humaniformat +op2-dsl r-hwriter +opa-psm2 r-hydrogof +opam r-hydrotsm +opari2 r-hypergeo +opdilib r-hypergraph +open-iscsi r-ica +open-isns r-ids +open3d r-ieugwasr +openal-soft r-igraph +openbabel r-illumina450probevariants-db +openblas r-illuminahumanmethylation450kanno-ilmn12-hg19 +opencarp r-illuminahumanmethylation450kmanifest +opencascade r-illuminahumanmethylationepicanno-ilm10b4-hg19 +opencl-c-headers r-illuminahumanmethylationepicmanifest +opencl-clhpp r-illuminaio +opencl-headers r-imager +opencl-icd-loader r-impute +opencoarrays r-influencer +opencolorio r-ini +opencv r-inline +opendatadetector r-insight +opendx r-interactivedisplaybase +openexr r-interp +openfast r-intervals +openfdtd r-inum +openfoam r-ipred +openfoam-org r-iranges +openfpgaloader r-irdisplay +openfst r-irkernel +opengl r-irlba +openglu r-isdparser +openimagedenoise r-islr +openimageio r-iso +openipmi r-isoband +openjdk r-isva +openjpeg r-iterators +openkim-models r-iterpc +openldap r-jade +openlibm r-janitor +openloops r-jaspar2018 +openmc r-jomo +openmm r-jpeg +openmolcas r-jquerylib +openmpi r-jsonify +openmx r-jsonlite +opennurbs r-kableextra +openpa r-kegggraph +openpbs r-keggrest +openpmd-api r-kernlab +openradioss-engine r-kernsmooth +openradioss-starter r-kknn +openrasmol r-klar +openresty r-knitr +openscenegraph r-kpmt +openslide r-ks +openslp r-ksamples +openspeedshop r-labeling +openspeedshop-utils r-labelled +openssh r-lambda-r +openssl r-laplacesdemon +opensta r-lars +openstf r-later +opensubdiv r-lattice +opentsdb r-latticeextra +openturns r-lava +openvdb r-lavaan +openvkl r-lazyeval +openwsman r-ldheatmap +ophidia-analytics-framework r-leafem +ophidia-io-server r-leaflet +ophidia-primitives r-leaflet-providers +ophidia-server r-leafpop +opium r-leaps +optional-lite r-learnbayes +optipng r-leiden +optix-dev r-lfe +opus r-lhs +or-tools r-libcoin +oracle-instant-client r-libpressio +oras r-lidr +orbit2 r-lifecycle +orc r-limma +orca r-limsolve +orca-faccts r-linprog +orfm r-list +orientdb r-listenv +orthofiller r-lme4 +orthofinder r-lmertest +orthomcl r-lmtest +osg-ca-certs r-lobstr +osi r-locfit +osmctools r-log4r +osmesa r-loo +osmosis r-lpsolve +ospray r-lpsolveapi +osqp r-lsei +ossp-uuid r-lubridate +osu-micro-benchmarks r-lumi +otf r-lwgeom +otf-cpt r-magic +otf2 r-magick +ovito r-magrittr +oxide-rs r-makecdfenv +p11-kit r-maldiquant +p3dfft3 r-manipulatewidget +p4est r-mapplots +p7zip r-mapproj +pacbio-daligner r-maps +pacbio-damasker r-maptools +pacbio-dazz-db r-mapview +pacbio-dextractor r-markdown +pace r-marray +pacifica-cli r-mass +packmol r-mathjaxr +pacparser r-matlab +pacvim r-matr +paddle r-matrix +padicotm r-matrixgenerics +pagit r-matrixmodels +pagmo r-matrixstats +pagmo2 r-mclogit +paintor r-mclust +pajeng r-mcmc +pal r-mcmcglmm +palace r-mcmcpack +palisade-development r-mco +paml r-mda +panda r-memisc +pandaseq r-memoise +pandoc r-memuse +pandoramonitoring r-mendelianrandomization +pandorapfa r-mergemaid +pandorasdk r-meta +pango r-metadat +pangolin r-metafor +pangomm r-metap +papi r-metapod +papyrus r-methylumi +paraconf r-mgcv +paradiseo r-mgraster +parafeed r-mice +parallel r-microbenchmark +parallel-hashmap r-mime +parallel-netcdf r-minfi +parallelio r-miniui +parallelmergetree r-minqa +paraview r-misc3d +pareval r-missmethyl +parflow r-mitml +parmetis r-mitools +parmgridgen r-mixtools +parmmg r-mlbench +parquet-format r-mlinterfaces +parsec r-mlr +parsimonator r-mlrmbo +parsplice r-mmwrweek +parthenon r-mnormt +partons r-mockery +partons-elementary-utils r-modelmetrics +partons-numa r-modelr +pass r-modeltools +passt r-mpm +pasta r-mr-raps +pastix r-mrinstruments +patch r-mrmix +patchelf r-mrpresso +patchutils r-mscoreutils +pathfinder r-msnbase +pax-utils r-multcomp +pbbam r-multcompview +pblat r-multicool +pbmpi r-multitaper +pbwt r-multtest +pbzip2 r-munsell +pciutils r-mutoss +pcl r-mvtnorm +pcma r-mzid +pcre r-mzr +pcre2 r-nada +pcsclite r-nanotime +pdal r-ncbit +pdc r-ncdf4 +pdf2svg r-network +pdftk r-networkd3 +pdi r-neuralnet +pdiplugin-decl-hdf5 r-nfactors +pdiplugin-decl-netcdf r-nimble +pdiplugin-mpi r-nleqslv +pdiplugin-pycall r-nlme +pdiplugin-serialize r-nloptr +pdiplugin-set-value r-nmf +pdiplugin-trace r-nmof +pdiplugin-user-code r-nnet +pdsh r-nnls +pdt r-nonnest2 +pegtl r-nor1mix +pelican r-nortest +pennant r-np +percept r-npsurv +percolator r-numderiv +percona-server r-oligoclasses +perfstubs r-openssl +perl r-openxlsx +perl-acme-damn r-optimparallel +perl-algorithm-c3 r-optimx +perl-algorithm-diff r-optparse +perl-alien-build r-ordinal +perl-alien-build-plugin-download-gitlab r-org-hs-eg-db +perl-alien-libxml2 r-organismdbi +perl-any-uri-escape r-osqp +perl-apache-logformat-compiler r-packrat +perl-app-cmd r-pacman +perl-appconfig r-paleotree +perl-archive-zip r-pamr +perl-array-utils r-pan +perl-b-cow r-parallelly +perl-b-hooks-endofscope r-parallelmap +perl-b-keywords r-paramhelpers +perl-bignum r-party +perl-bio-asn1-entrezgene r-partykit +perl-bio-bigfile r-patchwork +perl-bio-cluster r-pathview +perl-bio-db-hts r-pbapply +perl-bio-ensembl r-pbdzmq +perl-bio-ensembl-funcgen r-pbivnorm +perl-bio-ensembl-io r-pbkrtest +perl-bio-ensembl-variation r-pcamethods +perl-bio-eutilities r-pcapp +perl-bio-searchio-hmmer r-pegas +perl-bio-variation r-pepxmltab +perl-bioperl r-permute +perl-bit-vector r-pfam-db +perl-bsd-resource r-phangorn +perl-cache-cache r-phantompeakqualtools +perl-cache-memcached r-pheatmap +perl-cairo r-philentropy +perl-canary-stability r-phylobase +perl-capture-tiny r-phyloseq +perl-carp r-phylostratr +perl-carp-assert r-phytools +perl-carp-clan r-picante +perl-catalyst-action-renderview r-piggyback +perl-catalyst-action-rest r-pillar +perl-catalyst-component-instancepercontext r-pinfsc50 +perl-catalyst-devel r-pixmap +perl-catalyst-plugin-cache r-pkgbuild +perl-catalyst-plugin-configloader r-pkgcache +perl-catalyst-plugin-static-simple r-pkgconfig +perl-catalyst-runtime r-pkgdepends +perl-catalyst-view-json r-pkgdown +perl-cgi r-pkgload +perl-cgi-simple r-pkgmaker +perl-cgi-struct r-pki +perl-chart-gnuplot r-pl94171 +perl-chi r-plogr +perl-chi-driver-memcached r-plot3d +perl-class-accessor r-plotly +perl-class-accessor-grouped r-plotmo +perl-class-accessor-lvalue r-plotrix +perl-class-c3 r-pls +perl-class-c3-adopt-next r-plyr +perl-class-c3-componentised r-pmcmr +perl-class-data-inheritable r-pmcmrplus +perl-class-inspector r-png +perl-class-load r-polspline +perl-class-load-xs r-polyclip +perl-class-method-modifiers r-polynom +perl-class-singleton r-pool +perl-class-tiny r-poorman +perl-clone r-popgenome +perl-clone-choose r-popvar +perl-clone-pp r-posterior +perl-common-sense r-powerlaw +perl-compress-bzip2 r-prabclus +perl-compress-lzo r-pracma +perl-compress-raw-bzip2 r-praise +perl-compress-raw-zlib r-preprocesscore +perl-config-any r-prettydoc +perl-config-general r-prettyunits +perl-config-inifiles r-proc +perl-config-simple r-processx +perl-config-tiny r-prodlim +perl-context-preserve r-profmem +perl-contextual-return r-profvis +perl-convert-nls-date-format r-progress +perl-cookie-baker r-progressr +perl-cpan-meta-check r-proj +perl-cpanel-json-xs r-proj4 +perl-css-minifier-xs r-projpred +perl-data-dump r-promises +perl-data-dumper r-protgenerics +perl-data-dumper-concise r-proto +perl-data-optlist r-proxy +perl-data-predicate r-pryr +perl-data-stag r-ps +perl-data-uuid r-pscbs +perl-data-visitor r-pspline +perl-date-exception r-psych +perl-date-manip r-ptw +perl-date-utils r-purrr +perl-datetime r-pvclust +perl-datetime-format-builder r-qqconf +perl-datetime-format-iso8601 r-qs +perl-datetime-format-mysql r-qtl +perl-datetime-format-oracle r-quadprog +perl-datetime-format-pg r-quantmod +perl-datetime-format-strptime r-quantreg +perl-datetime-locale r-quantro +perl-datetime-timezone r-questionr +perl-db-file r-quickjsr +perl-dbd-mysql r-quickplot +perl-dbd-oracle r-qvalue +perl-dbd-pg r-r-cache +perl-dbd-sqlite r-r-methodss3 +perl-dbi r-r-oo +perl-dbix-class r-r-utils +perl-devel-checklib r-r6 +perl-devel-cover r-radialmr +perl-devel-cycle r-ragg +perl-devel-globaldestruction r-rainbow +perl-devel-overloadinfo r-randomfields +perl-devel-size r-randomfieldsutils +perl-devel-stacktrace r-randomforest +perl-devel-stacktrace-ashtml r-randomglm +perl-devel-symdump r-ranger +perl-digest-jhash r-rann +perl-digest-md5 r-rapidjsonr +perl-digest-md5-file r-rapiserialize +perl-digest-sha1 r-rappdirs +perl-dist-checkconflicts r-raster +perl-email-abstract r-rbgl +perl-email-address-xs r-rbibutils +perl-email-date-format r-rbokeh +perl-email-messageid r-rcmdcheck +perl-email-mime r-rcolorbrewer +perl-email-mime-contenttype r-rcpp +perl-email-mime-encodings r-rcppannoy +perl-email-sender r-rcpparmadillo +perl-email-simple r-rcppblaze +perl-email-stuffer r-rcppcctz +perl-encode-locale r-rcppcnpy +perl-error r-rcppdate +perl-eval-closure r-rcppde +perl-exception-class r-rcppeigen +perl-exporter-auto r-rcppensmallen +perl-exporter-lite r-rcppgsl +perl-exporter-tiny r-rcpphnsw +perl-extutils-config r-rcppml +perl-extutils-depends r-rcppparallel +perl-extutils-helpers r-rcppprogress +perl-extutils-installpaths r-rcpproll +perl-extutils-makemaker r-rcpptoml +perl-extutils-pkgconfig r-rcppziggurat +perl-ffi-checklib r-rcurl +perl-file-changenotify r-rda +perl-file-chdir r-rdpack +perl-file-copy-recursive r-readbitmap +perl-file-find-rule r-readr +perl-file-grep r-readxl +perl-file-homedir r-reams +perl-file-listing r-recipes +perl-file-pushd r-reformulas +perl-file-remove r-registry +perl-file-sharedir r-rematch +perl-file-sharedir-install r-rematch2 +perl-file-slurp r-remotes +perl-file-slurp-tiny r-renv +perl-file-slurper r-reordercluster +perl-file-spec r-reportingtools +perl-file-temp r-repr +perl-file-which r-reprex +perl-filesys-notify-simple r-reproducible +perl-font-ttf r-require +perl-forks r-reshape +perl-fth r-reshape2 +perl-gd r-restfulr +perl-gdgraph r-reticulate +perl-gdgraph-histogram r-rex +perl-gdtextutil r-rfast +perl-getopt-argvfile r-rferns +perl-getopt-long-descriptive r-rgdal +perl-getopt-tabular r-rgenoud +perl-graph r-rgeos +perl-graph-readwrite r-rgexf +perl-graphviz r-rgl +perl-gzip-faster r-rgooglemaps +perl-hash-merge r-rgraphviz +perl-hash-moreutils r-rhdf5 +perl-hash-multivalue r-rhdf5filters +perl-heap r-rhdf5lib +perl-hook-lexwrap r-rhmmer +perl-html-parser r-rhtslib +perl-html-tagset r-rinside +perl-html-template r-rio +perl-http-body r-rjags +perl-http-cookiejar r-rjava +perl-http-cookies r-rjson +perl-http-daemon r-rjsonio +perl-http-date r-rlang +perl-http-entity-parser r-rlas +perl-http-headers-fast r-rle +perl-http-message r-rlist +perl-http-multipartparser r-rmariadb +perl-http-negotiate r-rmarkdown +perl-http-parser-xs r-rminer +perl-http-request-ascgi r-rmpfr +perl-http-server-simple r-rmpi +perl-http-tiny r-rms +perl-import-into r-rmutil +perl-inline r-rmysql +perl-inline-c r-rnaseqmap +perl-io-all r-rncl +perl-io-compress r-rnexml +perl-io-html r-rngtools +perl-io-prompt r-rnoaa +perl-io-sessiondata r-robust +perl-io-socket-ssl r-robustbase +perl-io-string r-roc +perl-io-stringy r-rocr +perl-io-tty r-rodbc +perl-ipc-run r-rook +perl-ipc-run3 r-rots +perl-ipc-sharelite r-roxygen2 +perl-ipc-system-simple r-rpart +perl-javascript-minifier-xs r-rpart-plot +perl-json r-rpmm +perl-json-any r-rpostgres +perl-json-maybexs r-rpostgresql +perl-json-xs r-rprojroot +perl-kyotocabinet r-rpsychi +perl-libwww-perl r-rrblup +perl-libxml-perl r-rrcov +perl-lingua-en-inflect r-rrpp +perl-list-compare r-rsamtools +perl-list-moreutils r-rsconnect +perl-list-moreutils-xs r-rsnns +perl-list-someutils r-rsolnp +perl-log-any r-rspectra +perl-log-any-adapter-callback r-rsqlite +perl-log-dispatch r-rstan +perl-log-dispatch-filerotate r-rstantools +perl-log-log4perl r-rstatix +perl-logger-simple r-rstudioapi +perl-lwp-mediatypes r-rsubread +perl-lwp-protocol-https r-rsvd +perl-mailtools r-rtracklayer +perl-math-bezier r-rtsne +perl-math-bigint r-runit +perl-math-bigrat r-runjags +perl-math-cdf r-ruv +perl-math-cephes r-rvcheck +perl-math-matrixreal r-rversions +perl-math-round r-rvest +perl-math-symbolic r-rviennacl +perl-math-vecstat r-rzmq +perl-mce r-s2 +perl-memory-process r-s4vectors +perl-metacpan-client r-s7 +perl-mime-types r-samr +perl-mni-perllib r-sandwich +perl-mock-config r-sass +perl-module-build r-satellite +perl-module-build-tiny r-scaledmatrix +perl-module-corelist r-scales +perl-module-find r-scater +perl-module-implementation r-scattermore +perl-module-install r-scatterpie +perl-module-mask r-scatterplot3d +perl-module-pluggable r-scdblfinder +perl-module-runtime r-scran +perl-module-runtime-conflicts r-scrime +perl-module-scandeps r-scs +perl-module-util r-sctransform +perl-mojolicious r-scuttle +perl-moo r-sdmtools +perl-moose r-segmented +perl-moosex-emulate-class-accessor-fast r-selectr +perl-moosex-getopt r-seqinr +perl-moosex-methodattributes r-seqlogo +perl-moosex-role-parameterized r-servr +perl-moox-types-mooselike r-sessioninfo +perl-moox-types-mooselike-numeric r-sets +perl-mozilla-ca r-seurat +perl-mro-compat r-seuratobject +perl-namespace-autoclean r-sf +perl-namespace-clean r-sfheaders +perl-net-cidr-lite r-sfsmisc +perl-net-http r-sftime +perl-net-ip r-shadowtext +perl-net-scp-expect r-shape +perl-net-server r-shiny +perl-net-server-ss-prefork r-shinydashboard +perl-net-ssleay r-shinyfiles +perl-number-compare r-shinyfiletree +perl-number-format r-shinyjs +perl-object-insideout r-shinystan +perl-package-deprecationmanager r-shinythemes +perl-package-stash r-shinywidgets +perl-package-stash-xs r-shortread +perl-package-variant r-siggenes +perl-padwalker r-signac +perl-parallel-forkmanager r-simpleaffy +perl-params-util r-singlecellexperiment +perl-params-validate r-sitmo +perl-params-validationcompiler r-sm +perl-parse-recdescent r-smoof +perl-parse-yapp r-sn +perl-parselex r-snakecase +perl-parsetemplate r-snow +perl-path-class r-snowfall +perl-path-tiny r-snprelate +perl-pathtools r-snpstats +perl-pdf-api2 r-som +perl-pegex r-somaticsignatures +perl-perl-critic r-sourcetools +perl-perl-critic-moose r-sp +perl-perl-tidy r-spacetime +perl-perl-unsafe-signals r-spades +perl-perl-version r-spades-addins +perl-perl4-corelibs r-spades-core +perl-perl6-slurp r-spades-tools +perl-perlio-gzip r-spam +perl-perlio-utf8-strict r-sparsem +perl-plack r-sparsematrixstats +perl-plack-middleware-assets r-spatial +perl-plack-middleware-crossorigin r-spatialeco +perl-plack-middleware-deflater r-spatialpack +perl-plack-middleware-fixmissingbodyinredirect r-spatialreg +perl-plack-middleware-methodoverride r-spatstat +perl-plack-middleware-removeredundantbody r-spatstat-core +perl-plack-middleware-reverseproxy r-spatstat-data +perl-plack-test-externalserver r-spatstat-explore +perl-pod-coverage r-spatstat-geom +perl-pod-parser r-spatstat-linnet +perl-pod-spell r-spatstat-model +perl-posix-strftime-compiler r-spatstat-random +perl-ppi r-spatstat-sparse +perl-ppix-quotelike r-spatstat-univar +perl-ppix-regexp r-spatstat-utils +perl-ppix-utils r-spdata +perl-proc-daemon r-spdep +perl-proc-processtable r-speedglm +perl-readonly r-spem +perl-readonly-xs r-splancs +perl-ref-util r-splines2 +perl-regexp-common r-splitstackshape +perl-role-tiny r-sqldf +perl-rose-datetime r-squarem +perl-rose-db r-squash +perl-rose-db-object r-sseq +perl-rose-object r-stabledist +perl-safe-isa r-stanheaders +perl-scalar-list-utils r-stargazer +perl-scalar-util-numeric r-stars +perl-scope-guard r-statmod +perl-search-elasticsearch r-statnet-common +perl-sereal r-stringfish +perl-sereal-decoder r-stringi +perl-sereal-encoder r-stringr +perl-server-starter r-strucchange +perl-set-intervaltree r-strucchangercpp +perl-set-intspan r-styler +perl-set-object r-subplex +perl-set-scalar r-summarizedexperiment +perl-soap-lite r-suppdists +perl-sort-naturally r-survey +perl-specio r-survival +perl-spiffy r-sva +perl-sql-abstract r-svglite +perl-sql-abstract-classic r-sys +perl-sql-reservedwords r-systemfonts +perl-sql-translator r-tarifx +perl-star-fusion r-taxizedb +perl-starman r-tclust +perl-statistics-basic r-teachingdemos +perl-statistics-descriptive r-tensor +perl-statistics-pca r-tensora +perl-stream-buffered r-terra +perl-strictures r-tester +perl-string-approx r-testit +perl-string-crc32 r-testthat +perl-string-format r-textshaping +perl-string-numeric r-tfbstools +perl-string-rewriteprefix r-tfisher +perl-sub-exporter r-tfmpvalue +perl-sub-exporter-progressive r-th-data +perl-sub-identify r-threejs +perl-sub-install r-tibble +perl-sub-name r-tictoc +perl-sub-quote r-tidycensus +perl-sub-uplevel r-tidygraph +perl-svg r-tidyr +perl-swissknife r-tidyselect +perl-sys-sigaction r-tidytree +perl-task-weaken r-tidyverse +perl-template-toolkit r-tiff +perl-term-ansicolor-markup r-tigris +perl-term-readline-gnu r-timechange +perl-term-table r-timedate +perl-termreadkey r-tinytex +perl-test-base r-tinytiger +perl-test-class r-tmixclust +perl-test-cleannamespaces r-tmvnsim +perl-test-deep r-topgo +perl-test-diaginc r-treeio +perl-test-differences r-triebeard +perl-test-exception r-trimcluster +perl-test-fatal r-truncdist +perl-test-file r-truncnorm +perl-test-file-contents r-trust +perl-test-file-sharedir r-tseries +perl-test-json r-tsne +perl-test-leaktrace r-ttr +perl-test-longstring r-tweenr +perl-test-memory-cycle r-twosamplemr +perl-test-mockobject r-txdb-hsapiens-ucsc-hg18-knowngene +perl-test-mocktime r-txdb-hsapiens-ucsc-hg19-knowngene +perl-test-more r-tximeta +perl-test-most r-tximport +perl-test-needs r-tximportdata +perl-test-nowarnings r-tzdb +perl-test-object r-ucminf +perl-test-output r-udunits2 +perl-test-perl-critic r-units +perl-test-pod r-upsetr +perl-test-pod-coverage r-urca +perl-test-requires r-urlchecker +perl-test-requiresinternet r-urltools +perl-test-sharedfork r-usethis +perl-test-subcalls r-utf8 +perl-test-tcp r-uuid +perl-test-time r-uwot +perl-test-time-hires r-v8 +perl-test-trap r-variantannotation +perl-test-warn r-varselrf +perl-test-warnings r-vcd +perl-test-weaken r-vcfr +perl-test-without-module r-vctrs +perl-test-xml r-vegan +perl-test-xml-simple r-vfs +perl-test-xpath r-vgam +perl-test-yaml r-vioplot +perl-test2-plugin-nowarnings r-vipor +perl-test2-suite r-viridis +perl-text-csv r-viridislite +perl-text-csv-xs r-visnetwork +perl-text-diff r-vroom +perl-text-format r-vsn +perl-text-glob r-waldo +perl-text-nsp r-watermelon +perl-text-simpletable r-webshot +perl-text-soundex r-wgcna +perl-text-unidecode r-whisker +perl-thread-queue r-withr +perl-threads r-wk +perl-throwable r-writexl +perl-tie-ixhash r-wru +perl-tie-toobject r-xde +perl-time-clock r-xfun +perl-time-duration r-xgboost +perl-time-duration-parse r-xlconnect +perl-time-hires r-xlconnectjars +perl-time-piece r-xlsx +perl-timedate r-xlsxjars +perl-tk r-xmapbridge +perl-tree-simple r-xml +perl-tree-simple-visitorfactory r-xml2 +perl-try-tiny r-xnomial +perl-type-tiny r-xopen +perl-types-serialiser r-xtable +perl-universal-can r-xts +perl-universal-isa r-xvector +perl-uri r-yaimpute +perl-uri-encode r-yaml +perl-uri-find r-yapsa +perl-uri-ws r-yaqcaffy +perl-want r-yarn +perl-www-form-urlencoded r-yulab-utils +perl-www-robotrules r-zcompositions +perl-xml-dom r-zeallot +perl-xml-dom-xpath r-zip +perl-xml-filter-buffertext r-zlibbioc +perl-xml-hash-xs r-zoo +perl-xml-libxml r3d +perl-xml-libxslt rabbitmq +perl-xml-namespacesupport rabbitmq-c +perl-xml-parser racket +perl-xml-parser-lite racon +perl-xml-quote raft +perl-xml-regexp ragel +perl-xml-sax raja +perl-xml-sax-base raja-perf +perl-xml-sax-writer ramulator +perl-xml-semanticdiff randfold +perl-xml-simple random123 +perl-xml-twig randrproto +perl-xml-writer range-v3 +perl-xml-xpath rank-run +perl-xml-xpathengine rankstr +perl-yaml rapidjson +perl-yaml-libyaml raptor2 +perl-yaml-syck rarpd +perl-yaml-tiny rasdaemon +pestpp rasqal +petaca ratel +petsc ravel +pexsi raxml +pfapack raxml-ng +pfft ray +pfind rayleigh +pflare raylib +pflask rccl +pflogger rccl-tests +pflotran rclone +pfunit rdc +pgdspider rdkit +pgplot rdma-core +ph5concat rdp-classifier +phantompeakqualtools rdptools +pharokka re2 +phast re2c +phasta readfq +phist readline +phoenix realm +photos recola +photos-f recola-sm +photospline recon +php recorder +phrap-crossmatch-swat recordproto +phred redis +phylip redis-ai +phylobayesmpi redis-plus-plus +phyluce reditools +picard redland +picsar redland-bindings +picsarlite redset +pidx redundans +pig reframe +pigz regale +pika regcm +pika-algorithms regenie +pilercr regtools +pilon relax +pindel relion +pinentry remhos +pinfo rempi +pioman rename +pipework rendercheck +pipx renderproto +piranha repeatafterme +pism repeatmasker +pixman repeatmodeler +pixz repeatscout +pkg-config reprimand +pkgconf resolve +pktools resourceproto +planck-likelihood restic +plantuml revbayes +plasma revocap-coupler +plink revocap-refiner +plink-ng rgb +plink2 rhash +plog rinetd +ploticus ripgrep +plplot riscv-gnu-toolchain +plsm rivet +plumed rkcommon +ply rkt-base +pmdk rkt-cext-lib +pmemkv rkt-compiler-lib +pmerge rkt-dynext-lib +pmgr-collective rkt-racket-lib +pmix rkt-rackunit-lib +pmlib rkt-scheme-lib +pnfft rkt-testing-util-lib +pngquant rkt-zo-lib +pngwriter rlwrap +pnmpi rmats +poamsa rmgdft +pocl rmlab +podio rna-seqc +podman rnaquast +podman-compose rnaz +poke rng-tools +polymake rngstreams +polyml rnpletal +polypolish roary +poorjit rocal +poplddecay rocalution +poppler rocblas +poppler-data rocdecode +popt rocfft +porta rocjpeg +portage rocketmq +portcullis rocksdb +ports-of-call rockstar +possvm rocm-bandwidth-test +postgis rocm-clang-ocl +postgresql rocm-cmake +povray rocm-core +powerapi rocm-dbgapi +powertop rocm-debug-agent +ppl rocm-device-libs +pplacer rocm-examples +ppopen-appl-amr-fdm rocm-gdb +ppopen-appl-bem rocm-opencl +ppopen-appl-bem-at rocm-openmp-extras +ppopen-appl-dem-util rocm-smi-lib +ppopen-appl-fdm rocm-tensile +ppopen-appl-fdm-at rocm-validation-suite +ppopen-appl-fem rocminfo +ppopen-appl-fvm rocmlir +ppopen-at rocprim +ppopen-math-mp rocprofiler-compute +ppopen-math-vis rocprofiler-compute-viewer +pprof rocprofiler-dev +prank rocprofiler-register +precice rocprofiler-sdk +predixy rocprofiler-systems +premake-core rocpydecode +presentproto rocrand +preseq rocshmem +pressio-log rocsolver +pressio-ops rocsparse +pressio-rom rocthrust +presto roctracer-dev +prettier roctracer-dev-api +price rocwmma +prime95 rodinia +primer3 roms +prinseq-lite root +printproto roounfold +prism rosco +prmon rose +prng ross +probconsrna routinator +procenv routino +process-in-process rpcsvc-proto +procps rpm +procps-ng rpp +prod-util rr +prodigal rrdtool +professor rsbench +profugusmc rsem +proj rsl +prokka rstart +prometheus rstudio +prometheus-cpp rsync +prophecy4f rsyslog +proteowizard rt-tests +protobuf rtags +protobuf-c rtax +proxymngr rtmpdump +prrte ruby +pruners-ninja ruby-asciidoctor +ps-lite ruby-charlock-holmes +psalg ruby-erubis +psblas ruby-gist +pscmc ruby-gnuplot +psi4 ruby-hpricot +psimd ruby-mustache +psipred ruby-narray +pslib ruby-rake +psm ruby-rdiscount +psmc ruby-ronn +psrcat ruby-rubyinline +psrchive ruby-svn2git +psrdada ruby-terminal-table +pstreams ruby-thor +pthreadpool ruby-tmuxinator +pueue ruby-unicode-display-width +pugixml ruby-xdg +puk ruby-zentest +pukabi runc +pulseaudio rust +pumgen rust-bindgen +pumi rust-bootstrap +purify rust-clap +pv s4pred +pvm s5cmd +pwgen sabre +pxz saga-gis +py-3to2 sage +py-4suite-xml sailfish +py-a2wsgi salmon +py-abcpy salmon-tddft +py-abipy salome-configuration +py-about-time salome-medcoupling +py-absl-py saltfm +py-accelerate sam2p +py-accessible-pygments sambamba +py-accimage samblaster +py-acme-tiny samrai +py-acres samtools +py-adal samurai +py-adb-enhanced sandbox +py-addict sandia-micro-benchmarks +py-adios sartre +py-adios4dolfinx sarus +py-advancedhtmlparser satsuma2 +py-aenum savanna +py-affine saws +py-agate sbcl +py-agate-dbf sbcl-bootstrap +py-agate-excel sblim-sfcc +py-agate-sql sbml +py-ahpy sbp +py-aiobotocore sbt +py-aiocontextvars scafacos +py-aiodns scala +py-aiofiles scalasca +py-aiohappyeyeballs scale +py-aiohttp scallop +py-aiohttp-cors scalpel +py-aioitertools scan-for-matches +py-aiojobs scantailor +py-aioredis scc +py-aiosignal sccache +py-aiosqlite scine-core +py-aiowebdav2 scine-database +py-alabaster scine-molassembler +py-albucore scine-qcmaquis +py-alembic scine-readuct +py-alive-progress scine-serenity +py-alpaca-eval scine-sparrow +py-alpaca-farm scine-utilities +py-alphafold scine-xtb +py-altair scipoptsuite +py-altgraph scitokens-cpp +py-amici scnlib +py-amityping scons +py-amplpy scorecard +py-ampltools scorep +py-amqp scorpio +py-amrex scotch +py-angel scr +py-aniso8601 screen +py-anndata scripts +py-annexremote scrnsaverproto +py-annotated-types scrot +py-annoy scs +py-ansi2html sctk +py-ansible sdl2 +py-ansimarkup sdl2-image +py-ansiwrap sdl2-ttf +py-antimeridian sdsl-lite +py-antipickle seacas +py-antlr4-python3-runtime seacr +py-antspyx seal +py-anuga sed +py-anvio sedacs +py-anybadge seissol +py-anyio selalib +py-anytree semiprof +py-anywidget sendme +py-apache-libcloud sensei +py-apache-tvm-ffi sentencepiece +py-apebench sentieon-genomics +py-apex sepp +py-apeye seq-gen +py-apeye-core seqan +py-apipkg seqfu +py-apispec seqkit +py-app-model seqprep +py-appdirs seqtk +py-applicationinsights serenity +py-appnope serenity-libint +py-apprise serf +py-apptools serialbox +py-apscheduler sessreg +py-arcgis setserial +py-arch setxkbmap +py-archspec sfcgal +py-arcp sfcio +py-argcomplete sfml +py-argh sga +py-argon2-cffi sgpp +py-argon2-cffi-bindings shadow +py-argparse-dataclass shadowenv +py-argparse-manpage shamrock +py-args shapeit +py-arkouda shapeit4 +py-arm-pyart shapelib +py-arpeggio shapemapper +py-arrow shared-mime-info +py-art shark +py-arviz shc +py-asciitree sheenbidi +py-asdf shellcheck +py-asdf-astropy shengbte +py-asdf-coordinates-schemas sherpa +py-asdf-standard shiro +py-asdf-transform-schemas shocklibs +py-asdf-unit-schemas shoremap +py-asdfghjkl shortstack +py-ase showfont +py-asgi-lifespan shred +py-asgiref shtns +py-asn1crypto shtools +py-aspy-yaml shuffile +py-asserts sicer2 +py-ast-serialize sickle +py-asteval sicm +py-astor siesta +py-astpretty sigcpp +py-astroid sigio +py-astropy signalp +py-astropy-healpix signify +py-astropy-helpers silo +py-astropy-iers-data simde +py-asttokens simdjson +py-astunparse simgrid +py-async-generator simmetrix-simmodsuite +py-async-lru simple-dftd3 +py-async-timeout simplemoc +py-asyncio simsipm +py-asyncpg simul +py-asynctest simulationio +py-atomicwrites sina +py-atpublic singular-factory +py-atropos singularity-eos +py-ats singularity-hpc +py-attmap singularityce +py-attrs sio +py-audioread sionlib +py-auditwheel sirius +py-authlib sjpeg +py-autocfg skilion-onedrive +py-autodocsumm skopeo +py-autograd sl +py-autograd-gamma slang +py-automat slate +py-autopep8 sleef +py-autoray slepc +py-autoreject slf4j +py-auxlib slirp4netns +py-avro sloccount +py-avro-json-serializer slurm +py-avro-python3 slurm-drmaa +py-awesome-slugify smalt +py-awkward smartdenovo +py-awkward-cpp smartmontools +py-awkward0 smee-client +py-awscrt smof +py-ax-platform smproxy +py-azote snakemake +py-azure-batch snap +py-azure-cli-command-modules-nspkg snap-berkeley +py-azure-cli-core snap-korf +py-azure-cli-nspkg snappy +py-azure-cli-telemetry snbone +py-azure-common sniffles +py-azure-core snpeff +py-azure-cosmos snphylo +py-azure-datalake-store snptest +py-azure-functions-devops-build soapdenovo-trans +py-azure-graphrbac soapdenovo2 +py-azure-identity socat +py-azure-keyvault soci +py-azure-keyvault-certificates sofa-c +py-azure-keyvault-keys sollya +py-azure-keyvault-nspkg solr +py-azure-keyvault-secrets somatic-sniper +py-azure-loganalytics sombrero +py-azure-mgmt-advisor sonlib +py-azure-mgmt-apimanagement sopt +py-azure-mgmt-appconfiguration soqt +py-azure-mgmt-applicationinsights sortmerna +py-azure-mgmt-authorization sos +py-azure-mgmt-batch sosflow +py-azure-mgmt-batchai source-highlight +py-azure-mgmt-billing sourmash +py-azure-mgmt-botservice sowing +py-azure-mgmt-cdn sox +py-azure-mgmt-cognitiveservices sp +py-azure-mgmt-compute spaceranger +py-azure-mgmt-consumption spack +py-azure-mgmt-containerinstance spack-configs-dav-sdk +py-azure-mgmt-containerregistry spack-configs-facilities +py-azure-mgmt-containerservice spack-configs-tools-sdk +py-azure-mgmt-core spades +py-azure-mgmt-cosmosdb span-lite +py-azure-mgmt-datalake-analytics spark +py-azure-mgmt-datalake-store sparse +py-azure-mgmt-datamigration sparsehash +py-azure-mgmt-deploymentmanager sparskit +py-azure-mgmt-devtestlabs sparta +py-azure-mgmt-dns spath +py-azure-mgmt-eventgrid spatialdata +py-azure-mgmt-eventhub spatter +py-azure-mgmt-hdinsight spdk +py-azure-mgmt-imagebuilder spdlog +py-azure-mgmt-iotcentral specfem3d-globe +py-azure-mgmt-iothub spectra +py-azure-mgmt-iothubprovisioningservices spectre +py-azure-mgmt-keyvault spectrum-mpi +py-azure-mgmt-kusto speex +py-azure-mgmt-loganalytics speexdsp +py-azure-mgmt-managedservices sperr +py-azure-mgmt-managementgroups spfft +py-azure-mgmt-maps spglib +py-azure-mgmt-marketplaceordering sph2pipe +py-azure-mgmt-media spherepack +py-azure-mgmt-monitor sphexa +py-azure-mgmt-msi spindle +py-azure-mgmt-netapp spiner +py-azure-mgmt-network spiral-package-fftx +py-azure-mgmt-nspkg spiral-package-hcol +py-azure-mgmt-policyinsights spiral-package-jit +py-azure-mgmt-privatedns spiral-package-mpi +py-azure-mgmt-rdbms spiral-package-simt +py-azure-mgmt-recoveryservices spiral-software +py-azure-mgmt-recoveryservicesbackup spla +py-azure-mgmt-redhatopenshift spm +py-azure-mgmt-redis spot +py-azure-mgmt-relay sprng +py-azure-mgmt-reservations sqlcipher +py-azure-mgmt-resource sqlite +py-azure-mgmt-search sqlite-jdbc +py-azure-mgmt-security sqlitebrowser +py-azure-mgmt-servicebus sqoop +py-azure-mgmt-servicefabric squashfs +py-azure-mgmt-signalr squashfs-mount +py-azure-mgmt-sql squashfuse +py-azure-mgmt-sqlvirtualmachine squid +py-azure-mgmt-storage sra-tools +py-azure-mgmt-trafficmanager sratoolkit +py-azure-mgmt-web srcml +py-azure-multiapi-storage srcml-identifier-getter-tool +py-azure-nspkg srilm +py-azure-storage-blob srm-ifce +py-azure-storage-common sse2neon +py-azure-storage-nspkg sshfs +py-b2luigi sshpass +py-babel ssht +py-backcall ssmtp +py-backoff sspace-longread +py-backpack-for-pytorch sspace-standard +py-backports-abc sst-core +py-backports-cached-property sst-dumpi +py-backports-entry-points-selectable sst-elements +py-backports-lzma sst-macro +py-backports-os sst-transports +py-backports-ssl-match-hostname stacks +py-backports-tarfile staden-io-lib +py-backports-tempfile star +py-backports-weakref star-ccm-plus +py-backports-zoneinfo starlight +py-bagit starpu +py-bagit-profile starship +py-bakta startup-notification +py-bandit stat +py-barectf stata +py-basemap stc +py-bash-kernel stdexec +py-basis-set-exchange steps +py-batchspawner stinger +py-bayesian-optimization storm +py-bcbio-gff stow +py-bcolz strace +py-bcrypt stream +py-bdbag stress +py-beaker stress-ng +py-beancount stressapptest +py-beartype string-view-lite +py-beautifulsoup4 stringtie +py-beniget stripack +py-bibtexparser structure +py-bidict strumpack +py-bids-validator su2 +py-bids-validator-deno sublime-text +py-bidscoin subread +py-bidskit subversion +py-bidsschematools suite-sparse +py-bigdft sumaclust +py-bigfloat sumo +py-billiard sundials +py-binary suntans +py-binaryornot superchic +py-bintrees superlu +py-binwalk superlu-dist +py-biobb-common superlu-mt +py-biobb-gromacs supermagic +py-biobb-io surfer +py-biobb-model survey +py-biobb-structure-checking sw4 +py-biobb-structure-utils sw4lite +py-bioblend swan +py-biom-format swap-assembler +py-biomine swarm +py-biopandas swfft +py-biopython swftools +py-biosppy swiftsim +py-biotite swig +py-biotraj swipl +py-bitarray syclomatic +py-bitshuffle symengine +py-bitstring symlinks +py-bitstruct sympack +py-black sympol +py-blake3 sys-sage +py-bleach sysbench +py-blessed syscalc +py-blessings sysfsutils +py-blight sysget +py-blinker sysstat +py-blis systemc +py-blosc systemd +py-blosc2 systemtap +py-blosum sz +py-bluepyefe sz-cpp +py-bluepyemodel sz3 +py-bluepyopt szauto +py-bmap-tools szx +py-bmtk t8code +py-bokeh tabix +py-boltons tajo +py-boom-boot-manager talass +py-boost-histogram talloc +py-boto talosctl +py-boto3 tamaas +py-botocore tandem +py-botorch tangram +py-bottle tantan +py-bottleneck tar +py-bqplot targetp +py-braceexpand task +py-brain-indexer taskd +py-branca taskflow +py-bravado tasmanian +py-bravado-core tassel +py-breakseq2 tau +py-breathe tauola +py-brian tb-lmto +py-brian2 tbl2asn +py-brotli tblite +py-brotlipy tcl +py-bsddb3 tcl-bwidget +py-build tcl-itcl +py-bx-python tcl-tcllib +py-cachecontrol tcl-tclxml +py-cached-property tcl-togl +py-cachetools tclap +py-cachey tcoffee +py-cachy tcpdump +py-cairocffi tcptrace +py-cairosvg tcsh +py-caliper-reader tdengine +py-callmonitor tealeaf +py-calver tecio +py-cantoolz teckit +py-carputils tecplot +py-cartopy telegraf +py-casadi telocal +py-catalogue tempestextremes +py-catkin-pkg tempestremap +py-cattrs templight +py-cbor2 templight-tools +py-cclib tempo +py-cdo tengine +py-cdsapi tensorflow-serving-client +py-cekit tensorpipe +py-celery termcap +py-cellprofiler terminalimageviewer +py-cellprofiler-core tesseract +py-centrosome test-drive +py-cerberus tests-sos +py-certifi testu01 +py-certipy tetgen +py-cf-units tethex +py-cf-xarray tetranscripts +py-cffconvert texi2html +py-cffi texinfo +py-cfgrib texlive +py-cfgv texstudio +py-cftime textparser +py-cgen tfel +py-chai the-platinum-searcher +py-chai-lab the-silver-searcher +py-chainer theia-ide +py-chainforgecodegen thepeg +py-chainmap thermo4pfm +py-chalice thesis +py-chardet thornado-mini +py-charm4py thrift +py-charset-normalizer thrust +py-chart-studio thunar +py-cheap-repr thunar-volman +py-checkm-genome tidy-html5 +py-cheetah3 tig +py-chemfiles tiled-mm +py-chemiscope time +py-cheroot timedatex +py-cherrypy timemory +py-chex timew +py-choreographer tini +py-chronyk tinker +py-ci-info tiny-tensor-compiler +py-ci-sdr tinycbor +py-cig-pythia tinygltf +py-cinema-lib tinyobjloader +py-cinemasci tinyxml +py-circus tinyxml2 +py-citeproc-py tioga +py-clarabel tippecanoe +py-clean-text tiptop +py-cleo tiramisu +py-click tix +py-click-didyoumean tixi +py-click-option-group tk +py-click-plugins tkrzw +py-click-repl tl-expected +py-cligj tldd +py-clikit tmalign +py-climate tmhmm +py-climax tmscore +py-clint tmux +py-clip-anytorch tnftp +py-clipboard tofu-ls +py-cloudauthz tomcat +py-cloudbridge toml-f +py-cloudpathlib toml11 +py-cloudpickle tomlplusplus +py-clustershell topaz +py-cma topaz-3dem +py-cmaes topcom +py-cmake-format tophat +py-cmake-parser torch-scatter +py-cmocean torque +py-cmseq totalview +py-cmsml toybox +py-cmyt tpm2-tss +py-coapthon3 tracer +py-coca-pytorch tracy +py-coclust tracy-client +py-codebasin tramonto +py-codecarbon transabyss +py-codechecker transdecoder +py-codepy transferbench +py-codespell transposome +py-coherent-licensed transrate +py-coilmq transset +py-colabtools trapproto +py-colorama tree +py-colorcet tree-sitter +py-colorclass treelite +py-colored treesub +py-colored-traceback trexio +py-coloredlogs trf +py-colorful triangle +py-colorio trident +py-colorlog trilinos +py-colorlover trilinos-catalyst-ioss-adapter +py-colormath trimal +py-colorpy trimgalore +py-colorspacious trimmomatic +py-colossalai trinity +py-colour trinotate +py-comm trivy +py-common trnascan-se +py-commonmark trng +py-conan trompeloeil +py-conda-inject truchas +py-conda-souschef tskit +py-confection tsne-cuda +py-configargparse tulip +py-configobj tumbler +py-configparser turbine +py-configspace turbomole +py-confluent-kafka turbovnc +py-connectionpool turnserver +py-consolekit twm +py-constantly tycho2 +py-contextily typescript +py-contextlib2 typhon +py-contexttimer typhonio +py-continuum typos +py-contourpy typst +py-contrib ucc +py-control uchardet +py-convertdate ucsc-bedclip +py-convokit ucsc-bedgraphtobigwig +py-cookiecutter ucx +py-coolname udunits +py-copulas ufo-core +py-corner ufo-filters +py-correctionlib ufs-utils +py-corrfunc ufs-weather-model +py-counter uftrace +py-courlan umap +py-cov-core umesimd +py-coverage umoci +py-coveralls umpire +py-cppheaderparser unblur +py-cppy uncrustify +py-cramjam unibilium +py-crashtest unifdef +py-crc32c unifyfs +py-crcmod unigen +py-croniter unison +py-crossmap units +py-cryolobm units-llnl +py-cryptography unittest-cpp +py-css-parser universal +py-cssselect universal-ctags +py-cssselect2 unixodbc +py-cssutils unqlite +py-csvkit unrar +py-ctgan unuran +py-cuda-bindings unzip +py-cuda-core upcxx +py-cuda-pathfinder upp +py-cudf uqtk +py-cufflinks uriparser +py-cuml usalign +py-cupy usbutils +py-current usearch +py-currentscape userspace-rcu +py-curryreader ut +py-curvlinops-for-pytorch utf8cpp +py-custodian utf8proc +py-custom-inherit uthash +py-cutadapt util-linux +py-cvxopt util-linux-uuid +py-cvxpy util-macros +py-cwl-upgrader uvw +py-cwl-utils uwtools +py-cwltool vacuumms +py-cx-oracle vala +py-cycler valgrind +py-cykhash valijson +py-cylc-flow vampirtrace +py-cylc-rose vapor +py-cylp vardictjava +py-cymem variorum +py-cyordereddict varnish-cache +py-cython varscan +py-cython-bbox vasp +py-cyvcf2 vbfnlo +py-d2to1 vbz-compression +py-dace vc +py-dacite vcftools +py-dadi vcsh +py-dalib vde +py-damask vdt +py-darshan veccore +py-dasbus vecgeom +py-dash veclibfort +py-dash-bootstrap-components vecmem +py-dash-svg vectorclass-version2 +py-dask vegas2 +py-dask-awkward velero +py-dask-expr veloc +py-dask-glm velvet +py-dask-histogram velvetoptimiser +py-dask-jobqueue vep +py-dask-ml vep-cache +py-dask-mpi verdict +py-dask-sphinx-theme verible +py-databricks-cli verilator +py-dataclasses verrou +py-dataclasses-json vesta +py-datacube vfkit +py-datalad vgm +py-datalad-container videoproto +py-datalad-deprecated viennarna +py-datalad-hirni viewres +py-datalad-metadata-model vifi +py-datalad-metalad vigra +py-datalad-neuroimaging vim +py-datalad-webapp vir-simd +py-dataproperty virtualgl +py-datasets visit +py-datashader visit-cgns +py-datatrove visit-ffp +py-dateparser visit-mfem +py-dateutils visit-silo +py-datrie visit-unv +py-dbf viskores +py-dbfread vite +py-dcm2bids vizglow +py-dcmstack vmatch +py-deap vmc +py-debtcollector vmd +py-debugpy volk +py-decorator voms +py-deepdiff voropp +py-deepecho votca +py-deephyper vpfft +py-deepmerge vpic +py-deepsig-biocomp vsearch +py-deepspeed vsftpd +py-deeptools vt +py-deeptoolsintervals vtable-dumper +py-defusedxml vtk +py-deisa vtk-h +py-deisa-core vtk-m +py-deisa-dask vvtest +py-demjson w3emc +py-dendropy w3m +py-deprecat w3nco +py-deprecated wannier90 +py-deprecation warpx +py-deprecation-alias wasi-sdk-prebuilt +py-derivative watch +py-descartes wayland +py-devito wayland-protocols +py-devlib wcs +py-dgl wcslib +py-dh-scikit-optimize webbench +py-diagnostic weechat +py-dict2css weighttp +py-dictdiffer wget +py-dictobj wgl +py-dill wgrib2 +py-dinosaur wgsim +py-dipy which +py-dirtyjson whip +py-disbatch whizard +py-discover wi4mpi +py-diskcache win-file +py-dist-meta win-gpg +py-distance win-sdk +py-distlib win-wdk +py-distributed winbison +py-distro windowswmproto +py-django wiredtiger +py-dlcpar wireshark +py-dm-haiku wise2 +py-dm-tree wonton +py-dnaio wordnet +py-dnspython wps +py-docker wrf +py-dockerpy-creds wrf-io +py-docket wrk +py-docopt wsmancli +py-docopt-ng wt +py-docstring-parser wtdbg2 +py-docstring-to-markdown wxparaver +py-docutils wxpropgrid +py-docutils-stubs wxwidgets +py-dogpile-cache x11perf +py-doit x264 +py-dolfinx-mpc xabclib +py-dom-toml xalan-c +py-domdf-python-tools xapian-core +py-dominate xauth +py-donfig xbacklight +py-dotmap xbae +py-dotnetcore2 xbiff +py-downhill xbitmaps +py-doxypypy xbraid +py-dpath xcalc +py-drep xcb-demo +py-drmaa xcb-proto +py-dryscrape xcb-util +py-duecredit xcb-util-cursor +py-dulwich xcb-util-errors +py-dunamai xcb-util-image +py-dvc xcb-util-keysyms +py-dxchange xcb-util-renderutil +py-dxfile xcb-util-wm +py-dynaconf xcb-util-xrm +py-dynim xcdf +py-earth2mip xcfun +py-earthengine-api xclip +py-easybuild-easyblocks xclipboard +py-easybuild-easyconfigs xclock +py-easybuild-framework xcmiscproto +py-eccodes xcmsdb +py-ecdsa xcompmgr +py-ecmwf-opendata xconsole +py-ecmwflibs xcrysden +py-ecos xcursor-themes +py-edam-ontology xcursorgen +py-edffile xdbedizzy +py-edfio xdelta +py-edflib-python xditview +py-editables xdm +py-editdistance xdmf3 +py-edlib xdotool +py-eeglabio xdpyinfo +py-eerepr xdriinfo +py-efel xedit +py-efficientnet-pytorch xeniumranger +py-eg xerces-c +py-eigenpy xeus +py-einconv xev +py-einops xextproto +py-elastic-transport xeyes +py-elasticsearch xf86bigfontproto +py-elasticsearch-dsl xf86dga +py-elecsolver xf86dgaproto +py-elephant xf86driproto +py-elevation xf86miscproto +py-ema-pytorch xf86rushproto +py-email-validator xf86vidmodeproto +py-embedding-reader xfce4-appfinder +py-emcee xfce4-core +py-emoji xfce4-panel +py-empy xfce4-session +py-entrypoints xfce4-settings +py-enum-tools xfconf +py-envisage xfd +py-ephem xfdesktop +py-eprosima-fastdds xfindproxy +py-epydoc xfontsel +py-equation xforms +py-equinox xfs +py-espresso xfsdump +py-espressopp xfsinfo +py-et-xmlfile xfsprogs +py-ete3 xfwm4 +py-etelemetry xfwp +py-etils xgamma +py-eval-type-backport xgboost +py-evaluate xgc +py-eventlet xhmm +py-evodiff xhost +py-ewah-bool-utils xictools +py-exarl xineramaproto +py-exceptiongroup xinit +py-execnet xinput +py-executing xios +py-exhale xkbcomp +py-exifread xkbdata +py-exodus-bundler xkbevd +py-expandvars xkbprint +py-expecttest xkbutils +py-exponax xkeyboard-config +py-extension-helpers xkill +py-extras xl +py-ez-setup xload +py-f90nml xlogo +py-f90wrap xlsatoms +py-fabric xlsclients +py-fabric3 xlsfonts +py-fair-esm xmag +py-fairscale xman +py-faker xmessage +py-fakeredis xmh +py-falcon xmlf90 +py-fallocate xmlrpc-c +py-fastai xmlto +py-fastaindex xmodmap +py-fastapi xmore +py-fastapi-utils xnedit +py-fastavro xnnpack +py-fastcache xolotl +py-fastcluster xorg-cf-files +py-fastcore xorg-docs +py-fastcov xorg-gtest +py-fastdownload xorg-server +py-fastdtw xorg-sgml-doctools +py-fasteners xorgproto +py-fastfold xphelloworld +py-fastjsonschema xplor-nih +py-fastobo xplsprinters +py-fastpath xpmem +py-fastprogress xpr +py-fastremap xprehashprinterlist +py-fastrlock xprop +py-fasttext-numpy2 xproperty +py-fasttext-numpy2-wheel xproto +py-faust-cchardet xproxymanagementprotocol +py-fava xqilla +py-fenics-basix xrandr +py-fenics-dijitso xrdb +py-fenics-dolfinx xrdcl-record +py-fenics-ffc xrefresh +py-fenics-ffcx xrootd +py-fenics-fiat xrx +py-fenics-instant xsbench +py-fenics-ufl xscope +py-fenics-ufl-legacy xsd +py-ffmpy xsdk +py-fief-client xset +py-file-magic xsetmode +py-filecheck xsetpointer +py-filelock xsetroot +py-filemagic xsimd +py-filetype xsm +py-filterpy xstdcmap +py-find-libpython xtb +py-findlibs xtcdata +py-fiona xtensor +py-fire xtensor-blas +py-fireworks xtensor-python +py-fiscalyear xterm +py-fisher xtl +py-fits-tools xtrans +py-fitsio xtrap +py-fitter xts +py-fixtures xv +py-flake8 xvidtune +py-flake8-import-order xvinfo +py-flake8-polyfill xwd +py-flaky xwidgets +py-flameprof xwininfo +py-flash-attn xwud +py-flask xxd-standalone +py-flask-babel xxdiff +py-flask-compress xxhash +py-flask-cors xyce +py-flask-paginate xz +py-flask-restful yade +py-flask-socketio yafyaml +py-flask-sqlalchemy yajl +py-flatbuffers yaksa +py-flatten-dict yambo +py-flawfinder yaml-cpp +py-flax yamlfmt +py-flexcache yara +py-flexmock yarn +py-flexparser yasm +py-flexx ycruncher +py-flit ycsb +py-flit-core yoda +py-flit-scm yorick +py-flox yosys +py-flufl-lock yq +py-fluiddyn yyjson +py-fluidfft z-checker +py-fluidfft-builder z3 +py-fluidfft-fftw zabbix +py-fluidfft-fftwmpi zerosum +py-fluidfft-mpi-with-fftw zfp +py-fluidfft-p3dfft zfs +py-fluidfft-pfft ziatest +py-fluidsim zig +py-fluidsim-core zip +py-flye zipkin +py-fn-py zlib +py-folium zlib-ng +py-fonttools zoltan +py-ford zookeeper +py-formatizer zookeeper-benchmark +py-formulaic zopfli +py-fortls zoxide +py-fortran-language-server zpares +py-fortranformat zpp +py-fparser zsh +py-fprettify zstd +py-fqdn zstr +py-fracridge zuo +py-fraction zycore-c +py-freetype-py zydis +py-freezegun zziplib +==> 8904 packages diff --git a/outputs/basics/mirror.out b/outputs/basics/mirror.out index 0692d4602c..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 @ 402.9 KB/s -==> Fetching file:///mirror/blobs/sha256/e6/e6b951d7df78889b27537f245504b97a6d211a2ae023fe9922a4beb51238a35c - [100%] 10.43 KB @ 65.8 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..a9d1b18e23 --- /dev/null +++ b/outputs/basics/providers-mpi.out @@ -0,0 +1,8 @@ +$ spack providers mpi +mpi: +-- no arch / no compilers --------------------------------------- +cray-mpich@:8 hpcx-mpi mpich@:1.1 mpich@:4.3 mpt mvapich mvapich2@2.3: openmpi@1.3:1.7.2 spectrum-mpi +cray-mpich@9: intel-oneapi-mpi mpich@:1.2 mpich@5: mpt@1: mvapich-plus nmad openmpi@1.7.3:1.7.4 +cray-mvapich2 mpi-serial mpich@:3.1 mpilander mpt@3: mvapich2 nvhpc openmpi@1.7.5:1.10.7 +fujitsu-mpi mpich@:1.0 mpich@:3.2 mpitrampoline msmpi mvapich2@2.1: openmpi@:1.2 openmpi@2.0.0: + 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 954a314895..7b789863e7 100644 --- a/outputs/basics/spec-zziplib.out +++ b/outputs/basics/spec-zziplib.out @@ -1,59 +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@11.4.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@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 -[+] ^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 -[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 -[+] ^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 - - ^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 -[+] ^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 -[+] ^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 -[+] ^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@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 -[+] ^expat@2.7.3+libbsd build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^libmd@1.1.0 build_system=autotools 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 -[+] ^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 -[+] ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=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 -[+] ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^sqlite@3.50.4+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^util-linux-uuid@2.41 build_system=autotools 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 - - ^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@11.4.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 aee6ca7974..7a76a127c1 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 @ 502.5 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.01s. Extract: 0.95s. Relocate: 0.05s. Total: 1.20s -[+] /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 (1s) diff --git a/outputs/basics/tcl-zlib-hash.out b/outputs/basics/tcl-zlib-hash.out deleted file mode 100644 index 842d5e6818..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 @ 452.2 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.19s -[+] /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 d66e0b5026..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 @ 686.7 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 @ 512.1 GB/s -==> Extracting tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 from binary cache -==> tcl: Successfully installed tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 - Search: 0.00s. Fetch: 0.02s. 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 9299581e8c..1efdd78ee5 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/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft -[+] /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 @ 392.4 GB/s -==> Extracting trilinos-16.1.0-k3ozjlurkcq33qpoqses4strvmxtexpe from binary cache -==> trilinos: Successfully installed trilinos-16.1.0-k3ozjlurkcq33qpoqses4strvmxtexpe - Search: 0.00s. Fetch: 0.21s. Install: 1.51s. Extract: 1.36s. Relocate: 0.11s. Total: 1.72s -[+] /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 (2s) diff --git a/outputs/basics/trilinos.out b/outputs/basics/trilinos.out index 46ab1241a6..0b1eab1964 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/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/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -[+] /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.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp -[+] /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/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/d9/d966a88895b095541c290ecfce5555fdfdb74d87d83bef2e08f25cec5c7cbd2f - [100%] 23.97 MB @ 462.5 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.60s. Extract: 0.56s. Relocate: 0.03s. Total: 0.80s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt -==> Installing openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt [15/36] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /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/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /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/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/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/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm -[+] /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/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w -[+] /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 -==> Fetching file:///mirror/blobs/sha256/51/516c893799325a240194084e2c9ca9e5c4bfd9c246f9262c3f6169f8531e8ca6 - [100%] 61.03 MB @ 431.5 GB/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.15s. Extract: 0.12s. Relocate: 0.01s. Total: 0.16s -[+] /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 @ 511.5 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 @ 562.6 GB/s -==> Extracting trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv from binary cache -==> trilinos: Successfully installed trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv - Search: 0.00s. Fetch: 0.05s. Install: 1.47s. Extract: 1.33s. Relocate: 0.12s. Total: 1.53s -[+] /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 (1s) +[ ] 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 (1s) +[+] 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 (2s) 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 53b9645555..9c2fe3b163 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.3 2.3.2 2.3.1 2.3.0-rc2 2.3.0-rc1 2.2.5 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 bb5f7535c8..d25cf6b567 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 @ 662.9 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 (0s) +[ ] aeoqp4e zlib-ng@2.0.7 relocating (0s) +[+] aeoqp4e zlib-ng@2.0.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-aeoqp4ey2pntuxsbajc5hwovr5l4qy2l (0s) diff --git a/outputs/basics/zlib-O3.out b/outputs/basics/zlib-O3.out index 37b4b30fa3..40e0cbd88a 100644 --- a/outputs/basics/zlib-O3.out +++ b/outputs/basics/zlib-O3.out @@ -5,7 +5,7 @@ $ spack install zlib-ng@2.0.7 cflags=-O3 [+] /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/42/42a994755d7599f4b2471cd3dcc1d5d244b4cf9187cf8d73ec3b522dd5ac252b - [100%] 209.73 KB @ 708.3 MB/s + [100%] 209.73 KB @ 570.9 MB/s ==> Extracting zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw from binary cache ==> zlib-ng: Successfully installed zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw Search: 0.00s. Fetch: 0.17s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.22s 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 c7473dd974..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 @ 916.4 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 @ 392.1 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.25s. Extract: 0.22s. Relocate: 0.02s. Total: 0.42s -[+] /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 @ 481.0 GB/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 @ 797.1 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 66ff524f5b..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 @ 361.5 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.25s. Extract: 0.22s. Relocate: 0.02s. Total: 0.43s -[+] /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 @ 820.7 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 @ 641.7 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..b2a9605c2f --- /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 (1s) diff --git a/outputs/basics/zlib-ipo.out b/outputs/basics/zlib-ipo.out new file mode 100644 index 0000000000..e17bb56a40 --- /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 (0s) +[ ] 6l3ycpy zlib-ng@2.3.3 relocating (0s) +[+] 6l3ycpy zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-6l3ycpy4crfl6ry4jax3p6crw3byw5oa (0s) 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..91f1614004 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -9,21 +9,32 @@ 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 can install software either from source or a prebuilt binary. +2. Spack isolates each package's installation. + This allows many versions, compilers, and build options to coexist on the same machine. +3. Each installation 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, showcasing the flexibility of Spack's spec syntax. 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 +48,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 @@ -48,243 +62,309 @@ The ``spack list`` command shows available packages. :lines: 1-6 -The ``spack list`` command can also take a query string. -Spack automatically adds wildcards to both ends of the string, or we can add our own wildcards for more advanced searches. -For example, let's view all available Python packages. +Pass a substring to narrow the list. +For example, to see all Python packages: .. literalinclude:: outputs/basics/list-py.out :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. +Spack can install multiple versions of the same package. +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 specify versions 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`` i.e. 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`` 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, 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]`` marks those provided externally by the system, and ``[b]`` marks 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. +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. -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: +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. -.. code-block:: spec +.. literalinclude:: outputs/basics/help-spec.out + :language: console + +.. _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 - 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. +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. -We'll do a quick check in on what we have installed so far. +.. literalinclude:: outputs/basics/find-dep-mpich.out + :language: spec + +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: + +-------------------------------- +Trilinos: A More Complex Example +-------------------------------- + +Now that we know the spec syntax and how to query installations, let's put them to work on Trilinos: .. 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. -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. +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 may take hours (depending on the system), but only a few 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. +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/find-d-trilinos.out +.. literalinclude:: outputs/basics/trilinos-find-mpich.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. - -.. literalinclude:: outputs/basics/graph-trilinos.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 +372,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 +386,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 i.e. 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 ------------------------------ +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: -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. - -.. 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 +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. -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. - -.. 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 section, 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.