From 56c58e31ceef61aaaac0204bcc82651dec9c1012 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 09:11:45 +0200 Subject: [PATCH 01/26] Extend gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 2434f4d3c..93ff6f844 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,5 @@ __pycache__ /view /.spack-env /.venv +.idea +CLAUDE.md From c428650899373825d2a492c2a64bb64b3b0300a8 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 09:12:04 +0200 Subject: [PATCH 02/26] basics: split "Installing Packages" into subsections --- tutorial_basics.rst | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/tutorial_basics.rst b/tutorial_basics.rst index c282186ae..b7da8775b 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -86,6 +86,10 @@ We can run ``spack compiler list`` or simply ``spack compilers`` to show all the 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. +^^^^^^^^^^^^^^^^^^^^^ +Using a Binary Mirror +^^^^^^^^^^^^^^^^^^^^^ + 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. @@ -97,10 +101,14 @@ To enable installation from the binary cache, we'll need to configure Spack with 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. -Now that we understand how Spack handles installations, let's explore how we can customize what gets installed. +^^^^^^^^^^^^^^^ +The Spec Syntax +^^^^^^^^^^^^^^^ + +So far we've installed packages with their default configuration. 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. +For example, we can install zlib-ng (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. .. literalinclude:: outputs/basics/zlib-clang.out :language: spec @@ -108,9 +116,8 @@ For example, we can install zlib (a commonly used compression library), but inst 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. -Now that we've seen how Spack handles separate installations, let's explore this capability by installing multiple versions of the same package. -Before we install additional versions, we can check the versions available to us using the ``spack versions`` command. -Let's check what versions of zlib-ng are available, and then we'll install a different version to demonstrate Spack's flexibility in managing multiple package versions. +We can also install multiple versions of the same package side by side. +Before installing another version, let's check which versions of ``zlib-ng`` are available using the ``spack versions`` command. .. literalinclude:: outputs/basics/versions-zlib.out :language: spec @@ -185,6 +192,10 @@ We can also use the ``spack graph`` command to view the entire DAG as a graph. .. literalinclude:: outputs/basics/graph-tcl.out :language: spec +^^^^^^^^ +Variants +^^^^^^^^ + 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. @@ -208,6 +219,10 @@ Here we can install HDF5 without MPI support. .. literalinclude:: outputs/basics/hdf5-no-mpi.out :language: spec +^^^^^^^^^^^^^^^^^^^^ +Virtual Dependencies +^^^^^^^^^^^^^^^^^^^^ + 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." From 11a3bbb314410d89768afb49432eb7d40095d78b Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 09:38:30 +0200 Subject: [PATCH 03/26] Add a paragraph explaining the overall spack architecture This is so that audience is already aware of where we are headin into, when we introduce the various pieces (hash, store, etc.). --- tutorial_basics.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tutorial_basics.rst b/tutorial_basics.rst index b7da8775b..aa166c2aa 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -107,6 +107,12 @@ The Spec Syntax So far we've installed packages with their default configuration. Spack's "spec" syntax is the interface by which we can request specific configurations of a package. + +Before we dive into the syntax, it helps to understand how Spack treats these configurations. +Every spec Spack builds is recorded with a unique hash that captures its full configuration: its version, build options, compiler, and the specs of all its dependencies. +Spack installs each distinct spec in its own directory, identified by that hash, so configurations that differ in any way coexist side by side instead of overwriting one another. +When we request a spec, Spack reuses an already-installed or cached build that satisfies it whenever possible, and only builds something new when nothing suitable exists. + The ``%`` sigil is used to specify direct dependencies like a package's compiler. For example, we can install zlib-ng (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. From 3bbae8f2fdb8b7e0cc8b5e5f50eeae0e5094612b Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 10:04:55 +0200 Subject: [PATCH 04/26] Update releases/v1.1 -> releases/v1.2 --- common/setup.rst | 2 +- outputs/defs.sh | 2 +- tutorial_basics.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/setup.rst b/common/setup.rst index 668d9e85d..9ce0ca233 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/defs.sh b/outputs/defs.sh index b9527403a..84b1cf02e 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 aa166c2aa..75d1bcda1 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -23,7 +23,7 @@ Installing 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. +To get started, we simply clone the Spack repository and check out the latest release, v1.2. .. literalinclude:: outputs/basics/clone.out :language: console From 9468048460a63ced4fb94a6ff5bc149066454bbd Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 10:23:13 +0200 Subject: [PATCH 05/26] Move high-level highlights to introduction --- tutorial_basics.rst | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/tutorial_basics.rst b/tutorial_basics.rst index 75d1bcda1..8d2835357 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -9,6 +9,16 @@ Basic Installation Tutorial ========================================= This tutorial will provide a step-by-step guide for installing software with Spack. + +A few fundamental ideas underpin everything that follows: + +1. Spack builds software either from source or from prebuilt binaries. +2. Spack keeps every configuration of a package isolated from every other, so many versions, compilers, and build options can coexist on the same machine. +3. Each configuration is identified by a hash of its full provenance. +4. Spack reuses an existing build whenever it can, instead of rebuilding from scratch. + +Keep these points in mind, as we'll illustrate them with examples. + We will begin by introducing the ``spack install`` command, highlighting the versatility of Spack’s spec syntax and the flexibility it offers users. Next, we will demonstrate how to use the ``spack find`` command to view installed packages, as well as the ``spack uninstall`` command to remove them. @@ -108,11 +118,6 @@ The Spec Syntax So far we've installed packages with their default configuration. Spack's "spec" syntax is the interface by which we can request specific configurations of a package. -Before we dive into the syntax, it helps to understand how Spack treats these configurations. -Every spec Spack builds is recorded with a unique hash that captures its full configuration: its version, build options, compiler, and the specs of all its dependencies. -Spack installs each distinct spec in its own directory, identified by that hash, so configurations that differ in any way coexist side by side instead of overwriting one another. -When we request a spec, Spack reuses an already-installed or cached build that satisfies it whenever possible, and only builds something new when nothing suitable exists. - The ``%`` sigil is used to specify direct dependencies like a package's compiler. For example, we can install zlib-ng (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. From 0497b30f82eb5de22a33fa96328628986b15f4b2 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 10:42:16 +0200 Subject: [PATCH 06/26] Minor fixes --- tutorial_basics.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tutorial_basics.rst b/tutorial_basics.rst index 8d2835357..24272caff 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -88,7 +88,8 @@ These do not represent separate software builds from source, but are records of For the rest of this section, we'll ignore these components and focus on the packages explicitly installed and their listed dependencies. 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. +In Spack, compilers are treated as ordinary package dependencies rather than a special case: ``gmake`` depends on a compiler just as it depends on any other package. +The one convenience Spack adds is that it automatically searches the ``PATH`` environment variable for installed compilers, so those already on the system are ready to use. We can run ``spack compiler list`` or simply ``spack compilers`` to show all the compilers Spack found. .. literalinclude:: outputs/basics/compiler-list.out @@ -125,7 +126,7 @@ For example, we can install zlib-ng (a commonly used compression library), but i :language: spec 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. +As described in the overview, this separation is fundamental to how Spack supports multiple configurations and versions of software packages simultaneously. We can also install multiple versions of the same package side by side. Before installing another version, let's check which versions of ``zlib-ng`` are available using the ``spack versions`` command. From e2cb0dae2ea899752cf396648c4e9479d6465c2a Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 11:09:38 +0200 Subject: [PATCH 07/26] Shorten and improve "Installing Packages" --- tutorial_basics.rst | 39 ++++++++++++++++++++++++++++----------- 1 file changed, 28 insertions(+), 11 deletions(-) diff --git a/tutorial_basics.rst b/tutorial_basics.rst index 24272caff..82c3bbd24 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -77,7 +77,7 @@ To install a software package, type: $ spack install -Let's go ahead and install ``gmake``, +Let's go ahead and install ``gmake``: .. literalinclude:: outputs/basics/gmake.out :language: spec @@ -85,7 +85,7 @@ Let's go ahead and install ``gmake``, 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. +For the rest of this tutorial, we'll ignore these components and focus on the packages explicitly installed and their listed dependencies. The ``gcc`` package was found on the system and Spack used it because ``gmake`` requires a compiler to build from source. In Spack, compilers are treated as ordinary package dependencies rather than a special case: ``gmake`` depends on a compiler just as it depends on any other package. @@ -97,29 +97,30 @@ We can run ``spack compiler list`` or simply ``spack compilers`` to show all the 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. -^^^^^^^^^^^^^^^^^^^^^ -Using a Binary Mirror -^^^^^^^^^^^^^^^^^^^^^ - Spack can install software either from source or from a binary cache. +Since we just installed our first package from source, let's set up a faster binary cache for the rest of the tutorial. 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. .. 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. +We'll learn more about configuring Spack later in the tutorial, but for now we can install the rest of the packages 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. -^^^^^^^^^^^^^^^ +--------------- The Spec Syntax -^^^^^^^^^^^^^^^ +--------------- So far we've installed packages with their default configuration. 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. +^^^^^^^^^^^^^^^^^^^ +Direct Dependencies +^^^^^^^^^^^^^^^^^^^ + +The ``%`` sigil specifies a direct dependency of the package we're installing. +The most common direct dependency is a compiler -- every package built from source needs one -- so that is what we will use ``%`` for first. For example, we can install zlib-ng (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. .. literalinclude:: outputs/basics/zlib-clang.out @@ -128,6 +129,10 @@ For example, we can install zlib-ng (a commonly used compression library), but i Notice that 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. +^^^^^^^^ +Versions +^^^^^^^^ + We can also install multiple versions of the same package side by side. Before installing another version, let's check which versions of ``zlib-ng`` are available using the ``spack versions`` command. @@ -144,6 +149,10 @@ The spec syntax is recursive -- any syntax we can specify for the "root" package .. literalinclude:: outputs/basics/zlib-gcc-10.out :language: spec +^^^^^^^^^^^^^^ +Compiler Flags +^^^^^^^^^^^^^^ + 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. @@ -152,6 +161,10 @@ Spack’s compiler wrappers will automatically inject these flags into the appro .. literalinclude:: outputs/basics/zlib-O3.out :language: spec +^^^^^^^^^^^^^^^^^^^^^^ +Querying Installations +^^^^^^^^^^^^^^^^^^^^^^ + 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. @@ -167,6 +180,10 @@ 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. +^^^^^^^^^^^^^^^^^^^^^^^ +Transitive Dependencies +^^^^^^^^^^^^^^^^^^^^^^^ + 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. From 074848ace97045a946168a7729cdefb02727c8ac Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 11:39:16 +0200 Subject: [PATCH 08/26] Demote Compiler flags --- outputs/basics.sh | 8 ++------ tutorial_basics.rst | 30 +++++++++++------------------- 2 files changed, 13 insertions(+), 25 deletions(-) diff --git a/outputs/basics.sh b/outputs/basics.sh index db2e3a26b..736ce7334 100755 --- a/outputs/basics.sh +++ b/outputs/basics.sh @@ -39,16 +39,14 @@ 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 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/find-lf "spack find -l" example basics/tcl "spack install tcl" example basics/tcl-zlib-clang "spack install tcl ^zlib-ng@2.0.7 %clang" -zlib_hash=$(spack find --format "{hash:3}" zlib-ng cflags=-O3) +zlib_hash=$(spack find --format "{hash:3}" zlib-ng %gcc@10) example basics/tcl-zlib-hash "spack install tcl ^/${zlib_hash}" example basics/find-ldf "spack find -ldf" @@ -90,8 +88,6 @@ 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" diff --git a/tutorial_basics.rst b/tutorial_basics.rst index 82c3bbd24..01ad7f07c 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -149,18 +149,6 @@ The spec syntax is recursive -- any syntax we can specify for the "root" package .. literalinclude:: outputs/basics/zlib-gcc-10.out :language: spec -^^^^^^^^^^^^^^ -Compiler Flags -^^^^^^^^^^^^^^ - -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. - -.. literalinclude:: outputs/basics/zlib-O3.out - :language: spec - ^^^^^^^^^^^^^^^^^^^^^^ Querying Installations ^^^^^^^^^^^^^^^^^^^^^^ @@ -168,7 +156,6 @@ Querying Installations 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. .. literalinclude:: outputs/basics/find.out :language: spec @@ -199,8 +186,8 @@ Note that a dependency specified by ``^`` is always applied to the root package, :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. +Earlier, when we used the ``spack find -l`` command, each installed build of zlib-ng showed a distinct hash. +Instead of typing out the entire spec, we can depend on a specific build -- for example our ``zlib-ng %gcc@10`` build -- by using the ``/`` sigil followed by its hash. 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. @@ -330,6 +317,14 @@ The output can be changed to the Graphviz ``.dot`` format using the ``--dot`` fl $ spack graph --dot trilinos | dot -Tpdf > trilinos_graph.pdf +^^^^^^^^^^^^^^ +Compiler Flags +^^^^^^^^^^^^^^ + +As an aside, the spec syntax can also set compiler flags directly on a build. +Spack accepts ``cppflags``, ``cflags``, ``cxxflags``, ``fflags``, ``ldflags``, and ``ldlibs`` -- written like ``cflags="-O3"`` -- and its compiler wrappers inject them into the appropriate compilation commands (values containing spaces must be quoted on the command line). +This is an escape hatch for special cases rather than the usual way to configure a build: most of the time a package's variants and build system already select appropriate options, so reach for explicit flags only when you genuinely need them. + .. _basics-tutorial-uninstall: --------------------- @@ -382,14 +377,11 @@ We will go over some additional uses for the ``spack find`` command not already 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"``. +For example, ``spack find ^mpich`` will return every installed package that depends on MPICH. .. 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. From d2bff02bbbd9b0ded652cd64d531c97151bc9e86 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 14:17:14 +0200 Subject: [PATCH 09/26] Reorder "Spec Syntax" subsections --- outputs/basics.sh | 13 ++++--- tutorial_basics.rst | 88 +++++++++++++++++++++++---------------------- 2 files changed, 51 insertions(+), 50 deletions(-) diff --git a/outputs/basics.sh b/outputs/basics.sh index 736ce7334..2f310b513 100755 --- a/outputs/basics.sh +++ b/outputs/basics.sh @@ -33,17 +33,20 @@ 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/versions-zlib "spack versions zlib-ng" example basics/zlib-2.0.7 "spack install zlib-ng@2.0.7" + +example basics/hdf5-spec "spack spec hdf5" +example basics/hdf5 "spack install hdf5" +example basics/hdf5-no-mpi "spack install hdf5~mpi" + +example basics/zlib-clang "spack install zlib-ng %clang" example basics/zlib-gcc-10 "spack install zlib-ng %gcc@10" example basics/find "spack find" example basics/find-lf "spack find -l" example basics/tcl "spack install tcl" - example basics/tcl-zlib-clang "spack install tcl ^zlib-ng@2.0.7 %clang" zlib_hash=$(spack find --format "{hash:3}" zlib-ng %gcc@10) @@ -53,10 +56,6 @@ example basics/find-ldf "spack find -ldf" example basics/graph-tcl "spack graph tcl" -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" diff --git a/tutorial_basics.rst b/tutorial_basics.rst index 01ad7f07c..10bd6eb5e 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -115,36 +115,65 @@ The Spec Syntax So far we've installed packages with their default configuration. Spack's "spec" syntax is the interface by which we can request specific configurations of a package. -^^^^^^^^^^^^^^^^^^^ -Direct Dependencies -^^^^^^^^^^^^^^^^^^^ +^^^^^^^^ +Versions +^^^^^^^^ -The ``%`` sigil specifies a direct dependency of the package we're installing. -The most common direct dependency is a compiler -- every package built from source needs one -- so that is what we will use ``%`` for first. -For example, we can install zlib-ng (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. +We can install multiple versions of the same package side by side. +Before installing a specific version, let's check which versions of ``zlib-ng`` are available using the ``spack versions`` command. -.. literalinclude:: outputs/basics/zlib-clang.out +.. literalinclude:: outputs/basics/versions-zlib.out :language: spec -Notice that 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. +The ``@`` sigil is used to specify versions. + +.. literalinclude:: outputs/basics/zlib-2.0.7.out + :language: spec ^^^^^^^^ -Versions +Variants ^^^^^^^^ -We can also install multiple versions of the same package side by side. -Before installing another version, let's check which versions of ``zlib-ng`` are available using the ``spack versions`` command. +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. -.. literalinclude:: outputs/basics/versions-zlib.out +.. literalinclude:: outputs/basics/hdf5-spec.out :language: spec -The ``@`` sigil is used to specify versions. +Assuming we're happy with that configuration, we will now install it. -.. literalinclude:: outputs/basics/zlib-2.0.7.out +.. 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. + +.. literalinclude:: outputs/basics/hdf5-no-mpi.out + :language: spec + +^^^^^^^^^^^^^^^^^^^ +Direct Dependencies +^^^^^^^^^^^^^^^^^^^ + +The ``%`` sigil specifies a direct dependency of the package we're installing. +The most common direct dependency is a compiler -- every package built from source needs one -- so that is what we will use ``%`` for first. +So far we've let Spack choose the compiler, building ``zlib-ng`` with GCC just as we did for gmake. +This time we'll install it with ``%clang`` to build it with the clang compiler instead. + +.. literalinclude:: outputs/basics/zlib-clang.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. +Notice that 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. + +The spec syntax is recursive -- any syntax we can specify for the "root" package we can also use for a dependency. +For example, because a compiler is just another dependency, we can pin the version Spack builds with: .. literalinclude:: outputs/basics/zlib-gcc-10.out :language: spec @@ -208,33 +237,6 @@ We can also use the ``spack graph`` command to view the entire DAG as a graph. .. literalinclude:: outputs/basics/graph-tcl.out :language: spec -^^^^^^^^ -Variants -^^^^^^^^ - -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. - -.. literalinclude:: outputs/basics/hdf5-spec.out - :language: spec - -Assuming we're happy with that configuration, we will now install it. - -.. 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. - -.. literalinclude:: outputs/basics/hdf5-no-mpi.out - :language: spec - ^^^^^^^^^^^^^^^^^^^^ Virtual Dependencies ^^^^^^^^^^^^^^^^^^^^ From 5b6f9609ad46317258a67ccbec4d8955391d9341 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 14:45:58 +0200 Subject: [PATCH 10/26] Move "Querying Installations" into its own section Also, consolidate all the use of `spack find` --- outputs/basics.sh | 25 +++++---- tutorial_basics.rst | 130 +++++++++++++++++++++++--------------------- 2 files changed, 82 insertions(+), 73 deletions(-) diff --git a/outputs/basics.sh b/outputs/basics.sh index 2f310b513..29f7d0ac0 100755 --- a/outputs/basics.sh +++ b/outputs/basics.sh @@ -33,19 +33,18 @@ example basics/compiler-list "spack compilers" example basics/mirror "spack mirror add tutorial /mirror" example basics/mirror "spack buildcache keys --install --trust" +# NOTE: specs reordered (spec-syntax subsections regrouped; querying moved to its +# own section after the spec syntax; zlib-ng variant examples added; hdf5 moved to +# the virtual-dependencies block). Outputs under outputs/basics/ need regeneration. example basics/versions-zlib "spack versions zlib-ng" example basics/zlib-2.0.7 "spack install zlib-ng@2.0.7" -example basics/hdf5-spec "spack spec hdf5" -example basics/hdf5 "spack install hdf5" -example basics/hdf5-no-mpi "spack install hdf5~mpi" +example basics/zlib-ipo "spack install zlib-ng +ipo" +example basics/zlib-build-type "spack install zlib-ng build_type=Debug" example basics/zlib-clang "spack install zlib-ng %clang" example basics/zlib-gcc-10 "spack install zlib-ng %gcc@10" -example basics/find "spack find" -example basics/find-lf "spack find -l" - example basics/tcl "spack install tcl" example basics/tcl-zlib-clang "spack install tcl ^zlib-ng@2.0.7 %clang" @@ -56,6 +55,10 @@ example basics/find-ldf "spack find -ldf" example basics/graph-tcl "spack graph tcl" +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" @@ -68,6 +71,12 @@ example basics/find-d-trilinos "spack find -d trilinos" example basics/graph-trilinos "spack graph trilinos" +# Querying Installations (now its own doc section, after The Spec Syntax) +example basics/find "spack find" +example basics/find-lf "spack find -l" +example basics/find-dep-mpich "spack find ^mpich" +example basics/find-px "spack find -px" + example basics/find-d-tcl "spack find -d tcl" example basics/find-zlib "spack find zlib-ng" @@ -85,10 +94,6 @@ 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-px "spack find -px" - example basics/compilers "spack compilers" example basics/install-gcc-12.1.0 "spack install gcc@12" diff --git a/tutorial_basics.rst b/tutorial_basics.rst index 10bd6eb5e..9a70dd00b 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -134,28 +134,22 @@ The ``@`` sigil is used to specify versions. Variants ^^^^^^^^ -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. +Besides versions, packages expose build options called variants. +Boolean variants are toggled with the ``+`` (enable) and ``~`` or ``-`` (disable) sigils. +There are two sigils for "disable" to avoid conflicts with shell parsing in different situations. +For example, ``zlib-ng`` has an ``ipo`` variant that enables interprocedural optimization, which we turn on with ``+ipo``. -.. literalinclude:: outputs/basics/hdf5-spec.out +.. literalinclude:: outputs/basics/zlib-ipo.out :language: spec -Assuming we're happy with that configuration, we will now install it. +Not every variant is boolean. +Some take a value, which we set with the same ``name=value`` syntax used for compiler flags. +Here we build ``zlib-ng`` in debug mode through its ``build_type`` variant. -.. literalinclude:: outputs/basics/hdf5.out +.. literalinclude:: outputs/basics/zlib-build-type.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. - -.. literalinclude:: outputs/basics/hdf5-no-mpi.out - :language: spec +The ``ipo`` and ``build_type`` options come from zlib-ng's CMake build system, so requesting either one builds it with CMake rather than its default Autotools build. ^^^^^^^^^^^^^^^^^^^ Direct Dependencies @@ -178,24 +172,6 @@ For example, because a compiler is just another dependency, we can pin the versi .. literalinclude:: outputs/basics/zlib-gcc-10.out :language: spec -^^^^^^^^^^^^^^^^^^^^^^ -Querying Installations -^^^^^^^^^^^^^^^^^^^^^^ - -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. - -.. literalinclude:: outputs/basics/find.out - :language: spec - -.. literalinclude:: outputs/basics/find-lf.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. - ^^^^^^^^^^^^^^^^^^^^^^^ Transitive Dependencies ^^^^^^^^^^^^^^^^^^^^^^^ @@ -214,8 +190,10 @@ Note that a dependency specified by ``^`` is always applied to the root package, .. literalinclude:: outputs/basics/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 -l`` command, each installed build of zlib-ng showed a distinct hash. +We can also refer to packages from the command line by their hash. +Spack generates a unique hash for each spec, reflecting its complete provenance. +Any change to the spec -- such as compiler version, build options, or dependencies -- results in a different hash, and Spack uses these hashes to give every configuration its own installation directory. +Each build of zlib-ng we installed therefore has a distinct hash. Instead of typing out the entire spec, we can depend on a specific build -- for example our ``zlib-ng %gcc@10`` build -- by using the ``/`` sigil followed by its hash. 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. @@ -224,7 +202,7 @@ If the prefix we provide matches more than one installed package, Spack will rep .. literalinclude:: outputs/basics/tcl-zlib-hash.out :language: spec -The ``spack find`` command can also take a ``-d`` flag, which can show dependency information. +The ``spack find`` command can take a ``-d`` flag, which shows dependency information. Note that each package has a top-level entry, even if it also appears as a dependency. .. literalinclude:: outputs/basics/find-ldf.out @@ -241,12 +219,27 @@ We can also use the ``spack graph`` command to view the entire DAG as a graph. Virtual Dependencies ^^^^^^^^^^^^^^^^^^^^ -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. +Let's move on to a more complicated package. +HDF5 is a good example: it depends on MPI, but ``mpi`` is not an ordinary package. +It is a *virtual package* -- an interface that several real packages provide -- and Spack handles dependencies on such interfaces through "virtual dependencies". + +Because HDF5 is more involved than the packages we've installed so far, let's preview the concretized install plan before building, using the ``spack spec`` command (which accepts the same spec syntax as ``spack install``). + +.. literalinclude:: outputs/basics/hdf5-spec.out + :language: spec + +With default settings HDF5 builds against OpenMPI, so installing it also brings in an MPI implementation. + +.. literalinclude:: outputs/basics/hdf5.out + :language: spec + +HDF5 controls this through a boolean ``mpi`` variant; disabling it with ``~mpi`` drops the MPI dependency entirely. + +.. literalinclude:: outputs/basics/hdf5-no-mpi.out + :language: spec + +We might instead want HDF5 built against a *different* MPI implementation. +Actual MPI implementation packages (like ``openmpi``, ``mpich``, ``mvapich2``, etc.) provide the ``mpi`` interface, and 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. @@ -327,6 +320,37 @@ As an aside, the spec syntax can also set compiler flags directly on a build. Spack accepts ``cppflags``, ``cflags``, ``cxxflags``, ``fflags``, ``ldflags``, and ``ldlibs`` -- written like ``cflags="-O3"`` -- and its compiler wrappers inject them into the appropriate compilation commands (values containing spaces must be quoted on the command line). This is an escape hatch for special cases rather than the usual way to configure a build: most of the time a package's variants and build system already select appropriate options, so reach for explicit flags only when you genuinely need them. +.. _basics-tutorial-query: + +---------------------- +Querying Installations +---------------------- + +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/find.out + :language: spec + +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-lf.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. + +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. + +.. 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-px.out + :language: spec + .. _basics-tutorial-uninstall: --------------------- @@ -371,26 +395,6 @@ The ``--all`` (or ``-a``) flag can be used to uninstall all packages matching an .. literalinclude:: outputs/basics/uninstall-specific.out :language: spec ------------------------------ -Advanced ``spack find`` Usage ------------------------------ - -We will go over some additional uses for the ``spack find`` command not already covered in the :ref:`basics-tutorial-install` and :ref:`basics-tutorial-uninstall` sections. - -The ``spack find`` command can accept what we call "anonymous specs." -These are expressions in spec syntax that do not contain a package name. -For example, ``spack find ^mpich`` will return every installed package that depends on MPICH. - -.. literalinclude:: outputs/basics/find-dep-mpich.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 - :language: spec - --------------------- Customizing Compilers --------------------- From d047d4b7d24b9e19dd141db10b5b684f3499c02a Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 16:27:32 +0200 Subject: [PATCH 11/26] Add intro to "Spec Syntax" --- outputs/basics.sh | 12 ++++++------ tutorial_basics.rst | 9 ++++++--- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/outputs/basics.sh b/outputs/basics.sh index 29f7d0ac0..e3373a8b5 100755 --- a/outputs/basics.sh +++ b/outputs/basics.sh @@ -43,12 +43,12 @@ example basics/zlib-ipo "spack install zlib-ng +ipo" example basics/zlib-build-type "spack install zlib-ng build_type=Debug" example basics/zlib-clang "spack install zlib-ng %clang" -example basics/zlib-gcc-10 "spack install zlib-ng %gcc@10" +example basics/zlib-gcc-10 "spack install zlib-ng %gcc@14" example basics/tcl "spack install tcl" example basics/tcl-zlib-clang "spack install tcl ^zlib-ng@2.0.7 %clang" -zlib_hash=$(spack find --format "{hash:3}" zlib-ng %gcc@10) +zlib_hash=$(spack find --format "{hash:3}" zlib-ng %gcc@14) example basics/tcl-zlib-hash "spack install tcl ^/${zlib_hash}" example basics/find-ldf "spack find -ldf" @@ -81,7 +81,7 @@ example basics/find-d-tcl "spack find -d tcl" 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" @@ -96,10 +96,10 @@ echo y | example basics/uninstall-specific "spack uninstall /$trilinos_hash" example basics/compilers "spack compilers" -example basics/install-gcc-12.1.0 "spack install gcc@12" +example basics/install-gcc-12.1.0 "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' +echo y | example basics/compiler-uninstall 'spack uninstall gcc@16' diff --git a/tutorial_basics.rst b/tutorial_basics.rst index 9a70dd00b..607df6848 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -113,7 +113,10 @@ The Spec Syntax --------------- So far we've installed packages with their default configuration. -Spack's "spec" syntax is the interface by which we can request specific configurations of a package. +Spack's *spec syntax* is the interface by which we can request specific configurations 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. +We express each kind of constraint with its own sigil -- ``@`` for versions, ``+`` and ``~`` for variants, ``%`` for direct dependencies such as compilers, and ``^`` for dependencies anywhere in the graph. +The subsections below introduce these one at a time, building up from a bare package name to fully constrained dependency graphs. ^^^^^^^^ Versions @@ -194,7 +197,7 @@ We can also refer to packages from the command line by their hash. Spack generates a unique hash for each spec, reflecting its complete provenance. Any change to the spec -- such as compiler version, build options, or dependencies -- results in a different hash, and Spack uses these hashes to give every configuration its own installation directory. Each build of zlib-ng we installed therefore has a distinct hash. -Instead of typing out the entire spec, we can depend on a specific build -- for example our ``zlib-ng %gcc@10`` build -- by using the ``/`` sigil followed by its hash. +Instead of typing out the entire spec, we can depend on a specific build -- for example our ``zlib-ng %gcc@14`` build -- by using the ``/`` sigil followed by its hash. 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. @@ -415,7 +418,7 @@ Spack can also use compilers built by Spack to compile later packages. .. literalinclude:: outputs/basics/compilers-2.out :language: spec -Now ``gcc@12`` is immediately available to use. +Now ``gcc@16`` is immediately available to use. .. literalinclude:: outputs/basics/spec-zziplib.out :language: spec From ebc16a321e6949b9a1193b0d1f597f657f4e30c9 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 20:25:37 +0200 Subject: [PATCH 12/26] Update output --- outputs/basics.sh | 45 +- outputs/basics/clone.out | 14 +- outputs/basics/compiler-list.out | 8 +- outputs/basics/compiler-uninstall.out | 8 +- outputs/basics/compilers-2.out | 8 +- outputs/basics/compilers.out | 8 +- outputs/basics/find-d-tcl.out | 35 +- outputs/basics/find-d-trilinos.out | 162 +- outputs/basics/find-dep-mpich.out | 6 +- outputs/basics/find-ldf-2.out | 1967 ++-- outputs/basics/find-ldf.out | 255 +- outputs/basics/find-lf-zlib.out | 13 +- outputs/basics/find-lf.out | 40 +- outputs/basics/find-px.out | 34 +- outputs/basics/find-zlib.out | 14 +- outputs/basics/find.out | 35 +- outputs/basics/gmake.out | 38 +- outputs/basics/graph-tcl.out | 31 +- outputs/basics/graph-trilinos.out | 567 +- outputs/basics/hdf5-hl-mpi.out | 185 +- outputs/basics/hdf5-no-mpi.out | 25 +- outputs/basics/hdf5-spec.out | 98 +- outputs/basics/hdf5.out | 379 +- outputs/basics/install-gcc-12.1.0.out | 77 - outputs/basics/install-gcc-16.out | 16 + outputs/basics/list-py.out | 2184 ++--- outputs/basics/list.out | 10842 +++++------------------ outputs/basics/mirror.out | 13 +- outputs/basics/spec-zziplib.out | 139 +- outputs/basics/tcl-zlib-clang.out | 19 +- outputs/basics/tcl-zlib-hash.out | 15 +- outputs/basics/tcl.out | 22 +- outputs/basics/trilinos-hdf5.out | 34 +- outputs/basics/trilinos.out | 72 +- outputs/basics/uninstall-ambiguous.out | 4 +- outputs/basics/uninstall-needed.out | 10 +- outputs/basics/uninstall-r-needed.out | 6 +- outputs/basics/uninstall-specific.out | 8 +- outputs/basics/uninstall-zlib.out | 45 +- outputs/basics/versions-zlib.out | 4 +- outputs/basics/zlib-2.0.7.out | 19 +- outputs/basics/zlib-clang.out | 30 +- outputs/basics/zlib-gcc-10.out | 29 +- tutorial_basics.rst | 8 +- 44 files changed, 4681 insertions(+), 12890 deletions(-) delete mode 100644 outputs/basics/install-gcc-12.1.0.out create mode 100644 outputs/basics/install-gcc-16.out diff --git a/outputs/basics.sh b/outputs/basics.sh index e3373a8b5..000d723c0 100755 --- a/outputs/basics.sh +++ b/outputs/basics.sh @@ -21,51 +21,58 @@ spack config add "config:suppress_gpg_warnings:true" example basics/source-setup ". share/spack/setup-env.sh" +spack repo update + # spack list 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/mirror "spack mirror add --unsigned tutorial /mirror" +#example basics/mirror "spack buildcache keys --install --trust" # NOTE: specs reordered (spec-syntax subsections regrouped; querying moved to its # own section after the spec syntax; zlib-ng variant examples added; hdf5 moved to # the virtual-dependencies block). Outputs under outputs/basics/ need regeneration. example basics/versions-zlib "spack versions zlib-ng" -example basics/zlib-2.0.7 "spack install zlib-ng@2.0.7" - -example basics/zlib-ipo "spack install zlib-ng +ipo" -example basics/zlib-build-type "spack install zlib-ng build_type=Debug" +example --tee basics/zlib-2.0.7 "spack install zlib-ng@2.0.7" -example basics/zlib-clang "spack install zlib-ng %clang" -example basics/zlib-gcc-10 "spack install zlib-ng %gcc@14" +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 "spack install tcl" -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-10 "spack install zlib-ng %gcc@14" +# Capture the hash now, before installing tcl. Installing tcl pulls a +# zlib-ng@2.3.3 %gcc@14 from the build cache as a dependency, which would otherwise +# make this query ambiguous (matching both the cache dependency and our explicit +# %gcc@14 build above). zlib_hash=$(spack find --format "{hash:3}" zlib-ng %gcc@14) -example basics/tcl-zlib-hash "spack install tcl ^/${zlib_hash}" + +example --tee basics/tcl "spack install tcl" +example --tee basics/tcl-zlib-clang "spack install tcl ^zlib-ng@2.0.7 %clang" + +example --tee basics/tcl-zlib-hash "spack install tcl ^/${zlib_hash}" example basics/find-ldf "spack find -ldf" example basics/graph-tcl "spack graph tcl" example basics/hdf5-spec "spack spec hdf5" -example basics/hdf5 "spack install hdf5" -example basics/hdf5-no-mpi "spack install hdf5~mpi" +example --tee basics/hdf5 "spack install hdf5" +example --tee basics/hdf5-no-mpi "spack install hdf5~mpi" -example basics/hdf5-hl-mpi "spack install hdf5+hl+mpi ^mpich" +example --tee 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 --tee basics/trilinos "spack install trilinos" -example basics/trilinos-hdf5 "spack install trilinos +hdf5 ^hdf5+hl+mpi ^mpich" +example --tee basics/trilinos-hdf5 "spack install trilinos +hdf5 ^hdf5+hl+mpi ^mpich" example basics/find-d-trilinos "spack find -d trilinos" @@ -81,7 +88,7 @@ example basics/find-d-tcl "spack find -d tcl" example basics/find-zlib "spack find zlib-ng" -example basics/uninstall-zlib "spack uninstall -y zlib-ng %gcc@14" +#example basics/uninstall-zlib "spack uninstall -y zlib-ng %gcc@14" example basics/find-lf-zlib "spack find -lf zlib-ng" @@ -96,7 +103,7 @@ echo y | example basics/uninstall-specific "spack uninstall /$trilinos_hash" example basics/compilers "spack compilers" -example basics/install-gcc-12.1.0 "spack install gcc@16" +example --tee basics/install-gcc-16 "spack install gcc@16" example basics/compilers-2 "spack compilers" diff --git a/outputs/basics/clone.out b/outputs/basics/clone.out index 89820a1c8..a3479edd0 100644 --- a/outputs/basics/clone.out +++ b/outputs/basics/clone.out @@ -1,9 +1,9 @@ -$ git clone --depth=2 --branch=releases/v1.1 https://github.com/spack/spack.git ~/spack +$ git clone --depth=2 --branch=releases/v1.2 https://github.com/spack/spack.git ~/spack Cloning into '/home/spack/spack'... -remote: Enumerating objects: 2340, done.K -remote: Counting objects: 100% (2340/2340), done.K -remote: Compressing objects: 100% (1583/1583), done.K -remote:nTotale2340 (delta2311),3reused 1329 (delta 237), pack-reused 0 (from 0)K -Receiving objects: 100% (2340/2340), 5.30 MiB | 20.25 MiB/s, done. -Resolving deltas: 100% (311/311), done. +remote: Enumerating objects: 2411, done.K +remote: Counting objects: 100% (2411/2411), done.K +remote: Compressing objects: 100% (1617/1617), done.K +remote:nTotale2411 (delta2326),4reused 1328 (delta 249), pack-reused 0 (from 0)K +Receiving objects: 100% (2411/2411), 5.48 MiB | 12.31 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 d6743d02b..025c50b8f 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 9078ef9a0..9588ed052 100644 --- a/outputs/basics/compiler-uninstall.out +++ b/outputs/basics/compiler-uninstall.out @@ -1,6 +1,6 @@ -$ spack uninstall gcc@12 +$ spack uninstall gcc@16 y - -- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- - fmnvqo4 gcc@12.3.0 + -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- + vlwdxlj gcc@16.1.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 +==> 1 packages will be uninstalled. Do you want to proceed? [y/N] ==> 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 d77df179c..00c8f9f5d 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 index d6743d02b..025c50b8f 100644 --- a/outputs/basics/compilers.out +++ b/outputs/basics/compilers.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/find-d-tcl.out b/outputs/basics/find-d-tcl.out index 80044ded2..52fa61e26 100644 --- a/outputs/basics/find-d-tcl.out +++ b/outputs/basics/find-d-tcl.out @@ -1,30 +1,21 @@ $ 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 - gmake@4.4.1 - gcc@11.4.0 - gcc-runtime@11.4.0 - llvm@14.0.0 - zlib-ng@2.0.7 - - --- 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 + compiler-wrapper@1.1.0 + gcc@15.2.0 + gcc-runtime@15.2.0 + glibc@2.43 gmake@4.4.1 zlib-ng@2.0.7 + llvm@21.1.8 tcl@8.6.17 - compiler-wrapper@1.0 - gcc@11.4.0 - gcc-runtime@11.4.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 - zlib-ng@2.2.4 + gcc@14.3.0 + zlib-ng@2.3.3 -==> 3 installed packages +==> 2 installed packages diff --git a/outputs/basics/find-d-trilinos.out b/outputs/basics/find-d-trilinos.out index 9af4da040..75ba237a5 100644 --- a/outputs/basics/find-d-trilinos.out +++ b/outputs/basics/find-d-trilinos.out @@ -1,118 +1,102 @@ $ 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 +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx,fortran=gcc@15.2.0 ------ +trilinos@17.1.1 + cmake@3.31.11 + curl@8.20.0 + nghttp2@1.67.1 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 + openssl@3.6.1 + ca-certificates-mozilla@2026-03-19 + ncurses@6.6 + zlib-ng@2.3.3 + compiler-wrapper@1.1.0 + gcc@15.2.0 + gcc-runtime@15.2.0 + glibc@2.43 gmake@4.4.1 - hwloc@2.12.2 + hwloc@2.13.0 libpciaccess@0.17 - util-macros@1.20.1 - libxml2@2.13.5 + util-macros@1.20.2 + libxml2@2.15.3 libiconv@1.18 - xz@5.6.3 + xz@5.8.3 pkgconf@2.5.1 - kokkos@4.5.01 - kokkos-kernels@4.5.01 - openblas@0.3.30 - openmpi@5.0.8 + kokkos@5.1.1 + kokkos-kernels@5.1.1 + openblas@0.3.33 + openmpi@5.0.10 autoconf@2.72 - m4@1.4.20 - libsigsegv@2.14 - automake@1.16.5 + m4@1.4.21 + libsigsegv@2.15 + automake@1.18.1 libevent@2.1.12 - libtool@2.4.7 + libtool@2.5.4 + file@5.46 + zstd@1.5.7 findutils@4.10.0 - gettext@0.23.1 + gettext@1.0 tar@1.35 pigz@2.8 - zstd@1.5.7 - numactl@2.0.18 - openssh@9.9p1 - krb5@1.21.3 + numactl@2.0.19 + openssh@10.3p1 + krb5@1.22.2 bison@3.8.2 - libedit@3.1-20240808 - libxcrypt@4.4.38 + libedit@3.1-20251016 + libxcrypt@4.5.2 perl@5.42.0 berkeley-db@18.1.40 bzip2@1.0.8 - gdbm@1.25 + gdbm@1.26 readline@8.3 - pmix@6.0.0 - prrte@4.0.0 + less@692 + pmix@6.1.0 + prrte@4.1.0 flex@2.6.3 -trilinos@16.1.0 - cmake@3.31.9 - curl@8.15.0 - nghttp2@1.48.0 +trilinos@17.1.1 + cmake@3.31.11 + curl@8.20.0 + nghttp2@1.67.1 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 + openssl@3.6.1 + ca-certificates-mozilla@2026-03-19 + perl@5.42.0 + berkeley-db@18.1.40 + less@692 + ncurses@6.6 + zlib-ng@2.3.3 + compiler-wrapper@1.1.0 + gcc@15.2.0 + gcc-runtime@15.2.0 + glibc@2.43 gmake@4.4.1 hdf5@1.14.6 pkgconf@2.5.1 - hwloc@2.12.2 + hwloc@2.13.0 libpciaccess@0.17 - util-macros@1.20.1 - libxml2@2.13.5 + util-macros@1.20.2 + libxml2@2.15.3 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 + xz@5.8.3 + kokkos@5.1.1 + kokkos-kernels@5.1.1 + mpich@5.0.1 findutils@4.10.0 - gettext@0.23.1 - libxml2@2.13.5 + gettext@1.0 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 + libfabric@2.5.1 + python@3.14.5 + bzip2@1.0.8 + expat@2.8.1 + libbsd@0.12.2 + libmd@1.1.0 + gdbm@1.26 + libffi@3.5.2 + readline@8.3 + sqlite@3.53.1 + util-linux-uuid@2.41 + zstd@1.5.7 + openblas@0.3.33 ==> 2 installed packages diff --git a/outputs/basics/find-dep-mpich.out b/outputs/basics/find-dep-mpich.out index 3a4b7bc32..2ca11eee3 100644 --- a/outputs/basics/find-dep-mpich.out +++ b/outputs/basics/find-dep-mpich.out @@ -1,7 +1,7 @@ $ spack find ^mpich --- linux-ubuntu22.04-x86_64_v3 / %c,cxx,fortran=gcc@11.4.0 ------ -trilinos@16.1.0 +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx,fortran=gcc@15.2.0 ------ +trilinos@17.1.1 --- 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 diff --git a/outputs/basics/find-ldf-2.out b/outputs/basics/find-ldf-2.out index 8afd64cf4..02a0b6c60 100644 --- a/outputs/basics/find-ldf-2.out +++ b/outputs/basics/find-ldf-2.out @@ -1,1262 +1,707 @@ $ spack find -ldf --- linux-ubuntu22.04-x86_64 / no compilers ---------------------- -rpw3buk gcc@11.4.0 - -vjnqll7 glibc@2.35 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx,fortran=gcc@11.4.0 ------ -amwozyi mpich@4.3.2 -ntccuj2 compiler-wrapper@1.0 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -5trxrsw libxml2@2.13.5 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -pmdeyoy hwloc@2.12.2 -ncdxq3j ncurses@6.5-20250705 -n2l4cks libfabric@2.3.1 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -lguldtj libxml2@2.13.5 -qtepnkr libiconv@1.18 -yzaocbs xz@5.6.3 -zk6kesh zlib-ng@2.2.4 -f4qiprw pkgconf@2.5.1 -zuutzfx yaksa@0.4 -r3ant5t autoconf@2.72 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -6ib4pvm automake@1.16.5 -yt7ajy4 libtool@2.4.7 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -bs5ujst libsigsegv@2.14 -pazbuxs python@3.14.0 -7yr5v6w expat@2.7.3 -ucrhsyw libbsd@0.12.2 -gth3ii5 libmd@1.1.0 -aq7qwy6 gdbm@1.25 -xxxc56n gettext@0.23.1 -e3ajmyq tar@1.35 -zjrnsfo pigz@2.8 -zgro4tw libffi@3.5.2 -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -c6d2zlj readline@8.3 -a4zeurp sqlite@3.50.4 -n45otd3 util-linux-uuid@2.41 -foiizhd zstd@1.5.7 - -tqxbnvo openmpi@5.0.8 -fgsf5ij autoconf@2.72 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -bs5ujst libsigsegv@2.14 -pzmnwzm automake@1.16.5 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -4hos372 hwloc@2.12.2 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -5trxrsw libxml2@2.13.5 -qtepnkr libiconv@1.18 -yzaocbs xz@5.6.3 -ncdxq3j ncurses@6.5-20250705 -lprginh libevent@2.1.12 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -yt7ajy4 libtool@2.4.7 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzbm5q6 numactl@2.0.18 -cxdcxo5 openssh@9.9p1 -hnmy4fw krb5@1.21.3 -n7yzkyl bison@3.8.2 -hdzcfgi libedit@3.1-20240808 -yiij42p libxcrypt@4.4.38 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -f4qiprw pkgconf@2.5.1 -yqlblh6 pmix@6.0.0 -buin62m prrte@4.0.0 -gmhq65u flex@2.6.3 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=clang@14.0.0 ------------ -ibbzvxt tcl@8.6.17 -ntccuj2 compiler-wrapper@1.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qr2e4rd llvm@14.0.0 -um7p6tr zlib-ng@2.0.7 - -um7p6tr zlib-ng@2.0.7 -ntccuj2 compiler-wrapper@1.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qr2e4rd llvm@14.0.0 - -ct2r7xm zlib-ng@2.2.4 -ntccuj2 compiler-wrapper@1.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qr2e4rd llvm@14.0.0 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@10.5.0 -------------- -updxeye zlib-ng@2.2.4 -ntccuj2 compiler-wrapper@1.0 -ntkvysy gcc@10.5.0 -ahapkrs gcc-runtime@10.5.0 -qg7qyaz glibc@2.35 -ufbescp gmake@4.4.1 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- -vdgigsw berkeley-db@18.1.40 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -n7yzkyl bison@3.8.2 -ntccuj2 compiler-wrapper@1.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 - -dmmnd4u cmake@3.31.9 -ntccuj2 compiler-wrapper@1.0 -jtps3jq curl@8.15.0 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -f4qiprw pkgconf@2.5.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ncdxq3j ncurses@6.5-20250705 -zk6kesh zlib-ng@2.2.4 - -ivvor7v cmake@3.31.9 -ntccuj2 compiler-wrapper@1.0 -isdtvvd curl@8.15.0 -txa2olx libssh2@1.11.1 -yzaocbs xz@5.6.3 -bz3ghzh mbedtls@2.28.9 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -f4qiprw pkgconf@2.5.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ncdxq3j ncurses@6.5-20250705 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -jtps3jq curl@8.15.0 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 - -isdtvvd curl@8.15.0 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -txa2olx libssh2@1.11.1 -yzaocbs xz@5.6.3 -bz3ghzh mbedtls@2.28.9 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -7yr5v6w expat@2.7.3 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ucrhsyw libbsd@0.12.2 -gth3ii5 libmd@1.1.0 - -gmhq65u flex@2.6.3 -n7yzkyl bison@3.8.2 -ntccuj2 compiler-wrapper@1.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -5trxrsw libxml2@2.13.5 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ncdxq3j ncurses@6.5-20250705 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 - -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 -5trxrsw libxml2@2.13.5 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ncdxq3j ncurses@6.5-20250705 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 - -xxxc56n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 -lguldtj libxml2@2.13.5 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 -ncdxq3j ncurses@6.5-20250705 -e3ajmyq tar@1.35 -zjrnsfo pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 - -4hos372 hwloc@2.12.2 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -5trxrsw libxml2@2.13.5 -qtepnkr libiconv@1.18 -yzaocbs xz@5.6.3 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 - -pmdeyoy hwloc@2.12.2 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -lguldtj libxml2@2.13.5 -qtepnkr libiconv@1.18 -yzaocbs xz@5.6.3 -zk6kesh zlib-ng@2.2.4 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 - -hnmy4fw krb5@1.21.3 -n7yzkyl bison@3.8.2 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 -ntccuj2 compiler-wrapper@1.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -irvryts findutils@4.10.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -5trxrsw libxml2@2.13.5 -ncdxq3j ncurses@6.5-20250705 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -hdzcfgi libedit@3.1-20240808 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -f4qiprw pkgconf@2.5.1 - -zgro4tw libffi@3.5.2 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -lxvpwti m4@1.4.20 -ntccuj2 compiler-wrapper@1.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -bs5ujst libsigsegv@2.14 - -ncdxq3j ncurses@6.5-20250705 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -f4qiprw pkgconf@2.5.1 - -ft5kpbd nghttp2@1.48.0 -ntccuj2 compiler-wrapper@1.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -f4qiprw pkgconf@2.5.1 - -cxdcxo5 openssh@9.9p1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -hnmy4fw krb5@1.21.3 -n7yzkyl bison@3.8.2 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -5trxrsw libxml2@2.13.5 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -f4qiprw pkgconf@2.5.1 -hdzcfgi libedit@3.1-20240808 -yiij42p libxcrypt@4.4.38 -ncdxq3j ncurses@6.5-20250705 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 - -pazbuxs python@3.14.0 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -ntccuj2 compiler-wrapper@1.0 -7yr5v6w expat@2.7.3 -ucrhsyw libbsd@0.12.2 -gth3ii5 libmd@1.1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -aq7qwy6 gdbm@1.25 -xxxc56n gettext@0.23.1 -qtepnkr libiconv@1.18 -lguldtj libxml2@2.13.5 -e3ajmyq tar@1.35 -zjrnsfo pigz@2.8 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -zgro4tw libffi@3.5.2 -ncdxq3j ncurses@6.5-20250705 -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -f4qiprw pkgconf@2.5.1 -c6d2zlj readline@8.3 -a4zeurp sqlite@3.50.4 -n45otd3 util-linux-uuid@2.41 -yzaocbs xz@5.6.3 -zk6kesh zlib-ng@2.2.4 -foiizhd zstd@1.5.7 - -x74vmgr tcl@8.6.17 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -tsq4fjj tcl@8.6.17 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -zk6kesh zlib-ng@2.2.4 - -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -zk6kesh zlib-ng@2.2.4 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -foiizhd zstd@1.5.7 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@10.5.0 ------------------ -ufbescp gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ntkvysy gcc@10.5.0 -ahapkrs gcc-runtime@10.5.0 -qg7qyaz glibc@2.35 - - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@11.4.0 ------------------ -pzmnwzm automake@1.16.5 -fgsf5ij autoconf@2.72 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -bs5ujst libsigsegv@2.14 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -6ib4pvm automake@1.16.5 -r3ant5t autoconf@2.72 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -bs5ujst libsigsegv@2.14 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 - -x7t4naj bzip2@1.0.8 -ntccuj2 compiler-wrapper@1.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -cih4xrz diffutils@3.12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 - -irvryts findutils@4.10.0 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -5trxrsw libxml2@2.13.5 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ncdxq3j ncurses@6.5-20250705 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -aq7qwy6 gdbm@1.25 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 - -vsq3oi3 gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -rpw3buk gcc@11.4.0 -qmbrryi gcc-runtime@11.4.0 -vjnqll7 glibc@2.35 - -4obn7cg gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 - -7mm6knn hdf5@1.14.6 -ivvor7v cmake@3.31.9 -isdtvvd curl@8.15.0 -txa2olx libssh2@1.11.1 -yzaocbs xz@5.6.3 -bz3ghzh mbedtls@2.28.9 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -vllfzb7 hdf5@1.14.6 -ivvor7v cmake@3.31.9 -isdtvvd curl@8.15.0 -txa2olx libssh2@1.11.1 -yzaocbs xz@5.6.3 -bz3ghzh mbedtls@2.28.9 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -ncdxq3j ncurses@6.5-20250705 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -tqxbnvo openmpi@5.0.8 -fgsf5ij autoconf@2.72 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 -pzmnwzm automake@1.16.5 -4hos372 hwloc@2.12.2 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -5trxrsw libxml2@2.13.5 -qtepnkr libiconv@1.18 -lprginh libevent@2.1.12 -yt7ajy4 libtool@2.4.7 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzbm5q6 numactl@2.0.18 -cxdcxo5 openssh@9.9p1 -hnmy4fw krb5@1.21.3 -n7yzkyl bison@3.8.2 -hdzcfgi libedit@3.1-20240808 -yiij42p libxcrypt@4.4.38 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -yqlblh6 pmix@6.0.0 -buin62m prrte@4.0.0 -gmhq65u flex@2.6.3 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -gdk3ghc hdf5@1.14.6 -dmmnd4u cmake@3.31.9 -jtps3jq curl@8.15.0 -ft5kpbd nghttp2@1.48.0 -cih4xrz diffutils@3.12 -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -ncdxq3j ncurses@6.5-20250705 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -amwozyi mpich@4.3.2 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -5trxrsw libxml2@2.13.5 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -pmdeyoy hwloc@2.12.2 -n2l4cks libfabric@2.3.1 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -lguldtj libxml2@2.13.5 -qtepnkr libiconv@1.18 -yzaocbs xz@5.6.3 -zuutzfx yaksa@0.4 -r3ant5t autoconf@2.72 -6ib4pvm automake@1.16.5 -yt7ajy4 libtool@2.4.7 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 -pazbuxs python@3.14.0 -7yr5v6w expat@2.7.3 -ucrhsyw libbsd@0.12.2 -gth3ii5 libmd@1.1.0 -xxxc56n gettext@0.23.1 -e3ajmyq tar@1.35 -zjrnsfo pigz@2.8 -zgro4tw libffi@3.5.2 -c6d2zlj readline@8.3 -a4zeurp sqlite@3.50.4 -n45otd3 util-linux-uuid@2.41 -foiizhd zstd@1.5.7 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 - -ucrhsyw libbsd@0.12.2 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -gth3ii5 libmd@1.1.0 - -hdzcfgi libedit@3.1-20240808 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 - -lprginh libevent@2.1.12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -n2l4cks libfabric@2.3.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -qtepnkr libiconv@1.18 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -gth3ii5 libmd@1.1.0 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -txbwcin libpciaccess@0.17 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -f4qiprw pkgconf@2.5.1 -hwxnwvm util-macros@1.20.1 - -bs5ujst libsigsegv@2.14 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -txa2olx libssh2@1.11.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -bz3ghzh mbedtls@2.28.9 -yzaocbs xz@5.6.3 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -yt7ajy4 libtool@2.4.7 -ntccuj2 compiler-wrapper@1.0 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -x7t4naj bzip2@1.0.8 -qtepnkr libiconv@1.18 -5trxrsw libxml2@2.13.5 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ncdxq3j ncurses@6.5-20250705 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -bs5ujst libsigsegv@2.14 - -yiij42p libxcrypt@4.4.38 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -5trxrsw libxml2@2.13.5 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 -f4qiprw pkgconf@2.5.1 -yzaocbs xz@5.6.3 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -lguldtj libxml2@2.13.5 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 -f4qiprw pkgconf@2.5.1 -yzaocbs xz@5.6.3 -zk6kesh zlib-ng@2.2.4 - -bz3ghzh mbedtls@2.28.9 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -yzbm5q6 numactl@2.0.18 -fgsf5ij autoconf@2.72 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -pzmnwzm automake@1.16.5 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -yt7ajy4 libtool@2.4.7 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -5trxrsw libxml2@2.13.5 -f4qiprw pkgconf@2.5.1 -ncdxq3j ncurses@6.5-20250705 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -yzaocbs xz@5.6.3 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -bs5ujst libsigsegv@2.14 - -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -zk6kesh zlib-ng@2.2.4 - -kaz756e pigz@2.8 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -zjrnsfo pigz@2.8 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -zk6kesh zlib-ng@2.2.4 - -f4qiprw pkgconf@2.5.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -yqlblh6 pmix@6.0.0 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -4hos372 hwloc@2.12.2 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -5trxrsw libxml2@2.13.5 -qtepnkr libiconv@1.18 -yzaocbs xz@5.6.3 -ncdxq3j ncurses@6.5-20250705 -lprginh libevent@2.1.12 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -yt7ajy4 libtool@2.4.7 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -bs5ujst libsigsegv@2.14 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -buin62m prrte@4.0.0 -fgsf5ij autoconf@2.72 -pzmnwzm automake@1.16.5 -ntccuj2 compiler-wrapper@1.0 -gmhq65u flex@2.6.3 -n7yzkyl bison@3.8.2 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -foiizhd zstd@1.5.7 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -4hos372 hwloc@2.12.2 -txbwcin libpciaccess@0.17 -hwxnwvm util-macros@1.20.1 -5trxrsw libxml2@2.13.5 -yzaocbs xz@5.6.3 -ncdxq3j ncurses@6.5-20250705 -lprginh libevent@2.1.12 -gv7wpik openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -yt7ajy4 libtool@2.4.7 -lxvpwti m4@1.4.20 -bs5ujst libsigsegv@2.14 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -f4qiprw pkgconf@2.5.1 -yqlblh6 pmix@6.0.0 - -c6d2zlj readline@8.3 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 - -a4zeurp sqlite@3.50.4 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 - -lfgvgva tar@1.35 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 -kaz756e pigz@2.8 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -yzaocbs xz@5.6.3 -foiizhd zstd@1.5.7 - -e3ajmyq tar@1.35 -x7t4naj bzip2@1.0.8 -cih4xrz diffutils@3.12 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qtepnkr libiconv@1.18 -zjrnsfo pigz@2.8 -zk6kesh zlib-ng@2.2.4 -yzaocbs xz@5.6.3 -foiizhd zstd@1.5.7 - -n45otd3 util-linux-uuid@2.41 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -f4qiprw pkgconf@2.5.1 - -yzaocbs xz@5.6.3 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -zuutzfx yaksa@0.4 -r3ant5t autoconf@2.72 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -6ib4pvm automake@1.16.5 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -yt7ajy4 libtool@2.4.7 -irvryts findutils@4.10.0 -cakgj4n gettext@0.23.1 -5trxrsw libxml2@2.13.5 -qlavhjb zlib-ng@2.0.7 cflags=-O3 -lfgvgva tar@1.35 -kaz756e pigz@2.8 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -bs5ujst libsigsegv@2.14 -pazbuxs python@3.14.0 -x7t4naj bzip2@1.0.8 -7yr5v6w expat@2.7.3 -ucrhsyw libbsd@0.12.2 -gth3ii5 libmd@1.1.0 -aq7qwy6 gdbm@1.25 -xxxc56n gettext@0.23.1 -lguldtj libxml2@2.13.5 -e3ajmyq tar@1.35 -zjrnsfo pigz@2.8 -zgro4tw libffi@3.5.2 -ncdxq3j ncurses@6.5-20250705 -oa4vrqq openssl@3.6.0 -etqlnw5 ca-certificates-mozilla@2025-08-12 -f4qiprw pkgconf@2.5.1 -c6d2zlj readline@8.3 -a4zeurp sqlite@3.50.4 -n45otd3 util-linux-uuid@2.41 -yzaocbs xz@5.6.3 -zk6kesh zlib-ng@2.2.4 -foiizhd zstd@1.5.7 - - --- linux-ubuntu22.04-x86_64_v3 / no compilers ------------------- -fgsf5ij autoconf@2.72 -4obn7cg gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -bs5ujst libsigsegv@2.14 -62kt5y4 perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -r3ant5t autoconf@2.72 -4obn7cg gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -lxvpwti m4@1.4.20 -cih4xrz diffutils@3.12 -qtepnkr libiconv@1.18 -bs5ujst libsigsegv@2.14 -cvuukni perl@5.42.0 -vdgigsw berkeley-db@18.1.40 -x7t4naj bzip2@1.0.8 -aq7qwy6 gdbm@1.25 -c6d2zlj readline@8.3 -ncdxq3j ncurses@6.5-20250705 -f4qiprw pkgconf@2.5.1 -zk6kesh zlib-ng@2.2.4 - -etqlnw5 ca-certificates-mozilla@2025-08-12 - -ntccuj2 compiler-wrapper@1.0 - -ntkvysy gcc@10.5.0 - -ml7cem5 gcc@11.4.0 - -ahapkrs gcc-runtime@10.5.0 -ntkvysy gcc@10.5.0 -qg7qyaz glibc@2.35 - -qmbrryi gcc-runtime@11.4.0 -rpw3buk gcc@11.4.0 -vjnqll7 glibc@2.35 - -nokfxva gcc-runtime@11.4.0 -ml7cem5 gcc@11.4.0 -qg7qyaz glibc@2.35 - -qg7qyaz glibc@2.35 - -qr2e4rd llvm@14.0.0 - -hwxnwvm util-macros@1.20.1 -4obn7cg gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 - -==> 87 installed packages +-- 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 +mmywg7x compiler-wrapper@1.1.0 +punbqrx findutils@4.10.0 +sle3ix4 gettext@1.0 +f5xe4px tar@1.35 +afklka7 pigz@2.8 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +ujctyey hwloc@2.13.0 +ekvivpv ncurses@6.6 +itb4a2s libfabric@2.5.1 +qzkk5ym libpciaccess@0.17 +o5fy6wf util-macros@1.20.2 +ujlg2ua libxml2@2.15.3 +vbwvgwx libiconv@1.18 +hhjyyqy xz@5.8.3 +g72d7i3 zlib-ng@2.3.3 +yvl6jpi pkgconf@2.5.1 +derywaq python@3.14.5 +cbtgjrh bzip2@1.0.8 +ao2onuz diffutils@3.12 +d462mhw expat@2.8.1 +7o3mv6c libbsd@0.12.2 +yvvn7mu libmd@1.1.0 +cq4dkuc gdbm@1.26 +aiceosz libffi@3.5.2 +33yozp5 openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +bvphs3b perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +ohmdb2l less@692 +k25xiih readline@8.3 +unjd5da sqlite@3.53.1 +clufswx util-linux-uuid@2.41 +63aruxk zstd@1.5.7 + +qfut5qq openmpi@5.0.10 +jo3eg4r autoconf@2.72 +y6uqrto m4@1.4.21 +ao2onuz diffutils@3.12 +phcmfqk libsigsegv@2.15 +yhkgfai automake@1.18.1 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +ujctyey hwloc@2.13.0 +qzkk5ym libpciaccess@0.17 +o5fy6wf util-macros@1.20.2 +ujlg2ua libxml2@2.15.3 +vbwvgwx libiconv@1.18 +hhjyyqy xz@5.8.3 +ekvivpv ncurses@6.6 +oopqoag libevent@2.1.12 +33yozp5 openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +3gdq456 libtool@2.5.4 +mguwetc file@5.46 +63aruxk zstd@1.5.7 +punbqrx findutils@4.10.0 +sle3ix4 gettext@1.0 +f5xe4px tar@1.35 +afklka7 pigz@2.8 +2t2useu numactl@2.0.19 +m6yx5j3 openssh@10.3p1 +ldqeqfw krb5@1.22.2 +lbkegpi bison@3.8.2 +uwyh3xy libedit@3.1-20251016 +bkzcu2s libxcrypt@4.5.2 +bvphs3b perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cbtgjrh bzip2@1.0.8 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +yvl6jpi pkgconf@2.5.1 +ycyqykw pmix@6.1.0 +nldxmxw prrte@4.1.0 +vwo3ajm flex@2.6.3 +g72d7i3 zlib-ng@2.3.3 + + +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=clang@21.1.8 ------------ +kie72sp zlib-ng@2.0.7 +mmywg7x compiler-wrapper@1.1.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +px4mv6l llvm@21.1.8 + +5dji3nx zlib-ng@2.3.3 +mmywg7x compiler-wrapper@1.1.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +px4mv6l llvm@21.1.8 + + +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- +slhcf4i zlib-ng@2.3.3 +mmywg7x compiler-wrapper@1.1.0 +5zrvmb3 gcc@14.3.0 +xm76mt3 gcc-runtime@15.2.0 +yjlog5x gcc@15.2.0 +yc4n2pp glibc@2.43 +ofpkua6 gmake@4.4.1 + + +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- +sle3ix4 gettext@1.0 +cbtgjrh bzip2@1.0.8 +ao2onuz diffutils@3.12 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +vbwvgwx libiconv@1.18 +ujlg2ua libxml2@2.15.3 +yvl6jpi pkgconf@2.5.1 +g72d7i3 zlib-ng@2.3.3 +ekvivpv ncurses@6.6 +f5xe4px tar@1.35 +afklka7 pigz@2.8 +63aruxk zstd@1.5.7 +hhjyyqy xz@5.8.3 + +ujctyey hwloc@2.13.0 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +qzkk5ym libpciaccess@0.17 +o5fy6wf util-macros@1.20.2 +ujlg2ua libxml2@2.15.3 +vbwvgwx libiconv@1.18 +hhjyyqy xz@5.8.3 +g72d7i3 zlib-ng@2.3.3 +ekvivpv ncurses@6.6 +yvl6jpi pkgconf@2.5.1 + +ldqeqfw krb5@1.22.2 +lbkegpi bison@3.8.2 +y6uqrto m4@1.4.21 +phcmfqk libsigsegv@2.15 +mmywg7x compiler-wrapper@1.1.0 +ao2onuz diffutils@3.12 +vbwvgwx libiconv@1.18 +punbqrx findutils@4.10.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +sle3ix4 gettext@1.0 +cbtgjrh bzip2@1.0.8 +ujlg2ua libxml2@2.15.3 +ekvivpv ncurses@6.6 +f5xe4px tar@1.35 +afklka7 pigz@2.8 +63aruxk zstd@1.5.7 +hhjyyqy xz@5.8.3 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +uwyh3xy libedit@3.1-20251016 +33yozp5 openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +g72d7i3 zlib-ng@2.3.3 +bvphs3b perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +yvl6jpi pkgconf@2.5.1 + +ekvivpv ncurses@6.6 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +yvl6jpi pkgconf@2.5.1 + +m6yx5j3 openssh@10.3p1 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +ldqeqfw krb5@1.22.2 +lbkegpi bison@3.8.2 +y6uqrto m4@1.4.21 +phcmfqk libsigsegv@2.15 +ao2onuz diffutils@3.12 +vbwvgwx libiconv@1.18 +punbqrx findutils@4.10.0 +sle3ix4 gettext@1.0 +cbtgjrh bzip2@1.0.8 +ujlg2ua libxml2@2.15.3 +f5xe4px tar@1.35 +afklka7 pigz@2.8 +63aruxk zstd@1.5.7 +hhjyyqy xz@5.8.3 +bvphs3b perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +yvl6jpi pkgconf@2.5.1 +uwyh3xy libedit@3.1-20251016 +bkzcu2s libxcrypt@4.5.2 +ekvivpv ncurses@6.6 +33yozp5 openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +g72d7i3 zlib-ng@2.3.3 + +33yozp5 openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +bvphs3b perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cbtgjrh bzip2@1.0.8 +ao2onuz diffutils@3.12 +vbwvgwx libiconv@1.18 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +ekvivpv ncurses@6.6 +yvl6jpi pkgconf@2.5.1 +g72d7i3 zlib-ng@2.3.3 + +53i7gbs tcl@8.6.17 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +kie72sp zlib-ng@2.0.7 +px4mv6l llvm@21.1.8 + +jmv6sxq tcl@8.6.17 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +ofpkua6 gmake@4.4.1 +5zrvmb3 gcc@14.3.0 +slhcf4i zlib-ng@2.3.3 + +aeoqp4e zlib-ng@2.0.7 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 + +g72d7i3 zlib-ng@2.3.3 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 + +t7jnrlg zlib-ng@2.3.3 +4hb3wtk cmake@3.31.11 +rt5ujla curl@8.20.0 +4lyasaz nghttp2@1.67.1 +ao2onuz diffutils@3.12 +vbwvgwx libiconv@1.18 +drmc4rl openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +ylggcb5 perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cbtgjrh bzip2@1.0.8 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +yvl6jpi pkgconf@2.5.1 +ekvivpv ncurses@6.6 +4vg46ge zlib@1.3.2 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 + +6l3ycpy zlib-ng@2.3.3 +4hb3wtk cmake@3.31.11 +rt5ujla curl@8.20.0 +4lyasaz nghttp2@1.67.1 +ao2onuz diffutils@3.12 +vbwvgwx libiconv@1.18 +drmc4rl openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +ylggcb5 perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cbtgjrh bzip2@1.0.8 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +yvl6jpi pkgconf@2.5.1 +ekvivpv ncurses@6.6 +4vg46ge zlib@1.3.2 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 + +63aruxk zstd@1.5.7 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 + + +-- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ +cbtgjrh bzip2@1.0.8 +mmywg7x compiler-wrapper@1.1.0 +ao2onuz diffutils@3.12 +vbwvgwx libiconv@1.18 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 + +cdyuto2 gmake@4.4.1 +mmywg7x compiler-wrapper@1.1.0 +cl66sen gcc@15.2.0 +yhhe2we gcc-runtime@15.2.0 +ublhg65 glibc@2.43 + +as6mmcj hdf5@1.14.6 +a4wqsr7 cmake@3.31.11 +j2fa7xl curl@8.20.0 +4lyasaz nghttp2@1.67.1 +ao2onuz diffutils@3.12 +vbwvgwx libiconv@1.18 +33yozp5 openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +bvphs3b perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cbtgjrh bzip2@1.0.8 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +ekvivpv ncurses@6.6 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +yvl6jpi pkgconf@2.5.1 +g72d7i3 zlib-ng@2.3.3 + +7cwv3st hdf5@1.14.6 +a4wqsr7 cmake@3.31.11 +j2fa7xl curl@8.20.0 +4lyasaz nghttp2@1.67.1 +ao2onuz diffutils@3.12 +33yozp5 openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +ekvivpv ncurses@6.6 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +qfut5qq openmpi@5.0.10 +jo3eg4r autoconf@2.72 +y6uqrto m4@1.4.21 +phcmfqk libsigsegv@2.15 +yhkgfai automake@1.18.1 +ujctyey hwloc@2.13.0 +qzkk5ym libpciaccess@0.17 +o5fy6wf util-macros@1.20.2 +ujlg2ua libxml2@2.15.3 +vbwvgwx libiconv@1.18 +hhjyyqy xz@5.8.3 +oopqoag libevent@2.1.12 +3gdq456 libtool@2.5.4 +mguwetc file@5.46 +63aruxk zstd@1.5.7 +punbqrx findutils@4.10.0 +sle3ix4 gettext@1.0 +f5xe4px tar@1.35 +afklka7 pigz@2.8 +2t2useu numactl@2.0.19 +m6yx5j3 openssh@10.3p1 +ldqeqfw krb5@1.22.2 +lbkegpi bison@3.8.2 +uwyh3xy libedit@3.1-20251016 +bkzcu2s libxcrypt@4.5.2 +bvphs3b perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cbtgjrh bzip2@1.0.8 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +ycyqykw pmix@6.1.0 +nldxmxw prrte@4.1.0 +vwo3ajm flex@2.6.3 +yvl6jpi pkgconf@2.5.1 +g72d7i3 zlib-ng@2.3.3 + +jceyzq7 hdf5@1.14.6 +a4wqsr7 cmake@3.31.11 +j2fa7xl curl@8.20.0 +4lyasaz nghttp2@1.67.1 +ao2onuz diffutils@3.12 +33yozp5 openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +bvphs3b perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +ohmdb2l less@692 +ekvivpv ncurses@6.6 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +xkilhym mpich@5.0.1 +punbqrx findutils@4.10.0 +sle3ix4 gettext@1.0 +f5xe4px tar@1.35 +afklka7 pigz@2.8 +ujctyey hwloc@2.13.0 +itb4a2s libfabric@2.5.1 +qzkk5ym libpciaccess@0.17 +o5fy6wf util-macros@1.20.2 +ujlg2ua libxml2@2.15.3 +vbwvgwx libiconv@1.18 +hhjyyqy xz@5.8.3 +derywaq python@3.14.5 +cbtgjrh bzip2@1.0.8 +d462mhw expat@2.8.1 +7o3mv6c libbsd@0.12.2 +yvvn7mu libmd@1.1.0 +cq4dkuc gdbm@1.26 +aiceosz libffi@3.5.2 +k25xiih readline@8.3 +unjd5da sqlite@3.53.1 +clufswx util-linux-uuid@2.41 +63aruxk zstd@1.5.7 +yvl6jpi pkgconf@2.5.1 +g72d7i3 zlib-ng@2.3.3 + +uwyh3xy libedit@3.1-20251016 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +ekvivpv ncurses@6.6 +yvl6jpi pkgconf@2.5.1 + +oopqoag libevent@2.1.12 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +33yozp5 openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +bvphs3b perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cbtgjrh bzip2@1.0.8 +ao2onuz diffutils@3.12 +vbwvgwx libiconv@1.18 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +ekvivpv ncurses@6.6 +yvl6jpi pkgconf@2.5.1 +g72d7i3 zlib-ng@2.3.3 + +itb4a2s libfabric@2.5.1 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 + +vbwvgwx libiconv@1.18 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 + +qzkk5ym libpciaccess@0.17 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +yvl6jpi pkgconf@2.5.1 +o5fy6wf util-macros@1.20.2 + +bkzcu2s libxcrypt@4.5.2 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +bvphs3b perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cbtgjrh bzip2@1.0.8 +ao2onuz diffutils@3.12 +vbwvgwx libiconv@1.18 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +ekvivpv ncurses@6.6 +yvl6jpi pkgconf@2.5.1 +g72d7i3 zlib-ng@2.3.3 + +ujlg2ua libxml2@2.15.3 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +vbwvgwx libiconv@1.18 +yvl6jpi pkgconf@2.5.1 +hhjyyqy xz@5.8.3 +g72d7i3 zlib-ng@2.3.3 + +2t2useu numactl@2.0.19 +jo3eg4r autoconf@2.72 +bvphs3b perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cbtgjrh bzip2@1.0.8 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +ekvivpv ncurses@6.6 +yvl6jpi pkgconf@2.5.1 +g72d7i3 zlib-ng@2.3.3 +yhkgfai automake@1.18.1 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +3gdq456 libtool@2.5.4 +mguwetc file@5.46 +hhjyyqy xz@5.8.3 +63aruxk zstd@1.5.7 +punbqrx findutils@4.10.0 +sle3ix4 gettext@1.0 +ujlg2ua libxml2@2.15.3 +f5xe4px tar@1.35 +afklka7 pigz@2.8 +y6uqrto m4@1.4.21 +ao2onuz diffutils@3.12 +vbwvgwx libiconv@1.18 +phcmfqk libsigsegv@2.15 + +afklka7 pigz@2.8 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +g72d7i3 zlib-ng@2.3.3 + +yvl6jpi pkgconf@2.5.1 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 + +ycyqykw pmix@6.1.0 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +ujctyey hwloc@2.13.0 +qzkk5ym libpciaccess@0.17 +o5fy6wf util-macros@1.20.2 +ujlg2ua libxml2@2.15.3 +vbwvgwx libiconv@1.18 +hhjyyqy xz@5.8.3 +ekvivpv ncurses@6.6 +oopqoag libevent@2.1.12 +33yozp5 openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +bvphs3b perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +3gdq456 libtool@2.5.4 +mguwetc file@5.46 +cbtgjrh bzip2@1.0.8 +63aruxk zstd@1.5.7 +punbqrx findutils@4.10.0 +sle3ix4 gettext@1.0 +f5xe4px tar@1.35 +afklka7 pigz@2.8 +y6uqrto m4@1.4.21 +ao2onuz diffutils@3.12 +phcmfqk libsigsegv@2.15 +yvl6jpi pkgconf@2.5.1 +g72d7i3 zlib-ng@2.3.3 + +nldxmxw prrte@4.1.0 +jo3eg4r autoconf@2.72 +yhkgfai automake@1.18.1 +mmywg7x compiler-wrapper@1.1.0 +vwo3ajm flex@2.6.3 +lbkegpi bison@3.8.2 +ao2onuz diffutils@3.12 +vbwvgwx libiconv@1.18 +punbqrx findutils@4.10.0 +sle3ix4 gettext@1.0 +f5xe4px tar@1.35 +afklka7 pigz@2.8 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +ujctyey hwloc@2.13.0 +qzkk5ym libpciaccess@0.17 +o5fy6wf util-macros@1.20.2 +ujlg2ua libxml2@2.15.3 +hhjyyqy xz@5.8.3 +ekvivpv ncurses@6.6 +oopqoag libevent@2.1.12 +33yozp5 openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +3gdq456 libtool@2.5.4 +mguwetc file@5.46 +63aruxk zstd@1.5.7 +y6uqrto m4@1.4.21 +phcmfqk libsigsegv@2.15 +bvphs3b perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cbtgjrh bzip2@1.0.8 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +g72d7i3 zlib-ng@2.3.3 +yvl6jpi pkgconf@2.5.1 +ycyqykw pmix@6.1.0 + +f5xe4px tar@1.35 +cbtgjrh bzip2@1.0.8 +ao2onuz diffutils@3.12 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +vbwvgwx libiconv@1.18 +afklka7 pigz@2.8 +g72d7i3 zlib-ng@2.3.3 +hhjyyqy xz@5.8.3 +63aruxk zstd@1.5.7 + +hhjyyqy xz@5.8.3 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 + + +-- linux-ubuntu26.04-x86_64_v3 / no compilers ------------------- +mmywg7x compiler-wrapper@1.1.0 + +5zrvmb3 gcc@14.3.0 + +yjlog5x gcc@15.2.0 + +yhhe2we gcc-runtime@15.2.0 +cl66sen gcc@15.2.0 +ublhg65 glibc@2.43 + +xm76mt3 gcc-runtime@15.2.0 +yjlog5x gcc@15.2.0 +yc4n2pp glibc@2.43 + +yc4n2pp glibc@2.43 + +px4mv6l llvm@21.1.8 + +==> 46 installed packages diff --git a/outputs/basics/find-ldf.out b/outputs/basics/find-ldf.out index 623653a30..e21391537 100644 --- a/outputs/basics/find-ldf.out +++ b/outputs/basics/find-ldf.out @@ -1,121 +1,136 @@ $ spack find -ldf --- linux-ubuntu22.04-x86_64 / no compilers ---------------------- -rpw3buk gcc@11.4.0 - -vjnqll7 glibc@2.35 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=clang@14.0.0 ------------ -ibbzvxt tcl@8.6.17 -ntccuj2 compiler-wrapper@1.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qr2e4rd llvm@14.0.0 -um7p6tr zlib-ng@2.0.7 - -um7p6tr zlib-ng@2.0.7 -ntccuj2 compiler-wrapper@1.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qr2e4rd llvm@14.0.0 - -ct2r7xm zlib-ng@2.2.4 -ntccuj2 compiler-wrapper@1.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qr2e4rd llvm@14.0.0 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@10.5.0 -------------- -updxeye zlib-ng@2.2.4 -ntccuj2 compiler-wrapper@1.0 -ntkvysy gcc@10.5.0 -ahapkrs gcc-runtime@10.5.0 -qg7qyaz glibc@2.35 -ufbescp gmake@4.4.1 - - --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- -x74vmgr tcl@8.6.17 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -qlavhjb zlib-ng@2.0.7 cflags=-O3 - -tsq4fjj tcl@8.6.17 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 -zk6kesh zlib-ng@2.2.4 - -qlavhjb zlib-ng@2.0.7 cflags=-O3 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - -zk6kesh zlib-ng@2.2.4 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 -4obn7cg gmake@4.4.1 - - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@10.5.0 ------------------ -ufbescp gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ntkvysy gcc@10.5.0 -ahapkrs gcc-runtime@10.5.0 -qg7qyaz glibc@2.35 - - --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@11.4.0 ------------------ -vsq3oi3 gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -rpw3buk gcc@11.4.0 -qmbrryi gcc-runtime@11.4.0 -vjnqll7 glibc@2.35 - -4obn7cg gmake@4.4.1 -ntccuj2 compiler-wrapper@1.0 -ml7cem5 gcc@11.4.0 -nokfxva gcc-runtime@11.4.0 -qg7qyaz glibc@2.35 - - --- linux-ubuntu22.04-x86_64_v3 / no compilers ------------------- -ntccuj2 compiler-wrapper@1.0 - -ntkvysy gcc@10.5.0 - -ml7cem5 gcc@11.4.0 - -ahapkrs gcc-runtime@10.5.0 -ntkvysy gcc@10.5.0 -qg7qyaz glibc@2.35 - -qmbrryi gcc-runtime@11.4.0 -rpw3buk gcc@11.4.0 -vjnqll7 glibc@2.35 - -nokfxva gcc-runtime@11.4.0 -ml7cem5 gcc@11.4.0 -qg7qyaz glibc@2.35 - -qg7qyaz glibc@2.35 - -qr2e4rd llvm@14.0.0 - -==> 21 installed packages +-- linux-ubuntu26.04-x86_64 / no compilers ---------------------- +cl66sen gcc@15.2.0 + +ublhg65 glibc@2.43 + + +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=clang@21.1.8 ------------ +kie72sp zlib-ng@2.0.7 +mmywg7x compiler-wrapper@1.1.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +px4mv6l llvm@21.1.8 + +5dji3nx zlib-ng@2.3.3 +mmywg7x compiler-wrapper@1.1.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +px4mv6l llvm@21.1.8 + + +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- +slhcf4i zlib-ng@2.3.3 +mmywg7x compiler-wrapper@1.1.0 +5zrvmb3 gcc@14.3.0 +xm76mt3 gcc-runtime@15.2.0 +yjlog5x gcc@15.2.0 +yc4n2pp glibc@2.43 +ofpkua6 gmake@4.4.1 + + +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- +53i7gbs tcl@8.6.17 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 +kie72sp zlib-ng@2.0.7 +px4mv6l llvm@21.1.8 + +jmv6sxq tcl@8.6.17 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +ofpkua6 gmake@4.4.1 +5zrvmb3 gcc@14.3.0 +slhcf4i zlib-ng@2.3.3 + +aeoqp4e zlib-ng@2.0.7 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 + +t7jnrlg zlib-ng@2.3.3 +4hb3wtk cmake@3.31.11 +rt5ujla curl@8.20.0 +4lyasaz nghttp2@1.67.1 +ao2onuz diffutils@3.12 +vbwvgwx libiconv@1.18 +drmc4rl openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +ylggcb5 perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cbtgjrh bzip2@1.0.8 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +yvl6jpi pkgconf@2.5.1 +ekvivpv ncurses@6.6 +4vg46ge zlib@1.3.2 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 + +6l3ycpy zlib-ng@2.3.3 +4hb3wtk cmake@3.31.11 +rt5ujla curl@8.20.0 +4lyasaz nghttp2@1.67.1 +ao2onuz diffutils@3.12 +vbwvgwx libiconv@1.18 +drmc4rl openssl@3.6.1 +axeuqg3 ca-certificates-mozilla@2026-03-19 +ylggcb5 perl@5.42.0 +27d4iyp berkeley-db@18.1.40 +cbtgjrh bzip2@1.0.8 +cq4dkuc gdbm@1.26 +k25xiih readline@8.3 +ohmdb2l less@692 +yvl6jpi pkgconf@2.5.1 +ekvivpv ncurses@6.6 +4vg46ge zlib@1.3.2 +mmywg7x compiler-wrapper@1.1.0 +yjlog5x gcc@15.2.0 +xm76mt3 gcc-runtime@15.2.0 +yc4n2pp glibc@2.43 +r4lhaok gmake@4.4.1 + + +-- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ +cdyuto2 gmake@4.4.1 +mmywg7x compiler-wrapper@1.1.0 +cl66sen gcc@15.2.0 +yhhe2we gcc-runtime@15.2.0 +ublhg65 glibc@2.43 + + +-- linux-ubuntu26.04-x86_64_v3 / no compilers ------------------- +mmywg7x compiler-wrapper@1.1.0 + +5zrvmb3 gcc@14.3.0 + +yjlog5x gcc@15.2.0 + +yhhe2we gcc-runtime@15.2.0 +cl66sen gcc@15.2.0 +ublhg65 glibc@2.43 + +xm76mt3 gcc-runtime@15.2.0 +yjlog5x gcc@15.2.0 +yc4n2pp glibc@2.43 + +yc4n2pp glibc@2.43 + +px4mv6l llvm@21.1.8 + +==> 18 installed packages diff --git a/outputs/basics/find-lf-zlib.out b/outputs/basics/find-lf-zlib.out index d5287687f..7f7fc2b4a 100644 --- a/outputs/basics/find-lf-zlib.out +++ b/outputs/basics/find-lf-zlib.out @@ -1,7 +1,10 @@ $ 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@14.3.0 -------------- +slhcf4i zlib-ng@2.3.3 + +-- 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 +==> 7 installed packages diff --git a/outputs/basics/find-lf.out b/outputs/basics/find-lf.out index db5956e86..e4aa4bed0 100644 --- a/outputs/basics/find-lf.out +++ b/outputs/basics/find-lf.out @@ -1,24 +1,28 @@ -$ spack find -lf --- linux-ubuntu22.04-x86_64 / no compilers ---------------------- -rpw3buk gcc@11.4.0 vjnqll7 glibc@2.35 +$ spack find -l +-- linux-ubuntu26.04-x86_64 / no compilers ---------------------- +cl66sen gcc@15.2.0 ublhg65 glibc@2.43 --- 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,fortran=gcc@15.2.0 ------ +xkilhym mpich@5.0.1 7kdghmr openblas@0.3.33 qfut5qq openmpi@5.0.10 u43pchx trilinos@17.1.1 3sqhxga trilinos@17.1.1 --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@10.5.0 -------------- -updxeye 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 +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- +slhcf4i zlib-ng@2.3.3 --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@10.5.0 ------------------ -ufbescp gmake@4.4.1 +-- 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 aeoqp4e zlib-ng@2.0.7 t7jnrlg zlib-ng@2.3.3 63aruxk zstd@1.5.7 +ujctyey hwloc@2.13.0 ekvivpv ncurses@6.6 33yozp5 openssl@3.6.1 jmv6sxq tcl@8.6.17 g72d7i3 zlib-ng@2.3.3 6l3ycpy zlib-ng@2.3.3 --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@11.4.0 ------------------ -vsq3oi3 gmake@4.4.1 4obn7cg gmake@4.4.1 +-- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ +cbtgjrh bzip2@1.0.8 7cwv3st hdf5@1.14.6 oopqoag libevent@2.1.12 qzkk5ym libpciaccess@0.17 2t2useu numactl@2.0.19 ycyqykw pmix@6.1.0 hhjyyqy xz@5.8.3 +cdyuto2 gmake@4.4.1 jceyzq7 hdf5@1.14.6 itb4a2s libfabric@2.5.1 bkzcu2s libxcrypt@4.5.2 afklka7 pigz@2.8 nldxmxw prrte@4.1.0 +as6mmcj hdf5@1.14.6 uwyh3xy libedit@3.1-20251016 vbwvgwx libiconv@1.18 ujlg2ua libxml2@2.15.3 yvl6jpi pkgconf@2.5.1 f5xe4px tar@1.35 --- linux-ubuntu22.04-x86_64_v3 / no compilers ------------------- -ntccuj2 compiler-wrapper@1.0 ahapkrs gcc-runtime@10.5.0 qg7qyaz glibc@2.35 -ntkvysy gcc@10.5.0 qmbrryi gcc-runtime@11.4.0 qr2e4rd llvm@14.0.0 -ml7cem5 gcc@11.4.0 nokfxva gcc-runtime@11.4.0 -==> 17 installed packages +-- linux-ubuntu26.04-x86_64_v3 / %cxx=gcc@15.2.0 ---------------- +kpwomw3 kokkos@5.1.1 5zilkuz kokkos-kernels@5.1.1 + +-- linux-ubuntu26.04-x86_64_v3 / no compilers ------------------- +mmywg7x compiler-wrapper@1.1.0 5zrvmb3 gcc@14.3.0 yjlog5x gcc@15.2.0 yhhe2we gcc-runtime@15.2.0 xm76mt3 gcc-runtime@15.2.0 yc4n2pp glibc@2.43 px4mv6l llvm@21.1.8 +==> 51 installed packages diff --git a/outputs/basics/find-px.out b/outputs/basics/find-px.out index 12bd59f91..c1358903c 100644 --- a/outputs/basics/find-px.out +++ b/outputs/basics/find-px.out @@ -1,18 +1,24 @@ $ 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,fortran=gcc@15.2.0 ------ +trilinos@17.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-17.1.1-u43pchxcfkd7syptwimxl4lozm5jmy2h +trilinos@17.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-17.1.1-3sqhxgauqbdivdlcr6gdh2km37fiky5j --- 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=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=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@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=gcc@11.4.0 ------------------ -gmake@4.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh -hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh -hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv -hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd -==> 9 installed packages +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- +tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-53i7gbsb6wbhk55vv62jpqudomfmw6f7 +tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-jmv6sxqk3p4ykp5vh7jl6i5na4vfr46e +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-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 +==> 13 installed packages diff --git a/outputs/basics/find-zlib.out b/outputs/basics/find-zlib.out index 4afde3b3e..bfe6f1fd6 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 85629dff2..ba211cd2a 100644 --- a/outputs/basics/find.out +++ b/outputs/basics/find.out @@ -1,23 +1,26 @@ $ 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 openblas@0.3.33 openmpi@5.0.10 trilinos@17.1.1 trilinos@17.1.1 --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@10.5.0 -------------- -zlib-ng@2.2.4 +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=clang@21.1.8 ------------ +zlib-ng@2.0.7 zlib-ng@2.3.3 --- linux-ubuntu22.04-x86_64_v3 / %c,cxx=gcc@11.4.0 -------------- -zlib-ng@2.0.7 +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- +zlib-ng@2.3.3 --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@10.5.0 ------------------ -gmake@4.4.1 +-- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- +gettext@1.0 hwloc@2.13.0 krb5@1.22.2 ncurses@6.6 openssh@10.3p1 openssl@3.6.1 tcl@8.6.17 tcl@8.6.17 zlib-ng@2.0.7 zlib-ng@2.3.3 zlib-ng@2.3.3 zlib-ng@2.3.3 zstd@1.5.7 --- linux-ubuntu22.04-x86_64_v3 / %c=gcc@11.4.0 ------------------ -gmake@4.4.1 gmake@4.4.1 +-- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ +bzip2@1.0.8 hdf5@1.14.6 hdf5@1.14.6 libevent@2.1.12 libiconv@1.18 libxcrypt@4.5.2 numactl@2.0.19 pkgconf@2.5.1 prrte@4.1.0 xz@5.8.3 +gmake@4.4.1 hdf5@1.14.6 libedit@3.1-20251016 libfabric@2.5.1 libpciaccess@0.17 libxml2@2.15.3 pigz@2.8 pmix@6.1.0 tar@1.35 --- linux-ubuntu22.04-x86_64_v3 / no compilers ------------------- -compiler-wrapper@1.0 gcc@11.4.0 gcc-runtime@11.4.0 glibc@2.35 -gcc@10.5.0 gcc-runtime@10.5.0 gcc-runtime@11.4.0 llvm@14.0.0 -==> 17 installed packages +-- linux-ubuntu26.04-x86_64_v3 / %cxx=gcc@15.2.0 ---------------- +kokkos@5.1.1 kokkos-kernels@5.1.1 + +-- 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 +==> 51 installed packages diff --git a/outputs/basics/gmake.out b/outputs/basics/gmake.out index 1aa2bb4f5..748b6ecd2 100644 --- a/outputs/basics/gmake.out +++ b/outputs/basics/gmake.out @@ -1,29 +1,13 @@ $ spack install gmake ==> Compilers have been configured automatically from PATH inspection -[+] /usr (external gcc-11.4.0-rpw3bukiasa3mhgh2vbz6tlwb5smfg3w) -[+] /usr (external glibc-2.35-vjnqll7uhrmsms4z5opdvczk7riv6fs5) -==> No binary for compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 found: installing from source -==> Installing compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 [3/5] -==> Fetching https://mirror.spack.io/_source-cache/archive/a5/a5ff4fcdbeda284a7993b87f294b6338434cffc84ced31e4d04008ed5ea389bf - [100%] 30.08 KB @ 185.8 MB/s -==> No patches needed for compiler-wrapper -==> compiler-wrapper: Executing phase: 'install' -==> compiler-wrapper: Successfully installed compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 - Stage: 0.15s. Install: 0.01s. Post-install: 0.01s. Total: 0.18s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -==> No binary for gcc-runtime-11.4.0-qmbrryiepg5ww5i2bujmli7i22dmwqju found: installing from source -==> Installing gcc-runtime-11.4.0-qmbrryiepg5ww5i2bujmli7i22dmwqju [4/5] -==> No patches needed for gcc-runtime -==> gcc-runtime: Executing phase: 'install' -==> gcc-runtime: Successfully installed gcc-runtime-11.4.0-qmbrryiepg5ww5i2bujmli7i22dmwqju - Stage: 0.00s. Install: 0.05s. Post-install: 0.03s. Total: 0.09s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-qmbrryiepg5ww5i2bujmli7i22dmwqju -==> No binary for gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh found: installing from source -==> Installing gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh [5/5] -==> Fetching https://mirror.spack.io/_source-cache/archive/dd/dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3.tar.gz - [100%] 62.35 MB @ 163.0 MB/s -==> No patches needed for gmake -==> gmake: Executing phase: 'install' -==> gmake: Successfully installed gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh - Stage: 0.24s. Install: 10.47s. Post-install: 0.01s. Total: 10.73s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-vsq3oi374trwzuwcxzutihi2zbxrhosh +[e] ublhg65 glibc@2.43 /usr (0s) +[e] cl66sen gcc@15.2.0 /usr (0s) +[ ] mmywg7x compiler-wrapper@1.1.0 staging (0s) +[ ] yhhe2we gcc-runtime@15.2.0 staging (0s) +[ ] yhhe2we gcc-runtime@15.2.0 install (0s) +[ ] 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 (1s) +[+] cdyuto2 gmake@4.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-cdyuto2vcd73fdknitpbrk3mofaa6hw5 (9s) diff --git a/outputs/basics/graph-tcl.out b/outputs/basics/graph-tcl.out index cd5645c29..614d0482d 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/jmv6sxq |\ | |\ | | |\ | | | |\ | | | | |\ -o | | | | | zlib-ng@2.2.4/zk6kesh +o | | | | | zlib-ng@2.3.3/slhcf4i |\| | | | | |\ \ \ \ \ \ | |_|/ / / / @@ -14,19 +14,20 @@ o | | | | | zlib-ng@2.2.4/zk6kesh | | |_|/ / / | |/| | | | | | |\ \ \ \ -| | | |_|/ / -| | |/| | | -| | | |/ / -| | | | o gmake@4.4.1/4obn7cg -| |_|_|/| -|/| |_|/| -| |/| |/| -| | |/|/ -| | | o compiler-wrapper@1.0/ntccuj2 -| | | -| o | gcc-runtime@11.4.0/nokfxva +| | | | |_|/ +| | | |/| | +| | | | o | gmake@4.4.1/ofpkua6 +| |_|_|/| | +|/| |_|/| | +| |/| |/| | +| | |/|/ / +| | | o | compiler-wrapper@1.1.0/mmywg7x +| | | / +| | o | gcc@14.3.0/5zrvmb3 +| | / +| 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 index d1f051048..cb5aa7119 100644 --- a/outputs/basics/graph-trilinos.out +++ b/outputs/basics/graph-trilinos.out @@ -1,5 +1,5 @@ $ spack graph trilinos -o trilinos@16.1.0/tj433ut +o trilinos@17.1.1/u43pchx |\ | |\ | | |\ @@ -10,7 +10,7 @@ o trilinos@16.1.0/tj433ut | | | | | | | |\ | | | | | | | | |\ | | | | | | | | | |\ -| | o | | | | | | | | kokkos-kernels@4.5.01/qknxuyj +| | o | | | | | | | | kokkos-kernels@5.1.1/5zilkuz | | |\| | | | | | | | | | |\ \ \ \ \ \ \ \ \ | | | |_|_|/ / / / / / @@ -29,7 +29,7 @@ o trilinos@16.1.0/tj433ut | | | | | | |/| | | | | | | | | | | | |/ / | | | | | | | |/| | -| o | | | | | | | | openblas@0.3.30/qz3ay7b +| o | | | | | | | | openblas@0.3.33/7kdghmr | |\| | | | | | | | | |\ \ \ \ \ \ \ \ \ | | |_|/ / / / / / / @@ -41,7 +41,7 @@ o trilinos@16.1.0/tj433ut | | | | |_|/ / / / / | | | |/| | | | | | | | | | |/ / / / / -o | | | | | | | | openmpi@5.0.8/tqxbnvo +o | | | | | | | | openmpi@5.0.10/qfut5qq |\| | | | | | | | |\ \ \ \ \ \ \ \ \ | |\ \ \ \ \ \ \ \ \ @@ -68,14 +68,14 @@ o | | | | | | | | openmpi@5.0.8/tqxbnvo | | | | | | | | | | | | | | |_|/ / / | | | | | | | | | | | | | |/| | | | | | | | | | | | | | | | | | |\ \ \ \ -| | | | | | | | | | | | | | | | | | o kokkos@4.5.01/k2pkvic +| | | | | | | | | | | | | | | | | | o kokkos@5.1.1/kpwomw3 | | | | | | | | | | | |_|_|_|_|_|_|/| | | | | | | | | | | |/| |_|_|_|_|_|/| | | | | | | | | | | | |/| |_|_|_|_|/| | | | | | | | | | | | | |/| |_|_|_|/| | | | | | | | | | | | | | |/| | | |/| | | | | | | | | | | | | | | | | |/|/ -| | | | | | o | | | | | | | | | | | numactl@2.0.18/yzbm5q6 +| | | | | | o | | | | | | | | | | | numactl@2.0.19/2t2useu | | | | | | |\| | | | | | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ @@ -98,7 +98,7 @@ o | | | | | | | | openmpi@5.0.8/tqxbnvo | | | | | | | | | | | | |/| | | | | | | | | | | | | | | | | | | | |_|/ / / | | | | | | | | | | | | | |/| | | | -| | | | | o | | | | | | | | | | | | openssh@9.9p1/cxdcxo5 +| | | | | o | | | | | | | | | | | | openssh@10.3p1/m6yx5j3 | |_|_|_|/| | | | | | | | | | | | | |/| | | | | | | | | | | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ @@ -119,7 +119,7 @@ o | | | | | | | | openmpi@5.0.8/tqxbnvo | | | | | | | | | | | | | | |_|/ / / / / / / / | | | | | | | | | | | | | |/| | | | | | | | | | | | | | | | | | | | | | | |/ / / / / / / / -| o | | | | | | | | | | | | | | | | | | | | prrte@4.0.0/buin62m +| o | | | | | | | | | | | | | | | | | | | | prrte@4.1.0/nldxmxw | |\| | | | | | | | | | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|/ / / / / / / / / / / / / / / / / / / @@ -160,7 +160,7 @@ o | | | | | | | | openmpi@5.0.8/tqxbnvo | | | | | | | | | | | | | |/| | | | | | | | | | | | | | | | | | | | | | | | |_|_|_|_|/ / / | | | | | | | | | | | | | | |/| | | | | | | -| | | | | | | | | | | | | | | | | | | | | o cmake@3.31.9/ivvor7v +| | | | | | | | | | | | | | | | | | | | | o cmake@3.31.11/a4wqsr7 | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| |/| | | | | | | |_|_|_|_|_|_|_|_|_|_|_|_|/| | | | | | | | |/| |_|_|_|_|_|_|_|_|_|_|_|/| @@ -169,7 +169,7 @@ o | | | | | | | | openmpi@5.0.8/tqxbnvo | | | | | | | | | | |/| | |_|_|_|_|_|_|_|/| | | | | | | | | | | | | |/| | | | | |_|_|/| | | | | | | | | | | | | | | | | | |/| | | | -| | | | | | | | | | | | | | | | | | | | o | krb5@1.21.3/hnmy4fw +| | | | | | | | | | | | | | | | | | | | o | krb5@1.22.2/ldqeqfw | | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | |/| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | | |/| | | | | |_|_|_|_|_|_|_|_|_|_|_|/| | @@ -182,7 +182,7 @@ o | | | | | | | | openmpi@5.0.8/tqxbnvo | | | | | | | | | | | | | | | | | | | | |\ \ | | | | | | | | | | | | | | | | | | | | | |\ \ | | | | | | | | | | | | | | | | | | | | | | |\ \ -| | | | | | | | | | | | | | | | | | o | | | | | | libxcrypt@4.4.38/yiij42p +| | | | | | | | | | | | | | | | | | o | | | | | | libxcrypt@4.5.2/bkzcu2s | | | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | | | | | | | |/| | | | | |_|_|_|_|_|_|_|_|_|/| | | | | | | | | | | | | | |/| |_|_|_|_|_|_|_|_|/| | | | | | | @@ -190,7 +190,7 @@ o | | | | | | | | openmpi@5.0.8/tqxbnvo | | | | | | | | | |/| |_|_|_|_|_|_|/| | | | | | | | | | | | | | | | | |/| | |_|_|_|_|/ / / / / / / | | | | | | | | | | | | |/| | | | | | | | | | | -| | | | | | | | | | | | | o | | | | | | | | | | automake@1.16.5/pzmnwzm +| | | | | | | | | | | | | o | | | | | | | | | | automake@1.18.1/yhkgfai | | | |_|_|_|_|_|_|_|_|_|/| | | | | | | | | | | | | |/| | | | | |_|_|_|_|/| | | | | | | | | | | | | | | | | | |/| |_|_|_|/| | | | | | | | | | | @@ -198,7 +198,7 @@ o | | | | | | | | openmpi@5.0.8/tqxbnvo | | | | | | | | | |/| |_|/| | | | | | | | | | | | | | | | | | | | | |/| |/| | | | | | | | | | | | | | | | | | | | | | | | |/ / / / / / / / / / -| | | | | | | | | | | o | | | | | | | | | | | flex@2.6.3/gmhq65u +| | | | | | | | | | | o | | | | | | | | | | | flex@2.6.3/vwo3ajm | | | | |_|_|_|_|_|_|/| | | | | | | | | | | | | | | |/| | | | |_|_|/| | | | | | | | | | | | | | | | | | | |/| |_|/| | | | | | | | | | | | @@ -213,7 +213,7 @@ o | | | | | | | | openmpi@5.0.8/tqxbnvo | | | | | | | | | | | | |/| | | | | | | | | | | | | | | | | | | | | | | | |_|_|_|_|_|/ / / | | | | | | | | | | | | | |/| | | | | | | | -| | | | | | | | | | | | | | | | o | | | | | pmix@6.0.0/yqlblh6 +| | | | | | | | | | | | | | | | o | | | | | pmix@6.1.0/ycyqykw | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | | | | |/| |_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | | | | | |/| | | |_|_|_|_|_|_|_|_|_|_|/| | | | | | @@ -225,140 +225,77 @@ o | | | | | | | | openmpi@5.0.8/tqxbnvo | | | | | | | | | |/| |_|_|_|_|/| | | | | | | | | | | | | | | | |/| | | | |/ / / / / / | | | | | | | | | | | | | | |/| | | | | | -| | | | | | | | | | | | | | | | | | | | o curl@8.15.0/isdtvvd +| | | | | | | | | | | | | | | | | | | | o curl@8.20.0/j2fa7xl | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| |/| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| -| |/| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| -| | |/| | | | | |_|_|_|_|_|_|_|_|_|_|_|/| +| |/| | | | | | |_|_|_|_|_|_|_|_|_|_|_|/| | | | | | | | |/| |_|_|_|_|_|_|_|_|_|_|/| | | | | | | | | |/| |_|_|_|_|_|_|_|_|_|/| | | | | | | | | | |/| |_|_|_|_|_|_|_|_|/| | | | | | | | | | | |/| | | | |_|_|_|_|/| | | | | | | | | | | | | | | |/| | |_|_|/| | | | | | | | | | | | | | | | | |/| | | | -| | | | | | | | | | | | | | | | | | | | |\ -| | | | | | | | | | | | | | | | | | | | | |\ -| | | | | | | | | | | | | | | | | | 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 | | libedit@3.1-20251016/uwyh3xy +| | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | +| |/| | | | | | |_|_|_|_|_|_|_|_|_|/| | | +| | | | | | | |/| |_|_|_|_|_|_|_|_|/| | | +| | | | | | | | |/| |_|_|_|_|_|_|_|/| | | +| | | | | | | | | |/| |_|_|_|_|_|_|/| | | +| | | | | | | | | | |/| | | | |_|_|/| | | +| | | | | | | | | | | | | | |/| | |/ / / +| | | | | | | | | | | | | | | o | | | | autoconf@2.72/jo3eg4r +| | | |_|_|_|_|_|_|_|_|_|_|_|/| | | | | +| | |/| |_|_|_|_|_|_|_|_|_|_|/| | | | | +| | | |/| | | | |_|_|_|_|_|_|/ / / / / +| | | | | | | |/| | | | | | | | | | | +| | | | | | | | | | | | | o | | | | | bison@3.8.2/lbkegpi +| | | | |_|_|_|_|_|_|_|_|/| | | | | | +| | | |/| | | | |_|_|_|_|/| | | | | | +| | | | | | | |/| |_|_|_|/| | | | | | +| | | | | | | | |/| |_|_|/| | | | | | +| | | | | | | | | |/| |_|/| | | | | | +| | | | | | | | | | |/| |/| | | | | | +| | | | | | | | | | | | | |/ / / / / +| | | | | | o | | | | | | | | | | | hwloc@2.13.0/ujctyey +| | |_|_|_|/| | | | | | | | | | | | +| |/| | | | | | | | | | | | | | | | +| | | | | | |\| | | | | | | | | | | +| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ +| | | | | | | |_|_|_|_|_|_|_|_|/ / / +| | | | | | |/| | | | | | | | | | | +| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ +| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ +| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ +| | | | | | | | | | |_|/ / / / / / / / / +| | | | | | | | | |/| | | | | | | | | | +| | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | |_|/ / / / / / / / | | | | | | | | | | |/| | | | | | | | | -| | | | 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 | | | | | | | | | | | | | libevent@2.1.12/oopqoag +| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ +| | | | | | |_|_|_|_|_|_|_|_|_|_|/ / / +| | | | | |/| | | | | | | | | | | | | +| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ +| | | | | | | |_|_|_|_|_|_|_|/ / / / / +| | | | | | |/| | | | | | | | | | | | +| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ +| | | | | | | | |_|_|_|/ / / / / / / / +| | | | | | | |/| | | | | | | | | | | +| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ +| | | | | | | | | |_|_|_|/ / / / / / / +| | | | | | | | |/| | | | | | | | | | +| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ +| | | | | | | | | | |_|_|_|/ / / / / / +| | | | | | | | | |/| | | | | | | | | +| | | | | | | | | | | |_|/ / / / / / +| | | | | | | | | | |/| | | | | | | +| | | | o | | | | | | | | | | | | | libtool@2.5.4/3gdq456 +| | | |/| | | | | | | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | |_|/ / / / / / / / / / / / | | | | |/| | | | | | | | | | | | | @@ -369,185 +306,267 @@ o | | | | | | | | openmpi@5.0.8/tqxbnvo | | | | | | | |_|/ / / / / / / / / / | | | | | | |/| | | | | | | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |_|_|_|_|_|_|_|/ / / +| | | | | | | | |_|/ / / / / / / / / +| | | | | | | |/| | | | | | | | | | +| | | | | | | | |\ \ \ \ \ \ \ \ \ \ +| | | | | | | | | |_|_|_|_|_|/ / / / +| | | | | | | | |/| | | | | | | | | +| | | | | | | | | |\ \ \ \ \ \ \ \ \ +| | | | | | | | | | | |/ / / / / / / +| | | | | | | | | | |/| | | | | | | +| | | | | | | | | | | | | | | | | o nghttp2@1.67.1/4lyasaz +| | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| +| |/| | | |_|_|_|_|_|_|_|_|_|_|_|/| +| | | | |/| |_|_|_|_|_|_|_|_|_|_|/| +| | | | | |/| |_|_|_|_|_|_|_|_|_|/| +| | | | | | |/| |_|_|_|_|_|_|_|_|/| +| | | | | | | |/| | | |_|_|_|_|_|/| +| | | | | | | | | | |/| | | | | |/ +| | | | | | | | | | | | | | | |/| +| | | | | | | | | | | | | | o | | libpciaccess@0.17/qzkk5ym +| | |_|_|_|_|_|_|_|_|_|_|_|/| | | +| |/| | | |_|_|_|_|_|_|_|_|/| | | +| | | | |/| |_|_|_|_|_|_|_|/| | | +| | | | | |/| |_|_|_|_|_|_|/| | | +| | | | | | |/| |_|_|_|_|_|/| | | +| | | | | | | |/| | | |_|_|/| | | +| | | | | | | | | | |/| | | | | | +| | | | | | | | | | | o | | | | | openssl@3.6.1/33yozp5 +| |_|_|_|_|_|_|_|_|_|/| | | | | | +|/| | |_|_|_|_|_|_|_|/| | | | | | +| | |/| | |_|_|_|_|_|/| | | | | | +| | | | |/| |_|_|_|_|/| | | | | | +| | | | | |/| |_|_|_|/| | | | | | +| | | | | | |/| |_|_|/| | | | | | +| | | | | | | |/| | |/| | | | | | +| | | | | | | | | o | | | | | | | file@5.46/mguwetc +| |_|_|_|_|_|_|_|/| | | | | | | | +|/| | | | |_|_|_|/| | | | | | | | +| | | | |/| |_|_|/| | | | | | | | +| | | | | |/| |_|/| | | | | | | | +| | | | | | |/| |/| | | | | | | | +| | | | | | | |/| | | | | | | | | +| | | | | | | | | |\| | | | | | | +| | | | | | | | | |\ \ \ \ \ \ \ \ +| | | | | | | | | | |\ \ \ \ \ \ \ \ +| | | | | | | | o | | | | | | | | | | findutils@4.10.0/punbqrx +| | | | | |_|_|/| | | | | | | | | | | +| | | | |/| |_|/| | | | | | | | | | | +| | | | | |/| |/| | | | | | | | | | | +| | | | | | |/|/| | | | | | | | | | | +| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ +| | | | | | | | | |_|_|_|_|_|_|_|_|_|/ +| | | | | | | | |/| | | | | | | | | | +| | | | | | | | | | |_|/ / / / / / / +| | | | | | | | | |/| | | | | | | | +| | | o | | | | | | | | | | | | | | m4@1.4.21/y6uqrto +| | | |\| | | | | | | | | | | | | | +| | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ +| | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ +| | | | | |_|/ / / / / / / / / / / / / +| | | | |/| | | | | | | | | | | | | | +| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ +| | | | | | |_|/ / / / / / / / / / / / +| | | | | |/| | | | | | | | | | | | | +| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ +| | | | | | | |_|/ / / / / / / / / / / +| | | | | | |/| | | | | | | | | | | | +| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ +| | | | | | | | |_|_|_|_|_|_|_|_|_|_|/ +| | | | | | | |/| | | | | | | | | | | +| | | | | | | | | |/ / / / / / / / / +| | | | | | | | |/| | | | | | | | | +| | | | | | | | | | | | | | | | | o util-macros@1.20.2/o5fy6wf +| | | | | | | | | | |_|_|_|_|_|_|/ +| | | | | | | | | |/| | | | | | | +| | | | | | | | | | | | | | o | | ca-certificates-mozilla@2026-03-19/axeuqg3 +| | | | | | | | | | | | | | / / +| | o | | | | | | | | | | | | | perl@5.42.0/bvphs3b +| |/| | | | | | | | | | | | | | +|/| | | | | | | | | | | | | | | +| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ +| | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ +| | | | |_|_|_|_|_|_|/ / / / / / / +| | | |/| | | | | | | | | | | | | +| | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ +| | | | | |_|/ / / / / / / / / / / +| | | | |/| | | | | | | | | | | | +| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ +| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ +| | | | | | | |_|/ / / / / / / / / / +| | | | | | |/| | | | | | | | | | | +| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ +| | | | | | | | |_|/ / / / / / / / / | | | | | | | |/| | | | | | | | | | -| | | | | | | | | |/ / / / / / / / +| | | | | | | | |\ \ \ \ \ \ \ \ \ \ +| | | | | | | | | |_|_|/ / / / / / / +| | | | | | | | |/| | | | | | | | | +| | | | | | | | | |\ \ \ \ \ \ \ \ \ +| | | | | | | | | | |_|_|_|_|_|/ / / +| | | | | | | | | |/| | | | | | | | +| | | | | | | | | | | | | o | | | | gettext@1.0/sle3ix4 +| | | | |_|_|_|_|_|_|_|_|/| | | | | +| | | |/| |_|_|_|_|_|_|_|/| | | | | +| | | | |/| | |_|_|_|_|_|/| | | | | +| | | | | | |/| |_|_|_|_|/| | | | | +| | | | | | | |/| |_|_|_|/| | | | | +| | | | | | | | |/| |_|_|/| | | | | +| | | | | | | | | |/| | | | | | | | +| | | | | | | | | | | | | |\ \ \ \ \ +| | | | | | | | | | | | | | |_|/ / / +| | | | | | | | | | | | | |/| | | | +| | | | | | | | | | | | | | |\ \ \ \ +| | | | | | | | | | | | | | | |\ \ \ \ +| | | | | | | | | | | | | | | | |_|/ / +| | | | | | | | | | | | | | | |/| | | +| | | | | | | | | | | | | | | | |\ \ \ +| | | | | | | | | | | | | | | | | |_|/ +| | | | | | | | | | | | | | | | |/| | +| | | | | | | | | | | o | | | | | | | libsigsegv@2.15/phcmfqk +| | | | |_|_|_|_|_|_|/| | | | | | | | +| | | |/| |_|_|_|_|_|/| | | | | | | | +| | | | |/| | |_|_|_|/| | | | | | | | +| | | | | | |/| |_|_|/| | | | | | | | +| | | | | | | |/| |_|/ / / / / / / / +| | | | | | | | |/| | | | | | | | | +| | | | | | | | | | o | | | | | | | berkeley-db@18.1.40/27d4iyp +| | | | |_|_|_|_|_|/| | | | | | | | +| | | |/| |_|_|_|_|/| | | | | | | | +| | | | |/| | |_|_|/| | | | | | | | +| | | | | | |/| |_|/| | | | | | | | +| | | | | | | |/| |/ / / / / / / / | | | | | | | | |/| | | | | | | | -| | | | | | | | | | | | | | | 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 | | | | | | | | | | | gdbm@1.26/cq4dkuc +| | | | |/| | | | | | | | | | | | +| | | |/|/| | | | | | | | | | | | +| | | | | |\| | | | | | | | | | | +| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ +| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ +| | | | | | | |_|/ / / / / / / / / / +| | | | | | |/| | | | | | | | | | | +| | | | | | | |/ / / / / / / / / / +| | o | | | | | | | | | | | | | | less@692/ohmdb2l +| | |\| | | | | | | | | | | | | | +| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ +| | | |_|_|_|_|_|_|_|_|_|_|/ / / / +| | |/| | | | | | | | | | | | | | +| | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ +| | | | |_|/ / / / / / / / / / / / +| | | |/| | | | | | | | | | | | | +| | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ +| | | | | |_|_|_|_|/ / / / / / / / +| | | | |/| | | | | | | | | | | | +| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ +| | | | | | |_|_|/ / / / / / / / / +| | | | | |/| | | | | | | | | | | +| | | | | | | |/ / / / / / / / / +| | | | | | |/| | | | | | | | | +| | | | | | | | | | | | | o | | libxml2@2.15.3/ujlg2ua +| |_|_|_|_|_|_|_|_|_|_|_|/| | | +|/| |_|_|_|_|_|_|_|_|_|_|/| | | +| |/| | |_|_|_|_|_|_|_|_|/| | | +| | | |/| |_|_|_|_|_|_|_|/| | | +| | | | |/| |_|_|_|_|_|_|/| | | +| | | | | |/| |_|_|_|_|_|/| | | +| | | | | | |/| |_|_|_|_|/| | | +| | | | | | | |/| | | | |/| | | +| | | | | | | | | | | |/| | | | +| | | | | | | | | | | | | |/ / +| | | | | | | | | | | | o | | tar@1.35/f5xe4px +| | | | |_|_|_|_|_|_|_|/| | | +| | | |/| |_|_|_|_|_|_|/| | | +| | | | |/| |_|_|_|_|_|/| | | | | | | | |/| |_|_|_|_|/| | | | | | | | | |/| |_|_|_|/| | | -| | | | | | | |/| | | |/| | | -| | | | | | | | | | |/| | | | -| | | | | | | | | | | | |/ / -| | | | | | | | | | | o | | tar@1.35/lfgvgva -| | | |_|_|_|_|_|_|_|/| | | -| | |/| |_|_|_|_|_|_|/| | | -| | | |/| | |_|_|_|_|/| | | -| | | | | |/| |_|_|_|/| | | -| | | | | | |/| |_|_|/| | | -| | | | | | | |/| |_|/| | | -| | | | | | | | |/| |/| | | -| | | | | | | | | | | |\| | -| | | | | | | | | | | |\ \ \ -| | | | o | | | | | | | | | | readline@8.3/c6d2zlj -| | | |/| | | | | | | | | | | -| | |/|/| | | | | | | | | | | -| | | | |\| | | | | | | | | | -| | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | |_|_|_|_|_|_|_|_|_|/ -| | | | |/| | | | | | | | | | -| | | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | | |_|_|/ / / / / / / -| | | | | |/| | | | | | | | | -| | | | | | |/ / / / / / / / -| | | | | | | | o | | | | | bzip2@1.0.8/x7t4naj -| | | |_|_|_|_|/| | | | | | -| | |/| |_|_|_|/| | | | | | -| | | |/| | |_|/| | | | | | +| | | | | | | |/| | |_|/| | | +| | | | | | | | | |/| |/| | | +| | | | | | | | | | | | |\| | +| | | | | | | | | | | | |\ \ \ +| | | | | | | | | | | | | |_|/ +| | | | | | | | | | | | |/| | +| | | | | | | | o | | | | | | readline@8.3/k25xiih +| | | |_|_|_|_|/| | | | | | | +| | |/| |_|_|_|/| | | | | | | +| | | |/| |_|_|/| | | | | | | +| | | | |/| |_|/| | | | | | | +| | | | | |/| |/| | | | | | | +| | | | | | |/|/ / / / / / / +| | | | | | | | o | | | | | bzip2@1.0.8/cbtgjrh +| | | | |_|_|_|/| | | | | | +| | | |/| |_|_|/| | | | | | +| | | | |/| |_|/| | | | | | | | | | | |/| |/| | | | | | | | | | | | |/|/| | | | | | | | | | | | | | |/ / / / / -| | | | | | | | | | | o | pigz@2.8/kaz756e +| | | | | | | | | | | o | pigz@2.8/afklka7 | |_|_|_|_|_|_|_|_|_|/| | -|/| | |_|_|_|_|_|_|_|/| | -| | |/| |_|_|_|_|_|_|/| | -| | | |/| | |_|_|_|_|/| | +|/| | | |_|_|_|_|_|_|/| | +| | | |/| |_|_|_|_|_|/| | +| | | | |/| |_|_|_|_|/| | | | | | | |/| |_|_|_|/| | | | | | | | |/| |_|_|/ / | | | | | | | |/| | | | -| | | | | | | | | o | | xz@5.6.3/yzaocbs -| | | |_|_|_|_|_|/| | | -| | |/| |_|_|_|_|/| | | -| | | |/| | |_|_|/| | | +| | | | | | | | | o | | xz@5.8.3/hhjyyqy +| | | | |_|_|_|_|/| | | +| | | |/| |_|_|_|/| | | +| | | | |/| |_|_|/| | | | | | | | |/| |_|/| | | | | | | | | |/| |/ / / | | | | | | | |/| | | -| | | | | | | | | o | zstd@1.5.7/foiizhd -| | | |_|_|_|_|_|/| | -| | |/| |_|_|_|_|/| | -| | | |/| | |_|_|/| | +| | | | | | | | | o | zstd@1.5.7/63aruxk +| | | | |_|_|_|_|/| | +| | | |/| |_|_|_|/| | +| | | | |/| |_|_|/| | | | | | | |/| |_|/| | | | | | | | |/| |/ / | | | | | | | |/| | -| | | | o | | | | | ncurses@6.5-20250705/ncdxq3j -| | |_|/| | | | | | -| |/| |/| | | | | | -| | |/|/| | | | | | -| | | | |\| | | | | +| | o | | | | | | | ncurses@6.6/ekvivpv +| |/| | | | | | | | +| | |\| | | | | | | +| | |\ \ \ \ \ \ \ \ +| | | |_|_|_|_|/ / / +| | |/| | | | | | | +| | | |\ \ \ \ \ \ \ +| | | | |_|/ / / / / +| | | |/| | | | | | | | | | |\ \ \ \ \ \ -| | | | | |_|_|/ / / +| | | | | |_|/ / / / | | | | |/| | | | | | | | | | |/ / / / -| | | | | | | o | diffutils@3.12/cih4xrz +| | | | | | | o | diffutils@3.12/ao2onuz | | | |_|_|_|/| | | | |/| |_|_|/| | | | | |/| |_|/| | | | | | |/| |/| | | | | | | |/|/| | | | | | | | | |/ -o | | | | | | | zlib-ng@2.0.7/qlavhjb +o | | | | | | | zlib-ng@2.3.3/g72d7i3 |\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | | |\ \ \ \ \ \ \ -| | |_|/ / / / / +| | |_|_|_|_|/ / | |/| | | | | | | | |\ \ \ \ \ \ -| | | |_|_|_|/ / +| | | |_|/ / / / | | |/| | | | | | | | |\ \ \ \ \ | | | | |_|/ / / | | | |/| | | | | | | | |/ / / -| | | | | o | pkgconf@2.5.1/f4qiprw +| | | | | o | pkgconf@2.5.1/yvl6jpi | |_|_|_|/| | |/| |_|_|/| | | |/| |_|/| | | | |/| |/| | | | | |/|/ / -| | | | | o libiconv@1.18/qtepnkr +| | | | | o libiconv@1.18/vbwvgwx | |_|_|_|/| |/| |_|_|/| | |/| |_|/| | | |/| |/| | | | |/|/ -o | | | | gmake@4.4.1/4obn7cg +o | | | | gmake@4.4.1/r4lhaok |\| | | | |\ \ \ \ \ | |_|/ / / @@ -556,12 +575,12 @@ o | | | | gmake@4.4.1/4obn7cg | | |_|/ / | |/| | | | | |/ / -| | 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/hdf5-hl-mpi.out b/outputs/basics/hdf5-hl-mpi.out index 4ffa996ad..79bf291ef 100644 --- a/outputs/basics/hdf5-hl-mpi.out +++ b/outputs/basics/hdf5-hl-mpi.out @@ -1,177 +1,10 @@ $ spack install hdf5+hl+mpi ^mpich -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/1f/1f49703b0c810fdbfdc81f37e47ce182bb088c058ec15a6622f8927f0e1e6605 - [100%] 61.27 MB @ 939.4 MB/s -==> Extracting libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg from binary cache -==> libfabric: Successfully installed libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg - Search: 0.00s. Fetch: 0.17s. Install: 0.34s. Extract: 0.32s. Relocate: 0.01s. Total: 0.51s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg -==> Installing libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg [7/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -==> Fetching file:///mirror/blobs/sha256/a4/a415291ec0b68c751833d609eddbe3ad9e78e2fd558829cabf6c2980075046be - [100%] 178.05 KB @ 537.6 MB/s -==> Extracting libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx from binary cache -==> libmd: Successfully installed libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx - Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.02s. Relocate: 0.01s. Total: 0.04s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx -==> Installing libmd-1.1.0-gth3ii5boey5akbsen5la4rgqpeaqkmx [17/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd -==> Fetching file:///mirror/blobs/sha256/db/db254673cf42d6054fc35d8b78a7c8982bb1396c0ae9ee069145fa0b2c995bec - [100%] 90.69 KB @ 364.7 MB/s -==> Extracting libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa from binary cache -==> libffi: Successfully installed libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa - Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa -==> Installing libffi-3.5.2-zgro4twqg3qnq6hx6ohsjlejatth3rxa [20/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -==> Fetching file:///mirror/blobs/sha256/e2/e20e59828c817957d0e552e2dc3c24090b80ef4a58ea8ca61f71c6f11ebc00c5 - [100%] 63.82 MB @ 411.2 GB/s -==> Extracting util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz from binary cache -==> util-linux-uuid: Successfully installed util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz - Search: 0.00s. Fetch: 0.01s. Install: 0.12s. Extract: 0.10s. Relocate: 0.01s. Total: 0.13s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz -==> Installing util-linux-uuid-2.41-n45otd3wy4fv7iawv52hiogfs63hxfpz [23/44] -==> Fetching file:///mirror/blobs/sha256/19/19f0c67fa4a6fbba8d28a816970d6ae9a6fb809294c33add6da436d1b5c246d3 - [100%] 466.57 KB @ 751.2 MB/s -==> Extracting libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx from binary cache -==> libbsd: Successfully installed libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.05s. Relocate: 0.01s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx -==> Installing libbsd-0.12.2-ucrhsywwalxwcqigisozcu2xvvhx3zwx [24/44] -==> Fetching file:///mirror/blobs/sha256/55/55a205ae4e5c626a44a4e4e8ec35b0aeeb9f03851a3abbfd4eafa3acea384cab - [100%] 62.84 MB @ 421.2 GB/s -==> Extracting libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 from binary cache -==> libxml2: Successfully installed libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 - Search: 0.00s. Fetch: 0.01s. Install: 0.11s. Extract: 0.08s. Relocate: 0.02s. Total: 0.12s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 -==> Installing libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 [25/44] -==> Fetching file:///mirror/blobs/sha256/55/55d366e1ed4d9bff834caf7183afcef1b30dc15273a977e313fbb57ee0e22d79 - [100%] 92.66 KB @ 362.2 MB/s -==> Extracting pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f from binary cache -==> pigz: Successfully installed pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f -==> Installing pigz-2.8-zjrnsfoh55fgq4mulondeam2eqf3pd2f [26/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -==> Fetching file:///mirror/blobs/sha256/e5/e5157be2079ccc99173d7fd2213486da7176e82e8bf23ce080a7a02bdb7d47c7 - [100%] 689.50 KB @ 866.6 MB/s -==> Extracting expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m from binary cache -==> expat: Successfully installed expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m -==> Installing expat-2.7.3-7yr5v6w2xu5f4bohfxjcsnb2snnwwj5m [29/44] -==> Fetching file:///mirror/blobs/sha256/3f/3f941a4a6d8c6a544de9b9f9ca2c1edebbd0855a8282414be03b7ee494255ed6 - [100%] 65.22 MB @ 421.3 GB/s -==> Extracting hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml from binary cache -==> hwloc: Successfully installed hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml - Search: 0.00s. Fetch: 0.01s. Install: 0.19s. Extract: 0.15s. Relocate: 0.02s. Total: 0.20s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml -==> Installing hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml [30/44] -==> Fetching file:///mirror/blobs/sha256/62/62b08538ad6658858a7ca22c6df132b44bde7e26c857c5c0fb110bf017cd41b4 - [100%] 61.29 MB @ 391.1 GB/s -==> Extracting tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our from binary cache -==> tar: Successfully installed tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our -==> Installing tar-1.35-e3ajmyqkyiuwvvht2psujrfw5loh4our [31/44] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -==> Fetching file:///mirror/blobs/sha256/a1/a18f1c335be58a3aeb39c092dfe0c73984c32e2580f486d092dea5b1e407da17 - [100%] 11.28 MB @ 431.3 GB/s -==> Extracting sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d from binary cache -==> sqlite: Successfully installed sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d - Search: 0.00s. Fetch: 0.02s. Install: 0.25s. Extract: 0.21s. Relocate: 0.02s. Total: 0.27s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d -==> Installing sqlite-3.50.4-a4zeurpolt7jzq5322xemecmfmtlhk7d [33/44] -==> Fetching file:///mirror/blobs/sha256/e6/e64dc42db3bb276afc20902f2fcb1fee549d7e1eec9c27568d8b68a9070d4ba5 - [100%] 12.98 MB @ 581.3 GB/s -==> Extracting gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n from binary cache -==> gettext: Successfully installed gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n - Search: 0.00s. Fetch: 0.02s. Install: 0.58s. Extract: 0.53s. Relocate: 0.04s. Total: 0.61s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n -==> Installing gettext-0.23.1-xxxc56npfdu7iblnylvrzbetpjm3kr2n [34/44] -==> Fetching file:///mirror/blobs/sha256/13/13e18b86d168af128baf45c9ca8119ad4c2e2d76eb7a0b8047b79514c8e454a2 - [100%] 15.58 MB @ 471.3 GB/s -==> Extracting perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o from binary cache -==> perl: Successfully installed perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o - Search: 0.00s. Fetch: 0.03s. Install: 0.75s. Extract: 0.63s. Relocate: 0.10s. Total: 0.78s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o -==> Installing perl-5.42.0-cvuukniutivcofp25gugkl2g5y7aur4o [35/44] -==> Fetching file:///mirror/blobs/sha256/cd/cd166b12945d26bbf6a21ea4ca8d15c84ec769064c9364eb562d8fe70c28af37 - [100%] 61.03 MB @ 960.8 MB/s -==> Extracting autoconf-2.72-r3ant5t3prottmtc7yneqj6cr5gs6vvt from binary cache -==> autoconf: Successfully installed autoconf-2.72-r3ant5t3prottmtc7yneqj6cr5gs6vvt - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.04s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-r3ant5t3prottmtc7yneqj6cr5gs6vvt -==> Installing autoconf-2.72-r3ant5t3prottmtc7yneqj6cr5gs6vvt [36/44] -==> Fetching file:///mirror/blobs/sha256/d1/d16803492b1ade6e17bdf6601fc680467c31aa18850921432a42e4d741dfd406 - [100%] 68.28 MB @ 481.3 GB/s -==> Extracting openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk from binary cache -==> openssl: Successfully installed openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk - Search: 0.00s. Fetch: 0.02s. Install: 0.22s. Extract: 0.18s. Relocate: 0.02s. Total: 0.24s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk -==> Installing openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk [37/44] -==> Fetching file:///mirror/blobs/sha256/72/72fe4c49a0e381512d8c31a5a347af494a64b3d7f4631c6d67773d06bdb3fc81 - [100%] 707.31 KB @ 885.6 MB/s -==> Extracting automake-1.16.5-6ib4pvm3dvnewlphh52mrxjbd75oewev from binary cache -==> automake: Successfully installed automake-1.16.5-6ib4pvm3dvnewlphh52mrxjbd75oewev - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.04s. Relocate: 0.02s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-6ib4pvm3dvnewlphh52mrxjbd75oewev -==> Installing automake-1.16.5-6ib4pvm3dvnewlphh52mrxjbd75oewev [38/44] -==> Fetching file:///mirror/blobs/sha256/05/05cd00b722dcc2a1b80fc862d101e4f46753f4e50b0993328bdf63946d37bc9e - [100%] 61.29 MB @ 996.7 MB/s -==> Extracting curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d from binary cache -==> curl: Successfully installed curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d -==> Installing curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d [39/44] -==> Fetching file:///mirror/blobs/sha256/26/268194947254564c7d44943e697d3d29e811524c9ac80506a88d436b9b0a12d6 - [100%] 99.41 MB @ 371.4 GB/s -==> Extracting python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q from binary cache -==> python: Successfully installed python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q - Search: 0.00s. Fetch: 0.15s. Install: 3.27s. Extract: 3.11s. Relocate: 0.14s. Total: 3.42s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q -==> Installing python-3.14.0-pazbuxsobovm6zqkhuwf3nv3sopvo52q [40/44] -==> Fetching file:///mirror/blobs/sha256/68/689d4351df4932ce11f2828fde890996b3824266c37e139a5d2e2a01b33030fa - [100%] 31.66 MB @ 441.4 GB/s -==> Extracting cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft from binary cache -==> cmake: Successfully installed cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft - Search: 0.00s. Fetch: 0.05s. Install: 1.21s. Extract: 1.11s. Relocate: 0.09s. Total: 1.26s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft -==> Installing cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft [41/44] -==> Fetching file:///mirror/blobs/sha256/a4/a4055ea173b4a025c2dc02fe24b5e4b4c6a16ea2379b6b27ca3e884bd7d7524f - [100%] 63.01 MB @ 421.1 GB/s -==> Extracting yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt from binary cache -==> yaksa: Successfully installed yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.07s. Relocate: 0.01s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt -==> Installing yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt [42/44] -==> Fetching file:///mirror/blobs/sha256/6e/6e89829f4d416b51fc7b5e82548020e058051490a202ee81d89beae6de23ddf1 - [100%] 15.50 MB @ 471.3 GB/s -==> Extracting mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd from binary cache -==> mpich: Successfully installed mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd - Search: 0.00s. Fetch: 0.03s. Install: 0.96s. Extract: 0.90s. Relocate: 0.04s. Total: 0.99s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd -==> Installing mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd [43/44] -==> Fetching file:///mirror/blobs/sha256/fc/fc2f2350962144ebd017a2d5d6a5cc44ef2e2e9847cf9f83ce41e35862e8335c - [100%] 65.82 MB @ 411.2 GB/s -==> Extracting hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd from binary cache -==> hdf5: Successfully installed hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd - Search: 0.00s. Fetch: 0.02s. Install: 0.20s. Extract: 0.14s. Relocate: 0.04s. Total: 0.22s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd -==> Installing hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd [44/44] +[ ] itb4a2s libfabric@2.5.1 fetching from build cache (0s) +[ ] itb4a2s libfabric@2.5.1 relocating (0s) +[+] itb4a2s libfabric@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.5.1-itb4a2swgfzelii4nbzmo3fzdnfq5rhy (0s) +[ ] xkilhym mpich@5.0.1 fetching from build cache (0s) +[ ] xkilhym mpich@5.0.1 relocating (0s) +[+] xkilhym mpich@5.0.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-5.0.1-xkilhym6dn2n7afhh5dtjskmj5jwjbhm (0s) +[ ] jceyzq7 hdf5@1.14.6 fetching from build cache (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 (0s) diff --git a/outputs/basics/hdf5-no-mpi.out b/outputs/basics/hdf5-no-mpi.out index 27f9326a2..7c5651ba2 100644 --- a/outputs/basics/hdf5-no-mpi.out +++ b/outputs/basics/hdf5-no-mpi.out @@ -1,23 +1,4 @@ $ spack install hdf5~mpi -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t -==> Fetching file:///mirror/blobs/sha256/5e/5e7d99c001b1d6e3169849a1f04f86749c9a50c6f9d72bd3f231504b99974d84 - [100%] 65.32 MB @ 361.2 GB/s -==> Extracting hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh from binary cache -==> hdf5: Successfully installed hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh - Search: 0.00s. Fetch: 0.17s. Install: 0.19s. Extract: 0.16s. Relocate: 0.02s. Total: 0.37s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh -==> Installing hdf5-1.14.6-7mm6knnnjxquabuuhme4sjpe6d6vfawh [16/16] +[ ] as6mmcj hdf5@1.14.6 fetching from build cache (0s) +[ ] as6mmcj hdf5@1.14.6 relocating (0s) +[+] as6mmcj hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-as6mmcjwjlgjhglp62wogxim6exfgtvd (0s) diff --git a/outputs/basics/hdf5-spec.out b/outputs/basics/hdf5-spec.out index 4776db5ae..78d785a13 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 2479f8931..cab55c2fb 100644 --- a/outputs/basics/hdf5.out +++ b/outputs/basics/hdf5.out @@ -1,308 +1,73 @@ $ spack install hdf5 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -==> Fetching file:///mirror/blobs/sha256/0e/0ef0cfbbeac0c8aafa641c7518c7309ff69c9f3e1fc75611c445d9642e6967c7 - [100%] 133.95 KB @ 433.2 MB/s -==> Extracting ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l from binary cache -==> ca-certificates-mozilla: Successfully installed ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l - Search: 0.00s. Fetch: 0.16s. Install: 0.04s. Extract: 0.04s. Relocate: 0.00s. Total: 0.21s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l -==> Installing ca-certificates-mozilla-2025-08-12-etqlnw5hd6o35feimkxa53omtrjxuf5l [4/49] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/66/66b47dd2659fdd1aeca7d50aa2b32c9e5edde63a74e5233d3af0fa9ea98e12e6 - [100%] 62.20 MB @ 381.1 GB/s -==> Extracting libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq from binary cache -==> libiconv: Successfully installed libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.06s. Relocate: 0.01s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -==> Installing libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq [7/49] -==> Fetching file:///mirror/blobs/sha256/1d/1dfdc937ee8598e5d68494ac32c40bae8a780ae6d002f970ced9df2337813a45 - [100%] 463.08 KB @ 747.9 MB/s -==> Extracting pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h from binary cache -==> pkgconf: Successfully installed pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h - Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.02s. Relocate: 0.01s. Total: 0.04s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -==> Installing pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h [8/49] -==> Fetching file:///mirror/blobs/sha256/c6/c6d49b50b0d0d82666133a31f3073ec9bedaf33e3cc2eb2b56eecfd976973063 - [100%] 63.50 MB @ 411.2 GB/s -==> Extracting berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma from binary cache -==> berkeley-db: Successfully installed berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.07s. Relocate: 0.02s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -==> Installing berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma [9/49] -==> Fetching file:///mirror/blobs/sha256/b1/b1906ca502af23b4b0f3282011456bd4ca5523260fd89da710f430a253435c0a - [100%] 32.41 KB @ 225.4 MB/s -==> Extracting util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b from binary cache -==> util-macros: Successfully installed util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b - Search: 0.00s. Fetch: 0.01s. Install: 0.01s. Extract: 0.01s. Relocate: 0.00s. Total: 0.02s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b -==> Installing util-macros-1.20.1-hwxnwvmn44zotq6y6cifufosug2utt5b [10/49] -==> Fetching file:///mirror/blobs/sha256/c6/c62eaf4a6c39647f96fdb028cbacbd1a80df424ab98658992cb8279939ed8c41 - [100%] 62.56 MB @ 431.2 GB/s -==> Extracting mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle from binary cache -==> mbedtls: Successfully installed mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.08s. Relocate: 0.02s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -==> Installing mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle [11/49] -==> Fetching file:///mirror/blobs/sha256/3f/3fac396598eef662dd75093538ce2e36aa3338b60b65b9c50e86fba06f3b4bc8 - [100%] 61.57 MB @ 471.1 GB/s -==> Extracting zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea from binary cache -==> zstd: Successfully installed zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -==> Installing zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea [12/49] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -==> Fetching file:///mirror/blobs/sha256/d1/d17384f0564b5ebf91d4af10fbca9a24a9f60aefb00c518b111ff8a69f32e6eb - [100%] 61.87 MB @ 501.2 GB/s -==> Extracting xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph from binary cache -==> xz: Successfully installed xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph - Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.07s. Relocate: 0.01s. Total: 0.09s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -==> Installing xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph [14/49] -==> Fetching file:///mirror/blobs/sha256/44/4494a8094c6307a283260425c2fcae18f131557165dff36a1fee8c7865c0d8f8 - [100%] 117.07 KB @ 414.0 MB/s -==> Extracting libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w from binary cache -==> libsigsegv: Successfully installed libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -==> Installing libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w [15/49] -==> Fetching file:///mirror/blobs/sha256/34/34adb03543f15fe57c37dd1be4b1c985278c6f9146df526aeda980e6cb70ba75 - [100%] 61.13 MB @ 951.1 MB/s -==> Extracting diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk from binary cache -==> diffutils: Successfully installed diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk -==> Installing diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk [16/49] -==> Fetching file:///mirror/blobs/sha256/4e/4ed43030e94ab138bf850645bd620d9002ab739ca3e77f16ae6bae30283e97f5 - [100%] 67.06 MB @ 481.3 GB/s -==> Extracting ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz from binary cache -==> ncurses: Successfully installed ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz - Search: 0.00s. Fetch: 0.02s. Install: 0.54s. Extract: 0.52s. Relocate: 0.02s. Total: 0.56s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -==> Installing ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz [17/49] -==> Fetching file:///mirror/blobs/sha256/78/7881079c346d61e1dfba6b1b3ca14a553d238f7eca9f4acdc8c57e5b54214367 - [100%] 196.78 KB @ 538.1 MB/s -==> Extracting libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 from binary cache -==> libpciaccess: Successfully installed libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -==> Installing libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 [18/49] -==> Fetching file:///mirror/blobs/sha256/27/27af2631f6615cec0d1b2406c35636d51fa37af79c17946c6130805e7c207b06 - [100%] 92.66 KB @ 406.9 MB/s -==> Extracting pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i from binary cache -==> pigz: Successfully installed pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -==> Installing pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i [19/49] -==> Fetching file:///mirror/blobs/sha256/10/10009edc0ab662fc4ced331ddbdf14aeef167df2b2dc41f7933dcd9d127c9cb5 - [100%] 62.84 MB @ 411.2 GB/s -==> Extracting libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo from binary cache -==> libxml2: Successfully installed libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.08s. Relocate: 0.02s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -==> Installing libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo [20/49] -==> Fetching file:///mirror/blobs/sha256/8a/8a5c03cbe85a0616b5a7453c2e49c73459bca8d68fa34ffc30983f196bd05c99 - [100%] 61.34 MB @ 431.0 GB/s -==> Extracting libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz from binary cache -==> libssh2: Successfully installed libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.05s. Relocate: 0.01s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -==> Installing libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz [21/49] -==> Fetching file:///mirror/blobs/sha256/ce/ce4f5147cf39139b278ca64732cad4621a778ba23d0411154f8c764b5683f574 - [100%] 898.08 KB @ 930.8 MB/s -==> Extracting nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg from binary cache -==> nghttp2: Successfully installed nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -==> Installing nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg [22/49] -==> Fetching file:///mirror/blobs/sha256/7a/7a18b14df737930ea1c770febdf5eedf98552e5dfc62e3cb9d405a19fce3ec3b - [100%] 304.49 KB @ 648.9 MB/s -==> Extracting bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl from binary cache -==> bzip2: Successfully installed bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl - Search: 0.00s. Fetch: 0.01s. Install: 0.03s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -==> Installing bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl [23/49] -==> Fetching file:///mirror/blobs/sha256/c2/c2c4bbbacae5135ceab3532639bae0ea3a94a66b0ebf0afd55fa6fb0a4bb663f - [100%] 737.83 KB @ 857.5 MB/s -==> Extracting m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g from binary cache -==> m4: Successfully installed m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.03s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -==> Installing m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g [24/49] -==> Fetching file:///mirror/blobs/sha256/45/45c1e7c02f8c8fbd907bdef165d55df31c77bc10c73036f2391ca5f39aac0281 - [100%] 61.75 MB @ 471.2 GB/s -==> Extracting readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo from binary cache -==> readline: Successfully installed readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.05s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -==> Installing readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo [25/49] -==> Fetching file:///mirror/blobs/sha256/48/4888cf6a6164231bdbf7db524bdb5e6625d6fcc78050679a637aa622b8286397 - [100%] 956.91 KB @ 998.7 MB/s -==> Extracting libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x from binary cache -==> libedit: Successfully installed libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.03s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x -==> Installing libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x [26/49] -==> Fetching file:///mirror/blobs/sha256/b5/b5f1aa7fd742a997b6da16a3bc722058e760f1b08e7a48e95857c7211e156bb0 - [100%] 65.21 MB @ 421.3 GB/s -==> Extracting hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 from binary cache -==> hwloc: Successfully installed hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 - Search: 0.00s. Fetch: 0.01s. Install: 0.18s. Extract: 0.15s. Relocate: 0.02s. Total: 0.20s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 -==> Installing hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 [27/49] -==> Fetching file:///mirror/blobs/sha256/45/45305870482486982cfc11ad7645b9bfc9ec49c7fff03110ac948e3848482cf9 - [100%] 61.29 MB @ 481.1 GB/s -==> Extracting tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc from binary cache -==> tar: Successfully installed tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.02s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -==> Installing tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc [28/49] -==> Fetching file:///mirror/blobs/sha256/65/658171bfb6af49d486f682120270e8df942cac83c90a52d4500ff1c8dfbe514a - [100%] 61.95 MB @ 351.1 GB/s -==> Extracting bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr from binary cache -==> bison: Successfully installed bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.08s. Relocate: 0.01s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr -==> Installing bison-3.8.2-n7yzkylf4gs7cnu6scau27gxbodinprr [29/49] -==> Fetching file:///mirror/blobs/sha256/c5/c50e18794a41a9e14570ec807cfdbc565907a7aefab4021c1bba6b7a477ebee2 - [100%] 61.01 MB @ 451.0 GB/s -==> Extracting gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 from binary cache -==> gdbm: Successfully installed gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 - Search: 0.00s. Fetch: 0.01s. Install: 0.05s. Extract: 0.03s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -==> Installing gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 [30/49] -==> Fetching file:///mirror/blobs/sha256/72/725da24bd225c126a09054e27f312f4a101ec9445e1769aff787289c8f83fdfa - [100%] 12.98 MB @ 451.3 GB/s -==> Extracting gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 from binary cache -==> gettext: Successfully installed gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 - Search: 0.00s. Fetch: 0.02s. Install: 0.57s. Extract: 0.52s. Relocate: 0.04s. Total: 0.59s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -==> Installing gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 [31/49] -==> Fetching file:///mirror/blobs/sha256/ef/ef3c99d9afb190f512d368f31d533d430e3d8fc10338d053bf124a41ce425577 - [100%] 15.58 MB @ 441.3 GB/s -==> Extracting perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t from binary cache -==> perl: Successfully installed perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t - Search: 0.00s. Fetch: 0.03s. Install: 0.74s. Extract: 0.64s. Relocate: 0.10s. Total: 0.77s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t -==> Installing perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t [32/49] -==> Fetching file:///mirror/blobs/sha256/89/89326ba960a6e9a60af920776a173d0ed64900afb9e7a19b74dded5e2a4f990a - [100%] 61.50 MB @ 461.1 GB/s -==> Extracting findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert from binary cache -==> findutils: Successfully installed findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.05s. Relocate: 0.01s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -==> Installing findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert [33/49] -==> Fetching file:///mirror/blobs/sha256/ae/aee4ab2b46849d36e4ed1e6aff9db9bb55ab413eff401b37154ec324570a8dd1 - [100%] 771.91 KB @ 919.5 MB/s -==> Extracting libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr from binary cache -==> libxcrypt: Successfully installed libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -==> Installing libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr [34/49] -==> Fetching file:///mirror/blobs/sha256/b4/b4b3cb6b253eaecc83bfa130098ac8f01a70fd0f2a8870451fcd74aaa1e29ecd - [100%] 68.29 MB @ 491.3 GB/s -==> Extracting openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s from binary cache -==> openssl: Successfully installed openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s - Search: 0.00s. Fetch: 0.02s. Install: 0.21s. Extract: 0.18s. Relocate: 0.02s. Total: 0.23s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -==> Installing openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s [35/49] -==> Fetching file:///mirror/blobs/sha256/76/769c8eaef6cf77a19fe64faaed4427136ed3e3df9a5c5956450ccff49832d8a0 - [100%] 61.03 MB @ 411.0 GB/s -==> Extracting autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz from binary cache -==> autoconf: Successfully installed autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.04s. Relocate: 0.01s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz -==> Installing autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz [36/49] -==> Fetching file:///mirror/blobs/sha256/d3/d3a777a6a63cab468b47c9ff4d197de43448ac2d69b27e9773ff8f07c99f2038 - [100%] 518.48 KB @ 654.0 MB/s -==> Extracting flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj from binary cache -==> flex: Successfully installed flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.04s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj -==> Installing flex-2.6.3-gmhq65uhcnj2elzqkz3o7yg2652tmnqj [37/49] -==> Fetching file:///mirror/blobs/sha256/1a/1adc6688eb4e32d0cd8929461927011ff1d1634ea19982efe86954af39575786 - [100%] 807.31 KB @ 871.1 MB/s -==> Extracting libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel from binary cache -==> libtool: Successfully installed libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.03s. Relocate: 0.03s. Total: 0.08s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -==> Installing libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel [38/49] -==> Fetching file:///mirror/blobs/sha256/ed/ed019861f13fc782c00c428b0d206fd96d2409d923c32772084fe788117f24d6 - [100%] 63.00 MB @ 371.2 GB/s -==> Extracting libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri from binary cache -==> libevent: Successfully installed libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri - Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.07s. Relocate: 0.01s. Total: 0.10s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri -==> Installing libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri [39/49] -==> Fetching file:///mirror/blobs/sha256/62/62111ab6149e8de545095a260d5ddac19529c6e23696164ca08f2c6c4b960909 - [100%] 61.38 MB @ 441.1 GB/s -==> Extracting curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz from binary cache -==> curl: Successfully installed curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.02s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz -==> Installing curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz [40/49] -==> Fetching file:///mirror/blobs/sha256/92/9241a95cbd75686a0858b3e9e6340a113fa143a8a6f5ee25e1e9f42a7fc52232 - [100%] 62.03 MB @ 471.1 GB/s -==> Extracting krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu from binary cache -==> krb5: Successfully installed krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu - Search: 0.00s. Fetch: 0.01s. Install: 0.12s. Extract: 0.07s. Relocate: 0.04s. Total: 0.13s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu -==> Installing krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu [41/49] -==> Fetching file:///mirror/blobs/sha256/25/251ef730f1ff850ab1b34a1d626fca215106667757afdd592811abd8a35b4cb4 - [100%] 707.26 KB @ 936.7 MB/s -==> Extracting automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau from binary cache -==> automake: Successfully installed automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau - Search: 0.00s. Fetch: 0.01s. Install: 0.07s. Extract: 0.04s. Relocate: 0.02s. Total: 0.07s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau -==> Installing automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau [42/49] -==> Fetching file:///mirror/blobs/sha256/14/14509fcf26e36631b550c2401a1f9adc8246f781120fda7e4201f1548f772804 - [100%] 66.41 MB @ 361.2 GB/s -==> Extracting pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm from binary cache -==> pmix: Successfully installed pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm - Search: 0.00s. Fetch: 0.02s. Install: 0.20s. Extract: 0.15s. Relocate: 0.03s. Total: 0.21s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm -==> Installing pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm [43/49] -==> Fetching file:///mirror/blobs/sha256/83/8333941640a5fd6568dfe48908b7adc12ba97163affa301281e80e0d9f1a672a - [100%] 31.66 MB @ 421.4 GB/s -==> Extracting cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t from binary cache -==> cmake: Successfully installed cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t - Search: 0.00s. Fetch: 0.05s. Install: 1.20s. Extract: 1.10s. Relocate: 0.09s. Total: 1.25s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t -==> Installing cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t [44/49] -==> Fetching file:///mirror/blobs/sha256/ae/ae236b7dbea2d551b84907dc52b129e78bde46e2f545bd07e5cd2e5a1817939f - [100%] 63.06 MB @ 401.1 GB/s -==> Extracting openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e from binary cache -==> openssh: Successfully installed openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e - Search: 0.00s. Fetch: 0.01s. Install: 0.13s. Extract: 0.07s. Relocate: 0.04s. Total: 0.14s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e -==> Installing openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e [45/49] -==> Fetching file:///mirror/blobs/sha256/08/0871232ee4fc67d77039b6f53912897ff81c6614ea5d45410120e300ed7f8e31 - [100%] 427.92 KB @ 802.7 MB/s -==> Extracting numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp from binary cache -==> numactl: Successfully installed numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp - Search: 0.00s. Fetch: 0.01s. Install: 0.04s. Extract: 0.02s. Relocate: 0.01s. Total: 0.05s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp -==> Installing numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp [46/49] -==> Fetching file:///mirror/blobs/sha256/07/078f59369bf8079cde7b22e60697307d41294d228794e96e6d0d1b895f434e39 - [100%] 64.89 MB @ 441.3 GB/s -==> Extracting prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w from binary cache -==> prrte: Successfully installed prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w - Search: 0.00s. Fetch: 0.01s. Install: 0.15s. Extract: 0.11s. Relocate: 0.02s. Total: 0.17s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w -==> Installing prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w [47/49] -==> Fetching file:///mirror/blobs/sha256/7e/7ed1f4a69cac1ee5aba05154bd28e707d1bf7dd66bc69ca73a214dd6c699c3e8 - [100%] 14.50 MB @ 441.4 GB/s -==> Extracting openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln from binary cache -==> openmpi: Successfully installed openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln - Search: 0.00s. Fetch: 0.03s. Install: 0.69s. Extract: 0.64s. Relocate: 0.03s. Total: 0.72s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln -==> Installing openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln [48/49] -==> Fetching file:///mirror/blobs/sha256/fa/fa0049cf0a1dd88d2c331c771c32730a7f567969d27c1932dddd6adc10e21c5b - [100%] 65.63 MB @ 411.3 GB/s -==> Extracting hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv from binary cache -==> hdf5: Successfully installed hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv - Search: 0.00s. Fetch: 0.01s. Install: 0.19s. Extract: 0.13s. Relocate: 0.04s. Total: 0.20s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv -==> Installing hdf5-1.14.6-vllfzb7aaz52qw5k2rkqq64glpglw5gv [49/49] +[ ] g72d7i3 zlib-ng@2.3.3 fetching from build cache (0s) +[ ] g72d7i3 zlib-ng@2.3.3 relocating (0s) +[ ] yvl6jpi pkgconf@2.5.1 fetching from build cache (0s) +[ ] yvl6jpi pkgconf@2.5.1 relocating (0s) +[ ] ekvivpv ncurses@6.6 fetching from build cache (0s) +[ ] bkzcu2s libxcrypt@4.5.2 fetching from build cache (0s) +[ ] hhjyyqy xz@5.8.3 fetching from build cache (0s) +[ ] 63aruxk zstd@1.5.7 fetching from build cache (0s) +[ ] vbwvgwx libiconv@1.18 fetching from build cache (0s) +[ ] ekvivpv ncurses@6.6 relocating (0s) +[ ] bkzcu2s libxcrypt@4.5.2 relocating (0s) +[ ] cbtgjrh bzip2@1.0.8 fetching from build cache (0s) +[ ] hhjyyqy xz@5.8.3 relocating (0s) +[ ] 2t2useu numactl@2.0.19 fetching from build cache (0s) +[ ] 63aruxk zstd@1.5.7 relocating (0s) +[ ] qzkk5ym libpciaccess@0.17 fetching from build cache (0s) +[ ] vbwvgwx libiconv@1.18 relocating (0s) +[+] g72d7i3 zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-g72d7i3bvgfmroytbp2d6giv67ymputp (0s) +[ ] cbtgjrh bzip2@1.0.8 relocating (0s) +[ ] 2t2useu numactl@2.0.19 relocating (0s) +[ ] qzkk5ym libpciaccess@0.17 relocating (0s) +[+] yvl6jpi pkgconf@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-yvl6jpilvkgopkrc2aanfhd3z7lz7r3l (0s) +[ ] afklka7 pigz@2.8 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) +[ ] 33yozp5 openssl@3.6.1 fetching from build cache (0s) +[+] 63aruxk zstd@1.5.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-63aruxky3a4xfivh32jt676wmoftlzy6 (0s) +[+] cbtgjrh bzip2@1.0.8 /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-cbtgjrhpwivtaewryhbkj6zxuukhoekx (0s) +[+] qzkk5ym libpciaccess@0.17 /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-qzkk5ymbu3z37kjhgylrkdy7w3hixzna (0s) +[ ] afklka7 pigz@2.8 relocating (0s) +[+] vbwvgwx libiconv@1.18 /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-vbwvgwxvjrccmptlen3ebo555lk5wior (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) +[+] 2t2useu numactl@2.0.19 /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.19-2t2useutfyn7jozdzlunsc6336q6fcqx (0s) +[+] afklka7 pigz@2.8 /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-afklka7uurghkxzfzr2kpku3hq64dp2w (0s) +[ ] ujlg2ua libxml2@2.15.3 fetching from build cache (0s) +[ ] f5xe4px tar@1.35 fetching from build cache (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) +[ ] sle3ix4 gettext@1.0 fetching from build cache (0s) +[ ] uwyh3xy libedit@3.1-20251016 fetching from build cache (0s) +[ ] ujctyey hwloc@2.13.0 fetching from build cache (0s) +[ ] uwyh3xy libedit@3.1-20251016 relocating (0s) +[ ] sle3ix4 gettext@1.0 relocating (0s) +[ ] ujctyey hwloc@2.13.0 relocating (0s) +[+] uwyh3xy libedit@3.1-20251016 /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20251016-uwyh3xy52rwywtmgrdtwnljgevcnnctj (0s) +[+] ujctyey hwloc@2.13.0 /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.13.0-ujctyeyjzvata7o7oje5nefjmgqabosi (0s) +[ ] ycyqykw pmix@6.1.0 fetching from build cache (0s) +[ ] ycyqykw pmix@6.1.0 relocating (0s) +[+] ycyqykw pmix@6.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.1.0-ycyqykw634st7ajhnrl2kqnkldgtk3xr (0s) +[ ] nldxmxw prrte@4.1.0 fetching from build cache (0s) +[+] sle3ix4 gettext@1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-1.0-sle3ix4nizh2w3uwvaokqlqlotlaexbu (0s) +[ ] nldxmxw prrte@4.1.0 relocating (0s) +[ ] ldqeqfw krb5@1.22.2 fetching from build cache (0s) +[ ] ldqeqfw krb5@1.22.2 relocating (0s) +[+] ldqeqfw krb5@1.22.2 /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.22.2-ldqeqfwa76qeegjqhv72by6ayv5xlwae (0s) +[+] nldxmxw prrte@4.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.1.0-nldxmxwkhusnlqwqsuacqvn3t5r6bpjb (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 (0s) +[ ] qfut5qq openmpi@5.0.10 fetching from build cache (0s) +[ ] qfut5qq openmpi@5.0.10 relocating (0s) +[+] qfut5qq openmpi@5.0.10 /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.10-qfut5qqwp2fzaq3ymgk7nxvjv3qyrvml (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/install-gcc-12.1.0.out b/outputs/basics/install-gcc-12.1.0.out deleted file mode 100644 index 8b72051c6..000000000 --- a/outputs/basics/install-gcc-12.1.0.out +++ /dev/null @@ -1,77 +0,0 @@ -$ spack install gcc@12 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/findutils-4.10.0-irvrytslmleivpkraggqq5brluhluert -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/78/78bdc9d57126ca9978f6f134fcd63b65f193826176545252fe02e4bb1ad8e780 - [100%] 694.36 KB @ 826.2 MB/s -==> Extracting autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs from binary cache -==> autoconf-archive: Successfully installed autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs - Search: 0.00s. Fetch: 0.17s. Install: 0.15s. Extract: 0.13s. Relocate: 0.00s. Total: 0.32s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs -==> Installing autoconf-archive-2023.02.20-7p7gq7uzoaurflydkojv6kvjyue777zs [8/33] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libtool-2.4.7-yt7ajy4c3zwh2ks6dawvycaxrydjibel -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libsigsegv-2.14-bs5ujst3rrdcbj3r726bekzjfdddck4w -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/berkeley-db-18.1.40-vdgigswy4fvttrivbedl4cp7bl72esma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/m4-1.4.20-lxvpwtivihagmvso5cxgs3b7olqmac2g -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/diffutils-3.12-cih4xrzw7ysoceclj2x33hdgo23nuvmk -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/readline-8.3-c6d2zljdklrjdya4xy236brmpdonc2xo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gdbm-1.25-aq7qwy6yezwhtwdrsyqen65rmjmlth27 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/perl-5.42.0-62kt5y4kl7uhwljviixr3m4dyf5vre7t -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/automake-1.16.5-pzmnwzmdyfj2g64cb6fycltaeiz2edau -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/autoconf-2.72-fgsf5ijzhnbaj2fqngm57aoe6civ72uz -==> Fetching file:///mirror/blobs/sha256/e0/e01036e697dbfdc8fc3ce8a2c4162aaed2ade7cd28f519516941167f7e2029ab - [100%] 63.04 MB @ 401.2 GB/s -==> Extracting texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix from binary cache -==> texinfo: Successfully installed texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix - Search: 0.00s. Fetch: 0.01s. Install: 0.21s. Extract: 0.16s. Relocate: 0.03s. Total: 0.22s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix -==> Installing texinfo-7.2-k6ygirswvbp5fb5ijcgwyfck6hax5xix [28/33] -==> Fetching file:///mirror/blobs/sha256/b5/b57252a0c7495982ba160d400ea7d010773dd2f00b63561f7303add6c412d22f - [100%] 910.58 KB @ 950.5 MB/s -==> Extracting gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu from binary cache -==> gmp: Successfully installed gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu - Search: 0.00s. Fetch: 0.01s. Install: 0.06s. Extract: 0.03s. Relocate: 0.01s. Total: 0.06s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu -==> Installing gmp-6.3.0-mj4re3lp3bqk56rx5yblhufkzpmppdsu [29/33] -==> Fetching file:///mirror/blobs/sha256/1d/1d04af1bb1c8c72898e3699705f3baa628cecdc5926864a15f59875812267be3 - [100%] 62.71 MB @ 381.2 GB/s -==> Extracting mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud from binary cache -==> mpfr: Successfully installed mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud - Search: 0.00s. Fetch: 0.01s. Install: 0.09s. Extract: 0.06s. Relocate: 0.01s. Total: 0.10s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud -==> Installing mpfr-4.2.1-m3nwaltjkwzqahxlfylauzm5nxkuk2ud [30/33] -==> Fetching file:///mirror/blobs/sha256/94/94b6854379dc5c2a979fbb57e93a339ce21c8be52a24596eef886dfa741f973f - [100%] 62.37 MB @ 391.2 GB/s -==> Extracting gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd from binary cache -==> gawk: Successfully installed gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd - Search: 0.00s. Fetch: 0.01s. Install: 0.10s. Extract: 0.06s. Relocate: 0.02s. Total: 0.11s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd -==> Installing gawk-5.3.1-irhvzcha2sysowm6prf7zkvjitpykaxd [31/33] -==> Fetching file:///mirror/blobs/sha256/79/79a434126cb4944739f23d9450686d25c92f2a51b162f06e451bd0f1f4ce94e2 - [100%] 635.39 KB @ 835.2 MB/s -==> Extracting mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog from binary cache -==> mpc: Successfully installed mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog - Search: 0.00s. Fetch: 0.01s. Install: 0.26s. Extract: 0.02s. Relocate: 0.01s. Total: 0.26s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog -==> Installing mpc-1.3.1-sczvrkuwv7wbcfnejrzrwt5yzbuk5hog [32/33] -==> Fetching file:///mirror/blobs/sha256/1f/1fc94cabbbd6e9c052ea3a10d368fcbd30d3b2c4f18da478323a5e354cec9596 - [100%] 651.91 MB @ 451.4 GB/s -==> Extracting gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc from binary cache -==> Wrote new spec file to /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc/lib/gcc/x86_64-pc-linux-gnu/12.3.0/specs -==> gcc: Successfully installed gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc - Search: 0.00s. Fetch: 0.94s. Install: 12.50s. Extract: 11.10s. Relocate: 1.35s. Total: 13.44s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc -==> Installing gcc-12.3.0-fmnvqo44pcnyj4dpc6kng6rhp5uwdrwc [33/33] diff --git a/outputs/basics/install-gcc-16.out b/outputs/basics/install-gcc-16.out new file mode 100644 index 000000000..84639ce34 --- /dev/null +++ b/outputs/basics/install-gcc-16.out @@ -0,0 +1,16 @@ +$ spack install gcc@16 +[ ] xpmsy5x gmp@6.3.0 fetching from build cache (0s) +[ ] cuzgmus binutils@2.46.0 fetching from build cache (0s) +[ ] xpmsy5x gmp@6.3.0 relocating (0s) +[ ] cuzgmus binutils@2.46.0 relocating (0s) +[+] xpmsy5x gmp@6.3.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-xpmsy5xffenfvl6lc5shb5a5krckrznd (0s) +[ ] melg7ga mpfr@4.2.2 fetching from build cache (0s) +[ ] melg7ga mpfr@4.2.2 relocating (0s) +[+] cuzgmus binutils@2.46.0 /home/spack/spack/opt/spack/linux-x86_64_v3/binutils-2.46.0-cuzgmusnboe4pknwnod4jziquvzteeya (0s) +[+] melg7ga mpfr@4.2.2 /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.2-melg7gafkownovvlndh46ljc4nuf5puy (0s) +[ ] gxmoxea mpc@1.4.1 fetching from build cache (0s) +[ ] gxmoxea mpc@1.4.1 relocating (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 (1s) +[ ] vlwdxlj gcc@16.1.0 relocating (1s) +[+] vlwdxlj gcc@16.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-16.1.0-vlwdxljzbis42fjrlecvyo4tmuq5eebn (2s) diff --git a/outputs/basics/list-py.out b/outputs/basics/list-py.out index bdea40356..ea6998573 100644 --- a/outputs/basics/list-py.out +++ b/outputs/basics/list-py.out @@ -1,1430 +1,756 @@ $ spack list 'py-*' -py-3to2 py-multiprocess -py-4suite-xml py-multiqc -py-a2wsgi py-multiurl -py-abcpy py-mumps4py -py-abipy py-munch -py-about-time py-munkres -py-absl-py py-murmurhash -py-accelerate py-mutagen -py-accessible-pygments py-mx -py-accimage py-mxfold2 -py-acme-tiny py-myhdl -py-acres py-mypy -py-adal py-mypy-extensions -py-adb-enhanced py-mysql-connector-python -py-addict py-mysqlclient -py-adios py-myst-parser -py-adios4dolfinx py-namex -py-advancedhtmlparser py-nanobind -py-aenum py-nanoget -py-affine py-nanomath -py-agate py-nanoplot -py-agate-dbf py-nanostat -py-agate-excel py-nanotime -py-agate-sql py-nanotron -py-ahpy py-napari -py-aiobotocore py-napari-console -py-aiocontextvars py-napari-plugin-engine -py-aiodns py-napari-plugin-manager -py-aiofiles py-napari-svg -py-aiohappyeyeballs py-nara-wpe -py-aiohttp py-narwhals -py-aiohttp-cors py-natsort -py-aioitertools py-nbclassic -py-aiojobs py-nbclient -py-aioredis py-nbconvert -py-aiosignal py-nbdime -py-aiosqlite py-nbformat -py-alabaster py-nbmake -py-alembic py-nbqa -py-alive-progress py-nbsphinx -py-alpaca-eval py-nbstripout -py-alpaca-farm py-nbval -py-alphafold py-nc-time-axis -py-altair py-ncbi-genome-download -py-altgraph py-ndg-httpsclient -py-amici py-ndindex -py-amityping py-neo -py-amplpy py-neo4j -py-ampltools py-neobolt -py-amqp py-neotime -py-amrex py-neovim-remote -py-angel py-neptune-client -py-aniso8601 py-nest-asyncio -py-anndata py-nestle -py-annexremote py-netaddr -py-annotated-types py-netcdf4 -py-annoy py-netifaces -py-ansi2html py-netket -py-ansible py-netpyne -py-ansimarkup py-networkit -py-ansiwrap py-networkx -py-antimeridian py-neuralgcm -py-antlr4-python3-runtime py-neurokit2 -py-antspyx py-neurolab -py-anuga py-neurom -py-anvio py-neurora -py-anybadge py-neurotools -py-anyio py-nexus-sdk -py-anytree py-nexusforge -py-anywidget py-nglview -py-apache-libcloud py-ngs-tools -py-apebench py-nh3 -py-apex py-nibabel -py-apeye py-nilearn -py-apeye-core py-nipype -py-apipkg py-nitransforms -py-apispec py-niworkflows -py-app-model py-nltk -py-appdirs py-node-semver -py-applicationinsights py-nodeenv -py-appnope py-non-regression-test-tools -py-apptools py-nose -py-apscheduler py-nose-cov -py-arcgis py-nose2 -py-arch py-nosexcover -py-archspec py-notebook -py-arcp py-notebook-shim -py-argcomplete py-npe2 -py-argh py-nptyping -py-argon2-cffi py-npx -py-argon2-cffi-bindings py-ntlm-auth -py-argparse-dataclass py-ntplib -py-argparse-manpage py-nugraph -py-args py-nuitka -py-arkouda py-num2words -py-arm-pyart py-numba -py-arpeggio py-numba4jax -py-arrow py-numbagg -py-art py-numcodecs -py-arviz py-numdifftools -py-asciitree py-numexpr -py-asdf py-numexpr3 -py-asdf-astropy py-numkit -py-asdf-coordinates-schemas py-numl -py-asdf-standard py-numpy -py-asdf-transform-schemas py-numpy-groupies -py-asdf-unit-schemas py-numpy-indexed -py-asdfghjkl py-numpy-quaternion -py-ase py-numpy-stl -py-asgiref py-numpydoc -py-asn1crypto py-nvidia-dali -py-aspy-yaml py-nvidia-ml-py -py-asserts py-nvidia-ml-py3 -py-asteval py-nvidia-modulus -py-astor py-nvidia-nvimagecodec -py-astpretty py-nvidia-nvjpeg2k -py-astroid py-nvidia-nvtiff -py-astropy py-nvitop -py-astropy-healpix py-nvtx -py-astropy-helpers py-oauth2client -py-astropy-iers-data py-oauthlib -py-asttokens py-obspy -py-astunparse py-ocnn -py-async-generator py-odc-geo -py-async-lru py-odfpy -py-async-timeout py-ogb -py-asyncio py-okada-wrapper -py-asynctest py-olcf-velocity -py-atomicwrites py-olefile -py-atpublic py-omegaconf -py-atropos py-onnx -py-ats py-onnx-opcounter -py-attmap py-onnxconverter-common -py-attrs py-onnxmltools -py-audioread py-onnxruntime -py-auditwheel py-ont-fast5-api -py-autocfg py-opcodes -py-autodocsumm py-open-clip-torch -py-autograd py-openai -py-autograd-gamma py-openapi-schema-pydantic -py-automat py-opencensus -py-autopep8 py-opencensus-context -py-autoray py-opencv-python -py-autoreject py-opendatalab -py-auxlib py-openidc-client -py-avro py-openmc -py-avro-json-serializer py-openmesh -py-avro-python3 py-openmim -py-awesome-slugify py-openpmd-validator -py-awkward py-openpmd-viewer -py-awkward-cpp py-openpyxl -py-awkward0 py-openslide-python -py-awscrt py-opentree -py-ax-platform py-opentuner -py-azote py-opppy -py-azure-batch py-ops -py-azure-cli-command-modules-nspkg py-opt-einsum -py-azure-cli-core py-optax -py-azure-cli-nspkg py-optree -py-azure-cli-telemetry py-optuna -py-azure-common py-or-tools -py-azure-core py-oracledb -py-azure-cosmos py-orbax-checkpoint -py-azure-datalake-store py-ordered-set -py-azure-functions-devops-build py-orderly-set -py-azure-graphrbac py-orjson -py-azure-identity py-os-service-types -py-azure-keyvault py-oset -py-azure-keyvault-certificates py-oslo-config -py-azure-keyvault-keys py-oslo-i18n -py-azure-keyvault-nspkg py-oslo-serialization -py-azure-keyvault-secrets py-oslo-utils -py-azure-loganalytics py-osqp -py-azure-mgmt-advisor py-outdated -py-azure-mgmt-apimanagement py-overpy -py-azure-mgmt-appconfiguration py-overrides -py-azure-mgmt-applicationinsights py-owlrl -py-azure-mgmt-authorization py-owslib -py-azure-mgmt-batch py-oyaml -py-azure-mgmt-batchai py-pacifica-downloader -py-azure-mgmt-billing py-pacifica-namespace -py-azure-mgmt-botservice py-pacifica-uploader -py-azure-mgmt-cdn py-packaging -py-azure-mgmt-cognitiveservices py-pager -py-azure-mgmt-compute py-paho-mqtt -py-azure-mgmt-consumption py-palettable -py-azure-mgmt-containerinstance py-pamela -py-azure-mgmt-containerregistry py-panaroo -py-azure-mgmt-containerservice py-pandas -py-azure-mgmt-core py-pandas-datareader -py-azure-mgmt-cosmosdb py-pandas-stubs -py-azure-mgmt-datalake-analytics py-pandocfilters -py-azure-mgmt-datalake-store py-panedr -py-azure-mgmt-datamigration py-panel -py-azure-mgmt-deploymentmanager py-papermill -py-azure-mgmt-devtestlabs py-paralleltask -py-azure-mgmt-dns py-param -py-azure-mgmt-eventgrid py-parameterized -py-azure-mgmt-eventhub py-paramiko -py-azure-mgmt-hdinsight py-paramz -py-azure-mgmt-imagebuilder py-parasail -py-azure-mgmt-iotcentral py-parmed -py-azure-mgmt-iothub py-parse -py-azure-mgmt-iothubprovisioningservices py-parse-type -py-azure-mgmt-keyvault py-parsedatetime -py-azure-mgmt-kusto py-parsimonious -py-azure-mgmt-loganalytics py-parsl -py-azure-mgmt-managedservices py-parsley -py-azure-mgmt-managementgroups py-parso -py-azure-mgmt-maps py-partd -py-azure-mgmt-marketplaceordering py-particle -py-azure-mgmt-media py-paste -py-azure-mgmt-monitor py-pastedeploy -py-azure-mgmt-msi py-pastel -py-azure-mgmt-netapp py-pastml -py-azure-mgmt-network py-patch -py-azure-mgmt-nspkg py-patch-ng -py-azure-mgmt-policyinsights py-path-py -py-azure-mgmt-privatedns py-pathlib2 -py-azure-mgmt-rdbms py-pathml -py-azure-mgmt-recoveryservices py-pathos -py-azure-mgmt-recoveryservicesbackup py-pathspec -py-azure-mgmt-redhatopenshift py-pathtools -py-azure-mgmt-redis py-pathvalidate -py-azure-mgmt-relay py-pathy -py-azure-mgmt-reservations py-patool -py-azure-mgmt-resource py-patsy -py-azure-mgmt-search py-pauvre -py-azure-mgmt-security py-pbr -py-azure-mgmt-servicebus py-pdb-tools -py-azure-mgmt-servicefabric py-pdbfixer -py-azure-mgmt-signalr py-pdequinox -py-azure-mgmt-sql py-pdf2image -py-azure-mgmt-sqlvirtualmachine py-pdm-backend -py-azure-mgmt-storage py-pdm-pep517 -py-azure-mgmt-trafficmanager py-pdoc3 -py-azure-mgmt-web py-peachpy -py-azure-multiapi-storage py-peakutils -py-azure-nspkg py-pebble -py-azure-storage-blob py-pem -py-azure-storage-common py-pennylane -py-azure-storage-nspkg py-pennylane-lightning -py-babel py-pennylane-lightning-kokkos -py-backcall py-pep517 -py-backoff py-pep8 -py-backpack-for-pytorch py-pep8-naming -py-backports-abc py-perfdump -py-backports-cached-property py-performance -py-backports-entry-points-selectable py-periodictable -py-backports-lzma py-petastorm -py-backports-os py-petname -py-backports-ssl-match-hostname py-petsc4py -py-backports-tarfile py-pexpect -py-backports-tempfile py-pfzy -py-backports-weakref py-pgzip -py-backports-zoneinfo py-phanotate -py-bagit py-phonenumbers -py-bagit-profile py-phonopy -py-bakta py-photutils -py-bandit py-phydms -py-barectf py-phylophlan -py-basemap py-pickle5 -py-bash-kernel py-pickleshare -py-basis-set-exchange py-picmistandard -py-batchspawner py-picrust2 -py-bayesian-optimization py-pid -py-bcbio-gff py-pika -py-bcolz py-pillow -py-bcrypt py-pillow-simd -py-bdbag py-pint -py-beaker py-pint-xarray -py-beancount py-pip -py-beartype py-pipdeptree -py-beautifulsoup4 py-piper -py-beniget py-pipits -py-bidict py-pispino -py-bids-validator py-pivy -py-bids-validator-deno py-pkgconfig -py-bidscoin py-pkginfo -py-bidskit py-pkgutil-resolve-name -py-bidsschematools py-plac -py-bigdft py-planar -py-bigfloat py-planet -py-billiard py-planetary-computer -py-binary py-platformdirs -py-binaryornot py-plotext -py-bintrees py-plotille -py-binwalk py-plotly -py-biobb-common py-plotnine -py-biobb-gromacs py-pluggy -py-biobb-io py-plum-dispatch -py-biobb-model py-ply -py-biobb-structure-checking py-pmw -py-biobb-structure-utils py-pmw-patched -py-bioblend py-pockets -py-biom-format py-poetry -py-biomine py-poetry-core -py-biopandas py-poetry-dynamic-versioning -py-biopython py-poetry-plugin-export -py-biosppy py-poetry-plugin-tweak-dependencies-version -py-biotite py-polars -py-biotraj py-pomegranate -py-bitarray py-pooch -py-bitshuffle py-portalocker -py-bitstring py-portend -py-bitstruct py-portpicker -py-black py-postcactus -py-blake3 py-poster -py-bleach py-pot -py-blessed py-pox -py-blessings py-poxy -py-blight py-poyo -py-blinker py-ppft -py-blis py-pprintpp -py-blosc py-pre-commit -py-blosc2 py-preshed -py-blosum py-pretrainedmodels -py-bluepyefe py-pretty-errors -py-bluepyemodel py-prettytable -py-bluepyopt py-priority -py-bmap-tools py-profilehooks -py-bmtk py-proglog -py-bokeh py-progress -py-boltons py-progressbar2 -py-boom-boot-manager py-progressbar33 -py-boost-histogram py-projectq -py-boto py-prokaryote -py-boto3 py-prometheus-client -py-botocore py-prometheus-flask-exporter -py-botorch py-promise -py-bottle py-prompt-toolkit -py-bottleneck py-propcache -py-bqplot py-properscoring -py-braceexpand py-proto-plus -py-brain-indexer py-protobuf -py-branca py-protoc-gen-swagger -py-bravado py-prov -py-bravado-core py-prwlock -py-breakseq2 py-psalg -py-breathe py-psana -py-brian py-psij-python -py-brian2 py-psmon -py-brotli py-pspamm -py-brotlipy py-psutil -py-bsddb3 py-psyclone -py-build py-psycopg2 -py-bx-python py-psygnal -py-cachecontrol py-ptyprocess -py-cached-property py-pubchempy -py-cachetools py-pudb -py-cachey py-pulp -py-cachy py-pulsar-galaxy-lib -py-cairocffi py-pure-eval -py-cairosvg py-pure-sasl -py-caliper-reader py-puremagic -py-callmonitor py-py -py-calver py-py-cpuinfo -py-cantoolz py-py-spy -py-carputils py-py-tes -py-cartopy py-py2bit -py-casadi py-py2neo -py-catalogue py-py4j -py-catkin-pkg py-py6s -py-cattrs py-pyabel -py-cbor2 py-pyaestro -py-cclib py-pyahocorasick -py-cdo py-pyamg -py-cdsapi py-pyaml -py-cekit py-pyaml-env -py-celery py-pyani -py-cellprofiler py-pyarrow -py-cellprofiler-core py-pyasn1 -py-centrosome py-pyasn1-modules -py-cerberus py-pyassimp -py-certifi py-pyautogui -py-certipy py-pybedtools -py-cf-units py-pybids -py-cf-xarray py-pybigwig -py-cffconvert py-pybind11 -py-cffi py-pybind11-stubgen -py-cfgrib py-pybktree -py-cfgv py-pybobyqa -py-cftime py-pybrain -py-cgen py-pybtex -py-chai py-pybtex-docutils -py-chainer py-pybv -py-chainforgecodegen py-pycairo -py-chainmap py-pycares -py-chalice py-pycbc -py-chardet py-pychecker -py-charm4py py-pycifrw -py-charset-normalizer py-pyclibrary -py-chart-studio py-pycm -py-cheap-repr py-pycmd -py-checkm-genome py-pycocotools -py-cheetah3 py-pycodestyle -py-chemfiles py-pycollada -py-cheroot py-pycompadre -py-cherrypy py-pyconify -py-chex py-pycorenlp -py-choreographer py-pycortex -py-chronyk py-pycosat -py-ci-info py-pycparser -py-ci-sdr py-pycrypto -py-cig-pythia py-pycryptodome -py-cinema-lib py-pyct -py-cinemasci py-pycubexr -py-circus py-pycuda -py-citeproc-py py-pycurl -py-clean-text py-pydantic -py-cleo py-pydantic-compat -py-click py-pydantic-core -py-click-didyoumean py-pydantic-extra-types -py-click-option-group py-pydantic-settings -py-click-plugins py-pydantic-tes -py-click-repl py-pydap -py-cligj py-pydata-sphinx-theme -py-clikit py-pydatalog -py-climate py-pydeface -py-climax py-pydeprecate -py-clint py-pydeps -py-clip-anytorch py-pydevtool -py-clipboard py-pydftracer -py-cloudauthz py-pydicom -py-cloudbridge py-pydispatcher -py-cloudpickle py-pydmd -py-clustershell py-pydocstyle -py-cma py-pydoe -py-cmaes py-pydoe2 -py-cmake-format py-pydot -py-cmake-parser py-pydot2 -py-cmocean py-pydotplus -py-cmseq py-pydub -py-cmsml py-pyeda -py-cmyt py-pyedr -py-coapthon3 py-pyee -py-coca-pytorch py-pyelftools -py-coclust py-pyem -py-codebasin py-pyenchant -py-codepy py-pyepsg -py-codespell py-pyerfa -py-coherent-licensed py-pyeventsystem -py-coilmq py-pyface -py-colabtools py-pyfaidx -py-colorama py-pyfasta -py-colorcet py-pyfastaq -py-colorclass py-pyfftw -py-colored py-pyfiglet -py-colored-traceback py-pyfits -py-coloredlogs py-pyflakes -py-colorful py-pyfr -py-colorio py-pygame -py-colorlog py-pygdal -py-colorlover py-pygdbmi -py-colormath py-pygelf -py-colorpy py-pygeos -py-colorspacious py-pygetwindow -py-colossalai py-pygit2 -py-colour py-pygithub -py-comm py-pyglet -py-common py-pygments -py-commonmark py-pygments-pytest -py-conan py-pygmsh -py-conda-inject py-pygmt -py-conda-souschef py-pygobject -py-confection py-pygps -py-configargparse py-pygpu -py-configobj py-pygraphviz -py-configparser py-pygresql -py-configspace py-pygrib -py-confluent-kafka py-pygtrie -py-connectionpool py-pyh5md -py-consolekit py-pyhdf -py-constantly py-pyheadtail -py-contextily py-pyhmmer -py-contextlib2 py-pyhull -py-contexttimer py-pyicu -py-continuum py-pyinstrument -py-contourpy py-pyinstrument-cext -py-contrib py-pyisemail -py-control py-pyjnius -py-convertdate py-pyjwt -py-convokit py-pyke -py-cookiecutter py-pykerberos -py-copulas py-pykml -py-corner py-pykokkos-base -py-correctionlib py-pykwalify -py-corrfunc py-pylab-sdk -py-counter py-pylatex -py-courlan py-pyld -py-cov-core py-pylev -py-coverage py-pylibmagic -py-coveralls py-pylikwid -py-cppheaderparser py-pylint -py-cppy py-pylint-gitlab -py-cramjam py-pylith -py-crashtest py-pylops -py-crc32c py-pymatgen -py-crcmod py-pymatreader -py-croniter py-pymbolic -py-crossmap py-pymc3 -py-cryolobm py-pymdown-extensions -py-cryptography py-pymeeus -py-css-parser py-pyminifier -py-cssselect py-pymol -py-cssselect2 py-pymongo -py-cssutils py-pymoo -py-csvkit py-pymorph -py-ctgan py-pympler -py-cuda-bindings py-pymsgbox -py-cudf py-pymummer -py-cufflinks py-pymumps -py-cuml py-pymysql -py-cupy py-pynacl -py-current py-pynio -py-currentscape py-pynisher -py-curvlinops-for-pytorch py-pynn -py-custodian py-pynndescent -py-custom-inherit py-pynpm -py-cutadapt py-pynrrd -py-cvxopt py-pynucleus -py-cvxpy py-pynvim -py-cwl-upgrader py-pynvml -py-cwl-utils py-pynvtx -py-cwltool py-pyodbc -py-cx-oracle py-pyogrio -py-cycler py-pyomo -py-cykhash py-pyopencl -py-cylc-flow py-pyopengl -py-cylc-rose py-pyopenssl -py-cylp py-pypar -py-cymem py-pyparsing -py-cyordereddict py-pypdf -py-cython py-pypdf2 -py-cython-bbox py-pypeflow -py-cyvcf2 py-pypeg2 -py-d2to1 py-pyperclip -py-dace py-pyperf -py-dacite py-pypinfo -py-dadi py-pypinyin -py-dalib py-pypistats -py-damask py-pypng -py-darshan py-pyppeteer -py-dasbus py-pyprecice -py-dash py-pyprof2html -py-dash-bootstrap-components py-pyproj -py-dash-svg py-pyproject-hooks -py-dask py-pyproject-metadata -py-dask-awkward py-pyproject-parser -py-dask-expr py-pypulse -py-dask-glm py-pyqi -py-dask-histogram py-pyqt-builder -py-dask-jobqueue py-pyqt4 -py-dask-ml py-pyqt5 -py-dask-mpi py-pyqt5-sip -py-dask-sphinx-theme py-pyqt6 -py-databricks-cli py-pyqt6-sip -py-dataclasses py-pyqtgraph -py-dataclasses-json py-pyquaternion -py-datacube py-pyreadline -py-datalad py-pyrect -py-datalad-container py-pyrevolve -py-datalad-deprecated py-pyrfr -py-datalad-hirni py-pyro-api -py-datalad-metadata-model py-pyro-ppl -py-datalad-metalad py-pyro4 -py-datalad-neuroimaging py-pyrocko -py-datalad-webapp py-pyrodigal -py-dataproperty py-pyrr -py-datasets py-pyrsistent -py-datashader py-pysam -py-datatrove py-pyscaf -py-dateparser py-pyscf -py-dateutils py-pyscipopt -py-datrie py-pyscreeze -py-dbf py-pyseer -py-dbfread py-pyserial -py-dcm2bids py-pysftp -py-deap py-pyshacl -py-debtcollector py-pyshp -py-debugpy py-pyside2 -py-decorator py-pysimdjson -py-deepdiff py-pysmartdl -py-deepecho py-pysmiles -py-deephyper py-pysocks -py-deepsig-biocomp py-pysolar -py-deepspeed py-pyspark -py-deeptools py-pyspellchecker -py-deeptoolsintervals py-pyspice -py-defusedxml py-pyspnego -py-demjson py-pyspoa -py-dendropy py-pysqlite3 -py-deprecat py-pystac -py-deprecated py-pystac-client -py-deprecation py-pystache -py-deprecation-alias py-pystan -py-descartes py-pysurfer -py-devito py-pytablewriter -py-devlib py-pytailf -py-dgl py-pytaridx -py-dh-scikit-optimize py-pytecplot -py-dict2css py-pytesseract -py-dictdiffer py-pytest -py-dictobj py-pytest-aiohttp -py-dill py-pytest-allclose -py-dinosaur py-pytest-arraydiff -py-dipy py-pytest-astropy -py-dirtyjson py-pytest-astropy-header -py-disbatch py-pytest-asyncio -py-discover py-pytest-benchmark -py-diskcache py-pytest-cache -py-dist-meta py-pytest-check-links -py-distance py-pytest-cov -py-distlib py-pytest-cpp -py-distributed py-pytest-datadir -py-distro py-pytest-doctestplus -py-django py-pytest-fail-slow -py-dlcpar py-pytest-filter-subpackage -py-dm-haiku py-pytest-flake8 -py-dm-tree py-pytest-flakes -py-dnaio py-pytest-forked -py-dnspython py-pytest-html -py-docker py-pytest-httpbin -py-dockerpy-creds py-pytest-isort -py-docopt py-pytest-lazy-fixture -py-docopt-ng py-pytest-memray -py-docstring-parser py-pytest-metadata -py-docstring-to-markdown py-pytest-mock -py-docutils py-pytest-mpi -py-docutils-stubs py-pytest-mypy -py-dogpile-cache py-pytest-openfiles -py-doit py-pytest-parallel -py-dolfinx-mpc py-pytest-pep8 -py-dom-toml py-pytest-pylint -py-domdf-python-tools py-pytest-qt -py-dominate py-pytest-random-order -py-donfig py-pytest-regtest -py-dotmap py-pytest-remotedata -py-dotnetcore2 py-pytest-runner -py-downhill py-pytest-subprocess -py-doxypypy py-pytest-timeout -py-dpath py-pytest-workflow -py-drep py-pytest-xdist -py-drmaa py-python-benedict -py-dryscrape py-python-bioformats -py-duecredit py-python-box -py-dulwich py-python-calamine -py-dunamai py-python-certifi-win32 -py-dvc py-python-constraint -py-dxchange py-python-crfsuite -py-dxfile py-python-daemon -py-dynaconf py-python-dateutil -py-dynim py-python-deprecated -py-earth2mip py-python-docs-theme -py-earthengine-api py-python-dotenv -py-easybuild-easyblocks py-python-editor -py-easybuild-easyconfigs py-python-engineio -py-easybuild-framework py-python-fmask -py-eccodes py-python-fsutil -py-ecdsa py-python-gitlab -py-ecmwf-opendata py-python-hostlist -py-ecmwflibs py-python-igraph -py-ecos py-python-javabridge -py-edam-ontology py-python-jenkins -py-edffile py-python-jose -py-edfio py-python-json-logger -py-edflib-python py-python-keystoneclient -py-editables py-python-ldap -py-editdistance py-python-levenshtein -py-edlib py-python-libsbml -py-eeglabio py-python-logstash -py-eerepr py-python-louvain -py-efel py-python-lsp-jsonrpc -py-efficientnet-pytorch py-python-lsp-ruff -py-eg py-python-lsp-server -py-einconv py-python-lzo -py-einops py-python-magic -py-elastic-transport py-python-mapnik -py-elasticsearch py-python-markdown-math -py-elasticsearch-dsl py-python-memcached -py-elephant py-python-multipart -py-elevation py-python-oauth2 -py-ema-pytorch py-python-picard -py-email-validator py-python-pptx -py-embedding-reader py-python-ptrace -py-emcee py-python-rapidjson -py-emoji py-python-slugify -py-empy py-python-socketio -py-entrypoints py-python-sotools -py-enum-tools py-python-subunit -py-envisage py-python-swiftclient -py-ephem py-python-utils -py-eprosima-fastdds py-python-xlib -py-epydoc py-python-xmp-toolkit -py-equation py-python3-openid -py-equinox py-python3-xlib -py-espresso py-pythonqwt -py-espressopp py-pythonsollya -py-et-xmlfile py-pythran -py-ete3 py-pytimeparse -py-etelemetry py-pytng -py-etils py-pytoml -py-eval-type-backport py-pytools -py-evaluate py-pytorch-gradual-warmup-lr -py-eventlet py-pytorch-lightning -py-evodiff py-pytorch-sphinx-theme -py-ewah-bool-utils py-pytorch-warmup -py-exarl py-pyts -py-exceptiongroup py-pytweening -py-execnet py-pytz -py-executing py-pyu2f -py-exhale py-pyudev -py-exifread py-pyugrid -py-exodus-bundler py-pyupgrade -py-expandvars py-pyusb -py-expecttest py-pyutilib -py-exponax py-pyuwsgi -py-extension-helpers py-pyvcf -py-extras py-pyvista -py-ez-setup py-pyvistaqt -py-f90nml py-pyviz-comms -py-f90wrap py-pyvolve -py-fabric py-pywavelets -py-fabric3 py-pywcs -py-fair-esm py-pywin32 -py-fairscale py-pyworld -py-faker py-pyxlsb -py-falcon py-pyyaml -py-fallocate py-pyyaml-env-tag -py-fastai py-pyzmq -py-fastaindex py-qdldl -py-fastapi py-qiskit-aer -py-fastapi-utils py-qiskit-ibm-provider -py-fastavro py-qiskit-nature -py-fastcache py-qiskit-terra -py-fastcluster py-qmtest -py-fastcore py-qpsolvers -py-fastcov py-qpth -py-fastdownload py-qrcode -py-fastdtw py-qsymm -py-fasteners py-qtawesome -py-fastfold py-qtconsole -py-fastjsonschema py-qtpy -py-fastpath py-quantiphy -py-fastprogress py-quantities -py-fastremap py-quantum-blackbird -py-fastrlock py-quantum-xir -py-fasttext-numpy2 py-quart -py-fasttext-numpy2-wheel py-quast -py-faust-cchardet py-quaternionic -py-fava py-qudida -py-fenics-basix py-queryablelist -py-fenics-dijitso py-querystring-parser -py-fenics-dolfinx py-questionary -py-fenics-ffc py-qutip -py-fenics-ffcx py-qutip-qip -py-fenics-fiat py-radiant-mlhub -py-fenics-instant py-radical-entk -py-fenics-ufl py-radical-gtod -py-fenics-ufl-legacy py-radical-pilot -py-ffmpy py-radical-saga -py-file-magic py-radical-utils -py-filecheck py-ranger-fm -py-filelock py-rapidfuzz -py-filemagic py-rapidfuzz-capi -py-filetype py-rarfile -py-filterpy py-rasterio -py-find-libpython py-rasterstats -py-findlibs py-ratelim -py-fiona py-ratelimiter -py-fire py-raven -py-fireworks py-ray -py-fiscalyear py-rbtools -py-fisher py-rdflib -py-fits-tools py-rdflib-jsonld -py-fitsio py-rdt -py-fitter py-reacton -py-fixtures py-readchar -py-flake8 py-readme-renderer -py-flake8-import-order py-recommonmark -py-flake8-polyfill py-redis -py-flaky py-referencing -py-flameprof py-refgenconf -py-flash-attn py-refgenie -py-flask py-regex -py-flask-babel py-regionmask -py-flask-compress py-regions -py-flask-cors py-reindent -py-flask-paginate py-relion -py-flask-restful py-relion-blush -py-flask-socketio py-relion-classranker -py-flask-sqlalchemy py-repligit -py-flatbuffers py-reportlab -py-flatten-dict py-reportseff -py-flawfinder py-repoze-lru -py-flax py-reproject -py-flexcache py-requests -py-flexmock py-requests-cache -py-flexparser py-requests-file -py-flexx py-requests-ftp -py-flit py-requests-futures -py-flit-core py-requests-kerberos -py-flit-scm py-requests-mock -py-flox py-requests-ntlm -py-flufl-lock py-requests-oauthlib -py-fluiddyn py-requests-toolbelt -py-fluidfft py-requests-unixsocket -py-fluidfft-builder py-requirements-parser -py-fluidfft-fftw py-reretry -py-fluidfft-fftwmpi py-resampy -py-fluidfft-mpi-with-fftw py-resize-right -py-fluidfft-p3dfft py-resolvelib -py-fluidfft-pfft py-responses -py-fluidsim py-resultsfile -py-fluidsim-core py-retry -py-flye py-retry-decorator -py-fn-py py-retrying -py-folium py-retworkx -py-fonttools py-rfc3339-validator -py-ford py-rfc3986 -py-formatizer py-rfc3986-validator -py-formulaic py-rich -py-fortls py-rich-argparse -py-fortran-language-server py-rich-click -py-fortranformat py-rios -py-fparser py-rioxarray -py-fprettify py-rise -py-fqdn py-river -py-fracridge py-rmm -py-fraction py-rnc2rng -py-freetype-py py-robocrys -py-freezegun py-robotframework -py-frozendict py-rocrate -py-frozenlist py-roifile -py-fs py-roman-numerals-py -py-fsspec py-rope -py-fsspec-xrootd py-rosdep -py-ftfy py-rosdistro -py-ftputil py-rosinstall -py-funcy py-rosinstall-generator -py-furo py-rospkg -py-fury py-rotary-embedding-torch -py-fusepy py-rouge-score -py-future py-routes -py-fuzzywuzzy py-rpds-py -py-fypp py-rply -py-galaxy-containers py-rpy2 -py-galaxy-job-metrics py-rsa -py-galaxy-objectstore py-rsatoolbox -py-galaxy-sequence-utils py-rseqc -py-galaxy-tool-util py-rst2pdf -py-galaxy-util py-rtoml -py-galaxy2cwl py-rtree -py-gast py-ruamel-ordereddict -py-gcovr py-ruamel-yaml -py-gcs-oauth2-boto-plugin py-ruamel-yaml-clib -py-gcsfs py-ruamel-yaml-jinja2 -py-gdc-client py-rucio-clients -py-gdown py-ruff -py-gee-asset-manager py-rustworkx -py-geeadd py-rx -py-geemap py-s3cmd -py-geeup py-s3fs -py-gemmforge py-s3transfer -py-genders py-sacrebleu -py-geneimpacts py-sacremoses -py-generateds py-safetensors -py-genshi py-salib -py-gensim py-scandir -py-geoalchemy2 py-scanpy -py-geocoder py-schema -py-geocube py-schema-salad -py-geographiclib py-scientificpython -py-geojson py-scifem -py-geomdl py-scikit-build -py-geopandas py-scikit-build-core -py-geoplot py-scikit-fmm -py-geopmdpy py-scikit-fuzzy -py-geopmpy py-scikit-image -py-geopy py-scikit-learn -py-geoviews py-scikit-learn-extra -py-gevent py-scikit-matter -py-gf256 py-scikit-optimize -py-gfal2-python py-scikit-sparse -py-gffutils py-scikits-odes -py-ghp-import py-scine-chemoton -py-gidgethub py-scine-puffin -py-gidgetlab py-scinum -py-gimmik py-scipy -py-gin-config py-scooby -py-git-review py-scoop -py-gitdb py-scp -py-gitpython py-screed -py-glean-parser py-scs -py-glean-sdk py-sdmetrics -py-glmnet py-sdv -py-glmnet-python py-seaborn -py-glmsingle py-secretstorage -py-glob2 py-seekpath -py-globus-cli py-segmentation-models-pytorch -py-globus-sdk py-selenium -py-gluoncv py-semantic-version -py-glymur py-semver -py-gmsh py-send2trash -py-gmsh-interop py-sentencepiece -py-gmxapi py-sentry-sdk -py-gnuplot py-seqeval -py-goatools py-sequence-models -py-gooey py-seriate -py-google py-serpent -py-google-api-core py-session-info -py-google-api-python-client py-setproctitle -py-google-apitools py-setupmeta -py-google-auth py-setuptools -py-google-auth-httplib2 py-setuptools-cpp -py-google-auth-oauthlib py-setuptools-git -py-google-cloud-appengine-logging py-setuptools-git-versioning -py-google-cloud-audit-log py-setuptools-reproducible -py-google-cloud-batch py-setuptools-rust -py-google-cloud-bigquery py-setuptools-scm -py-google-cloud-core py-setuptools-scm-git-archive -py-google-cloud-logging py-sfepy -py-google-cloud-storage py-sgp4 -py-google-crc32c py-sh -py-google-pasta py-shap -py-google-reauth py-shapely -py-google-resumable-media py-shellescape -py-googleapis-common-protos py-shellingham -py-googledrivedownloader py-shiboken2 -py-gosam py-shippinglabel -py-gpaw py-shortbred -py-gpaw-data py-shortuuid -py-gpustat py-shroud -py-gputil py-shtab -py-gpy py-simpervisor -py-gpyopt py-simple-slurm -py-gpytorch py-simpleeval -py-gql py-simplegeneric -py-gradio py-simplejson -py-gradio-client py-simplekml -py-grandalf py-simpletraj -py-graphcast py-simpy -py-grapheme py-simsimd -py-graphene py-singledispatchmethod -py-graphlib-backport py-sip -py-graphql-core py-six -py-graphql-relay py-skl2onnx -py-graphql-ws py-slepc4py -py-graphviz py-slicer -py-gravity py-slurm-pipeline -py-grayskull py-smac -py-greenlet py-smart-open -py-grequests py-smartredis -py-griddataformats py-smartsim -py-griffe py-smartypants -py-gromacswrapper py-smmap -py-grpc-google-iam-v1 py-smote-variants -py-grpcio py-snakemake-executor-plugin-azure-batch -py-grpcio-status py-snakemake-executor-plugin-cluster-generic -py-grpcio-tools py-snakemake-executor-plugin-cluster-sync -py-gsd py-snakemake-executor-plugin-drmaa -py-gssapi py-snakemake-executor-plugin-flux -py-gsutil py-snakemake-executor-plugin-googlebatch -py-gtdbtk py-snakemake-executor-plugin-kubernetes -py-gunicorn py-snakemake-executor-plugin-slurm -py-gxformat2 py-snakemake-executor-plugin-slurm-jobstep -py-gym py-snakemake-executor-plugin-tes -py-h11 py-snakemake-interface-common -py-h2 py-snakemake-interface-executor-plugins -py-h5glance py-snakemake-interface-report-plugins -py-h5io py-snakemake-interface-storage-plugins -py-h5netcdf py-snakemake-storage-plugin-azure -py-h5py py-snakemake-storage-plugin-fs -py-h5sh py-snakemake-storage-plugin-ftp -py-hacking py-snakemake-storage-plugin-gcs -py-hail py-snakemake-storage-plugin-http -py-handy-archives py-snakemake-storage-plugin-s3 -py-hatch py-snakemake-storage-plugin-sftp -py-hatch-cython py-snakemake-storage-plugin-zenodo -py-hatch-fancy-pypi-readme py-snakeviz -py-hatch-jupyter-builder py-snappy -py-hatch-nodejs-version py-sncosmo -py-hatch-requirements-txt py-sniffio -py-hatch-vcs py-snoop -py-hatchet py-snowballstemmer -py-hatchling py-snuggs -py-hclust2 py-sobol-seq -py-hdbscan py-social-auth-core -py-hdfs py-sonlib -py-healpix py-sortedcollections -py-healpy py-sortedcontainers -py-heapdict py-soundfile -py-heat py-soupsieve -py-hep-ml py-soyclustering -py-hepdata-converter py-spacy -py-hepdata-lib py-spacy-legacy -py-hepdata-validator py-spacy-loggers -py-hepstats py-spacy-models-en-core-web-sm -py-hepunits py-spacy-models-en-vectors-web-lg -py-hf-transfer py-sparse -py-hf-xet py-spatialist -py-hieroglyph py-spatialite -py-hiredis py-spatialpandas -py-hist py-spdlog -py-histbook py-spectra -py-histogrammar py-spectral -py-histoprint py-speech-recognition -py-hjson py-spefile -py-hmmlearn py-spgl1 -py-holland-backup py-spglib -py-holoviews py-spherical -py-horovod py-sphinx -py-hpack py-sphinx-argparse -py-hpbandster py-sphinx-autodoc-typehints -py-hpccm py-sphinx-basic-ng -py-hsluv py-sphinx-book-theme -py-hstspreload py-sphinx-bootstrap-theme -py-htgettoken py-sphinx-click -py-html2text py-sphinx-copybutton -py-html5lib py-sphinx-design -py-htmldate py-sphinx-fortran -py-htmlgen py-sphinx-gallery -py-htseq py-sphinx-immaterial -py-httpbin py-sphinx-jinja2-compat -py-httpcore py-sphinx-multiversion -py-httplib2 py-sphinx-prompt -py-httpretty py-sphinx-removed-in -py-httpstan py-sphinx-rtd-dark-mode -py-httptools py-sphinx-rtd-theme -py-httpx py-sphinx-tabs -py-huggingface-hub py-sphinx-theme-builder -py-humanfriendly py-sphinx-toolbox -py-humanize py-sphinxautomodapi -py-hvac py-sphinxcontrib-applehelp -py-hvplot py-sphinxcontrib-bibtex -py-hydra-core py-sphinxcontrib-devhelp -py-hypercorn py-sphinxcontrib-htmlhelp -py-hyperframe py-sphinxcontrib-issuetracker -py-hyperlink py-sphinxcontrib-jquery -py-hyperopt py-sphinxcontrib-jsmath -py-hypothesis py-sphinxcontrib-mermaid -py-ibm-cloud-sdk-core py-sphinxcontrib-moderncmakedomain -py-ibm-watson py-sphinxcontrib-napoleon -py-ics py-sphinxcontrib-plantuml -py-id py-sphinxcontrib-programoutput -py-identify py-sphinxcontrib-qthelp -py-idna py-sphinxcontrib-serializinghtml -py-idna-ssl py-sphinxcontrib-spelling -py-igor py-sphinxcontrib-trio -py-igor2 py-sphinxcontrib-websupport -py-igraph py-sphinxemoji -py-igv-notebook py-sphobjinv -py-illumina-utils py-spykeutils -py-ilmbase py-spython -py-imagecodecs py-sqlalchemy -py-imagehash py-sqlalchemy-migrate -py-imageio py-sqlalchemy-stubs -py-imageio-ffmpeg py-sqlalchemy-utils -py-imagesize py-sqlitedict -py-imbalanced-learn py-sqlparse -py-imgaug py-srsly -py-iminuit py-sseclient -py-immutabledict py-sshtunnel -py-immutables py-sspilib -py-importlib-metadata py-stack-data -py-importlib-resources py-starfile -py-imutils py-starlette -py-in-n-out py-starlette-context -py-incremental py-starsessions -py-inflect py-stashcp -py-inheritance py-statmorph -py-iniconfig py-statsmodels -py-iniparse py-stdlib-list -py-inquirer py-stestr -py-inquirerpy py-stevedore -py-inscriptis py-stomp-py -py-installer py-stopit -py-instrain py-storm -py-intbitset py-stratify -py-intel-openmp py-strawberryfields -py-intensity-normalization py-streamlit -py-interface-meta py-stringzilla -py-interlap py-striprtf -py-intervaltree py-stsci-distutils -py-invoke py-stui -py-iocapture py-submitit -py-iopath py-subrosa -py-ipaddress py-subword-nmt -py-ipdb py-superqt -py-ipycanvas py-supervisor -py-ipyevents py-svgpath -py-ipyfilechooser py-svgpathtools -py-ipykernel py-svgutils -py-ipyleaflet py-svgwrite -py-ipympl py-swagger-spec-validator -py-ipyparallel py-symengine -py-ipyrad py-symfit -py-ipython py-sympy -py-ipython-cluster-helper py-syned -py-ipython-genutils py-sysrsync -py-ipython-pygments-lexers py-systemd-python -py-ipytree py-tabledata -py-ipyvtk-simple py-tables -py-ipyvue py-tabulate -py-ipyvuetify py-tatsu -py-ipywidgets py-tblib -py-irpf90 py-tbparse -py-isa-rwval py-tcolorpy -py-isal py-tempita -py-iso8601 py-templateflow -py-isodate py-tempora -py-isoduration py-tenacity -py-isort py-tensorboard -py-iterative-stats py-tensorboard-data-server -py-itk py-tensorboard-plugin-wit -py-itolapi py-tensorboardx -py-itsdangerous py-tensorflow -py-jacobi py-tensorflow-datasets -py-jaconv py-tensorflow-estimator -py-jamo py-tensorflow-hub -py-janus py-tensorflow-metadata -py-jaraco-classes py-tensorflow-probability -py-jaraco-context py-tensorly -py-jaraco-functools py-tensorstore -py-jarowinkler py-termcolor -py-jarvis-util py-termgraph -py-javaproperties py-terminado -py-jax py-terminaltables -py-jaxlib py-tern -py-jaxtyping py-tesorter -py-jcb py-testfixtures -py-jdatetime py-testinfra -py-jdcal py-testpath -py-jedi py-testrepository -py-jeepney py-testresources -py-jellyfish py-testscenarios -py-jinja2 py-testtools -py-jinja2-cli py-tetoolkit -py-jinja2-time py-text-unidecode -py-jiter py-textblob -py-jmespath py-texttable -py-jmp py-textual -py-joblib py-textual-plotext -py-jplephem py-textwrap3 -py-jproperties py-textx -py-jprops py-tf-keras -py-jpype1 py-tfdlpack -py-jraph py-theano -py-jsmin py-thewalrus -py-json-get py-thinc -py-json-tricks py-thop -py-json2html py-threadpoolctl -py-json5 py-throttler -py-jsonargparse py-tidynamics -py-jsondiff py-tifffile -py-jsonlines py-tiktoken -py-jsonpatch py-tilelang -py-jsonpath-ng py-timm -py-jsonpickle py-tinyarray -py-jsonpointer py-tinycss2 -py-jsonref py-tinydb -py-jsonschema py-tinyrecord -py-jsonschema-specifications py-tld -py-junit-xml py-tldextract -py-junit2html py-tokenize-rt -py-jupyter py-tokenizers -py-jupyter-client py-toml -py-jupyter-console py-tomli -py-jupyter-core py-tomli-w -py-jupyter-events py-tomlkit -py-jupyter-leaflet py-tomopy -py-jupyter-lsp py-toolz -py-jupyter-packaging py-topiary-asr -py-jupyter-server py-toposort -py-jupyter-server-mathjax py-torch -py-jupyter-server-proxy py-torch-cluster -py-jupyter-server-terminals py-torch-fidelity -py-jupyter-telemetry py-torch-geometric -py-jupyterhub py-torch-harmonics -py-jupyterlab py-torch-nvidia-apex -py-jupyterlab-pygments py-torch-scatter -py-jupyterlab-server py-torch-sparse -py-jupyterlab-widgets py-torch-spline-conv -py-jupytext py-torchaudio -py-justext py-torchbenchmark -py-jwcrypto py-torchdata -py-kaggle py-torchdiffeq -py-kaldiio py-torchfile -py-kaleido py-torchgeo -py-kb-python py-torchmeta -py-keras py-torchmetrics -py-keras-applications py-torchseg -py-keras-preprocessing py-torchsummary -py-keras2onnx py-torchtext -py-kerberos py-torchtoolbox -py-keyboard py-torchvision -py-keyring py-tornado -py-keyrings-alt py-tox -py-keystoneauth1 py-toyplot -py-kitchen py-toytree -py-kiwisolver py-tpot -py-kmodes py-tqdm -py-knack py-traceback2 -py-kneaddata py-trafilatura -py-kombu py-trainax -py-kornia py-traitlets -py-kornia-rs py-traits -py-kosh py-traitsui -py-krb5 py-traittypes -py-kt-legacy py-trame -py-kubernetes py-trame-client -py-kymatio py-trame-server -py-lagom py-transformer-engine -py-langcodes py-transformers -py-langsmith py-transforms3d -py-lap py-transonic -py-laplace-torch py-tree -py-lark py-tree-math -py-lark-parser py-tree-sitter -py-laspy py-tree-sitter-c -py-latexcodec py-treehash -py-law py-treelib -py-lazy py-triangle -py-lazy-loader py-trieregex -py-lazy-object-proxy py-trimesh -py-lazy-property py-triton -py-lazyarray py-trojanzoo-sphinx-theme -py-lcls-krtc py-trove-classifiers -py-ldap3 py-trx-python -py-leather py-tuiview -py-lerc py-tuspy -py-lfpykit py-tuswsgi -py-lhsmdu py-tweedledum -py-liac-arff py-twine -py-libclang py-twisted -py-libconf py-typed-ast -py-libcst py-typeguard -py-libensemble py-typepy -py-liblas py-typer -py-librosa py-types-dataclasses -py-libsonata py-types-pkg-resources -py-lifelines py-types-psutil -py-lightgbm py-types-python-dateutil -py-lightly py-types-pytz -py-lightly-utils py-types-requests -py-lightning py-types-setuptools -py-lightning-api-access py-types-typed-ast -py-lightning-cloud py-types-urllib3 -py-lightning-fabric py-typesentry -py-lightning-lite py-typeshed-client -py-lightning-uq-box py-typing-extensions -py-lightning-utilities py-typing-inspect -py-ligo-segments py-typish -py-lil-aretomo py-tzdata -py-line-profiler py-tzlocal -py-linear-operator py-ubiquerg -py-linear-tree py-uc-micro-py -py-linecache2 py-ucsf-pyem -py-lineenhancer py-ucx-py -py-linkchecker py-uhi -py-linkify-it-py py-ujson -py-lit py-ultralytics -py-litdata py-umalqurra -py-littleutils py-umap-learn -py-lizard py-umi-tools -py-llnl-sina py-uncertainties -py-llvmlite py-uncertainty-toolbox -py-lmdb py-unfoldnd -py-lmfit py-unicycler -py-lmodule py-unidecode -py-localcider py-unittest2py3k -py-locket py-universal-pathlib -py-lockfile py-unshare -py-logilab-common py-unyt -py-logistro py-update-checker -py-logmuse py-uproot -py-loguru py-uproot3 -py-loky py-uproot3-methods -py-loompy py-uri-template -py-looseversion py-uritemplate -py-louie py-url-normalize -py-lpips py-urllib3 -py-lru-dict py-urllib3-secure-extra -py-lscsoft-glue py-urwid -py-lsprotocol py-us -py-luigi py-userpath -py-lvis py-usgs -py-lws py-utils -py-lxml py-uv -py-lz4 py-uvicorn -py-lzstring py-uvloop -py-m2r py-uvw -py-macholib py-uwsgi -py-machotools py-uxarray -py-macs2 py-validators -py-macs3 py-vascpy -py-maestrowf py-vcf-kit -py-magicgui py-vcrpy -py-mahotas py-vcstool -py-mailchecker py-vcstools -py-make py-vcversioner -py-makefun py-vector -py-mako py-vector-quantize-pytorch -py-mapbox-earcut py-vermin -py-mapclassify py-vermouth-martinize -py-mariadb py-versioneer -py-markdown py-versioneer-518 -py-markdown-include py-verspec -py-markdown-it-py py-vesin -py-markdown2 py-vine -py-markov-clustering py-virtualenv -py-markovify py-virtualenv-clone -py-markupsafe py-virtualenvwrapper -py-marshmallow py-visdom -py-matminer py-vispy -py-matplotlib py-vl-convert-python -py-matplotlib-inline py-voluptuous -py-matplotlib-scalebar py-vsc-base -py-maturin py-vsc-install -py-mayavi py-vsts -py-mbstrdecoder py-vsts-cd-manager -py-mccabe py-wadler-lindig -py-md-environ py-waitress -py-mda-xdrlib py-walinuxagent -py-mdanalysis py-wand -py-mdanalysistests py-wandb -py-mdi py-warcio -py-mdit-py-plugins py-warlock -py-mdocfile py-wasabi -py-mdurl py-watchdog -py-meautility py-watchfiles -py-mechanize py-waves -py-medaka py-wcsaxes -py-meldmd py-wcwidth -py-melissa-core py-webargs -py-memory-profiler py-webcolors -py-memprof py-webdataset -py-memray py-webencodings -py-mercantile py-webkit-server -py-mergedeep py-weblogo -py-merlin py-webob -py-meshio py-websocket-client -py-meshpy py-websockets -py-meson-python py-werkzeug -py-metaphlan py-wesanderson -py-metasv py-wget -py-metatensor-core py-whatshap -py-metatensor-learn py-wheel -py-metatensor-operations py-whey -py-metatensor-torch py-whey-pth -py-metatomic-torch py-whichcraft -py-metis py-whoosh -py-metomi-isodatetime py-widgetsnbextension -py-metomi-rose py-wids -py-metpy py-win-unicode-console -py-metric-learn py-wincertstore -py-metrics py-word2number -py-mffpy py-wordcloud -py-mg-rast-tools py-workload-automation -py-mgmetis py-wradlib -py-microsoft-aurora py-wrapt -py-mido py-wsproto -py-mikado py-wstool -py-mike py-wub -py-minio py-wurlitzer -py-minisom py-ww -py-minkowskiengine py-wxflow -py-minrpc py-wxmplot -py-misk py-wxpython -py-misopy py-x-clip -py-mistletoe py-x21 -py-mistune py-xanadu-cloud-client -py-mizani py-xarray -py-mkdocs py-xarray-regrid -py-mkdocs-autorefs py-xarray-tensorstore -py-mkdocs-jupyter py-xattr -py-mkdocs-material py-xcdat -py-mkdocs-material-extensions py-xdot -py-mkdocstrings py-xenv -py-mkdocstrings-python py-xesmf -py-ml-collections py-xgboost -py-ml-dtypes py-xgcm -py-mlflow py-xhistogram -py-mlperf-logging py-xlrd -py-mlxtend py-xlsxwriter -py-mmcv py-xlwt -py-mmtf-python py-xmlplain -py-mne py-xmlrunner -py-mne-bids py-xmltodict -py-mo-pack py-xonsh -py-moarchiving py-xopen -py-mock py-xpyb -py-model-index py-xskillscore -py-modepy py-xtb -py-modin py-xvfbwrapper -py-modred py-xxhash -py-modules-gui py-xyzservices -py-moltemplate py-yacman -py-monai py-yacs -py-monkeytype py-yahmm -py-monotonic py-yajl -py-monty py-yamlreader -py-more-itertools py-yapf -py-morph-tool py-yarl -py-morphio py-yaspin -py-morphosamplers py-yolk3k -py-motmetrics py-your -py-mouseinfo py-youtube-dl -py-moviepy py-yq -py-mpi4jax py-yt -py-mpi4py py-yte -py-mpld3 py-ytopt -py-mpldock py-ytopt-autotune -py-mplhep py-z3-solver -py-mplhep-data py-zarr -py-mpmath py-zc-buildout -py-mrcfile py-zc-lockfile -py-msal py-zfit -py-msal-extensions py-zfit-interface -py-msgpack py-zfit-physics -py-msgpack-numpy py-zict -py-msrest py-zipfile-deflate64 -py-msrestazure py-zipp -py-multi-imbalance py-zipstream-new -py-multi-key-dict py-zope-event -py-multidict py-zope-interface -py-multiecho py-zstandard -py-multipledispatch py-zxcvbn -==> 2856 packages +py-3to2 py-fair-esm py-mysqlclient py-pywin32 +py-4suite-xml py-fairscale py-myst-parser py-pywinpty +py-a2wsgi py-faker py-namex py-pyworld +py-abcpy py-fakeredis py-nanobind py-pyxlsb +py-abipy py-falcon py-nanoget py-pyyaml +py-about-time py-fallocate py-nanomath py-pyyaml-env-tag +py-absl-py py-fastai py-nanoplot py-pyzmq +py-accelerate py-fastaindex py-nanostat py-qdldl +py-accessible-pygments py-fastapi py-nanotime py-qiskit-aer +py-accimage py-fastapi-utils py-nanotron py-qiskit-ibm-provider +py-acme-tiny py-fastavro py-napari py-qiskit-nature +py-acres py-fastcache py-napari-console py-qiskit-terra +py-adal py-fastcluster py-napari-plugin-engine py-qmtest +py-adb-enhanced py-fastcore py-napari-plugin-manager py-qpsolvers +py-addict py-fastcov py-napari-svg py-qpth +py-adios py-fastdownload py-nara-wpe py-qrcode +py-adios4dolfinx py-fastdtw py-narwhals py-qsymm +py-advancedhtmlparser py-fasteners py-natsort py-qtawesome +py-aenum py-fastfold py-nbclassic py-qtconsole +py-affine py-fastjsonschema py-nbclient py-qtpy +py-agate py-fastobo py-nbconvert py-quantiphy +py-agate-dbf py-fastpath py-nbdime py-quantities +py-agate-excel py-fastprogress py-nbformat py-quantum-blackbird +py-agate-sql py-fastremap py-nbmake py-quantum-xir +py-ahpy py-fastrlock py-nbqa py-quart +py-aiobotocore py-fasttext-numpy2 py-nbsphinx py-quast +py-aiocontextvars py-fasttext-numpy2-wheel py-nbstripout py-quaternionic +py-aiodns py-faust-cchardet py-nbval py-qudida +py-aiofiles py-fava py-nc-time-axis py-queryablelist +py-aiohappyeyeballs py-fenics-basix py-ncbi-genome-download py-querystring-parser +py-aiohttp py-fenics-dijitso py-ndg-httpsclient py-questionary +py-aiohttp-cors py-fenics-dolfinx py-ndindex py-qutip +py-aioitertools py-fenics-ffc py-neo py-qutip-qip +py-aiojobs py-fenics-ffcx py-neo4j py-rachis +py-aioredis py-fenics-fiat py-neobolt py-radiant-mlhub +py-aiosignal py-fenics-instant py-neotime py-radical-entk +py-aiosqlite py-fenics-ufl py-neovim-remote py-radical-gtod +py-aiowebdav2 py-fenics-ufl-legacy py-neptune-client py-radical-pilot +py-alabaster py-ffmpy py-nest-asyncio py-radical-saga +py-albucore py-fief-client py-nestle py-radical-utils +py-alembic py-file-magic py-netaddr py-ranger-fm +py-alive-progress py-filecheck py-netcdf4 py-rapidfuzz +py-alpaca-eval py-filelock py-netifaces py-rapidfuzz-capi +py-alpaca-farm py-filemagic py-netket py-rarfile +py-alphafold py-filetype py-netpyne py-rassumfrassum +py-altair py-filterpy py-networkit py-rasterio +py-altgraph py-find-libpython py-networkx py-rasterstats +py-amici py-findlibs py-neuralgcm py-ratelim +py-amityping py-fiona py-neurokit2 py-ratelimiter +py-amplpy py-fire py-neurolab py-raven +py-ampltools py-fireworks py-neurom py-ray +py-amqp py-fiscalyear py-neurora py-rbtools +py-amrex py-fisher py-neurotools py-rdflib +py-angel py-fits-tools py-nexus-sdk py-rdflib-jsonld +py-aniso8601 py-fitsio py-nexusforge py-rdt +py-anndata py-fitter py-nglview py-reacton +py-annexremote py-fixtures py-ngs-tools py-readchar +py-annotated-types py-flake8 py-nh3 py-readme-renderer +py-annoy py-flake8-import-order py-nibabel py-recommonmark +py-ansi2html py-flake8-polyfill py-nilearn py-redis +py-ansible py-flaky py-nipype py-referencing +py-ansimarkup py-flameprof py-nitransforms py-refgenconf +py-ansiwrap py-flash-attn py-niworkflows py-refgenie +py-antimeridian py-flask py-nltk py-regex +py-antipickle py-flask-babel py-node-semver py-regionmask +py-antlr4-python3-runtime py-flask-compress py-nodeenv py-regions +py-antspyx py-flask-cors py-non-regression-test-tools py-reindent +py-anuga py-flask-paginate py-nose py-relion +py-anvio py-flask-restful py-nose-cov py-relion-blush +py-anybadge py-flask-socketio py-nose2 py-relion-classranker +py-anyio py-flask-sqlalchemy py-nosexcover py-repligit +py-anytree py-flatbuffers py-notebook py-reportlab +py-anywidget py-flatten-dict py-notebook-shim py-reportseff +py-apache-libcloud py-flawfinder py-npe2 py-repoze-lru +py-apache-tvm-ffi py-flax py-nptyping py-reproject +py-apebench py-flexcache py-npx py-requests +py-apex py-flexmock py-ntlm-auth py-requests-cache +py-apeye py-flexparser py-ntplib py-requests-file +py-apeye-core py-flexx py-nugraph py-requests-ftp +py-apipkg py-flit py-nuitka py-requests-futures +py-apispec py-flit-core py-num2words py-requests-kerberos +py-app-model py-flit-scm py-numba py-requests-mock +py-appdirs py-flox py-numba4jax py-requests-ntlm +py-applicationinsights py-flufl-lock py-numbagg py-requests-oauthlib +py-appnope py-fluiddyn py-numcodecs py-requests-toolbelt +py-apprise py-fluidfft py-numdifftools py-requests-unixsocket +py-apptools py-fluidfft-builder py-numexpr py-requirements-parser +py-apscheduler py-fluidfft-fftw py-numexpr3 py-reretry +py-arcgis py-fluidfft-fftwmpi py-numkit py-resampy +py-arch py-fluidfft-mpi-with-fftw py-numl py-resize-right +py-archspec py-fluidfft-p3dfft py-numpy py-resolvelib +py-arcp py-fluidfft-pfft py-numpy-groupies py-responses +py-argcomplete py-fluidsim py-numpy-indexed py-resultsfile +py-argh py-fluidsim-core py-numpy-quaternion py-retry +py-argon2-cffi py-flye py-numpy-stl py-retry-decorator +py-argon2-cffi-bindings py-fn-py py-numpydoc py-retrying +py-argparse-dataclass py-folium py-nvidia-dali py-retworkx +py-argparse-manpage py-fonttools py-nvidia-ml-py py-rfc3339-validator +py-args py-ford py-nvidia-ml-py3 py-rfc3986 +py-arkouda py-formatizer py-nvidia-modulus py-rfc3986-validator +py-arm-pyart py-formulaic py-nvidia-nvcomp py-rfc3987-syntax +py-arpeggio py-fortls py-nvidia-nvimagecodec py-rich +py-arrow py-fortran-language-server py-nvidia-nvjpeg2k py-rich-argparse +py-art py-fortranformat py-nvidia-nvtiff py-rich-click +py-arviz py-fparser py-nvidia-physicsnemo py-rio-pmtiles +py-asciitree py-fprettify py-nvitop py-rios +py-asdf py-fqdn py-nvtx py-rioxarray +py-asdf-astropy py-fracridge py-oauth2client py-rise +py-asdf-coordinates-schemas py-fraction py-oauthlib py-river +py-asdf-standard py-freetype-py py-obspy py-rmm +py-asdf-transform-schemas py-freezegun py-ocnn py-rnc2rng +py-asdf-unit-schemas py-frozendict py-odc-geo py-robocrys +py-asdfghjkl py-frozenlist py-odfpy py-robotframework +py-ase py-fs py-ogb py-rocrate +py-asgi-lifespan py-fsspec py-okada-wrapper py-roifile +py-asgiref py-fsspec-xrootd py-olcf-velocity py-roman-numerals +py-asn1crypto py-ftfy py-olefile py-roman-numerals-py +py-aspy-yaml py-ftputil py-olmoearth-pretrain-minimal py-rope +py-asserts py-funcy py-omegaconf py-rosdep +py-ast-serialize py-furo py-onnx py-rosdistro +py-asteval py-fury py-onnx-opcounter py-rosinstall +py-astor py-fusepy py-onnxconverter-common py-rosinstall-generator +py-astpretty py-future py-onnxmltools py-rospkg +py-astroid py-fuzzywuzzy py-onnxruntime py-rotary-embedding-torch +py-astropy py-fypp py-ont-fast5-api py-rouge-score +py-astropy-healpix py-galaxy-containers py-opcodes py-routes +py-astropy-helpers py-galaxy-job-metrics py-open-clip-torch py-rpds-py +py-astropy-iers-data py-galaxy-objectstore py-openai py-rply +py-asttokens py-galaxy-sequence-utils py-openai-whisper py-rpy2 +py-astunparse py-galaxy-tool-util py-openapi-schema-pydantic py-rsa +py-async-generator py-galaxy-util py-opencensus py-rsatoolbox +py-async-lru py-galaxy2cwl py-opencensus-context py-rseqc +py-async-timeout py-gast py-opencv-python py-rst2pdf +py-asyncio py-gcovr py-opendatalab py-rtoml +py-asyncpg py-gcs-oauth2-boto-plugin py-openidc-client py-rtree +py-asynctest py-gcsfs py-openmc py-ruamel-ordereddict +py-atomicwrites py-gdc-client py-openmesh py-ruamel-yaml +py-atpublic py-gdown py-openmim py-ruamel-yaml-clib +py-atropos py-gee-asset-manager py-openpmd-validator py-ruamel-yaml-jinja2 +py-ats py-geeadd py-openpmd-viewer py-rucio-clients +py-attmap py-geemap py-openpyxl py-ruff +py-attrs py-geeup py-openslide-python py-rustworkx +py-audioread py-gemmforge py-opentelemetry-api py-rx +py-auditwheel py-gemmi py-opentelemetry-exporter-prometheus py-s3cmd +py-authlib py-genders py-opentelemetry-instrumentation py-s3fs +py-autocfg py-geneimpacts py-opentelemetry-sdk py-s3transfer +py-autodocsumm py-generateds py-opentelemetry-semantic-conventions py-sacrebleu +py-autograd py-genshi py-opentree py-sacremoses +py-autograd-gamma py-gensim py-opentuner py-safe-netrc +py-automat py-geoalchemy2 py-opppy py-safetensors +py-autopep8 py-geocoder py-ops py-salib +py-autoray py-geocube py-opt-einsum py-sarif-tools +py-autoreject py-geographiclib py-optax py-scandir +py-auxlib py-geojson py-optree py-scanpy +py-avro py-geomdl py-optuna py-schema +py-avro-json-serializer py-geopandas py-or-tools py-schema-salad +py-avro-python3 py-geoplot py-oracledb py-scientificpython +py-awesome-slugify py-geopmdpy py-orbax-checkpoint py-scifem +py-awkward py-geopmpy py-ordered-set py-scikit-build +py-awkward-cpp py-geopy py-orderly-set py-scikit-build-core +py-awkward0 py-geoviews py-orjson py-scikit-fmm +py-awscrt py-gest-api py-os-service-types py-scikit-fuzzy +py-ax-platform py-gevent py-oset py-scikit-image +py-azote py-gf256 py-oslo-config py-scikit-learn +py-azure-batch py-gfal2-python py-oslo-i18n py-scikit-learn-extra +py-azure-cli-command-modules-nspkg py-gffutils py-oslo-serialization py-scikit-matter +py-azure-cli-core py-ghp-import py-oslo-utils py-scikit-optimize +py-azure-cli-nspkg py-gidgethub py-osqp py-scikit-sparse +py-azure-cli-telemetry py-gidgetlab py-outdated py-scikits-odes +py-azure-common py-gimmik py-overpy py-scine-chemoton +py-azure-core py-gin-config py-overrides py-scine-puffin +py-azure-cosmos py-git-review py-owlrl py-scinum +py-azure-datalake-store py-gitdb py-owslib py-scipy +py-azure-functions-devops-build py-gitpython py-oyaml py-scitokens +py-azure-graphrbac py-glean-parser py-p2j py-scooby +py-azure-identity py-glean-sdk py-pacifica-downloader py-scoop +py-azure-keyvault py-glmnet py-pacifica-namespace py-scp +py-azure-keyvault-certificates py-glmnet-python py-pacifica-uploader py-screed +py-azure-keyvault-keys py-glmsingle py-packaging py-scs +py-azure-keyvault-nspkg py-glob2 py-pager py-sdmetrics +py-azure-keyvault-secrets py-globus-cli py-paho-mqtt py-sdnotify +py-azure-loganalytics py-globus-sdk py-palettable py-sdv +py-azure-mgmt-advisor py-gluoncv py-pamela py-seaborn +py-azure-mgmt-apimanagement py-glymur py-panaroo py-secretstorage +py-azure-mgmt-appconfiguration py-gmsh py-pandas py-seekpath +py-azure-mgmt-applicationinsights py-gmsh-interop py-pandas-datareader py-segmentation-models-pytorch +py-azure-mgmt-authorization py-gmxapi py-pandas-stubs py-selenium +py-azure-mgmt-batch py-gnuplot py-pandera py-semantic-version +py-azure-mgmt-batchai py-goatools py-pandocfilters py-semver +py-azure-mgmt-billing py-gooey py-panedr py-send2trash +py-azure-mgmt-botservice py-google py-panel py-sentencepiece +py-azure-mgmt-cdn py-google-api-core py-papermill py-sentry-sdk +py-azure-mgmt-cognitiveservices py-google-api-python-client py-paralleltask py-seqeval +py-azure-mgmt-compute py-google-apitools py-param py-sequence-models +py-azure-mgmt-consumption py-google-auth py-parameterized py-seriate +py-azure-mgmt-containerinstance py-google-auth-httplib2 py-paramiko py-serpent +py-azure-mgmt-containerregistry py-google-auth-oauthlib py-paramz py-session-info +py-azure-mgmt-containerservice py-google-cloud-appengine-logging py-parasail py-setproctitle +py-azure-mgmt-core py-google-cloud-audit-log py-parmed py-setupmeta +py-azure-mgmt-cosmosdb py-google-cloud-batch py-parse py-setuptools +py-azure-mgmt-datalake-analytics py-google-cloud-bigquery py-parse-type py-setuptools-cpp +py-azure-mgmt-datalake-store py-google-cloud-core py-parsedatetime py-setuptools-git +py-azure-mgmt-datamigration py-google-cloud-logging py-parsimonious py-setuptools-git-versioning +py-azure-mgmt-deploymentmanager py-google-cloud-storage py-parsl py-setuptools-reproducible +py-azure-mgmt-devtestlabs py-google-crc32c py-parsley py-setuptools-rust +py-azure-mgmt-dns py-google-pasta py-parso py-setuptools-scm +py-azure-mgmt-eventgrid py-google-reauth py-partd py-setuptools-scm-git-archive +py-azure-mgmt-eventhub py-google-resumable-media py-particle py-sfepy +py-azure-mgmt-hdinsight py-googleapis-common-protos py-paste py-sgp4 +py-azure-mgmt-imagebuilder py-googledrivedownloader py-pastedeploy py-sh +py-azure-mgmt-iotcentral py-gosam py-pastel py-shap +py-azure-mgmt-iothub py-gpaw py-pastml py-shapely +py-azure-mgmt-iothubprovisioningservices py-gpaw-data py-patch py-shellescape +py-azure-mgmt-keyvault py-gpustat py-patch-ng py-shellingham +py-azure-mgmt-kusto py-gputil py-path-py py-shiboken2 +py-azure-mgmt-loganalytics py-gpy py-pathlib-abc py-shippinglabel +py-azure-mgmt-managedservices py-gpyopt py-pathlib2 py-shortbred +py-azure-mgmt-managementgroups py-gpytorch py-pathml py-shortuuid +py-azure-mgmt-maps py-gql py-pathos py-shroud +py-azure-mgmt-marketplaceordering py-gradio py-pathsimanalysis py-shtab +py-azure-mgmt-media py-gradio-client py-pathspec py-simpervisor +py-azure-mgmt-monitor py-grandalf py-pathtools py-simple-slurm +py-azure-mgmt-msi py-graphcast py-pathvalidate py-simpleeval +py-azure-mgmt-netapp py-grapheme py-pathy py-simplegeneric +py-azure-mgmt-network py-graphene py-patool py-simplejson +py-azure-mgmt-nspkg py-graphlib-backport py-patsy py-simplekml +py-azure-mgmt-policyinsights py-graphql-core py-pauvre py-simpletraj +py-azure-mgmt-privatedns py-graphql-relay py-pbr py-simpy +py-azure-mgmt-rdbms py-graphql-ws py-pdb-tools py-simsimd +py-azure-mgmt-recoveryservices py-graphviz py-pdbfixer py-singledispatchmethod +py-azure-mgmt-recoveryservicesbackup py-gravity py-pdequinox py-sip +py-azure-mgmt-redhatopenshift py-grayskull py-pdf2image py-six +py-azure-mgmt-redis py-greenlet py-pdm-backend py-skl2onnx +py-azure-mgmt-relay py-grequests py-pdm-pep517 py-slepc4py +py-azure-mgmt-reservations py-griddataformats py-pdoc3 py-slicer +py-azure-mgmt-resource py-griffe py-peachpy py-slurm-pipeline +py-azure-mgmt-search py-gromacswrapper py-peakutils py-smac +py-azure-mgmt-security py-grpc-google-iam-v1 py-pebble py-smart-open +py-azure-mgmt-servicebus py-grpcio py-peft py-smartredis +py-azure-mgmt-servicefabric py-grpcio-status py-pelicanfs py-smartsim +py-azure-mgmt-signalr py-grpcio-tools py-pem py-smartypants +py-azure-mgmt-sql py-gsd py-pendulum py-smmap +py-azure-mgmt-sqlvirtualmachine py-gssapi py-pennylane py-smolagents +py-azure-mgmt-storage py-gsutil py-pennylane-lightning py-smote-variants +py-azure-mgmt-trafficmanager py-gtdbtk py-pennylane-lightning-kokkos py-snakemake-executor-plugin-azure-batch +py-azure-mgmt-web py-gunicorn py-pep517 py-snakemake-executor-plugin-cluster-generic +py-azure-multiapi-storage py-gxformat2 py-pep8 py-snakemake-executor-plugin-cluster-sync +py-azure-nspkg py-gym py-pep8-naming py-snakemake-executor-plugin-drmaa +py-azure-storage-blob py-h11 py-perfdump py-snakemake-executor-plugin-flux +py-azure-storage-common py-h2 py-performance py-snakemake-executor-plugin-googlebatch +py-azure-storage-nspkg py-h3 py-periodictable py-snakemake-executor-plugin-kubernetes +py-b2luigi py-h5glance py-petastorm py-snakemake-executor-plugin-slurm +py-babel py-h5io py-petname py-snakemake-executor-plugin-slurm-jobstep +py-backcall py-h5netcdf py-petsc4py py-snakemake-executor-plugin-tes +py-backoff py-h5py py-pexpect py-snakemake-interface-common +py-backpack-for-pytorch py-h5sh py-pfzy py-snakemake-interface-executor-plugins +py-backports-abc py-hacking py-pgzip py-snakemake-interface-logger-plugins +py-backports-cached-property py-hail py-phanotate py-snakemake-interface-report-plugins +py-backports-entry-points-selectable py-handy-archives py-phonenumbers py-snakemake-interface-scheduler-plugins +py-backports-lzma py-hatch py-phonopy py-snakemake-interface-storage-plugins +py-backports-os py-hatch-cython py-photutils py-snakemake-storage-plugin-azure +py-backports-ssl-match-hostname py-hatch-fancy-pypi-readme py-phydms py-snakemake-storage-plugin-fs +py-backports-tarfile py-hatch-jupyter-builder py-phylophlan py-snakemake-storage-plugin-ftp +py-backports-tempfile py-hatch-nodejs-version py-pickle5 py-snakemake-storage-plugin-gcs +py-backports-weakref py-hatch-requirements-txt py-pickleshare py-snakemake-storage-plugin-http +py-backports-zoneinfo py-hatch-vcs py-picmistandard py-snakemake-storage-plugin-pelican +py-bagit py-hatchet py-picrust2 py-snakemake-storage-plugin-rucio +py-bagit-profile py-hatchling py-pid py-snakemake-storage-plugin-s3 +py-bakta py-hclust2 py-pika py-snakemake-storage-plugin-sftp +py-bandit py-hdbscan py-pillow py-snakemake-storage-plugin-zenodo +py-barectf py-hdf5plugin py-pillow-simd py-snakeviz +py-basemap py-hdfs py-pint py-snappy +py-bash-kernel py-healpix py-pint-xarray py-sncosmo +py-basis-set-exchange py-healpy py-pip py-sniffio +py-batchspawner py-heapdict py-pipcl py-snoop +py-bayesian-optimization py-heat py-pipdeptree py-snowballstemmer +py-bcbio-gff py-heavyball py-piper py-snuggs +py-bcolz py-hep-ml py-pipits py-sobol-seq +py-bcrypt py-hepdata-converter py-pispino py-social-auth-core +py-bdbag py-hepdata-lib py-pivy py-sonlib +py-beaker py-hepdata-validator py-pkgconfig py-sortedcollections +py-beancount py-hepstats py-pkginfo py-sortedcontainers +py-beartype py-hepunits py-pkgutil-resolve-name py-soundfile +py-beautifulsoup4 py-heudiconv py-plac py-soupsieve +py-beniget py-hf-transfer py-plaid py-soyclustering +py-bibtexparser py-hf-xet py-planar py-spacy +py-bidict py-hieroglyph py-planet py-spacy-legacy +py-bids-validator py-highspy py-planetary-computer py-spacy-loggers +py-bids-validator-deno py-hiredis py-platformdirs py-spacy-models-en-core-web-sm +py-bidscoin py-hist py-plotext py-spacy-models-en-vectors-web-lg +py-bidskit py-histbook py-plotille py-sparse +py-bidsschematools py-histogrammar py-plotly py-spatialist +py-bigdft py-histoprint py-plotnine py-spatialite +py-bigfloat py-hjson py-pluggy py-spatialpandas +py-billiard py-hmmlearn py-plum-dispatch py-spdlog +py-binary py-holland-backup py-ply py-spectra +py-binaryornot py-holoviews py-pmtiles py-spectral +py-bintrees py-horovod py-pmw py-speech-recognition +py-binwalk py-hpack py-pmw-patched py-spefile +py-biobb-common py-hpbandster py-pockets py-spgl1 +py-biobb-gromacs py-hpccm py-poetry py-spglib +py-biobb-io py-hsluv py-poetry-core py-spherical +py-biobb-model py-hstspreload py-poetry-dynamic-versioning py-sphericart +py-biobb-structure-checking py-htgettoken py-poetry-plugin-export py-sphericart-torch +py-biobb-structure-utils py-html2text py-poetry-plugin-tweak-dependencies-version py-sphinx +py-bioblend py-html5lib py-polars py-sphinx-argparse +py-biom-format py-htmldate py-pomegranate py-sphinx-autodoc-typehints +py-biomine py-htmlgen py-pooch py-sphinx-basic-ng +py-biopandas py-htseq py-portalocker py-sphinx-book-theme +py-biopython py-httpbin py-portend py-sphinx-bootstrap-theme +py-biosppy py-httpcore py-portpicker py-sphinx-click +py-biotite py-httplib2 py-postcactus py-sphinx-copybutton +py-biotraj py-httpretty py-poster py-sphinx-design +py-bitarray py-httpstan py-pot py-sphinx-fortran +py-bitshuffle py-httptools py-pox py-sphinx-gallery +py-bitstring py-httpx py-poxy py-sphinx-github-changelog +py-bitstruct py-huggingface-hub py-poyo py-sphinx-immaterial +py-black py-humanfriendly py-ppft py-sphinx-jinja2-compat +py-blake3 py-humanize py-pprintpp py-sphinx-multiversion +py-bleach py-hvac py-pre-commit py-sphinx-prompt +py-blessed py-hvplot py-preshed py-sphinx-removed-in +py-blessings py-hydra-core py-pretrainedmodels py-sphinx-rtd-dark-mode +py-blight py-hypercorn py-pretty-errors py-sphinx-rtd-theme +py-blinker py-hyperframe py-prettytable py-sphinx-tabs +py-blis py-hyperlink py-priority py-sphinx-theme-builder +py-blosc py-hyperopt py-profilehooks py-sphinx-toolbox +py-blosc2 py-hypothesis py-proglog py-sphinxautomodapi +py-blosum py-ibm-cloud-sdk-core py-progress py-sphinxcontrib-applehelp +py-bluepyefe py-ibm-watson py-progressbar2 py-sphinxcontrib-bibtex +py-bluepyemodel py-ics py-progressbar33 py-sphinxcontrib-devhelp +py-bluepyopt py-id py-projectq py-sphinxcontrib-htmlhelp +py-bmap-tools py-identify py-prokaryote py-sphinxcontrib-issuetracker +py-bmtk py-idna py-prometheus-client py-sphinxcontrib-jquery +py-bokeh py-idna-ssl py-prometheus-flask-exporter py-sphinxcontrib-jsmath +py-boltons py-igor py-promise py-sphinxcontrib-mermaid +py-boom-boot-manager py-igor2 py-prompt-toolkit py-sphinxcontrib-moderncmakedomain +py-boost-histogram py-igraph py-propcache py-sphinxcontrib-napoleon +py-boto py-igv-notebook py-properscoring py-sphinxcontrib-plantuml +py-boto3 py-igwn-auth-utils py-proto-plus py-sphinxcontrib-programoutput +py-botocore py-ihm py-protobuf py-sphinxcontrib-qthelp +py-botorch py-illumina-utils py-protoc-gen-swagger py-sphinxcontrib-serializinghtml +py-bottle py-ilmbase py-prov py-sphinxcontrib-spelling +py-bottleneck py-imagecodecs py-proxystore py-sphinxcontrib-tikz +py-bqplot py-imagecorruptions-imaug py-prwlock py-sphinxcontrib-trio +py-braceexpand py-imagehash py-psalg py-sphinxcontrib-websupport +py-brain-indexer py-imageio py-psana py-sphinxemoji +py-branca py-imageio-ffmpeg py-psij-python py-sphobjinv +py-bravado py-imagesize py-psmon py-spykeutils +py-bravado-core py-imaug py-pspamm py-spython +py-breakseq2 py-imbalanced-learn py-psutil py-sqlalchemy +py-breathe py-imgaug py-psyclone py-sqlalchemy-migrate +py-brian py-iminuit py-psycopg2 py-sqlalchemy-stubs +py-brian2 py-immutabledict py-psygnal py-sqlalchemy-utils +py-brotli py-immutables py-ptyprocess py-sqlitedict +py-brotlipy py-importlib-metadata py-pubchempy py-sqlparse +py-bsddb3 py-importlib-resources py-pudb py-srsly +py-build py-imutils py-pulp py-sseclient +py-bx-python py-in-n-out py-pulsar-galaxy-lib py-sshtunnel +py-cachecontrol py-incremental py-pure-eval py-sspilib +py-cached-property py-inflect py-pure-sasl py-stack-data +py-cachetools py-inheritance py-puremagic py-starfile +py-cachey py-iniconfig py-py py-starlette +py-cachy py-iniparse py-py-cpuinfo py-starlette-context +py-cairocffi py-inquirer py-py-spy py-starsessions +py-cairosvg py-inquirerpy py-py-tes py-stashcp +py-caliper-reader py-inscriptis py-py2bit py-statmorph +py-callmonitor py-installer py-py2neo py-statsmodels +py-calver py-instrain py-py4j py-stdlib-list +py-cantoolz py-intake py-py6s py-stestr +py-carputils py-intake-esm py-pyabel py-stevedore +py-cartopy py-intbitset py-pyaestro py-stomp-py +py-casadi py-intel-openmp py-pyahocorasick py-stopit +py-catalogue py-intensity-normalization py-pyamg py-storm +py-catkin-pkg py-interface-meta py-pyaml py-stratify +py-cattrs py-interlap py-pyaml-env py-strawberryfields +py-cbor2 py-intervaltree py-pyani py-streamlit +py-cclib py-invoke py-pyarrow py-stringzilla +py-cdo py-iocapture py-pyasn1 py-striprtf +py-cdsapi py-iopath py-pyasn1-modules py-stsci-distutils +py-cekit py-ipaddress py-pyassimp py-stui +py-celery py-ipdb py-pyautogui py-submitit +py-cellprofiler py-ipycanvas py-pybedtools py-subrosa +py-cellprofiler-core py-ipyevents py-pybids py-subword-nmt +py-centrosome py-ipyfilechooser py-pybigwig py-supermercado +py-cerberus py-ipykernel py-pybind11 py-superqt +py-certifi py-ipyleaflet py-pybind11-stubgen py-supervisor +py-certipy py-ipympl py-pybktree py-svgpath +py-cf-units py-ipyparallel py-pybobyqa py-svgpathtools +py-cf-xarray py-ipyrad py-pybrain py-svgutils +py-cffconvert py-ipython py-pybtex py-svgwrite +py-cffi py-ipython-cluster-helper py-pybtex-docutils py-swagger-spec-validator +py-cfgrib py-ipython-genutils py-pybv py-symengine +py-cfgv py-ipython-pygments-lexers py-pycairo py-symfit +py-cftime py-ipytree py-pycares py-sympy +py-cgen py-ipyvtk-simple py-pycbc py-syned +py-chai py-ipyvue py-pycgns py-sysrsync +py-chai-lab py-ipyvuetify py-pychecker py-systemd-python +py-chainer py-ipywidgets py-pycifrw py-tabledata +py-chainforgecodegen py-irpf90 py-pyclibrary py-tables +py-chainmap py-isa-rwval py-pycm py-tabulate +py-chalice py-isal py-pycmd py-tatsu +py-chardet py-iso8601 py-pycocotools py-tblib +py-charm4py py-isodate py-pycodestyle py-tbparse +py-charset-normalizer py-isoduration py-pycollada py-tcolorpy +py-chart-studio py-isort py-pycompadre py-tempita +py-cheap-repr py-itables py-pyconify py-templateflow +py-checkm-genome py-iterative-stats py-pycorenlp py-tempora +py-cheetah3 py-itk py-pycortex py-tenacity +py-chemfiles py-itolapi py-pycosat py-tensorboard +py-chemiscope py-itsdangerous py-pycparser py-tensorboard-data-server +py-cheroot py-jacobi py-pycrypto py-tensorboard-plugin-wit +py-cherrypy py-jaconv py-pycryptodome py-tensorboardx +py-chex py-jamo py-pycryptodomex py-tensorflow +py-choreographer py-janus py-pyct py-tensorflow-datasets +py-chronyk py-jaraco-classes py-pycubexr py-tensorflow-estimator +py-ci-info py-jaraco-context py-pycuda py-tensorflow-hub +py-ci-sdr py-jaraco-functools py-pycurl py-tensorflow-metadata +py-cig-pythia py-jarowinkler py-pydantic py-tensorflow-probability +py-cinema-lib py-jarvis-util py-pydantic-compat py-tensorly +py-cinemasci py-javaproperties py-pydantic-core py-tensorstore +py-circus py-jax py-pydantic-extra-types py-termcolor +py-citeproc-py py-jaxlib py-pydantic-settings py-termgraph +py-clarabel py-jaxtyping py-pydantic-tes py-terminado +py-clean-text py-jcb py-pydap py-terminaltables +py-cleo py-jdatetime py-pydata-sphinx-theme py-tern +py-click py-jdcal py-pydatalog py-tesorter +py-click-didyoumean py-jedi py-pydeface py-testfixtures +py-click-option-group py-jeepney py-pydeprecate py-testinfra +py-click-plugins py-jellyfish py-pydeps py-testpath +py-click-repl py-jinja2 py-pydevtool py-testrepository +py-cligj py-jinja2-cli py-pydftracer py-testresources +py-clikit py-jinja2-humanize-extension py-pydicom py-testscenarios +py-climate py-jinja2-time py-pydispatcher py-testtools +py-climax py-jiter py-pydmd py-tetoolkit +py-clint py-jmespath py-pydocstyle py-text-unidecode +py-clip-anytorch py-jmp py-pydoe py-textblob +py-clipboard py-joblib py-pydoe2 py-texttable +py-cloudauthz py-jplephem py-pydot py-textual +py-cloudbridge py-jproperties py-pydot2 py-textual-fspicker +py-cloudpathlib py-jprops py-pydotplus py-textual-plotext +py-cloudpickle py-jpype1 py-pydub py-textwrap3 +py-clustershell py-jraph py-pyeda py-textx +py-cma py-jsmin py-pyedr py-tf-keras +py-cmaes py-json-get py-pyee py-tf2onnx +py-cmake-format py-json-tricks py-pyelftools py-tfdlpack +py-cmake-parser py-json2html py-pyem py-theano +py-cmocean py-json5 py-pyenchant py-thewalrus +py-cmseq py-jsonargparse py-pyepsg py-thinc +py-cmsml py-jsondiff py-pyerfa py-thop +py-cmyt py-jsonlines py-pyeventsystem py-threadpoolctl +py-coapthon3 py-jsonpatch py-pyface py-throttler +py-coca-pytorch py-jsonpath-ng py-pyfaidx py-tidynamics +py-coclust py-jsonpickle py-pyfasta py-tifffile +py-codebasin py-jsonpointer py-pyfastaq py-tiktoken +py-codecarbon py-jsonref py-pyfftw py-tilelang +py-codechecker py-jsonschema py-pyfiglet py-timezonefinder +py-codepy py-jsonschema-specifications py-pyfits py-timm +py-codespell py-junit-xml py-pyfive py-tinyarray +py-coherent-licensed py-junit2html py-pyflakes py-tinycss2 +py-coilmq py-jupyter py-pyfr py-tinydb +py-colabtools py-jupyter-client py-pygame py-tinyrecord +py-colorama py-jupyter-console py-pygdal py-tld +py-colorcet py-jupyter-core py-pygdbmi py-tldextract +py-colorclass py-jupyter-events py-pygelf py-tmtools +py-colored py-jupyter-leaflet py-pygeos py-tokenize-rt +py-colored-traceback py-jupyter-lsp py-pygetwindow py-tokenizers +py-coloredlogs py-jupyter-packaging py-pygit2 py-toml +py-colorful py-jupyter-server py-pygithub py-tomli +py-colorio py-jupyter-server-mathjax py-pyglet py-tomli-w +py-colorlog py-jupyter-server-proxy py-pygments py-tomlkit +py-colorlover py-jupyter-server-terminals py-pygments-pytest py-tomopy +py-colormath py-jupyter-telemetry py-pygmsh py-toolz +py-colorpy py-jupyterhub py-pygmt py-topiary-asr +py-colorspacious py-jupyterlab py-pygobject py-toposort +py-colossalai py-jupyterlab-pygments py-pygps py-torch +py-colour py-jupyterlab-server py-pygpu py-torch-c-dlpack-ext +py-comm py-jupyterlab-widgets py-pygraphviz py-torch-cluster +py-common py-jupytext py-pygresql py-torch-fidelity +py-commonmark py-justext py-pygrib py-torch-geometric +py-conan py-jwcrypto py-pygtrie py-torch-harmonics +py-conda-inject py-kaggle py-pyh5md py-torch-nvidia-apex +py-conda-souschef py-kaldiio py-pyhdf py-torch-scatter +py-confection py-kaleido py-pyheadtail py-torch-sparse +py-configargparse py-kb-python py-pyhmmer py-torch-spex +py-configobj py-keras py-pyhull py-torch-spline-conv +py-configparser py-keras-applications py-pyicu py-torchaudio +py-configspace py-keras-preprocessing py-pyinstrument py-torchbenchmark +py-confluent-kafka py-keras2onnx py-pyinstrument-cext py-torchdata +py-connectionpool py-kerberos py-pyisemail py-torchdiffeq +py-consolekit py-kerchunk py-pyjnius py-torchfile +py-constantly py-key-value-aio py-pyjwt py-torchgeo +py-contextily py-keyboard py-pyke py-torchmeta +py-contextlib2 py-keyring py-pykerberos py-torchmetrics +py-contexttimer py-keyrings-alt py-pykml py-torchseg +py-continuum py-keystoneauth1 py-pykokkos-base py-torchsummary +py-contourpy py-kitchen py-pykwalify py-torchtext +py-contrib py-kiwisolver py-pylab-sdk py-torchtoolbox +py-control py-kmodes py-pylatex py-torchvision +py-convertdate py-knack py-pyld py-tornado +py-convokit py-kneaddata py-pylev py-tox +py-cookiecutter py-kombu py-pylibjpeg-libjpeg py-toyplot +py-coolname py-kornia py-pylibjpeg-openjpeg py-toytree +py-copulas py-kornia-rs py-pylibjpeg-rle py-tpot +py-corner py-kosh py-pylibmagic py-tqdm +py-correctionlib py-krb5 py-pylikwid py-traceback2 +py-corrfunc py-kt-legacy py-pylint py-trafilatura +py-counter py-kubernetes py-pylint-gitlab py-trainax +py-courlan py-kymatio py-pylith py-traitlets +py-cov-core py-lagom py-pylops py-traits +py-coverage py-langcodes py-pymatgen py-traitsui +py-coveralls py-langsmith py-pymatreader py-traittypes +py-cppheaderparser py-language-data py-pymbolic py-trame +py-cppy py-lap py-pymc3 py-trame-client +py-cramjam py-laplace-torch py-pymdown-extensions py-trame-common +py-crashtest py-lark py-pymeeus py-trame-server +py-crc32c py-lark-parser py-pyminifier py-trame-vtk +py-crcmod py-laspy py-pymol py-trame-vuetify +py-croniter py-latexcodec py-pymongo py-transformer-engine +py-crossmap py-law py-pymoo py-transformers +py-cryolobm py-lazy py-pymorph py-transforms3d +py-cryptography py-lazy-loader py-pympler py-transonic +py-css-parser py-lazy-object-proxy py-pymsgbox py-tree +py-cssselect py-lazy-property py-pymummer py-tree-math +py-cssselect2 py-lazyarray py-pymumps py-tree-sitter +py-cssutils py-lcls-krtc py-pymupdf py-tree-sitter-c +py-csvkit py-ldap3 py-pymupdf-fonts py-treehash +py-ctgan py-leather py-pymysql py-treelib +py-cuda-bindings py-leidenalg py-pynacl py-triangle +py-cuda-core py-lerc py-pynio py-trieregex +py-cuda-pathfinder py-lfpykit py-pynisher py-trimesh +py-cudf py-lhsmdu py-pynn py-triton +py-cufflinks py-liac-arff py-pynndescent py-trl +py-cuml py-libclang py-pynpm py-trojanzoo-sphinx-theme +py-cupy py-libconf py-pynrrd py-trove-classifiers +py-current py-libcst py-pynucleus py-trx-python +py-currentscape py-libensemble py-pynumpress py-tuiview +py-curryreader py-liblas py-pynvim py-tuspy +py-curvlinops-for-pytorch py-librosa py-pynvml py-tuswsgi +py-custodian py-librt py-pynvtx py-tweedledum +py-custom-inherit py-libsonata py-pyodbc py-twine +py-cutadapt py-lifelines py-pyogrio py-twisted +py-cvxopt py-lightgbm py-pyomo py-ty +py-cvxpy py-lightly py-pyopencl py-typed-ast +py-cwl-upgrader py-lightly-utils py-pyopengl py-typeguard +py-cwl-utils py-lightning py-pyopenssl py-typepy +py-cwltool py-lightning-api-access py-pypar py-typer +py-cx-oracle py-lightning-cloud py-pyparsing py-types-dataclasses +py-cycler py-lightning-fabric py-pypdf py-types-geopandas +py-cykhash py-lightning-lite py-pypdf2 py-types-pkg-resources +py-cylc-flow py-lightning-uq-box py-pypeflow py-types-psutil +py-cylc-rose py-lightning-utilities py-pypeg2 py-types-python-dateutil +py-cylp py-lightpipes py-pyperclip py-types-pytz +py-cymem py-ligo-segments py-pyperf py-types-pyyaml +py-cyordereddict py-lil-aretomo py-pypinfo py-types-requests +py-cython py-line-profiler py-pypinyin py-types-setuptools +py-cython-bbox py-linear-operator py-pypistats py-types-shapely +py-cyvcf2 py-linear-tree py-pypng py-types-tqdm +py-d2to1 py-linecache2 py-pyppeteer py-types-typed-ast +py-dace py-lineenhancer py-pyprecice py-types-urllib3 +py-dacite py-linkchecker py-pyprof2html py-typesentry +py-dadi py-linkify-it-py py-pyproj py-typeshed-client +py-dalib py-lit py-pyproject-hooks py-typing-extensions +py-damask py-litdata py-pyproject-metadata py-typing-inspect +py-darshan py-littleutils py-pyproject-parser py-typing-inspection +py-dasbus py-lizard py-pypulse py-typish +py-dash py-llama-cpp-python py-pyqi py-tzdata +py-dash-bootstrap-components py-llnl-sina py-pyqt-builder py-tzlocal +py-dash-svg py-llvmlite py-pyqt4 py-ubiquerg +py-dask py-lmdb py-pyqt5 py-uc-micro-py +py-dask-awkward py-lmfit py-pyqt5-sip py-ucsf-pyem +py-dask-expr py-lmodule py-pyqt6 py-ucx-py +py-dask-glm py-localcider py-pyqt6-sip py-uhi +py-dask-histogram py-locket py-pyqtgraph py-ujson +py-dask-jobqueue py-lockfile py-pyquaternion py-ultralytics +py-dask-ml py-logilab-common py-pyreadline py-umalqurra +py-dask-mpi py-logistro py-pyrect py-umap-learn +py-dask-sphinx-theme py-logmuse py-pyrevolve py-umi-tools +py-databricks-cli py-logomaker py-pyrfr py-uncertainties +py-dataclasses py-loguru py-pyro-api py-uncertainty-toolbox +py-dataclasses-json py-loky py-pyro-ppl py-unfoldnd +py-datacube py-loompy py-pyro4 py-unicycler +py-datalad py-looseversion py-pyroaring py-unidecode +py-datalad-container py-louie py-pyrocko py-unittest2py3k +py-datalad-deprecated py-lpips py-pyrodigal py-universal-pathlib +py-datalad-hirni py-lru-dict py-pyrodigal-gv py-unshare +py-datalad-metadata-model py-lscsoft-glue py-pyrometheus py-unyt +py-datalad-metalad py-lsprotocol py-pyrr py-update-checker +py-datalad-neuroimaging py-luigi py-pyrsistent py-uproot +py-datalad-webapp py-lupa py-pysam py-uproot3 +py-dataproperty py-lvis py-pyscaf py-uproot3-methods +py-datasets py-lws py-pyscf py-uqinn +py-datashader py-lxml py-pyscipopt py-uri-template +py-datatrove py-lz4 py-pyscreeze py-uritemplate +py-dateparser py-lzstring py-pyseer py-url-normalize +py-dateutils py-m2r py-pyserial py-urllib3 +py-datrie py-macholib py-pysftp py-urllib3-secure-extra +py-dbf py-machotools py-pyshacl py-urwid +py-dbfread py-macs2 py-pyshp py-us +py-dcm2bids py-macs3 py-pyside2 py-userpath +py-dcmstack py-maestrowf py-pysimdjson py-usgs +py-deap py-magicgui py-pysindy py-utils +py-debtcollector py-mahotas py-pysmartdl py-uv +py-debugpy py-mailchecker py-pysmiles py-uv-build +py-decorator py-make py-pysocks py-uv-dynamic-versioning +py-deepdiff py-makefun py-pysolar py-uvicorn +py-deepecho py-mako py-pyspark py-uvloop +py-deephyper py-mapbox-earcut py-pyspellchecker py-uvw +py-deepmerge py-mapclassify py-pyspice py-uwsgi +py-deepsig-biocomp py-mariadb py-pyspnego py-uxarray +py-deepspeed py-marisa-trie py-pyspoa py-validate-pyproject +py-deeptools py-markdown py-pyspod py-validators +py-deeptoolsintervals py-markdown-include py-pysqlite3 py-vascpy +py-defusedxml py-markdown-it-py py-pystac py-vcf-kit +py-deisa py-markdown2 py-pystac-client py-vcrpy +py-deisa-core py-markov-clustering py-pystache py-vcstool +py-deisa-dask py-markovify py-pystan py-vcstools +py-demjson py-markupsafe py-pysurfer py-vcversioner +py-dendropy py-marshmallow py-pytablewriter py-vector +py-deprecat py-matminer py-pytailf py-vector-quantize-pytorch +py-deprecated py-matplotlib py-pytaridx py-vermin +py-deprecation py-matplotlib-inline py-pytecplot py-vermouth-martinize +py-deprecation-alias py-matplotlib-scalebar py-pytesseract py-versioneer +py-derivative py-maturin py-pytest py-versioneer-518 +py-descartes py-mayavi py-pytest-aiohttp py-versioningit +py-devito py-mbstrdecoder py-pytest-allclose py-verspec +py-devlib py-mccabe py-pytest-arraydiff py-vesin +py-dgl py-md-environ py-pytest-astropy py-vine +py-dh-scikit-optimize py-mda-xdrlib py-pytest-astropy-header py-virtualenv +py-diagnostic py-mdahole2 py-pytest-asyncio py-virtualenv-clone +py-dict2css py-mdanalysis py-pytest-benchmark py-virtualenvwrapper +py-dictdiffer py-mdanalysistests py-pytest-cache py-visdom +py-dictobj py-mdi py-pytest-check-links py-vispy +py-dill py-mdit-py-plugins py-pytest-cmake py-vl-convert-python +py-dinosaur py-mdocfile py-pytest-cov py-voluptuous +py-dipy py-mdurl py-pytest-cpp py-vsc-base +py-dirtyjson py-meautility py-pytest-datadir py-vsc-install +py-disbatch py-mechanize py-pytest-doctestplus py-vsts +py-discover py-medaka py-pytest-fail-slow py-vsts-cd-manager +py-diskcache py-meldmd py-pytest-filter-subpackage py-wadler-lindig +py-dist-meta py-melissa-core py-pytest-flake8 py-waitress +py-distance py-memelite py-pytest-flakes py-walinuxagent +py-distlib py-memory-profiler py-pytest-forked py-wand +py-distributed py-memprof py-pytest-html py-wandb +py-distro py-memray py-pytest-httpbin py-warcio +py-django py-mendeleev py-pytest-isort py-warlock +py-dlcpar py-mercantile py-pytest-lazy-fixture py-wasabi +py-dm-haiku py-mergedeep py-pytest-memray py-watchdog +py-dm-tree py-merlin py-pytest-metadata py-watchfiles +py-dnaio py-meshio py-pytest-mock py-waterdynamics +py-dnspython py-meshpy py-pytest-mpi py-waves +py-docker py-meson-python py-pytest-mypy py-wcsaxes +py-dockerpy-creds py-metaphlan py-pytest-openfiles py-wcwidth +py-docket py-metasv py-pytest-parallel py-webargs +py-docopt py-metatensor-core py-pytest-pep8 py-webcolors +py-docopt-ng py-metatensor-learn py-pytest-pylint py-webdataset +py-docstring-parser py-metatensor-operations py-pytest-qt py-webdavclient3 +py-docstring-to-markdown py-metatensor-torch py-pytest-random-order py-webencodings +py-docutils py-metatomic-torch py-pytest-regtest py-webkit-server +py-docutils-stubs py-metatrain py-pytest-remotedata py-weblogo +py-dogpile-cache py-metis py-pytest-reportlog py-webob +py-doit py-metomi-isodatetime py-pytest-retry py-websocket-client +py-dolfinx-mpc py-metomi-rose py-pytest-runner py-websockets +py-dom-toml py-metpy py-pytest-socket py-werkzeug +py-domdf-python-tools py-metric-learn py-pytest-subprocess py-wesanderson +py-dominate py-metrics py-pytest-timeout py-wget +py-donfig py-mffpy py-pytest-workflow py-whatshap +py-dotmap py-mg-rast-tools py-pytest-xdist py-wheel +py-dotnetcore2 py-mgmetis py-python-benedict py-whenever +py-downhill py-microsoft-aurora py-python-bioformats py-whey +py-doxypypy py-mido py-python-box py-whey-pth +py-dpath py-mikado py-python-calamine py-whichcraft +py-drep py-mike py-python-certifi-win32 py-whoosh +py-drmaa py-minio py-python-constraint py-widgetsnbextension +py-dryscrape py-minisom py-python-crfsuite py-wids +py-duecredit py-minkowskiengine py-python-daemon py-wigners +py-dulwich py-minrpc py-python-dateutil py-win-unicode-console +py-dunamai py-misk py-python-deprecated py-wincertstore +py-dvc py-misopy py-python-discovery py-word2number +py-dxchange py-mistletoe py-python-docs-theme py-wordcloud +py-dxfile py-mistune py-python-docx py-workload-automation +py-dynaconf py-mizani py-python-dotenv py-wradlib +py-dynim py-mkdocs py-python-editor py-wrapt +py-earth2mip py-mkdocs-autorefs py-python-engineio py-wsproto +py-earthengine-api py-mkdocs-jupyter py-python-fmask py-wstool +py-easybuild-easyblocks py-mkdocs-material py-python-fsutil py-wub +py-easybuild-easyconfigs py-mkdocs-material-extensions py-python-gitlab py-wurlitzer +py-easybuild-framework py-mkdocstrings py-python-hostlist py-ww +py-eccodes py-mkdocstrings-python py-python-igraph py-wxflow +py-ecdsa py-ml-collections py-python-javabridge py-wxmplot +py-ecmwf-opendata py-ml-dtypes py-python-jenkins py-wxpython +py-ecmwflibs py-mlflow py-python-jose py-x-clip +py-ecos py-mlperf-logging py-python-json-logger py-x21 +py-edam-ontology py-mlxtend py-python-keystoneclient py-xanadu-cloud-client +py-edffile py-mmcv py-python-ldap py-xarray +py-edfio py-mmengine py-python-levenshtein py-xarray-regrid +py-edflib-python py-mmtf-python py-python-libsbml py-xarray-tensorstore +py-editables py-mne py-python-logstash py-xattr +py-editdistance py-mne-bids py-python-louvain py-xcdat +py-edlib py-mo-pack py-python-lsp-jsonrpc py-xdot +py-eeglabio py-moarchiving py-python-lsp-ruff py-xenv +py-eerepr py-mock py-python-lsp-server py-xesmf +py-efel py-model-index py-python-lzo py-xgboost +py-efficientnet-pytorch py-modelcif py-python-magic py-xgcm +py-eg py-modepy py-python-mapnik py-xhistogram +py-eigenpy py-modin py-python-markdown-math py-xlrd +py-einconv py-modisco py-python-memcached py-xlsxwriter +py-einops py-modred py-python-multipart py-xlwt +py-elastic-transport py-modules-gui py-python-mumps py-xmlplain +py-elasticsearch py-moltemplate py-python-oauth2 py-xmlrunner +py-elasticsearch-dsl py-monai py-python-picard py-xmltodict +py-elephant py-monkeytype py-python-pptx py-xonsh +py-elevation py-monotonic py-python-ptrace py-xopen +py-ema-pytorch py-monty py-python-rapidjson py-xpyb +py-email-validator py-more-itertools py-python-slugify py-xskillscore +py-embedding-reader py-morph-tool py-python-socketio py-xtb +py-emcee py-morphio py-python-sotools py-xvfbwrapper +py-emoji py-morphosamplers py-python-subunit py-xxhash +py-empy py-motmetrics py-python-swiftclient py-xyzservices +py-entrypoints py-mouseinfo py-python-utils py-yacman +py-enum-tools py-moviepy py-python-xlib py-yacs +py-envisage py-mpi4jax py-python-xmp-toolkit py-yahmm +py-ephem py-mpi4py py-python3-openid py-yajl +py-eprosima-fastdds py-mpld3 py-python3-xlib py-yamlreader +py-epydoc py-mpldock py-pythonqwt py-yapf +py-equation py-mplhep py-pythonsollya py-yarl +py-equinox py-mplhep-data py-pythran py-yaspin +py-espresso py-mpmath py-pytimeparse py-yolk3k +py-espressopp py-mrcfile py-pytng py-your +py-et-xmlfile py-msal py-pytokens py-youtube-dl +py-ete3 py-msal-extensions py-pytoml py-yq +py-etelemetry py-msgpack py-pytools py-yt +py-etils py-msgpack-numpy py-pytorch-gradual-warmup-lr py-yt-dlp +py-eval-type-backport py-msrest py-pytorch-lightning py-yt-dlp-ejs +py-evaluate py-msrestazure py-pytorch-sphinx-theme py-yte +py-eventlet py-mui4py py-pytorch-warmup py-ytopt +py-evodiff py-multi-imbalance py-pyts py-ytopt-autotune +py-ewah-bool-utils py-multi-key-dict py-pytuq py-z3-solver +py-exarl py-multidict py-pytweening py-zarr +py-exceptiongroup py-multiecho py-pytz py-zc-buildout +py-execnet py-multipledispatch py-pyu2f py-zc-lockfile +py-executing py-multiprocess py-pyudev py-zensical +py-exhale py-multiqc py-pyugrid py-zfit +py-exifread py-multiurl py-pyupgrade py-zfit-interface +py-exodus-bundler py-mumps4py py-pyusb py-zfit-physics +py-expandvars py-munch py-pyutilib py-zict +py-expecttest py-munkres py-pyuwsgi py-zipfile-deflate64 +py-exponax py-murmurhash py-pyvcf py-zipp +py-extension-helpers py-mutagen py-pyvips py-zipstream-new +py-extras py-mx py-pyvista py-zope-event +py-ez-setup py-mxfold2 py-pyvistaqt py-zope-interface +py-f90nml py-myhdl py-pyviz-comms py-zstandard +py-f90wrap py-mypy py-pyvolve py-zxcvbn +py-fabric py-mypy-extensions py-pywavelets +py-fabric3 py-mysql-connector-python py-pywcs +==> 3014 packages diff --git a/outputs/basics/list.out b/outputs/basics/list.out index 38829893a..01d0c8b23 100644 --- a/outputs/basics/list.out +++ b/outputs/basics/list.out @@ -1,8617 +1,2227 @@ $ spack list -remote: Enumerating objects: 19701, done.K -remote: Counting objects: 100% (19701/19701), done.K -remote: Compressing objects: 100% (10555/10555), done.K -remote: Total 19701 (delta 1337), reused 13774 (delta 1222), pack-reused 0 (from 0)K -3dtk -3proxy -7zip -abacus -abduco -abi-compliance-checker -abi-dumper -abinit -abseil-cpp -abyss -accfft -acct -accumulo -ace -acfl -ack -acl -acpica-tools -acpid -activeharmony -activemq -acts -acts-algebra-plugins -acts-dd4hep -actsvg -additivefoam -addrwatch -adept -adept-utils -adf -adiak -adios -adios2 -adlbx -admixtools -adms -adol-c -advancecomp -adwaita-icon-theme -aegean -aeskeyfind -aespipe -affinity -agile -agrep -aida -akantu -alan -albany -albert -alembic -alglib -all-library -allpaths-lg -alluxio -alpaka -alpgen -alps -alpscore -alquimia -alsa-lib -aluminum -amber -ambertools -amd-aocl -amdblis -amdfftw -amdlibflame -amdlibm -amdscalapack -amdsmi -amduprof -amg2013 -amg2023 -amgx -aml -amp -ampl -ampliconnoise -ampt -amqp-cpp -amr-wind -amrex -amrfinder -amrvis -ams -anaconda3 -andi -angsd -anicalculator -ant -antimony -antlr -antlr4-complete -antlr4-cpp-runtime -ants -any2fasta -aocc -aocl-compression -aocl-crypto -aocl-da -aocl-libmem -aocl-sparse -aocl-utils -aoflagger -aom -aotriton -apache-tvm -apachetop -ape -aperture-photometry -apex -apfel -apktool -apple-clang -apple-gl -apple-glu -apple-libunwind -apple-libuuid -applewmproto -appres -apptainer -apr -apr-util -aqlprofile -aragorn -arbor -arborx -arc -archer -aretomo -aretomo2 -argobots -argon2 -argp-standalone -args -argtable -aria2 -arkouda -arm-forge -armadillo -armcimpi -armcomputelibrary -armpl-gcc -arpack-ng -arrayfire -arrow -asagi -ascent -asciidoc -asciidoc-py3 -asdcplib -asdf-cxx -asio -aspa -aspcud -aspect -aspell -aspell6-de -aspell6-en -aspell6-es -aspera-cli -assimp -astra -astral -astyle -at-spi2-atk -at-spi2-core -atf -athena -atk -atlas -atom-dft -atompaw -atop -attr -audacious -audacity -audit-userspace -augustus -authd -authselect -autoconf -autoconf-archive -autodiff -autodock-gpu -autodock-vina -autogen -automaded -automake -avizo -aws-ofi-nccl -aws-ofi-rccl -aws-parallelcluster -aws-sdk-cpp -awscli -awscli-v2 -axel -axl -axom -azcopy -babelflow -babelstream -babeltrace -babeltrace2 -babl -bacio -backupninja -backward-cpp -bam-readcount -bamaddrg -bamdst -bamtools -bamutil -banner -bannergrab -barrnap -bart -barvinok -bash -bash-completion -bashtop -bat -batchedblas -batctl -bats -baurmc -bazel -bbcp -bbmap -bc -bcache -bcftools -bdftopcf -bdii -bdsim -bdw-gc -beagle -beakerlib -bear -beast-tracer -beast1 -beast2 -beatnik -bedops -bedtools2 -beforelight -benchmark -berkeley-db -berkeleygw -bertini -bfs -bgen -bgpdump -bib2xhtml -bigdft-atlab -bigdft-chess -bigdft-core -bigdft-futile -bigdft-libabinit -bigdft-liborbs -bigdft-psolver -bigdft-spred -bigdft-suite -bigreqsproto -bigwhoop -bind9 -binder -binutils -bioawk -biobambam2 -biobloom -biopieces -bird -bismark -bison -bitgroomingz -bitlbee -bitmap -bitsery -blackhat -blake3 -blaspp -blast-plus -blast2go -blat -blaze -blis -bliss -blitz -blktrace -bloaty -blogbench -blt -bmake -bmi -bml -bohrium -boinc-client -bolt -bonniepp -bookleaf-cpp -boost -boostmplcartesianproduct -boringssl -botan -bowtie -bowtie2 -boxlib -bpp-core -bpp-phyl -bpp-phyl-omics -bpp-popgen -bpp-seq -bpp-seq-omics -bpp-suite -bracken -brahma -braker -branson -breakdancer -bref3 -breseq -bricks -bridger -brigand -brltty -brotli -brpc -brunsli -brynet -bsseeker2 -btllib -btop -bubblewrap -bucky -buddy -bueno -bufr -bufr-query -bulker -bump2version -bumpversion -busco -busybox -butter -butterflypack -bwa -bwtool -byacc -byfl -byobu -byte-lite -byte-unixbench -byteman -bzip2 -c-ares -c-blosc -c-blosc2 -c-lime -c-raft -c3d -ca-certificates-mozilla -cabana -cachefilesd -caffe -cairo -cairomm -caliper -callflow -callpath -camellia -camp -camx -canal -cans -cantera -canu -cap3 -capnproto -capstone -cardioid -care -cargs -casacore -casacore-measures -cask -casper -cassandra -cassini-headers -castep -catch2 -cbc -cbench -cbflib -cbindgen -cblas -cbqn -cbtf -cbtf-argonavis -cbtf-argonavis-gui -cbtf-krell -cbtf-lanl -cc65 -ccache -cce -ccfits -ccls -ccs-qcd -cctools -cdbfasta -cdd -cddlib -cdecimal -cdhit -cdi -cdo -cdt -ceed -celeritas -cellpose -cellranger -centrifuge -cepgen -cereal -ceres-solver -cernlib -cfitsio -cgal -cgdb -cgdcbxd -cget -cgl -cgm -cgns -cgsi-gsoap -chaco -chafa -chai -chameleon -changa -channelflow -chaparral -chapel -chaplin -charliecloud -charmpp -chatterbug -check -chemfiles -chexmix -chez-scheme -chgcentre -chlorop -chombo -chrony -chrpath -cinch -circe2 -circos -cistem -citcoms -cityhash -cjson -ck -clamav -clamr -clapack -clara -claw -clblast -cleaveland4 -cleverleaf -clfft -clhep -cli11 -clinfo -clingo -clingo-bootstrap -cln -cloc -cloog -cloverleaf -cloverleaf-ref -cloverleaf3d -clp -clustal-omega -clustalw -cmake -cmaq -cmark -cmdlime -cmdstan -cminpack -cmocka -cmockery -cmor -cni-plugins -cnmem -cnpy -cntk -cntk1bitsgd -cnvnator -codar-cheetah -code-server -codec2 -codecov -codes -codipack -coevp -cohmm -cohomcalg -coin3d -coinhsl -coinutils -collectd -collier -colm -colordiff -comd -comgr -commons-lang -commons-lang3 -commons-logging -compadre -compiler-wrapper -composable-kernel -compose -compositeproto -composyx -conda4aarch64 -conduit -conmon -connect-proxy -conquest -conserver -console-bridge -constype -consul -cool -coordgen -coral -corenlp -coreutils -corset -cosbench -cosign -cosma -cosmoflow-benchmark -cosmomc -cosp2 -costa -costo -cotter -countdown -covfie -cowsay -cp2k -cpat -cpio -cplex -cpmd -cpp-argparse -cpp-httplib -cpp-logger -cpp-termcolor -cppad -cppcheck -cppcodec -cppcoro -cppgsl -cpprestsdk -cpptrace -cppunit -cppzmq -cpr -cprnc -cpu-features -cpuinfo -cqrlib -cquery -cracklib -cradl -cram -cray-fftw -cray-libsci -cray-mpich -cray-mvapich2 -cray-pmi -creduce -crmc -croc -cromwell -cromwell-womtool -cronie -crosstool-ng -crow -crtm -crtm-fix -crunch -cryodrgn -cryoef -cryptopp -cryptsetup -csa-c -cscope -csdp -ctffind -ctpl -ctre -cub -cuba -cubature -cube -cube-blade -cubelib -cubew -cubist -cublasmp -cuda -cuda-memtest -cudd -cudnn -cudss -cufflinks -cufftmp -cunit -cups -curl -cusolvermp -cusparselt -cusz -cutensor -cutlass -cvector -cvise -cvs -cxi-driver -cxxopts -cxxtest -cyrus-sasl -czmq -daemonize -dakota -daligner -dalton -damageproto -damaris -damask -damask-grid -damask-mesh -damselfly -daos -darshan-runtime -darshan-util -dash -datamash -dataspaces -datatransferkit -date -dateutils -dav-sdk -davix -dbcsr -dbow2 -dbus -dbus-glib -dbxtool -dcap -dcm2niix -dcmtk -dctz -dd4hep -ddc -ddd -dealii -dealii-parameter-gui -debbuild -debugedit -decentralized-internet -deconseq-standalone -deconwolf -dedisp -dejagnu -delly2 -delphes -delta -demuxlet -deno -denovogear -detray -dfelibs -dftbplus -dftd3-lib -dftd4 -dftfe -dhpmm-f -dhtest -dia -dialign -dialign-tx -diamond -dicom3tools -diffmark -diffsplice -difftastic -diffutils -digitrounding -dihydrogen -dimemas -ding-libs -dire -direnv -discotec -discovar -discovardenovo -disktype -dislin -distbench -distcc -diy -dla-future -dla-future-fortran -dlb -dlib -dlpack -dmd -dmidecode -dmlc-core -dmtcp -dmxproto -dnsmap -dnsmasq -dnstop -dnstracer -docbook-xml -docbook-xsl -dock -doctest -dolfinx-mpc -dorado -dorian3d-dlib -dos2unix -dosfstools -dotconf -dotnet-core-sdk -double-batched-fft-library -double-conversion -doxygen -dpdk -dplasma -dpmjet -draco -dracut -dramsim2 -dramsim3 -dri2proto -dri3proto -drill -drishti -dropwatch -druid -ds -dsdp -dsfmt -dsqss -dsrc -dssp -dtc -dtcmp -dtf -duckdb -duperemove -dust -dwz -dxt-explorer -dyninst -dysco -e2fsprogs -e3sm-kernels -e3sm-scorpio -e4s-alc -e4s-cl -ea-utils -eagle -earlyoom -easi -easybuild -easyloggingpp -ebms -ecbuild -eccodes -ecdsautils -ecflow -eckit -eclipse-gcj-parser -ecmwf-atlas -ecos -ecoslim -ecp-data-vis-sdk -ecp-proxy-apps -ectrans -ed -editline -editorconfig -editres -edm4hep -eem -efivar -egl -eigen -eigenexa -elasticsearch -elastix -elbencho -elfio -elfutils -elk -elmerfem -elpa -elsd -elsdc -elsi -emacs -ember -emblmygff3 -emboss -embree -enca -enchant -energyplus -ensmallen -entrezdirect -entt -environment-modules -enzo -enzyme -eospac -epics-base -epics-ca-gateway -epics-pcas -epics-snmp -eprosima-fastcdr -eprosima-fastdds -epsic -eq-r -er -erf -erfa -erlang -ermod -erne -es-shell -esmf -espanso -essl -estarlight -esys-particle -etcd -ethminer -ethtool -etsf-io -eve -evemu -everytrace -everytrace-example -evieext -evtgen -exabayes -exaca -exago -examl -exampm -exasp2 -exawind -exaworks -exciting -exempi -exiv2 -exmcutils -exo -exodusii -exonerate -exonerate-gff3 -expat -expect -express -exprtk -extrae -exuberant-ctags -eza -eztrace -f2c -f3d -f77-zmq -f90cache -fabtests -fabulous -faircmakemodules -fairlogger -fairmq -fairroot -fairsoft-bundle -fairsoft-config -faiss -fakechroot -faketime -fakexrandr -falco -falcon -fann -faodel -fargparse -fasd -fast-float -fast-global-file-status -fasta -fastani -fastdb -fastdfs -fastjar -fastjet -fastjson -fastmath -fastme -fastor -fastp -fastphase -fastplong -fastq-screen -fastqc -fastqvalidator -fasttext -fasttransforms -fasttree -fastx-toolkit -faust -fbgemm -fca -fcgi -fckit -fd -fdb -fds -fdupes -feh -fenics -fenics-basix -fenics-dolfinx -fenics-ufcx -feq-parse -fermi -fermikit -fermisciencetools -ferret -feynhiggs -ffb -ffmpeg -ffr -ffsb -ffte -fftw -fftx -fgsl -fiat -fides -figcone -figlet -figtree -file -filebench -filo -filtlong -fimpute -finch -findbugs -findutils -fio -fipscheck -fish -fixesproto -fj -fjcontrib -fl -flac -flamemaster -flann -flap -flash -flashdimmsim -flatbuffers -flatcc -flcl -flecsi -flecsph -fleur -flex -flexi -flexiblas -flibcpp -flink -flint -flit -fltk -fluidnumerics-self -flume -flux -flux-core -flux-pmix -flux-python -flux-sched -flux-security -fluxbox -fmi4cpp -fms -fmt -foam-extend -foldseek -folly -font-util -fontcacheproto -fontconfig -fontsproto -fonttosfnt -foonathan-memory -form -formetis -fortrilinos -fossil -foundationdb -fox -fp16 -fpart -fpc -fpchecker -fping -fplll -fplo -fpm -fpocket -fpzip -fq -fqtrim -fr-hit -fraggenescan -freebayes -freecad -freefem -freeglut -freeimage -freeipmi -freesasa -freesurfer -freetype -freexl -fribidi -frobby -frontier-client -frontistr -frugally-deep -fseq -fsl -fslsfonts -fstobdf -fstrack -ftgl -ftjam -ftk -ftobjectlibrary -ftxui -fujitsu-fftw -fujitsu-frontistr -fujitsu-mpi -fujitsu-ssl2 -fullock -func -functionalplus -funhpc -funwave -fuse-overlayfs -fusion-io -fwq -fxdiv -fxt -fyba -fzf -g2 -g2c -g2o -g2tmpl -g4abla -g4channeling -g4emlow -g4ensdfstate -g4incl -g4ndl -g4neutronxs -g4nudexlib -g4particlexs -g4photonevaporation -g4pii -g4radioactivedecay -g4realsurface -g4saiddata -g4tendl -g4urrpt -g4vg -gadap -gamess-ri-mp2-miniapp -gams -gapbs -gapcloser -gapfiller -garcon -garfieldpp -gasnet -gatb-core -gate -gatepet2stir -gatetools -gatk -gaudi -gaussian -gaussian-view -gawk -gbl -gblocks -gcc -gcc-runtime -gccmakedep -gccxml -gchp -gcta -gdal -gdb -gdbm -gdk-pixbuf -gdl -gdrcopy -geant3 -geant4 -geant4-data -geant4-vmc -geany -gearshifft -gegelati -gegl -gem5 -gemma -gemmlowp -genemark-et -generate-ninja -generax -genesis -genfit -gengeo -gengetopt -genie -genomefinisher -genometools -genomeworks -genrich -geode -geoip-api-c -geomodel -geopm-runtime -geopm-service -geos -getorganelle -gettext -gexiv2 -gfal2 -gfal2-util -gffcompare -gffread -gflags -gfsio -gftl -gftl-shared -gh -ghost -ghostscript -ghostscript-fonts -giblib -giflib -gimp -ginac -ginkgo -giraph -git -git-annex -git-fat-git -git-filter-repo -git-imerge -git-lfs -gitconddb -givaro -gl2ps -glab -glew -glfmultiples -glfw -glib -glib-bootstrap -glib-networking -glibc -glibmm -glimmer -glm -global -globalarrays -globus-callout -globus-common -globus-ftp-client -globus-ftp-control -globus-gass-copy -globus-gass-transfer -globus-gsi-callback -globus-gsi-cert-utils -globus-gsi-credential -globus-gsi-openssl-error -globus-gsi-proxy-core -globus-gsi-proxy-ssl -globus-gsi-sysconfig -globus-gss-assist -globus-gssapi-error -globus-gssapi-gsi -globus-io -globus-openssl-module -globus-xio -globus-xio-gsi-driver -globus-xio-pipe-driver -globus-xio-popen-driver -glog -gloo -glow -glpk -glproto -gluegen -glusterfs -glvis -glx -gmake -gmap-gsnap -gmic -gmime -gmodel -gmp -gmsh -gmt -gmtsar -gnat -gnds -gnina -gnome-common -gnuconfig -gnupg -gnuplot -gnuradio -gnutls -go -go-bootstrap -go-md2man -go-sh -goaccess -gobject-introspection -goblin-hmc-sim -gocryptfs -goimports -goma -google-cloud-cli -google-cloud-cpp -google-crc32c -googletest -gopls -gosam-contrib -goshimmer -gotcha -gource -gpcnet -gperf -gperftools -gpgme -gpi-2 -gpi-space -gplates -gprofng-gui -gprolog -gptl -gptune -gpu-burn -gpuscout -gqrx -gr-osmosdr -grabix -grace -grackle -gradle -grads -grafana -graph500 -graphblast -graphicsmagick -graphite2 -graphlib -graphmap -graphviz -grass -graylog2-server -green-mbpt -green-seet -greenx -grep -grib-util -gribjump -grid -gridlab-d -grnboost -groff -gromacs -gromacs-chain-coordinate -gromacs-swaxs -grpc -gsettings-desktop-schemas -gsi-ncdiag -gsibec -gsl -gsl-lite -gslib -gsoap -gspell -gtfsort -gtk-doc -gtkmm -gtkorvo-atl -gtkorvo-cercs-env -gtkorvo-dill -gtkorvo-enet -gtkplus -gtksourceview -gts -guacamole-client -guacamole-server -guidance -guile -gunrock -gurobi -gvproxy -gxsview -gzip -h2database -h5bench -h5cpp -h5hut -h5part -h5utils -h5z-zfp -haccabana -hacckernels -hackrf-host -hadoop -hadoop-xrootd -hal -half -halide -hama -hapcut2 -hapdip -haploview -haproxy -hard -hardlink -harfbuzz -harminv -hashcat -haveged -hazelcast -hbase -hbm-dramsim2 -hc -hcoll -hdf -hdf-eos2 -hdf-eos5 -hdf5 -hdf5-blosc -hdf5-vfd-gds -hdf5-vol-async -hdf5-vol-cache -hdf5-vol-daos -hdf5-vol-external-passthrough -hdf5-vol-log -hdfview -healpix-cxx -heaptrack -heasoft -heffte -heimdall -helib -helics -help2man -henson -hepmc -hepmc3 -hepmcanalysis -heppdt -heputils -hermes -hermes-shm -herwig3 -herwigpp -hevea -heyoka -hh-suite -hibench -hicolor-icon-theme -hicops -hicup -highfive -highway -highwayhash -hiop -hip -hip-tensor -hip-tests -hipace -hipblas -hipblas-common -hipblaslt -hipcc -hipcub -hipfft -hipfort -hipify-clang -hiprand -hipsolver -hipsparse -hipsparselt -hipsycl -hiptt -hiredis -hisat2 -hisea -hive -hivex -hmmer -hohqmesh -homer -hoomd-blue -hoppet -hotspot -hp2p -hpc-beeflow -hpcc -hpccg -hpcg -hpctoolkit -hpcviewer -hpcx-mpi -hpddm -hpgmg -hping -hpl -hpx -hpx-kokkos -hpx5 -hsa-amd-aqlprofile -hsa-rocr-dev -hsakmt -hsakmt-roct -hsf-cmaketools -hssp -hstr -hto4l -htop -htslib -http-get -http-load -http-parser -http-ping -http-post -httpd -httperf -httpie -httping -httpress -hub -hudi -hugo -hunspell -hw-probe -hwdata -hwloc -hybpiper -hybrid-lambda -hybridsim -hydra -hydrogen -hypar -hyperfine -hyperqueue -hyperscan -hyphen -hyphy -hypre -hypre-cmake -hztool -i3 -ibm-databroker -ibmisc -icarus -iceauth -icedtea -icet -ico -icon -icu4c -id3lib -idba -idg -idl -iegenlib -ignite -igprof -igraph -igv -igvtools -ike-scan -ilmbase -ima-evm-utils -imagemagick -imake -imath -imgui -imlib2 -imod -imp -impalajit -improved-rdock -impute2 -indicators -infernal -influxdb -iniparser -inputproto -intel-gpu-tools -intel-gtpin -intel-llvm -intel-mlc -intel-mpi-benchmarks -intel-oneapi-advisor -intel-oneapi-ccl -intel-oneapi-compilers -intel-oneapi-compilers-classic -intel-oneapi-dal -intel-oneapi-dnn -intel-oneapi-dpct -intel-oneapi-dpl -intel-oneapi-inspector -intel-oneapi-ipp -intel-oneapi-ippcp -intel-oneapi-itac -intel-oneapi-mkl -intel-oneapi-mpi -intel-oneapi-runtime -intel-oneapi-tbb -intel-oneapi-vpl -intel-oneapi-vtune -intel-pin -intel-tbb -intel-xed -interproscan -intltool -ioapi -ior -iotaa -iozone -ip -ipcalc -iperf2 -iperf3 -ipm -ipopt -iproute2 -iptraf-ng -iq-tree -irep -isa-l -isa-l-crypto -isaac -isaac-server -isc-dhcp -iscdtoolbox-commons -iscdtoolbox-elasticity -isescan -isl -iso-codes -isoquant -ispc -istio -itensor -itk -itstool -itsx -iwyu -jacamar-ci -jackcess -jafka -jags -jali -jansi -jansi-native -jansson -jasper -javafx -jbigkit -jblob -jchronoss -jdk -jedi-cmake -jellyfish -jemalloc -jetty-project -jhpcn-df -jimtcl -jline3 -jmol -jogl -jonquil -jose -jpegoptim -jq -json-c -json-cwx -json-fortran -json-glib -jsoncons -jsoncpp -jsonnet -jstorm -jube -judy -jujutsu -julea -julia -jump -junit4 -just -justbuild -jwt-cpp -jxrlib-debian -k8 -kadath -kafka -kahip -kaiju -kakoune -kakoune-lsp -kaks-calculator -kaldi -kalign -kallisto -karma -kassiopeia -kbd -kbproto -kcov -kdiff3 -kea -kealib -keepalived -keepassxc -kenlm -kentutils -keyutils -khmer -kibana -kicad -kim-api -kinesis -kineto -kitty -kmergenie -kmod -knem -kokkos -kokkos-fft -kokkos-kernels -kokkos-nvcc-wrapper -kokkos-tools -kraken -kraken2 -krakenuniq -krb5 -krims -kripke -kubectl -kubernetes -kumi -kvasir-mpl -kvtree -kylin -kynema -kyotocabinet -ladot -laghos -lame -lammps -lammps-example-plugin -landsfcutil -lanl-cmake-modules -lapackpp -last -lastz -laszip -latex2html -latte -launchmon -laynii -lazygit -lazyten -lbann -lbfgspp -lbxproxy -lc-framework -lcals -lcc -lcgenv -lci -lcio -lcms -lcov -ldak -ldc -ldc-bootstrap -ldsc -legion -lemon -leptonica -lerc -less -lesstif -leveldb -lfortran -lftp -lhapdf -lhapdf5 -lhapdfsets -libabigail -libaec -libaio -libao -libapplewm -libapreq2 -libarchive -libasr -libassuan -libatasmart -libatomic-ops -libavif -libbacktrace -libbeagle -libbeato -libbigwig -libbinio -libblastrampoline -libbsd -libbson -libbytesize -libcanberra -libcap -libcap-ng -libcatalyst -libceed -libcerf -libcgroup -libcint -libcircle -libconfig -libconfuse -libcroco -libctl -libcudf -libcuml -libcumlprims -libcxi -libcxxwrap-julia -libcyaml -libdaemon -libdap4 -libdatrie -libdc1394 -libde265 -libdeflate -libdicom -libdisplay-info -libdistributed -libdivsufsort -libdmx -libdrm -libdwarf -libeatmydata -libecpint -libedit -libefence -libelf -libemos -libepoxy -libestr -libev -libevdev -libevent -libevpath -libexif -libfabric -libfastcommon -libfastjson -libffi -libffs -libfirefly -libfive -libflame -libfms -libfontenc -libfort -libfs -libftdi -libfuse -libfyaml -libgain -libgcrypt -libgd -libgdsii -libgee -libgeotiff -libgff -libgit2 -libgit2-glib -libgpg-error -libgpiod -libgpuarray -libgridxc -libgssglue -libgta -libgtextutils -libgtop -libgudev -libhandy -libharu -libhbaapi -libheif -libhio -libhugetlbfs -libiberty -libibumad -libical -libicd -libice -libiconv -libid3tag -libidl -libidn -libidn2 -libimagequant -libimobiledevice -libinih -libint -libisal -libiscsi -libjpeg -libjpeg-turbo -libjson -libjwt -libjxl -libkcapi -libkml -libksba -liblas -liblbfgs -liblbxutil -liblockfile -liblognorm -liblouis -libluv -liblzf -libmacaroons -libmad -libmatheval -libmaus2 -libmaxminddb -libmbim -libmcrypt -libmd -libmesh -libmetalink -libmetatensor -libmetatensor-torch -libmetatomic-torch -libmicrodns -libmicrohttpd -libmmtf-cpp -libmng -libmnl -libmo-unpack -libmodbus -libmolgrid -libmonitor -libmpdclient -libmypaint -libnbc -libndp -libnet -libnetfilter-conntrack -libnetfilter-cthelper -libnetfilter-cttimeout -libnetfilter-queue -libnetworkit -libnfnetlink -libnfs -libnfsidmap -libnftnl -libnids -libnl -libnotify -libnova -libnrm -libnsl -libogg -liboldx -libopts -libp11 -libpam -libpaper -libpcap -libpciaccess -libpfm4 -libpipeline -libplist -libpmemobj-cpp -libpng -libpostal -libpressio -libpressio-adios1 -libpressio-adios2 -libpressio-dataset -libpressio-errorinjector -libpressio-jit -libpressio-nvcomp -libpressio-opt -libpressio-predict -libpressio-rmetric -libpressio-sperr -libpressio-tools -libpressio-tthresh -libproxy -libpsl -libpsm3 -libpsml -libpspio -libpthread-stubs -libpulsar -libqglviewer -libqrencode -libquo -libraqm -libraw1394 -librdkafka -librelp -libreproc -libressl -libristra -librmm -librom -librsb -librsvg -librtlsdr -librttopo -libsakura -libsamplerate -libseccomp -libsecret -libsharp -libshm -libsigcpp -libsignal-protocol-c -libsigsegv -libsixel -libslirp -libsm -libsmeagol -libsndfile -libsodium -libsolv -libspatialindex -libspatialite -libspiro -libsplash -libspng -libssh -libssh2 -libstdcompat -libsvm -libszip -libtar -libtasn1 -libtermkey -libthai -libtheora -libtiff -libtirpc -libtlx -libtomlc99 -libtommath -libtool -libtorrent -libtraceevent -libtree -libuecc -libunistring -libunwind -liburcu -liburing -libusb -libusbmuxd -libuser -libuv -libuv-julia -libva -libvdwxc -libverto -libvips -libvorbis -libvori -libvpx -libvterm -libwebp -libwebsockets -libwhich -libwindowswm -libwmf -libwnck -libx11 -libxau -libxaw -libxaw3d -libxc -libxcb -libxcomposite -libxcrypt -libxcursor -libxcvt -libxdamage -libxdmcp -libxevie -libxext -libxfce4ui -libxfce4util -libxfixes -libxfont -libxfont2 -libxfontcache -libxft -libxi -libxinerama -libxkbcommon -libxkbfile -libxkbui -libxml2 -libxmu -libxp -libxpm -libxpresent -libxprintapputil -libxprintutil -libxrandr -libxrender -libxres -libxscrnsaver -libxshmfence -libxslt -libxsmm -libxstream -libxt -libxtrap -libxtst -libxv -libxvmc -libxxf86dga -libxxf86misc -libxxf86vm -libyaml -libyogrt -libzip -libzmq -liftoff -liggghts -lighttpd -ligra -likwid -lima -linaro-forge -linkphase3 -linktest -linsys-v -linux-external-modules -linux-headers -linux-pam -linux-perf -lis -listres -litestream -lizard -lksctp-tools -llvm -llvm-amdgpu -llvm-doe -llvm-openmp -llvm-openmp-ompt -lm-sensors -lmbench -lmdb -lmod -lndir -lodepng -log4c -log4cplus -log4cpp -log4cxx -logrotate -logstash -loki -looptools -lordec -lorene -lp-solve -lrslib -lrzip -lsd -lsf -lshw -lsof -lsquic -lsscsi -ltp -ltr-retriever -ltrace -lua -lua-bit32 -lua-bitlib -lua-ffi -lua-lpeg -lua-luafilesystem -lua-luajit -lua-luajit-openresty -lua-luaposix -lua-mpack -lua-sol2 -lucene -luit -lulesh -lumpy-sv -lustre -lvarray -lvm2 -lwgrp -lwm2 -lwtnn -lxc -lynx -lz4 -lzma -lzo -lzop -m4 -macfuse -macsio -mad-numdiff -madgraph5amc -madis -madx -maeparser -mafft -magic-enum -magics -magma -mahout -makedepend -makedepf90 -maker -mallocmc -maloc -malt -mamba -man-db -mapl -mapnik -mapserver -mapsplice2 -maq -mariadb -mariadb-c-client -mark -masa -mash -masurca -mathematica -matio -matlab -matrix-switch -maven -maverick -mawk -mbdyn -mbedtls -mc -mcl -mcpp -mct -mctc-lib -mcutils -mdb -mdspan -mdsplus -mdtest -med -medipack -meep -mefit -megadock -megahit -melissa -memaxes -memcached -meme -memkind -memtester -mepo -meraculous -mercurial -mercury -mergiraf -mesa -mesa-demos -mesa-glu -meshkit -meshlab -meshtool -meson -mesquite -met -metabat -metacarpa -metaeuk -metal -metall -metaphysicl -methyldackel -metis -metkit -metplus -mfem -mg -mgard -mgardx -mgcfd-op2 -mgis -microbiomeutil -microsocks -migraphx -migrate -migrate-package-prs -mii -millepede -mimalloc -minc-toolkit -minced -mindthegap -miniamr -miniapp-ascent -miniasm -miniconda3 -minife -miniforge3 -minigan -minighost -minigmg -minimap2 -minimd -minio -miniocli -miniqmc -minisign -minismac2d -minitri -minivite -minixyce -minizip -minuit -miopen-hip -mira -miranda -mirdeep2 -mitofates -mitos -mivisionx -mixcr -mkfontdir -mkfontscale -mlc-llm -mlhka -mlocate -mlpack -mlperf-deepcam -mlst -mmg -mmseqs2 -mmv -moab -mochi-margo -mochi-thallium -model-angelo -model-traits -modeltest-ng -modern-wheel -modylas -mokutil -molcas -mold -molden -molgw -mongo-c-driver -mongo-cxx-driver -mongodb-async-driver -mono -montage -moosefs -moreutils -mosesdecoder -mosh -mosquitto -mothur -motif -motioncor2 -mount-point-attributes -mozjpeg -mozjs -mpark-variant -mpas-model -mpb -mpc -mpdecimal -mpe2 -mpest -mpfi -mpfr -mpi-bash -mpi-rockstar -mpi-serial -mpi-sync-clocks -mpi-test-suite -mpibenchmark -mpibind -mpich -mpidiff -mpifileutils -mpigraph -mpilander -mpileaks -mpip -mpir -mpitrampoline -mpiwrapper -mpix-launch-swift -mpl -mppp -mpt -mptensor -mrbayes -mrbench -mrchem -mrcpp -mrnet -mrtrix3 -mruby -mscclpp -mscgen -msgpack-c -mshadow -msmc -msmc2 -msmpi -msr-safe -mstk -mstore -msvc -mt-metis -mtn -mujoco -multicharge -multitail -multitime -multiverso -mumax -mummer -mummer4 -mumps -munge -muparser -muparserx -muscle -muscle5 -muse -music -musica -musl -must -muster -mutationpp -mvapich -mvapich-plus -mvapich2 -mxm -mxml -mxnet -mypaint-brushes -mysql -mysql-connector-c -mysqlpp -n2p2 -nacos -nag -nalu -nalu-wind -namd -nano -nanoflann -nanomsg -nanopb -nasm -nauty -navi -nb -nbdkit -ncbi-magicblast -ncbi-rmblastn -ncbi-toolkit -ncbi-vdb -nccl -nccl-fastsocket -nccl-tests -nccmp -ncdu -ncftp -ncio -ncl -nco -ncompress -ncurses -ncview -ncvis -ndiff -ndzip -neartree -neic-finitefault -nek5000 -nekbone -nekcem -neko -nekrs -nektar -nektools -nemsio -nemsiogfs -neo4j -neocmakelsp -neofoam -neon -neovim -neper -nest -net-snmp -netcdf-c -netcdf-cxx -netcdf-cxx4 -netcdf-fortran -netcdf95 -netdata -netgauge -netgen -netkit-ftp -netlib-lapack -netlib-scalapack -netlib-xblas -netpbm -netperf -nettle -networkdirect -neuron -neve -newt -nextdenovo -nextflow -nf-core-tools -nf-seqerakit -nf-tower-agent -nf-tower-cli -nf-wave-cli -nfft -nfs-ganesha -nfs-utils -nghttp2 -nginx -ngmerge -ngmlr -ngspice -nicstat -nim -nimrod-aai -ninja -ninja-fortran -ninja-phylogeny -nix -njet -nlcglib -nlohmann-json -nlohmann-json-schema-validator -nlopt -nmad -nn-c -nnn -nnpack -nnvm -node-js -nopayloadclient -notmuch -npb -npm -npth -nrm -ns-3-dev -nseg -nsimd -nspr -nss -ntirpc -ntl -ntpoly -numactl -numamma -numap -numaprof -numdiff -nut -nvbandwidth -nvcomp -nvdimmsim -nvhpc -nvidia-container-toolkit -nvidia-nsight-systems -nvpl-blas -nvpl-fft -nvpl-lapack -nvpl-scalapack -nvptx-tools -nvshmem -nvtop -nvtx -nwchem -nyancat -ocaml -ocamlbuild -occa -oci-systemd-hook -ocl-icd -oclgrind -oclint -oclock -octa -octave -octave-arduino -octave-control -octave-gsl -octave-instrctl -octave-io -octave-optim -octave-quaternion -octave-signal -octave-splines -octave-statistics -octave-struct -octave-symbolic -octopus -odc -odgi -of-catalyst -of-precice -ollama -ome-common-cpp -ome-files-cpp -ome-model -omega-h -omm -omm-bundle -omniperf -omnitrace -ompss -ompss-2 -ompt-openmp -oneapi-igc -oneapi-level-zero -onednn -oniguruma -onnx -ont-guppy -oommf -op2-dsl -opa-psm2 -opam -opari2 -opdilib -open-iscsi -open-isns -open3d -openal-soft -openbabel -openblas -opencarp -opencascade -opencl-c-headers -opencl-clhpp -opencl-headers -opencl-icd-loader -opencoarrays -opencolorio -opencv -opendatadetector -opendx -openexr -openfast -openfdtd -openfoam -openfoam-org -openfpgaloader -openfst -opengl -openglu -openimagedenoise -openimageio -openipmi -openjdk -openjpeg -openkim-models -openldap -openlibm -openloops -openmc -openmm -openmolcas -openmpi -openmx -opennurbs -openpa -openpbs -openpmd-api -openradioss-engine -openradioss-starter -openrasmol -openresty -openscenegraph -openslide -openslp -openspeedshop -openspeedshop-utils -openssh -openssl -opensta -openstf -opensubdiv -opentsdb -openturns -openvdb -openvkl -openwsman -ophidia-analytics-framework -ophidia-io-server -ophidia-primitives -ophidia-server -opium -optional-lite -optipng -optix-dev -opus -or-tools -oracle-instant-client -oras -orbit2 -orc -orca -orca-faccts -orfm -orientdb -orthofiller -orthofinder -orthomcl -osg-ca-certs -osi -osmctools -osmesa -ospray -osqp -ossp-uuid -osu-micro-benchmarks -otf -otf-cpt -otf2 -ovito -oxide-rs -p11-kit -p3dfft3 -p4est -p7zip -pacbio-daligner -pacbio-damasker -pacbio-dazz-db -pacbio-dextractor -pace -pacifica-cli -packmol -pacparser -pacvim -paddle -padicotm -pagit -pagmo -pagmo2 -paintor -pajeng -pal -palace -palisade-development -paml -panda -pandaseq -pandoc -pandoramonitoring -pandorapfa -pandorasdk -pango -pangolin -pangomm -papi -papyrus -paraconf -paradiseo -parafeed -parallel -parallel-hashmap -parallel-netcdf -parallelio -parallelmergetree -paraview -pareval -parflow -parmetis -parmgridgen -parmmg -parquet-format -parsec -parsimonator -parsplice -parthenon -pass -passt -pasta -pastix -patch -patchelf -patchutils -pathfinder -pax-utils -pbbam -pblat -pbmpi -pbwt -pbzip2 -pciutils -pcl -pcma -pcre -pcre2 -pcsclite -pdal -pdc -pdf2svg -pdftk -pdi -pdiplugin-decl-hdf5 -pdiplugin-decl-netcdf -pdiplugin-mpi -pdiplugin-pycall -pdiplugin-serialize -pdiplugin-set-value -pdiplugin-trace -pdiplugin-user-code -pdsh -pdt -pegtl -pennant -percept -percona-server -perfstubs -perl -perl-acme-damn -perl-algorithm-c3 -perl-algorithm-diff -perl-alien-build -perl-alien-build-plugin-download-gitlab -perl-alien-libxml2 -perl-any-uri-escape -perl-apache-logformat-compiler -perl-app-cmd -perl-appconfig -perl-archive-zip -perl-array-utils -perl-b-cow -perl-b-hooks-endofscope -perl-b-keywords -perl-bignum -perl-bio-asn1-entrezgene -perl-bio-bigfile -perl-bio-cluster -perl-bio-db-hts -perl-bio-ensembl -perl-bio-ensembl-funcgen -perl-bio-ensembl-io -perl-bio-ensembl-variation -perl-bio-eutilities -perl-bio-searchio-hmmer -perl-bio-variation -perl-bioperl -perl-bit-vector -perl-bsd-resource -perl-cache-cache -perl-cache-memcached -perl-cairo -perl-canary-stability -perl-capture-tiny -perl-carp -perl-carp-assert -perl-carp-clan -perl-catalyst-action-renderview -perl-catalyst-action-rest -perl-catalyst-component-instancepercontext -perl-catalyst-devel -perl-catalyst-plugin-cache -perl-catalyst-plugin-configloader -perl-catalyst-plugin-static-simple -perl-catalyst-runtime -perl-catalyst-view-json -perl-cgi -perl-cgi-simple -perl-cgi-struct -perl-chart-gnuplot -perl-chi -perl-chi-driver-memcached -perl-class-accessor -perl-class-accessor-grouped -perl-class-accessor-lvalue -perl-class-c3 -perl-class-c3-adopt-next -perl-class-c3-componentised -perl-class-data-inheritable -perl-class-inspector -perl-class-load -perl-class-load-xs -perl-class-method-modifiers -perl-class-singleton -perl-class-tiny -perl-clone -perl-clone-choose -perl-clone-pp -perl-common-sense -perl-compress-bzip2 -perl-compress-lzo -perl-compress-raw-bzip2 -perl-compress-raw-zlib -perl-config-any -perl-config-general -perl-config-inifiles -perl-config-simple -perl-config-tiny -perl-context-preserve -perl-contextual-return -perl-convert-nls-date-format -perl-cookie-baker -perl-cpan-meta-check -perl-cpanel-json-xs -perl-css-minifier-xs -perl-data-dump -perl-data-dumper -perl-data-dumper-concise -perl-data-optlist -perl-data-predicate -perl-data-stag -perl-data-uuid -perl-data-visitor -perl-date-exception -perl-date-manip -perl-date-utils -perl-datetime -perl-datetime-format-builder -perl-datetime-format-iso8601 -perl-datetime-format-mysql -perl-datetime-format-oracle -perl-datetime-format-pg -perl-datetime-format-strptime -perl-datetime-locale -perl-datetime-timezone -perl-db-file -perl-dbd-mysql -perl-dbd-oracle -perl-dbd-pg -perl-dbd-sqlite -perl-dbi -perl-dbix-class -perl-devel-checklib -perl-devel-cover -perl-devel-cycle -perl-devel-globaldestruction -perl-devel-overloadinfo -perl-devel-size -perl-devel-stacktrace -perl-devel-stacktrace-ashtml -perl-devel-symdump -perl-digest-jhash -perl-digest-md5 -perl-digest-md5-file -perl-digest-sha1 -perl-dist-checkconflicts -perl-email-abstract -perl-email-address-xs -perl-email-date-format -perl-email-messageid -perl-email-mime -perl-email-mime-contenttype -perl-email-mime-encodings -perl-email-sender -perl-email-simple -perl-email-stuffer -perl-encode-locale -perl-error -perl-eval-closure -perl-exception-class -perl-exporter-auto -perl-exporter-lite -perl-exporter-tiny -perl-extutils-config -perl-extutils-depends -perl-extutils-helpers -perl-extutils-installpaths -perl-extutils-makemaker -perl-extutils-pkgconfig -perl-ffi-checklib -perl-file-changenotify -perl-file-chdir -perl-file-copy-recursive -perl-file-find-rule -perl-file-grep -perl-file-homedir -perl-file-listing -perl-file-pushd -perl-file-remove -perl-file-sharedir -perl-file-sharedir-install -perl-file-slurp -perl-file-slurp-tiny -perl-file-slurper -perl-file-spec -perl-file-temp -perl-file-which -perl-filesys-notify-simple -perl-font-ttf -perl-forks -perl-fth -perl-gd -perl-gdgraph -perl-gdgraph-histogram -perl-gdtextutil -perl-getopt-argvfile -perl-getopt-long-descriptive -perl-getopt-tabular -perl-graph -perl-graph-readwrite -perl-graphviz -perl-gzip-faster -perl-hash-merge -perl-hash-moreutils -perl-hash-multivalue -perl-heap -perl-hook-lexwrap -perl-html-parser -perl-html-tagset -perl-html-template -perl-http-body -perl-http-cookiejar -perl-http-cookies -perl-http-daemon -perl-http-date -perl-http-entity-parser -perl-http-headers-fast -perl-http-message -perl-http-multipartparser -perl-http-negotiate -perl-http-parser-xs -perl-http-request-ascgi -perl-http-server-simple -perl-http-tiny -perl-import-into -perl-inline -perl-inline-c -perl-io-all -perl-io-compress -perl-io-html -perl-io-prompt -perl-io-sessiondata -perl-io-socket-ssl -perl-io-string -perl-io-stringy -perl-io-tty -perl-ipc-run -perl-ipc-run3 -perl-ipc-sharelite -perl-ipc-system-simple -perl-javascript-minifier-xs -perl-json -perl-json-any -perl-json-maybexs -perl-json-xs -perl-kyotocabinet -perl-libwww-perl -perl-libxml-perl -perl-lingua-en-inflect -perl-list-compare -perl-list-moreutils -perl-list-moreutils-xs -perl-list-someutils -perl-log-any -perl-log-any-adapter-callback -perl-log-dispatch -perl-log-dispatch-filerotate -perl-log-log4perl -perl-logger-simple -perl-lwp-mediatypes -perl-lwp-protocol-https -perl-mailtools -perl-math-bezier -perl-math-bigint -perl-math-bigrat -perl-math-cdf -perl-math-cephes -perl-math-matrixreal -perl-math-round -perl-math-symbolic -perl-math-vecstat -perl-mce -perl-memory-process -perl-metacpan-client -perl-mime-types -perl-mni-perllib -perl-mock-config -perl-module-build -perl-module-build-tiny -perl-module-corelist -perl-module-find -perl-module-implementation -perl-module-install -perl-module-mask -perl-module-pluggable -perl-module-runtime -perl-module-runtime-conflicts -perl-module-scandeps -perl-module-util -perl-mojolicious -perl-moo -perl-moose -perl-moosex-emulate-class-accessor-fast -perl-moosex-getopt -perl-moosex-methodattributes -perl-moosex-role-parameterized -perl-moox-types-mooselike -perl-moox-types-mooselike-numeric -perl-mozilla-ca -perl-mro-compat -perl-namespace-autoclean -perl-namespace-clean -perl-net-cidr-lite -perl-net-http -perl-net-ip -perl-net-scp-expect -perl-net-server -perl-net-server-ss-prefork -perl-net-ssleay -perl-number-compare -perl-number-format -perl-object-insideout -perl-package-deprecationmanager -perl-package-stash -perl-package-stash-xs -perl-package-variant -perl-padwalker -perl-parallel-forkmanager -perl-params-util -perl-params-validate -perl-params-validationcompiler -perl-parse-recdescent -perl-parse-yapp -perl-parselex -perl-parsetemplate -perl-path-class -perl-path-tiny -perl-pathtools -perl-pdf-api2 -perl-pegex -perl-perl-critic -perl-perl-critic-moose -perl-perl-tidy -perl-perl-unsafe-signals -perl-perl-version -perl-perl4-corelibs -perl-perl6-slurp -perl-perlio-gzip -perl-perlio-utf8-strict -perl-plack -perl-plack-middleware-assets -perl-plack-middleware-crossorigin -perl-plack-middleware-deflater -perl-plack-middleware-fixmissingbodyinredirect -perl-plack-middleware-methodoverride -perl-plack-middleware-removeredundantbody -perl-plack-middleware-reverseproxy -perl-plack-test-externalserver -perl-pod-coverage -perl-pod-parser -perl-pod-spell -perl-posix-strftime-compiler -perl-ppi -perl-ppix-quotelike -perl-ppix-regexp -perl-ppix-utils -perl-proc-daemon -perl-proc-processtable -perl-readonly -perl-readonly-xs -perl-ref-util -perl-regexp-common -perl-role-tiny -perl-rose-datetime -perl-rose-db -perl-rose-db-object -perl-rose-object -perl-safe-isa -perl-scalar-list-utils -perl-scalar-util-numeric -perl-scope-guard -perl-search-elasticsearch -perl-sereal -perl-sereal-decoder -perl-sereal-encoder -perl-server-starter -perl-set-intervaltree -perl-set-intspan -perl-set-object -perl-set-scalar -perl-soap-lite -perl-sort-naturally -perl-specio -perl-spiffy -perl-sql-abstract -perl-sql-abstract-classic -perl-sql-reservedwords -perl-sql-translator -perl-star-fusion -perl-starman -perl-statistics-basic -perl-statistics-descriptive -perl-statistics-pca -perl-stream-buffered -perl-strictures -perl-string-approx -perl-string-crc32 -perl-string-format -perl-string-numeric -perl-string-rewriteprefix -perl-sub-exporter -perl-sub-exporter-progressive -perl-sub-identify -perl-sub-install -perl-sub-name -perl-sub-quote -perl-sub-uplevel -perl-svg -perl-swissknife -perl-sys-sigaction -perl-task-weaken -perl-template-toolkit -perl-term-ansicolor-markup -perl-term-readline-gnu -perl-term-table -perl-termreadkey -perl-test-base -perl-test-class -perl-test-cleannamespaces -perl-test-deep -perl-test-diaginc -perl-test-differences -perl-test-exception -perl-test-fatal -perl-test-file -perl-test-file-contents -perl-test-file-sharedir -perl-test-json -perl-test-leaktrace -perl-test-longstring -perl-test-memory-cycle -perl-test-mockobject -perl-test-mocktime -perl-test-more -perl-test-most -perl-test-needs -perl-test-nowarnings -perl-test-object -perl-test-output -perl-test-perl-critic -perl-test-pod -perl-test-pod-coverage -perl-test-requires -perl-test-requiresinternet -perl-test-sharedfork -perl-test-subcalls -perl-test-tcp -perl-test-time -perl-test-time-hires -perl-test-trap -perl-test-warn -perl-test-warnings -perl-test-weaken -perl-test-without-module -perl-test-xml -perl-test-xml-simple -perl-test-xpath -perl-test-yaml -perl-test2-plugin-nowarnings -perl-test2-suite -perl-text-csv -perl-text-csv-xs -perl-text-diff -perl-text-format -perl-text-glob -perl-text-nsp -perl-text-simpletable -perl-text-soundex -perl-text-unidecode -perl-thread-queue -perl-threads -perl-throwable -perl-tie-ixhash -perl-tie-toobject -perl-time-clock -perl-time-duration -perl-time-duration-parse -perl-time-hires -perl-time-piece -perl-timedate -perl-tk -perl-tree-simple -perl-tree-simple-visitorfactory -perl-try-tiny -perl-type-tiny -perl-types-serialiser -perl-universal-can -perl-universal-isa -perl-uri -perl-uri-encode -perl-uri-find -perl-uri-ws -perl-want -perl-www-form-urlencoded -perl-www-robotrules -perl-xml-dom -perl-xml-dom-xpath -perl-xml-filter-buffertext -perl-xml-hash-xs -perl-xml-libxml -perl-xml-libxslt -perl-xml-namespacesupport -perl-xml-parser -perl-xml-parser-lite -perl-xml-quote -perl-xml-regexp -perl-xml-sax -perl-xml-sax-base -perl-xml-sax-writer -perl-xml-semanticdiff -perl-xml-simple -perl-xml-twig -perl-xml-writer -perl-xml-xpath -perl-xml-xpathengine -perl-yaml -perl-yaml-libyaml -perl-yaml-syck -perl-yaml-tiny -pestpp -petaca -petsc -pexsi -pfapack -pfft -pfind -pflask -pflogger -pflotran -pfunit -pgdspider -pgplot -ph5concat -phantompeakqualtools -pharokka -phast -phasta -phist -phoenix -photos -photos-f -photospline -php -phrap-crossmatch-swat -phred -phylip -phylobayesmpi -phyluce -picard -picsar -picsarlite -pidx -pig -pigz -pika -pika-algorithms -pilercr -pilon -pindel -pinentry -pinfo -pioman -pipework -pipx -piranha -pism -pixman -pixz -pkg-config -pkgconf -pktools -planck-likelihood -plantuml -plasma -plink -plink-ng -plink2 -plog -ploticus -plplot -plsm -plumed -ply -pmdk -pmemkv -pmerge -pmgr-collective -pmix -pmlib -pnfft -pngquant -pngwriter -pnmpi -poamsa -pocl -podio -podman -podman-compose -poke -polymake -polyml -polypolish -poorjit -poplddecay -poppler -poppler-data -popt -porta -portage -portcullis -ports-of-call -possvm -postgis -postgresql -povray -powerapi -powertop -ppl -pplacer -ppopen-appl-amr-fdm -ppopen-appl-bem -ppopen-appl-bem-at -ppopen-appl-dem-util -ppopen-appl-fdm -ppopen-appl-fdm-at -ppopen-appl-fem -ppopen-appl-fvm -ppopen-at -ppopen-math-mp -ppopen-math-vis -prank -precice -predixy -premake-core -presentproto -preseq -pressio-log -pressio-ops -pressio-rom -presto -prettier -price -prime95 -primer3 -prinseq-lite -printproto -prism -prmon -prng -probconsrna -procenv -process-in-process -procps -procps-ng -prod-util -prodigal -professor -profugusmc -proj -prokka -prometheus -prometheus-cpp -prophecy4f -protobuf -protobuf-c -proxymngr -prrte -pruners-ninja -ps-lite -psalg -psblas -pscmc -psi4 -psimd -psipred -pslib -psm -psmc -psrcat -psrchive -psrdada -pstreams -pthreadpool -pugixml -puk -pukabi -pulseaudio -pumgen -pumi -purify -pv -pvm -pwgen -pxz -py-3to2 -py-4suite-xml -py-a2wsgi -py-abcpy -py-abipy -py-about-time -py-absl-py -py-accelerate -py-accessible-pygments -py-accimage -py-acme-tiny -py-acres -py-adal -py-adb-enhanced -py-addict -py-adios -py-adios4dolfinx -py-advancedhtmlparser -py-aenum -py-affine -py-agate -py-agate-dbf -py-agate-excel -py-agate-sql -py-ahpy -py-aiobotocore -py-aiocontextvars -py-aiodns -py-aiofiles -py-aiohappyeyeballs -py-aiohttp -py-aiohttp-cors -py-aioitertools -py-aiojobs -py-aioredis -py-aiosignal -py-aiosqlite -py-alabaster -py-alembic -py-alive-progress -py-alpaca-eval -py-alpaca-farm -py-alphafold -py-altair -py-altgraph -py-amici -py-amityping -py-amplpy -py-ampltools -py-amqp -py-amrex -py-angel -py-aniso8601 -py-anndata -py-annexremote -py-annotated-types -py-annoy -py-ansi2html -py-ansible -py-ansimarkup -py-ansiwrap -py-antimeridian -py-antlr4-python3-runtime -py-antspyx -py-anuga -py-anvio -py-anybadge -py-anyio -py-anytree -py-anywidget -py-apache-libcloud -py-apebench -py-apex -py-apeye -py-apeye-core -py-apipkg -py-apispec -py-app-model -py-appdirs -py-applicationinsights -py-appnope -py-apptools -py-apscheduler -py-arcgis -py-arch -py-archspec -py-arcp -py-argcomplete -py-argh -py-argon2-cffi -py-argon2-cffi-bindings -py-argparse-dataclass -py-argparse-manpage -py-args -py-arkouda -py-arm-pyart -py-arpeggio -py-arrow -py-art -py-arviz -py-asciitree -py-asdf -py-asdf-astropy -py-asdf-coordinates-schemas -py-asdf-standard -py-asdf-transform-schemas -py-asdf-unit-schemas -py-asdfghjkl -py-ase -py-asgiref -py-asn1crypto -py-aspy-yaml -py-asserts -py-asteval -py-astor -py-astpretty -py-astroid -py-astropy -py-astropy-healpix -py-astropy-helpers -py-astropy-iers-data -py-asttokens -py-astunparse -py-async-generator -py-async-lru -py-async-timeout -py-asyncio -py-asynctest -py-atomicwrites -py-atpublic -py-atropos -py-ats -py-attmap -py-attrs -py-audioread -py-auditwheel -py-autocfg -py-autodocsumm -py-autograd -py-autograd-gamma -py-automat -py-autopep8 -py-autoray -py-autoreject -py-auxlib -py-avro -py-avro-json-serializer -py-avro-python3 -py-awesome-slugify -py-awkward -py-awkward-cpp -py-awkward0 -py-awscrt -py-ax-platform -py-azote -py-azure-batch -py-azure-cli-command-modules-nspkg -py-azure-cli-core -py-azure-cli-nspkg -py-azure-cli-telemetry -py-azure-common -py-azure-core -py-azure-cosmos -py-azure-datalake-store -py-azure-functions-devops-build -py-azure-graphrbac -py-azure-identity -py-azure-keyvault -py-azure-keyvault-certificates -py-azure-keyvault-keys -py-azure-keyvault-nspkg -py-azure-keyvault-secrets -py-azure-loganalytics -py-azure-mgmt-advisor -py-azure-mgmt-apimanagement -py-azure-mgmt-appconfiguration -py-azure-mgmt-applicationinsights -py-azure-mgmt-authorization -py-azure-mgmt-batch -py-azure-mgmt-batchai -py-azure-mgmt-billing -py-azure-mgmt-botservice -py-azure-mgmt-cdn -py-azure-mgmt-cognitiveservices -py-azure-mgmt-compute -py-azure-mgmt-consumption -py-azure-mgmt-containerinstance -py-azure-mgmt-containerregistry -py-azure-mgmt-containerservice -py-azure-mgmt-core -py-azure-mgmt-cosmosdb -py-azure-mgmt-datalake-analytics -py-azure-mgmt-datalake-store -py-azure-mgmt-datamigration -py-azure-mgmt-deploymentmanager -py-azure-mgmt-devtestlabs -py-azure-mgmt-dns -py-azure-mgmt-eventgrid -py-azure-mgmt-eventhub -py-azure-mgmt-hdinsight -py-azure-mgmt-imagebuilder -py-azure-mgmt-iotcentral -py-azure-mgmt-iothub -py-azure-mgmt-iothubprovisioningservices -py-azure-mgmt-keyvault -py-azure-mgmt-kusto -py-azure-mgmt-loganalytics -py-azure-mgmt-managedservices -py-azure-mgmt-managementgroups -py-azure-mgmt-maps -py-azure-mgmt-marketplaceordering -py-azure-mgmt-media -py-azure-mgmt-monitor -py-azure-mgmt-msi -py-azure-mgmt-netapp -py-azure-mgmt-network -py-azure-mgmt-nspkg -py-azure-mgmt-policyinsights -py-azure-mgmt-privatedns -py-azure-mgmt-rdbms -py-azure-mgmt-recoveryservices -py-azure-mgmt-recoveryservicesbackup -py-azure-mgmt-redhatopenshift -py-azure-mgmt-redis -py-azure-mgmt-relay -py-azure-mgmt-reservations -py-azure-mgmt-resource -py-azure-mgmt-search -py-azure-mgmt-security -py-azure-mgmt-servicebus -py-azure-mgmt-servicefabric -py-azure-mgmt-signalr -py-azure-mgmt-sql -py-azure-mgmt-sqlvirtualmachine -py-azure-mgmt-storage -py-azure-mgmt-trafficmanager -py-azure-mgmt-web -py-azure-multiapi-storage -py-azure-nspkg -py-azure-storage-blob -py-azure-storage-common -py-azure-storage-nspkg -py-babel -py-backcall -py-backoff -py-backpack-for-pytorch -py-backports-abc -py-backports-cached-property -py-backports-entry-points-selectable -py-backports-lzma -py-backports-os -py-backports-ssl-match-hostname -py-backports-tarfile -py-backports-tempfile -py-backports-weakref -py-backports-zoneinfo -py-bagit -py-bagit-profile -py-bakta -py-bandit -py-barectf -py-basemap -py-bash-kernel -py-basis-set-exchange -py-batchspawner -py-bayesian-optimization -py-bcbio-gff -py-bcolz -py-bcrypt -py-bdbag -py-beaker -py-beancount -py-beartype -py-beautifulsoup4 -py-beniget -py-bidict -py-bids-validator -py-bids-validator-deno -py-bidscoin -py-bidskit -py-bidsschematools -py-bigdft -py-bigfloat -py-billiard -py-binary -py-binaryornot -py-bintrees -py-binwalk -py-biobb-common -py-biobb-gromacs -py-biobb-io -py-biobb-model -py-biobb-structure-checking -py-biobb-structure-utils -py-bioblend -py-biom-format -py-biomine -py-biopandas -py-biopython -py-biosppy -py-biotite -py-biotraj -py-bitarray -py-bitshuffle -py-bitstring -py-bitstruct -py-black -py-blake3 -py-bleach -py-blessed -py-blessings -py-blight -py-blinker -py-blis -py-blosc -py-blosc2 -py-blosum -py-bluepyefe -py-bluepyemodel -py-bluepyopt -py-bmap-tools -py-bmtk -py-bokeh -py-boltons -py-boom-boot-manager -py-boost-histogram -py-boto -py-boto3 -py-botocore -py-botorch -py-bottle -py-bottleneck -py-bqplot -py-braceexpand -py-brain-indexer -py-branca -py-bravado -py-bravado-core -py-breakseq2 -py-breathe -py-brian -py-brian2 -py-brotli -py-brotlipy -py-bsddb3 -py-build -py-bx-python -py-cachecontrol -py-cached-property -py-cachetools -py-cachey -py-cachy -py-cairocffi -py-cairosvg -py-caliper-reader -py-callmonitor -py-calver -py-cantoolz -py-carputils -py-cartopy -py-casadi -py-catalogue -py-catkin-pkg -py-cattrs -py-cbor2 -py-cclib -py-cdo -py-cdsapi -py-cekit -py-celery -py-cellprofiler -py-cellprofiler-core -py-centrosome -py-cerberus -py-certifi -py-certipy -py-cf-units -py-cf-xarray -py-cffconvert -py-cffi -py-cfgrib -py-cfgv -py-cftime -py-cgen -py-chai -py-chainer -py-chainforgecodegen -py-chainmap -py-chalice -py-chardet -py-charm4py -py-charset-normalizer -py-chart-studio -py-cheap-repr -py-checkm-genome -py-cheetah3 -py-chemfiles -py-cheroot -py-cherrypy -py-chex -py-choreographer -py-chronyk -py-ci-info -py-ci-sdr -py-cig-pythia -py-cinema-lib -py-cinemasci -py-circus -py-citeproc-py -py-clean-text -py-cleo -py-click -py-click-didyoumean -py-click-option-group -py-click-plugins -py-click-repl -py-cligj -py-clikit -py-climate -py-climax -py-clint -py-clip-anytorch -py-clipboard -py-cloudauthz -py-cloudbridge -py-cloudpickle -py-clustershell -py-cma -py-cmaes -py-cmake-format -py-cmake-parser -py-cmocean -py-cmseq -py-cmsml -py-cmyt -py-coapthon3 -py-coca-pytorch -py-coclust -py-codebasin -py-codepy -py-codespell -py-coherent-licensed -py-coilmq -py-colabtools -py-colorama -py-colorcet -py-colorclass -py-colored -py-colored-traceback -py-coloredlogs -py-colorful -py-colorio -py-colorlog -py-colorlover -py-colormath -py-colorpy -py-colorspacious -py-colossalai -py-colour -py-comm -py-common -py-commonmark -py-conan -py-conda-inject -py-conda-souschef -py-confection -py-configargparse -py-configobj -py-configparser -py-configspace -py-confluent-kafka -py-connectionpool -py-consolekit -py-constantly -py-contextily -py-contextlib2 -py-contexttimer -py-continuum -py-contourpy -py-contrib -py-control -py-convertdate -py-convokit -py-cookiecutter -py-copulas -py-corner -py-correctionlib -py-corrfunc -py-counter -py-courlan -py-cov-core -py-coverage -py-coveralls -py-cppheaderparser -py-cppy -py-cramjam -py-crashtest -py-crc32c -py-crcmod -py-croniter -py-crossmap -py-cryolobm -py-cryptography -py-css-parser -py-cssselect -py-cssselect2 -py-cssutils -py-csvkit -py-ctgan -py-cuda-bindings -py-cudf -py-cufflinks -py-cuml -py-cupy -py-current -py-currentscape -py-curvlinops-for-pytorch -py-custodian -py-custom-inherit -py-cutadapt -py-cvxopt -py-cvxpy -py-cwl-upgrader -py-cwl-utils -py-cwltool -py-cx-oracle -py-cycler -py-cykhash -py-cylc-flow -py-cylc-rose -py-cylp -py-cymem -py-cyordereddict -py-cython -py-cython-bbox -py-cyvcf2 -py-d2to1 -py-dace -py-dacite -py-dadi -py-dalib -py-damask -py-darshan -py-dasbus -py-dash -py-dash-bootstrap-components -py-dash-svg -py-dask -py-dask-awkward -py-dask-expr -py-dask-glm -py-dask-histogram -py-dask-jobqueue -py-dask-ml -py-dask-mpi -py-dask-sphinx-theme -py-databricks-cli -py-dataclasses -py-dataclasses-json -py-datacube -py-datalad -py-datalad-container -py-datalad-deprecated -py-datalad-hirni -py-datalad-metadata-model -py-datalad-metalad -py-datalad-neuroimaging -py-datalad-webapp -py-dataproperty -py-datasets -py-datashader -py-datatrove -py-dateparser -py-dateutils -py-datrie -py-dbf -py-dbfread -py-dcm2bids -py-deap -py-debtcollector -py-debugpy -py-decorator -py-deepdiff -py-deepecho -py-deephyper -py-deepsig-biocomp -py-deepspeed -py-deeptools -py-deeptoolsintervals -py-defusedxml -py-demjson -py-dendropy -py-deprecat -py-deprecated -py-deprecation -py-deprecation-alias -py-descartes -py-devito -py-devlib -py-dgl -py-dh-scikit-optimize -py-dict2css -py-dictdiffer -py-dictobj -py-dill -py-dinosaur -py-dipy -py-dirtyjson -py-disbatch -py-discover -py-diskcache -py-dist-meta -py-distance -py-distlib -py-distributed -py-distro -py-django -py-dlcpar -py-dm-haiku -py-dm-tree -py-dnaio -py-dnspython -py-docker -py-dockerpy-creds -py-docopt -py-docopt-ng -py-docstring-parser -py-docstring-to-markdown -py-docutils -py-docutils-stubs -py-dogpile-cache -py-doit -py-dolfinx-mpc -py-dom-toml -py-domdf-python-tools -py-dominate -py-donfig -py-dotmap -py-dotnetcore2 -py-downhill -py-doxypypy -py-dpath -py-drep -py-drmaa -py-dryscrape -py-duecredit -py-dulwich -py-dunamai -py-dvc -py-dxchange -py-dxfile -py-dynaconf -py-dynim -py-earth2mip -py-earthengine-api -py-easybuild-easyblocks -py-easybuild-easyconfigs -py-easybuild-framework -py-eccodes -py-ecdsa -py-ecmwf-opendata -py-ecmwflibs -py-ecos -py-edam-ontology -py-edffile -py-edfio -py-edflib-python -py-editables -py-editdistance -py-edlib -py-eeglabio -py-eerepr -py-efel -py-efficientnet-pytorch -py-eg -py-einconv -py-einops -py-elastic-transport -py-elasticsearch -py-elasticsearch-dsl -py-elephant -py-elevation -py-ema-pytorch -py-email-validator -py-embedding-reader -py-emcee -py-emoji -py-empy -py-entrypoints -py-enum-tools -py-envisage -py-ephem -py-eprosima-fastdds -py-epydoc -py-equation -py-equinox -py-espresso -py-espressopp -py-et-xmlfile -py-ete3 -py-etelemetry -py-etils -py-eval-type-backport -py-evaluate -py-eventlet -py-evodiff -py-ewah-bool-utils -py-exarl -py-exceptiongroup -py-execnet -py-executing -py-exhale -py-exifread -py-exodus-bundler -py-expandvars -py-expecttest -py-exponax -py-extension-helpers -py-extras -py-ez-setup -py-f90nml -py-f90wrap -py-fabric -py-fabric3 -py-fair-esm -py-fairscale -py-faker -py-falcon -py-fallocate -py-fastai -py-fastaindex -py-fastapi -py-fastapi-utils -py-fastavro -py-fastcache -py-fastcluster -py-fastcore -py-fastcov -py-fastdownload -py-fastdtw -py-fasteners -py-fastfold -py-fastjsonschema -py-fastpath -py-fastprogress -py-fastremap -py-fastrlock -py-fasttext-numpy2 -py-fasttext-numpy2-wheel -py-faust-cchardet -py-fava -py-fenics-basix -py-fenics-dijitso -py-fenics-dolfinx -py-fenics-ffc -py-fenics-ffcx -py-fenics-fiat -py-fenics-instant -py-fenics-ufl -py-fenics-ufl-legacy -py-ffmpy -py-file-magic -py-filecheck -py-filelock -py-filemagic -py-filetype -py-filterpy -py-find-libpython -py-findlibs -py-fiona -py-fire -py-fireworks -py-fiscalyear -py-fisher -py-fits-tools -py-fitsio -py-fitter -py-fixtures -py-flake8 -py-flake8-import-order -py-flake8-polyfill -py-flaky -py-flameprof -py-flash-attn -py-flask -py-flask-babel -py-flask-compress -py-flask-cors -py-flask-paginate -py-flask-restful -py-flask-socketio -py-flask-sqlalchemy -py-flatbuffers -py-flatten-dict -py-flawfinder -py-flax -py-flexcache -py-flexmock -py-flexparser -py-flexx -py-flit -py-flit-core -py-flit-scm -py-flox -py-flufl-lock -py-fluiddyn -py-fluidfft -py-fluidfft-builder -py-fluidfft-fftw -py-fluidfft-fftwmpi -py-fluidfft-mpi-with-fftw -py-fluidfft-p3dfft -py-fluidfft-pfft -py-fluidsim -py-fluidsim-core -py-flye -py-fn-py -py-folium -py-fonttools -py-ford -py-formatizer -py-formulaic -py-fortls -py-fortran-language-server -py-fortranformat -py-fparser -py-fprettify -py-fqdn -py-fracridge -py-fraction -py-freetype-py -py-freezegun -py-frozendict -py-frozenlist -py-fs -py-fsspec -py-fsspec-xrootd -py-ftfy -py-ftputil -py-funcy -py-furo -py-fury -py-fusepy -py-future -py-fuzzywuzzy -py-fypp -py-galaxy-containers -py-galaxy-job-metrics -py-galaxy-objectstore -py-galaxy-sequence-utils -py-galaxy-tool-util -py-galaxy-util -py-galaxy2cwl -py-gast -py-gcovr -py-gcs-oauth2-boto-plugin -py-gcsfs -py-gdc-client -py-gdown -py-gee-asset-manager -py-geeadd -py-geemap -py-geeup -py-gemmforge -py-genders -py-geneimpacts -py-generateds -py-genshi -py-gensim -py-geoalchemy2 -py-geocoder -py-geocube -py-geographiclib -py-geojson -py-geomdl -py-geopandas -py-geoplot -py-geopmdpy -py-geopmpy -py-geopy -py-geoviews -py-gevent -py-gf256 -py-gfal2-python -py-gffutils -py-ghp-import -py-gidgethub -py-gidgetlab -py-gimmik -py-gin-config -py-git-review -py-gitdb -py-gitpython -py-glean-parser -py-glean-sdk -py-glmnet -py-glmnet-python -py-glmsingle -py-glob2 -py-globus-cli -py-globus-sdk -py-gluoncv -py-glymur -py-gmsh -py-gmsh-interop -py-gmxapi -py-gnuplot -py-goatools -py-gooey -py-google -py-google-api-core -py-google-api-python-client -py-google-apitools -py-google-auth -py-google-auth-httplib2 -py-google-auth-oauthlib -py-google-cloud-appengine-logging -py-google-cloud-audit-log -py-google-cloud-batch -py-google-cloud-bigquery -py-google-cloud-core -py-google-cloud-logging -py-google-cloud-storage -py-google-crc32c -py-google-pasta -py-google-reauth -py-google-resumable-media -py-googleapis-common-protos -py-googledrivedownloader -py-gosam -py-gpaw -py-gpaw-data -py-gpustat -py-gputil -py-gpy -py-gpyopt -py-gpytorch -py-gql -py-gradio -py-gradio-client -py-grandalf -py-graphcast -py-grapheme -py-graphene -py-graphlib-backport -py-graphql-core -py-graphql-relay -py-graphql-ws -py-graphviz -py-gravity -py-grayskull -py-greenlet -py-grequests -py-griddataformats -py-griffe -py-gromacswrapper -py-grpc-google-iam-v1 -py-grpcio -py-grpcio-status -py-grpcio-tools -py-gsd -py-gssapi -py-gsutil -py-gtdbtk -py-gunicorn -py-gxformat2 -py-gym -py-h11 -py-h2 -py-h5glance -py-h5io -py-h5netcdf -py-h5py -py-h5sh -py-hacking -py-hail -py-handy-archives -py-hatch -py-hatch-cython -py-hatch-fancy-pypi-readme -py-hatch-jupyter-builder -py-hatch-nodejs-version -py-hatch-requirements-txt -py-hatch-vcs -py-hatchet -py-hatchling -py-hclust2 -py-hdbscan -py-hdfs -py-healpix -py-healpy -py-heapdict -py-heat -py-hep-ml -py-hepdata-converter -py-hepdata-lib -py-hepdata-validator -py-hepstats -py-hepunits -py-hf-transfer -py-hf-xet -py-hieroglyph -py-hiredis -py-hist -py-histbook -py-histogrammar -py-histoprint -py-hjson -py-hmmlearn -py-holland-backup -py-holoviews -py-horovod -py-hpack -py-hpbandster -py-hpccm -py-hsluv -py-hstspreload -py-htgettoken -py-html2text -py-html5lib -py-htmldate -py-htmlgen -py-htseq -py-httpbin -py-httpcore -py-httplib2 -py-httpretty -py-httpstan -py-httptools -py-httpx -py-huggingface-hub -py-humanfriendly -py-humanize -py-hvac -py-hvplot -py-hydra-core -py-hypercorn -py-hyperframe -py-hyperlink -py-hyperopt -py-hypothesis -py-ibm-cloud-sdk-core -py-ibm-watson -py-ics -py-id -py-identify -py-idna -py-idna-ssl -py-igor -py-igor2 -py-igraph -py-igv-notebook -py-illumina-utils -py-ilmbase -py-imagecodecs -py-imagehash -py-imageio -py-imageio-ffmpeg -py-imagesize -py-imbalanced-learn -py-imgaug -py-iminuit -py-immutabledict -py-immutables -py-importlib-metadata -py-importlib-resources -py-imutils -py-in-n-out -py-incremental -py-inflect -py-inheritance -py-iniconfig -py-iniparse -py-inquirer -py-inquirerpy -py-inscriptis -py-installer -py-instrain -py-intbitset -py-intel-openmp -py-intensity-normalization -py-interface-meta -py-interlap -py-intervaltree -py-invoke -py-iocapture -py-iopath -py-ipaddress -py-ipdb -py-ipycanvas -py-ipyevents -py-ipyfilechooser -py-ipykernel -py-ipyleaflet -py-ipympl -py-ipyparallel -py-ipyrad -py-ipython -py-ipython-cluster-helper -py-ipython-genutils -py-ipython-pygments-lexers -py-ipytree -py-ipyvtk-simple -py-ipyvue -py-ipyvuetify -py-ipywidgets -py-irpf90 -py-isa-rwval -py-isal -py-iso8601 -py-isodate -py-isoduration -py-isort -py-iterative-stats -py-itk -py-itolapi -py-itsdangerous -py-jacobi -py-jaconv -py-jamo -py-janus -py-jaraco-classes -py-jaraco-context -py-jaraco-functools -py-jarowinkler -py-jarvis-util -py-javaproperties -py-jax -py-jaxlib -py-jaxtyping -py-jcb -py-jdatetime -py-jdcal -py-jedi -py-jeepney -py-jellyfish -py-jinja2 -py-jinja2-cli -py-jinja2-time -py-jiter -py-jmespath -py-jmp -py-joblib -py-jplephem -py-jproperties -py-jprops -py-jpype1 -py-jraph -py-jsmin -py-json-get -py-json-tricks -py-json2html -py-json5 -py-jsonargparse -py-jsondiff -py-jsonlines -py-jsonpatch -py-jsonpath-ng -py-jsonpickle -py-jsonpointer -py-jsonref -py-jsonschema -py-jsonschema-specifications -py-junit-xml -py-junit2html -py-jupyter -py-jupyter-client -py-jupyter-console -py-jupyter-core -py-jupyter-events -py-jupyter-leaflet -py-jupyter-lsp -py-jupyter-packaging -py-jupyter-server -py-jupyter-server-mathjax -py-jupyter-server-proxy -py-jupyter-server-terminals -py-jupyter-telemetry -py-jupyterhub -py-jupyterlab -py-jupyterlab-pygments -py-jupyterlab-server -py-jupyterlab-widgets -py-jupytext -py-justext -py-jwcrypto -py-kaggle -py-kaldiio -py-kaleido -py-kb-python -py-keras -py-keras-applications -py-keras-preprocessing -py-keras2onnx -py-kerberos -py-keyboard -py-keyring -py-keyrings-alt -py-keystoneauth1 -py-kitchen -py-kiwisolver -py-kmodes -py-knack -py-kneaddata -py-kombu -py-kornia -py-kornia-rs -py-kosh -py-krb5 -py-kt-legacy -py-kubernetes -py-kymatio -py-lagom -py-langcodes -py-langsmith -py-lap -py-laplace-torch -py-lark -py-lark-parser -py-laspy -py-latexcodec -py-law -py-lazy -py-lazy-loader -py-lazy-object-proxy -py-lazy-property -py-lazyarray -py-lcls-krtc -py-ldap3 -py-leather -py-lerc -py-lfpykit -py-lhsmdu -py-liac-arff -py-libclang -py-libconf -py-libcst -py-libensemble -py-liblas -py-librosa -py-libsonata -py-lifelines -py-lightgbm -py-lightly -py-lightly-utils -py-lightning -py-lightning-api-access -py-lightning-cloud -py-lightning-fabric -py-lightning-lite -py-lightning-uq-box -py-lightning-utilities -py-ligo-segments -py-lil-aretomo -py-line-profiler -py-linear-operator -py-linear-tree -py-linecache2 -py-lineenhancer -py-linkchecker -py-linkify-it-py -py-lit -py-litdata -py-littleutils -py-lizard -py-llnl-sina -py-llvmlite -py-lmdb -py-lmfit -py-lmodule -py-localcider -py-locket -py-lockfile -py-logilab-common -py-logistro -py-logmuse -py-loguru -py-loky -py-loompy -py-looseversion -py-louie -py-lpips -py-lru-dict -py-lscsoft-glue -py-lsprotocol -py-luigi -py-lvis -py-lws -py-lxml -py-lz4 -py-lzstring -py-m2r -py-macholib -py-machotools -py-macs2 -py-macs3 -py-maestrowf -py-magicgui -py-mahotas -py-mailchecker -py-make -py-makefun -py-mako -py-mapbox-earcut -py-mapclassify -py-mariadb -py-markdown -py-markdown-include -py-markdown-it-py -py-markdown2 -py-markov-clustering -py-markovify -py-markupsafe -py-marshmallow -py-matminer -py-matplotlib -py-matplotlib-inline -py-matplotlib-scalebar -py-maturin -py-mayavi -py-mbstrdecoder -py-mccabe -py-md-environ -py-mda-xdrlib -py-mdanalysis -py-mdanalysistests -py-mdi -py-mdit-py-plugins -py-mdocfile -py-mdurl -py-meautility -py-mechanize -py-medaka -py-meldmd -py-melissa-core -py-memory-profiler -py-memprof -py-memray -py-mercantile -py-mergedeep -py-merlin -py-meshio -py-meshpy -py-meson-python -py-metaphlan -py-metasv -py-metatensor-core -py-metatensor-learn -py-metatensor-operations -py-metatensor-torch -py-metatomic-torch -py-metis -py-metomi-isodatetime -py-metomi-rose -py-metpy -py-metric-learn -py-metrics -py-mffpy -py-mg-rast-tools -py-mgmetis -py-microsoft-aurora -py-mido -py-mikado -py-mike -py-minio -py-minisom -py-minkowskiengine -py-minrpc -py-misk -py-misopy -py-mistletoe -py-mistune -py-mizani -py-mkdocs -py-mkdocs-autorefs -py-mkdocs-jupyter -py-mkdocs-material -py-mkdocs-material-extensions -py-mkdocstrings -py-mkdocstrings-python -py-ml-collections -py-ml-dtypes -py-mlflow -py-mlperf-logging -py-mlxtend -py-mmcv -py-mmtf-python -py-mne -py-mne-bids -py-mo-pack -py-moarchiving -py-mock -py-model-index -py-modepy -py-modin -py-modred -py-modules-gui -py-moltemplate -py-monai -py-monkeytype -py-monotonic -py-monty -py-more-itertools -py-morph-tool -py-morphio -py-morphosamplers -py-motmetrics -py-mouseinfo -py-moviepy -py-mpi4jax -py-mpi4py -py-mpld3 -py-mpldock -py-mplhep -py-mplhep-data -py-mpmath -py-mrcfile -py-msal -py-msal-extensions -py-msgpack -py-msgpack-numpy -py-msrest -py-msrestazure -py-multi-imbalance -py-multi-key-dict -py-multidict -py-multiecho -py-multipledispatch -py-multiprocess -py-multiqc -py-multiurl -py-mumps4py -py-munch -py-munkres -py-murmurhash -py-mutagen -py-mx -py-mxfold2 -py-myhdl -py-mypy -py-mypy-extensions -py-mysql-connector-python -py-mysqlclient -py-myst-parser -py-namex -py-nanobind -py-nanoget -py-nanomath -py-nanoplot -py-nanostat -py-nanotime -py-nanotron -py-napari -py-napari-console -py-napari-plugin-engine -py-napari-plugin-manager -py-napari-svg -py-nara-wpe -py-narwhals -py-natsort -py-nbclassic -py-nbclient -py-nbconvert -py-nbdime -py-nbformat -py-nbmake -py-nbqa -py-nbsphinx -py-nbstripout -py-nbval -py-nc-time-axis -py-ncbi-genome-download -py-ndg-httpsclient -py-ndindex -py-neo -py-neo4j -py-neobolt -py-neotime -py-neovim-remote -py-neptune-client -py-nest-asyncio -py-nestle -py-netaddr -py-netcdf4 -py-netifaces -py-netket -py-netpyne -py-networkit -py-networkx -py-neuralgcm -py-neurokit2 -py-neurolab -py-neurom -py-neurora -py-neurotools -py-nexus-sdk -py-nexusforge -py-nglview -py-ngs-tools -py-nh3 -py-nibabel -py-nilearn -py-nipype -py-nitransforms -py-niworkflows -py-nltk -py-node-semver -py-nodeenv -py-non-regression-test-tools -py-nose -py-nose-cov -py-nose2 -py-nosexcover -py-notebook -py-notebook-shim -py-npe2 -py-nptyping -py-npx -py-ntlm-auth -py-ntplib -py-nugraph -py-nuitka -py-num2words -py-numba -py-numba4jax -py-numbagg -py-numcodecs -py-numdifftools -py-numexpr -py-numexpr3 -py-numkit -py-numl -py-numpy -py-numpy-groupies -py-numpy-indexed -py-numpy-quaternion -py-numpy-stl -py-numpydoc -py-nvidia-dali -py-nvidia-ml-py -py-nvidia-ml-py3 -py-nvidia-modulus -py-nvidia-nvimagecodec -py-nvidia-nvjpeg2k -py-nvidia-nvtiff -py-nvitop -py-nvtx -py-oauth2client -py-oauthlib -py-obspy -py-ocnn -py-odc-geo -py-odfpy -py-ogb -py-okada-wrapper -py-olcf-velocity -py-olefile -py-omegaconf -py-onnx -py-onnx-opcounter -py-onnxconverter-common -py-onnxmltools -py-onnxruntime -py-ont-fast5-api -py-opcodes -py-open-clip-torch -py-openai -py-openapi-schema-pydantic -py-opencensus -py-opencensus-context -py-opencv-python -py-opendatalab -py-openidc-client -py-openmc -py-openmesh -py-openmim -py-openpmd-validator -py-openpmd-viewer -py-openpyxl -py-openslide-python -py-opentree -py-opentuner -py-opppy -py-ops -py-opt-einsum -py-optax -py-optree -py-optuna -py-or-tools -py-oracledb -py-orbax-checkpoint -py-ordered-set -py-orderly-set -py-orjson -py-os-service-types -py-oset -py-oslo-config -py-oslo-i18n -py-oslo-serialization -py-oslo-utils -py-osqp -py-outdated -py-overpy -py-overrides -py-owlrl -py-owslib -py-oyaml -py-pacifica-downloader -py-pacifica-namespace -py-pacifica-uploader -py-packaging -py-pager -py-paho-mqtt -py-palettable -py-pamela -py-panaroo -py-pandas -py-pandas-datareader -py-pandas-stubs -py-pandocfilters -py-panedr -py-panel -py-papermill -py-paralleltask -py-param -py-parameterized -py-paramiko -py-paramz -py-parasail -py-parmed -py-parse -py-parse-type -py-parsedatetime -py-parsimonious -py-parsl -py-parsley -py-parso -py-partd -py-particle -py-paste -py-pastedeploy -py-pastel -py-pastml -py-patch -py-patch-ng -py-path-py -py-pathlib2 -py-pathml -py-pathos -py-pathspec -py-pathtools -py-pathvalidate -py-pathy -py-patool -py-patsy -py-pauvre -py-pbr -py-pdb-tools -py-pdbfixer -py-pdequinox -py-pdf2image -py-pdm-backend -py-pdm-pep517 -py-pdoc3 -py-peachpy -py-peakutils -py-pebble -py-pem -py-pennylane -py-pennylane-lightning -py-pennylane-lightning-kokkos -py-pep517 -py-pep8 -py-pep8-naming -py-perfdump -py-performance -py-periodictable -py-petastorm -py-petname -py-petsc4py -py-pexpect -py-pfzy -py-pgzip -py-phanotate -py-phonenumbers -py-phonopy -py-photutils -py-phydms -py-phylophlan -py-pickle5 -py-pickleshare -py-picmistandard -py-picrust2 -py-pid -py-pika -py-pillow -py-pillow-simd -py-pint -py-pint-xarray -py-pip -py-pipdeptree -py-piper -py-pipits -py-pispino -py-pivy -py-pkgconfig -py-pkginfo -py-pkgutil-resolve-name -py-plac -py-planar -py-planet -py-planetary-computer -py-platformdirs -py-plotext -py-plotille -py-plotly -py-plotnine -py-pluggy -py-plum-dispatch -py-ply -py-pmw -py-pmw-patched -py-pockets -py-poetry -py-poetry-core -py-poetry-dynamic-versioning -py-poetry-plugin-export -py-poetry-plugin-tweak-dependencies-version -py-polars -py-pomegranate -py-pooch -py-portalocker -py-portend -py-portpicker -py-postcactus -py-poster -py-pot -py-pox -py-poxy -py-poyo -py-ppft -py-pprintpp -py-pre-commit -py-preshed -py-pretrainedmodels -py-pretty-errors -py-prettytable -py-priority -py-profilehooks -py-proglog -py-progress -py-progressbar2 -py-progressbar33 -py-projectq -py-prokaryote -py-prometheus-client -py-prometheus-flask-exporter -py-promise -py-prompt-toolkit -py-propcache -py-properscoring -py-proto-plus -py-protobuf -py-protoc-gen-swagger -py-prov -py-prwlock -py-psalg -py-psana -py-psij-python -py-psmon -py-pspamm -py-psutil -py-psyclone -py-psycopg2 -py-psygnal -py-ptyprocess -py-pubchempy -py-pudb -py-pulp -py-pulsar-galaxy-lib -py-pure-eval -py-pure-sasl -py-puremagic -py-py -py-py-cpuinfo -py-py-spy -py-py-tes -py-py2bit -py-py2neo -py-py4j -py-py6s -py-pyabel -py-pyaestro -py-pyahocorasick -py-pyamg -py-pyaml -py-pyaml-env -py-pyani -py-pyarrow -py-pyasn1 -py-pyasn1-modules -py-pyassimp -py-pyautogui -py-pybedtools -py-pybids -py-pybigwig -py-pybind11 -py-pybind11-stubgen -py-pybktree -py-pybobyqa -py-pybrain -py-pybtex -py-pybtex-docutils -py-pybv -py-pycairo -py-pycares -py-pycbc -py-pychecker -py-pycifrw -py-pyclibrary -py-pycm -py-pycmd -py-pycocotools -py-pycodestyle -py-pycollada -py-pycompadre -py-pyconify -py-pycorenlp -py-pycortex -py-pycosat -py-pycparser -py-pycrypto -py-pycryptodome -py-pyct -py-pycubexr -py-pycuda -py-pycurl -py-pydantic -py-pydantic-compat -py-pydantic-core -py-pydantic-extra-types -py-pydantic-settings -py-pydantic-tes -py-pydap -py-pydata-sphinx-theme -py-pydatalog -py-pydeface -py-pydeprecate -py-pydeps -py-pydevtool -py-pydftracer -py-pydicom -py-pydispatcher -py-pydmd -py-pydocstyle -py-pydoe -py-pydoe2 -py-pydot -py-pydot2 -py-pydotplus -py-pydub -py-pyeda -py-pyedr -py-pyee -py-pyelftools -py-pyem -py-pyenchant -py-pyepsg -py-pyerfa -py-pyeventsystem -py-pyface -py-pyfaidx -py-pyfasta -py-pyfastaq -py-pyfftw -py-pyfiglet -py-pyfits -py-pyflakes -py-pyfr -py-pygame -py-pygdal -py-pygdbmi -py-pygelf -py-pygeos -py-pygetwindow -py-pygit2 -py-pygithub -py-pyglet -py-pygments -py-pygments-pytest -py-pygmsh -py-pygmt -py-pygobject -py-pygps -py-pygpu -py-pygraphviz -py-pygresql -py-pygrib -py-pygtrie -py-pyh5md -py-pyhdf -py-pyheadtail -py-pyhmmer -py-pyhull -py-pyicu -py-pyinstrument -py-pyinstrument-cext -py-pyisemail -py-pyjnius -py-pyjwt -py-pyke -py-pykerberos -py-pykml -py-pykokkos-base -py-pykwalify -py-pylab-sdk -py-pylatex -py-pyld -py-pylev -py-pylibmagic -py-pylikwid -py-pylint -py-pylint-gitlab -py-pylith -py-pylops -py-pymatgen -py-pymatreader -py-pymbolic -py-pymc3 -py-pymdown-extensions -py-pymeeus -py-pyminifier -py-pymol -py-pymongo -py-pymoo -py-pymorph -py-pympler -py-pymsgbox -py-pymummer -py-pymumps -py-pymysql -py-pynacl -py-pynio -py-pynisher -py-pynn -py-pynndescent -py-pynpm -py-pynrrd -py-pynucleus -py-pynvim -py-pynvml -py-pynvtx -py-pyodbc -py-pyogrio -py-pyomo -py-pyopencl -py-pyopengl -py-pyopenssl -py-pypar -py-pyparsing -py-pypdf -py-pypdf2 -py-pypeflow -py-pypeg2 -py-pyperclip -py-pyperf -py-pypinfo -py-pypinyin -py-pypistats -py-pypng -py-pyppeteer -py-pyprecice -py-pyprof2html -py-pyproj -py-pyproject-hooks -py-pyproject-metadata -py-pyproject-parser -py-pypulse -py-pyqi -py-pyqt-builder -py-pyqt4 -py-pyqt5 -py-pyqt5-sip -py-pyqt6 -py-pyqt6-sip -py-pyqtgraph -py-pyquaternion -py-pyreadline -py-pyrect -py-pyrevolve -py-pyrfr -py-pyro-api -py-pyro-ppl -py-pyro4 -py-pyrocko -py-pyrodigal -py-pyrr -py-pyrsistent -py-pysam -py-pyscaf -py-pyscf -py-pyscipopt -py-pyscreeze -py-pyseer -py-pyserial -py-pysftp -py-pyshacl -py-pyshp -py-pyside2 -py-pysimdjson -py-pysmartdl -py-pysmiles -py-pysocks -py-pysolar -py-pyspark -py-pyspellchecker -py-pyspice -py-pyspnego -py-pyspoa -py-pysqlite3 -py-pystac -py-pystac-client -py-pystache -py-pystan -py-pysurfer -py-pytablewriter -py-pytailf -py-pytaridx -py-pytecplot -py-pytesseract -py-pytest -py-pytest-aiohttp -py-pytest-allclose -py-pytest-arraydiff -py-pytest-astropy -py-pytest-astropy-header -py-pytest-asyncio -py-pytest-benchmark -py-pytest-cache -py-pytest-check-links -py-pytest-cov -py-pytest-cpp -py-pytest-datadir -py-pytest-doctestplus -py-pytest-fail-slow -py-pytest-filter-subpackage -py-pytest-flake8 -py-pytest-flakes -py-pytest-forked -py-pytest-html -py-pytest-httpbin -py-pytest-isort -py-pytest-lazy-fixture -py-pytest-memray -py-pytest-metadata -py-pytest-mock -py-pytest-mpi -py-pytest-mypy -py-pytest-openfiles -py-pytest-parallel -py-pytest-pep8 -py-pytest-pylint -py-pytest-qt -py-pytest-random-order -py-pytest-regtest -py-pytest-remotedata -py-pytest-runner -py-pytest-subprocess -py-pytest-timeout -py-pytest-workflow -py-pytest-xdist -py-python-benedict -py-python-bioformats -py-python-box -py-python-calamine -py-python-certifi-win32 -py-python-constraint -py-python-crfsuite -py-python-daemon -py-python-dateutil -py-python-deprecated -py-python-docs-theme -py-python-dotenv -py-python-editor -py-python-engineio -py-python-fmask -py-python-fsutil -py-python-gitlab -py-python-hostlist -py-python-igraph -py-python-javabridge -py-python-jenkins -py-python-jose -py-python-json-logger -py-python-keystoneclient -py-python-ldap -py-python-levenshtein -py-python-libsbml -py-python-logstash -py-python-louvain -py-python-lsp-jsonrpc -py-python-lsp-ruff -py-python-lsp-server -py-python-lzo -py-python-magic -py-python-mapnik -py-python-markdown-math -py-python-memcached -py-python-multipart -py-python-oauth2 -py-python-picard -py-python-pptx -py-python-ptrace -py-python-rapidjson -py-python-slugify -py-python-socketio -py-python-sotools -py-python-subunit -py-python-swiftclient -py-python-utils -py-python-xlib -py-python-xmp-toolkit -py-python3-openid -py-python3-xlib -py-pythonqwt -py-pythonsollya -py-pythran -py-pytimeparse -py-pytng -py-pytoml -py-pytools -py-pytorch-gradual-warmup-lr -py-pytorch-lightning -py-pytorch-sphinx-theme -py-pytorch-warmup -py-pyts -py-pytweening -py-pytz -py-pyu2f -py-pyudev -py-pyugrid -py-pyupgrade -py-pyusb -py-pyutilib -py-pyuwsgi -py-pyvcf -py-pyvista -py-pyvistaqt -py-pyviz-comms -py-pyvolve -py-pywavelets -py-pywcs -py-pywin32 -py-pyworld -py-pyxlsb -py-pyyaml -py-pyyaml-env-tag -py-pyzmq -py-qdldl -py-qiskit-aer -py-qiskit-ibm-provider -py-qiskit-nature -py-qiskit-terra -py-qmtest -py-qpsolvers -py-qpth -py-qrcode -py-qsymm -py-qtawesome -py-qtconsole -py-qtpy -py-quantiphy -py-quantities -py-quantum-blackbird -py-quantum-xir -py-quart -py-quast -py-quaternionic -py-qudida -py-queryablelist -py-querystring-parser -py-questionary -py-qutip -py-qutip-qip -py-radiant-mlhub -py-radical-entk -py-radical-gtod -py-radical-pilot -py-radical-saga -py-radical-utils -py-ranger-fm -py-rapidfuzz -py-rapidfuzz-capi -py-rarfile -py-rasterio -py-rasterstats -py-ratelim -py-ratelimiter -py-raven -py-ray -py-rbtools -py-rdflib -py-rdflib-jsonld -py-rdt -py-reacton -py-readchar -py-readme-renderer -py-recommonmark -py-redis -py-referencing -py-refgenconf -py-refgenie -py-regex -py-regionmask -py-regions -py-reindent -py-relion -py-relion-blush -py-relion-classranker -py-repligit -py-reportlab -py-reportseff -py-repoze-lru -py-reproject -py-requests -py-requests-cache -py-requests-file -py-requests-ftp -py-requests-futures -py-requests-kerberos -py-requests-mock -py-requests-ntlm -py-requests-oauthlib -py-requests-toolbelt -py-requests-unixsocket -py-requirements-parser -py-reretry -py-resampy -py-resize-right -py-resolvelib -py-responses -py-resultsfile -py-retry -py-retry-decorator -py-retrying -py-retworkx -py-rfc3339-validator -py-rfc3986 -py-rfc3986-validator -py-rich -py-rich-argparse -py-rich-click -py-rios -py-rioxarray -py-rise -py-river -py-rmm -py-rnc2rng -py-robocrys -py-robotframework -py-rocrate -py-roifile -py-roman-numerals-py -py-rope -py-rosdep -py-rosdistro -py-rosinstall -py-rosinstall-generator -py-rospkg -py-rotary-embedding-torch -py-rouge-score -py-routes -py-rpds-py -py-rply -py-rpy2 -py-rsa -py-rsatoolbox -py-rseqc -py-rst2pdf -py-rtoml -py-rtree -py-ruamel-ordereddict -py-ruamel-yaml -py-ruamel-yaml-clib -py-ruamel-yaml-jinja2 -py-rucio-clients -py-ruff -py-rustworkx -py-rx -py-s3cmd -py-s3fs -py-s3transfer -py-sacrebleu -py-sacremoses -py-safetensors -py-salib -py-scandir -py-scanpy -py-schema -py-schema-salad -py-scientificpython -py-scifem -py-scikit-build -py-scikit-build-core -py-scikit-fmm -py-scikit-fuzzy -py-scikit-image -py-scikit-learn -py-scikit-learn-extra -py-scikit-matter -py-scikit-optimize -py-scikit-sparse -py-scikits-odes -py-scine-chemoton -py-scine-puffin -py-scinum -py-scipy -py-scooby -py-scoop -py-scp -py-screed -py-scs -py-sdmetrics -py-sdv -py-seaborn -py-secretstorage -py-seekpath -py-segmentation-models-pytorch -py-selenium -py-semantic-version -py-semver -py-send2trash -py-sentencepiece -py-sentry-sdk -py-seqeval -py-sequence-models -py-seriate -py-serpent -py-session-info -py-setproctitle -py-setupmeta -py-setuptools -py-setuptools-cpp -py-setuptools-git -py-setuptools-git-versioning -py-setuptools-reproducible -py-setuptools-rust -py-setuptools-scm -py-setuptools-scm-git-archive -py-sfepy -py-sgp4 -py-sh -py-shap -py-shapely -py-shellescape -py-shellingham -py-shiboken2 -py-shippinglabel -py-shortbred -py-shortuuid -py-shroud -py-shtab -py-simpervisor -py-simple-slurm -py-simpleeval -py-simplegeneric -py-simplejson -py-simplekml -py-simpletraj -py-simpy -py-simsimd -py-singledispatchmethod -py-sip -py-six -py-skl2onnx -py-slepc4py -py-slicer -py-slurm-pipeline -py-smac -py-smart-open -py-smartredis -py-smartsim -py-smartypants -py-smmap -py-smote-variants -py-snakemake-executor-plugin-azure-batch -py-snakemake-executor-plugin-cluster-generic -py-snakemake-executor-plugin-cluster-sync -py-snakemake-executor-plugin-drmaa -py-snakemake-executor-plugin-flux -py-snakemake-executor-plugin-googlebatch -py-snakemake-executor-plugin-kubernetes -py-snakemake-executor-plugin-slurm -py-snakemake-executor-plugin-slurm-jobstep -py-snakemake-executor-plugin-tes -py-snakemake-interface-common -py-snakemake-interface-executor-plugins -py-snakemake-interface-report-plugins -py-snakemake-interface-storage-plugins -py-snakemake-storage-plugin-azure -py-snakemake-storage-plugin-fs -py-snakemake-storage-plugin-ftp -py-snakemake-storage-plugin-gcs -py-snakemake-storage-plugin-http -py-snakemake-storage-plugin-s3 -py-snakemake-storage-plugin-sftp -py-snakemake-storage-plugin-zenodo -py-snakeviz -py-snappy -py-sncosmo -py-sniffio -py-snoop -py-snowballstemmer -py-snuggs -py-sobol-seq -py-social-auth-core -py-sonlib -py-sortedcollections -py-sortedcontainers -py-soundfile -py-soupsieve -py-soyclustering -py-spacy -py-spacy-legacy -py-spacy-loggers -py-spacy-models-en-core-web-sm -py-spacy-models-en-vectors-web-lg -py-sparse -py-spatialist -py-spatialite -py-spatialpandas -py-spdlog -py-spectra -py-spectral -py-speech-recognition -py-spefile -py-spgl1 -py-spglib -py-spherical -py-sphinx -py-sphinx-argparse -py-sphinx-autodoc-typehints -py-sphinx-basic-ng -py-sphinx-book-theme -py-sphinx-bootstrap-theme -py-sphinx-click -py-sphinx-copybutton -py-sphinx-design -py-sphinx-fortran -py-sphinx-gallery -py-sphinx-immaterial -py-sphinx-jinja2-compat -py-sphinx-multiversion -py-sphinx-prompt -py-sphinx-removed-in -py-sphinx-rtd-dark-mode -py-sphinx-rtd-theme -py-sphinx-tabs -py-sphinx-theme-builder -py-sphinx-toolbox -py-sphinxautomodapi -py-sphinxcontrib-applehelp -py-sphinxcontrib-bibtex -py-sphinxcontrib-devhelp -py-sphinxcontrib-htmlhelp -py-sphinxcontrib-issuetracker -py-sphinxcontrib-jquery -py-sphinxcontrib-jsmath -py-sphinxcontrib-mermaid -py-sphinxcontrib-moderncmakedomain -py-sphinxcontrib-napoleon -py-sphinxcontrib-plantuml -py-sphinxcontrib-programoutput -py-sphinxcontrib-qthelp -py-sphinxcontrib-serializinghtml -py-sphinxcontrib-spelling -py-sphinxcontrib-trio -py-sphinxcontrib-websupport -py-sphinxemoji -py-sphobjinv -py-spykeutils -py-spython -py-sqlalchemy -py-sqlalchemy-migrate -py-sqlalchemy-stubs -py-sqlalchemy-utils -py-sqlitedict -py-sqlparse -py-srsly -py-sseclient -py-sshtunnel -py-sspilib -py-stack-data -py-starfile -py-starlette -py-starlette-context -py-starsessions -py-stashcp -py-statmorph -py-statsmodels -py-stdlib-list -py-stestr -py-stevedore -py-stomp-py -py-stopit -py-storm -py-stratify -py-strawberryfields -py-streamlit -py-stringzilla -py-striprtf -py-stsci-distutils -py-stui -py-submitit -py-subrosa -py-subword-nmt -py-superqt -py-supervisor -py-svgpath -py-svgpathtools -py-svgutils -py-svgwrite -py-swagger-spec-validator -py-symengine -py-symfit -py-sympy -py-syned -py-sysrsync -py-systemd-python -py-tabledata -py-tables -py-tabulate -py-tatsu -py-tblib -py-tbparse -py-tcolorpy -py-tempita -py-templateflow -py-tempora -py-tenacity -py-tensorboard -py-tensorboard-data-server -py-tensorboard-plugin-wit -py-tensorboardx -py-tensorflow -py-tensorflow-datasets -py-tensorflow-estimator -py-tensorflow-hub -py-tensorflow-metadata -py-tensorflow-probability -py-tensorly -py-tensorstore -py-termcolor -py-termgraph -py-terminado -py-terminaltables -py-tern -py-tesorter -py-testfixtures -py-testinfra -py-testpath -py-testrepository -py-testresources -py-testscenarios -py-testtools -py-tetoolkit -py-text-unidecode -py-textblob -py-texttable -py-textual -py-textual-plotext -py-textwrap3 -py-textx -py-tf-keras -py-tfdlpack -py-theano -py-thewalrus -py-thinc -py-thop -py-threadpoolctl -py-throttler -py-tidynamics -py-tifffile -py-tiktoken -py-tilelang -py-timm -py-tinyarray -py-tinycss2 -py-tinydb -py-tinyrecord -py-tld -py-tldextract -py-tokenize-rt -py-tokenizers -py-toml -py-tomli -py-tomli-w -py-tomlkit -py-tomopy -py-toolz -py-topiary-asr -py-toposort -py-torch -py-torch-cluster -py-torch-fidelity -py-torch-geometric -py-torch-harmonics -py-torch-nvidia-apex -py-torch-scatter -py-torch-sparse -py-torch-spline-conv -py-torchaudio -py-torchbenchmark -py-torchdata -py-torchdiffeq -py-torchfile -py-torchgeo -py-torchmeta -py-torchmetrics -py-torchseg -py-torchsummary -py-torchtext -py-torchtoolbox -py-torchvision -py-tornado -py-tox -py-toyplot -py-toytree -py-tpot -py-tqdm -py-traceback2 -py-trafilatura -py-trainax -py-traitlets -py-traits -py-traitsui -py-traittypes -py-trame -py-trame-client -py-trame-server -py-transformer-engine -py-transformers -py-transforms3d -py-transonic -py-tree -py-tree-math -py-tree-sitter -py-tree-sitter-c -py-treehash -py-treelib -py-triangle -py-trieregex -py-trimesh -py-triton -py-trojanzoo-sphinx-theme -py-trove-classifiers -py-trx-python -py-tuiview -py-tuspy -py-tuswsgi -py-tweedledum -py-twine -py-twisted -py-typed-ast -py-typeguard -py-typepy -py-typer -py-types-dataclasses -py-types-pkg-resources -py-types-psutil -py-types-python-dateutil -py-types-pytz -py-types-requests -py-types-setuptools -py-types-typed-ast -py-types-urllib3 -py-typesentry -py-typeshed-client -py-typing-extensions -py-typing-inspect -py-typish -py-tzdata -py-tzlocal -py-ubiquerg -py-uc-micro-py -py-ucsf-pyem -py-ucx-py -py-uhi -py-ujson -py-ultralytics -py-umalqurra -py-umap-learn -py-umi-tools -py-uncertainties -py-uncertainty-toolbox -py-unfoldnd -py-unicycler -py-unidecode -py-unittest2py3k -py-universal-pathlib -py-unshare -py-unyt -py-update-checker -py-uproot -py-uproot3 -py-uproot3-methods -py-uri-template -py-uritemplate -py-url-normalize -py-urllib3 -py-urllib3-secure-extra -py-urwid -py-us -py-userpath -py-usgs -py-utils -py-uv -py-uvicorn -py-uvloop -py-uvw -py-uwsgi -py-uxarray -py-validators -py-vascpy -py-vcf-kit -py-vcrpy -py-vcstool -py-vcstools -py-vcversioner -py-vector -py-vector-quantize-pytorch -py-vermin -py-vermouth-martinize -py-versioneer -py-versioneer-518 -py-verspec -py-vesin -py-vine -py-virtualenv -py-virtualenv-clone -py-virtualenvwrapper -py-visdom -py-vispy -py-vl-convert-python -py-voluptuous -py-vsc-base -py-vsc-install -py-vsts -py-vsts-cd-manager -py-wadler-lindig -py-waitress -py-walinuxagent -py-wand -py-wandb -py-warcio -py-warlock -py-wasabi -py-watchdog -py-watchfiles -py-waves -py-wcsaxes -py-wcwidth -py-webargs -py-webcolors -py-webdataset -py-webencodings -py-webkit-server -py-weblogo -py-webob -py-websocket-client -py-websockets -py-werkzeug -py-wesanderson -py-wget -py-whatshap -py-wheel -py-whey -py-whey-pth -py-whichcraft -py-whoosh -py-widgetsnbextension -py-wids -py-win-unicode-console -py-wincertstore -py-word2number -py-wordcloud -py-workload-automation -py-wradlib -py-wrapt -py-wsproto -py-wstool -py-wub -py-wurlitzer -py-ww -py-wxflow -py-wxmplot -py-wxpython -py-x-clip -py-x21 -py-xanadu-cloud-client -py-xarray -py-xarray-regrid -py-xarray-tensorstore -py-xattr -py-xcdat -py-xdot -py-xenv -py-xesmf -py-xgboost -py-xgcm -py-xhistogram -py-xlrd -py-xlsxwriter -py-xlwt -py-xmlplain -py-xmlrunner -py-xmltodict -py-xonsh -py-xopen -py-xpyb -py-xskillscore -py-xtb -py-xvfbwrapper -py-xxhash -py-xyzservices -py-yacman -py-yacs -py-yahmm -py-yajl -py-yamlreader -py-yapf -py-yarl -py-yaspin -py-yolk3k -py-your -py-youtube-dl -py-yq -py-yt -py-yte -py-ytopt -py-ytopt-autotune -py-z3-solver -py-zarr -py-zc-buildout -py-zc-lockfile -py-zfit -py-zfit-interface -py-zfit-physics -py-zict -py-zipfile-deflate64 -py-zipp -py-zipstream-new -py-zope-event -py-zope-interface -py-zstandard -py-zxcvbn -pygmo -pypy -pypy-bootstrap -pystring -pythia6 -pythia8 -python -python-venv -q-e-sirius -qb3 -qca -qcachegrind -qcat -qctool -qd -qemacs -qemu -qgis -qgraf -qhull -qjson -qmcpack -qmd-progress -qnnpack -qorts -qoz -qpdf -qperf -qrmumps -qrupdate -qscintilla -qt -qt-5compat -qt-base -qt-creator -qt-declarative -qt-quick3d -qt-quicktimeline -qt-shadertools -qt-svg -qt-tools -qtgraph -qthreads -qtkeychain -qtltools -qualimap -quandary -quantum-espresso -quartz -qucs -quda -quest -quickjs -quicksilver -quo-vadis -quota -qwt -qwtpolar -r -r-a4 -r-a4base -r-a4classif -r-a4core -r-a4preproc -r-a4reporting -r-abadata -r-abaenrichment -r-abind -r-absseq -r-acde -r-acepack -r-acgh -r-acme -r-ada -r-adabag -r-ade4 -r-adegenet -r-adegraphics -r-adephylo -r-adespatial -r-adgoftest -r-adsplit -r-aer -r-afex -r-affxparser -r-affy -r-affycomp -r-affycompatible -r-affycontam -r-affycoretools -r-affydata -r-affyexpress -r-affyilm -r-affyio -r-affypdnn -r-affyplm -r-affyqcreport -r-affyrnadegradation -r-agdex -r-agilp -r-agimicrorna -r-aims -r-aldex2 -r-allelicimbalance -r-alpine -r-als -r-alsace -r-altcdfenvs -r-amap -r-amelia -r-ampliqueso -r-analysispageserver -r-anaquin -r-aneufinder -r-aneufinderdata -r-animation -r-annaffy -r-annotate -r-annotationdbi -r-annotationfilter -r-annotationforge -r-annotationhub -r-anytime -r-aod -r-ape -r-aplot -r-argparse -r-arm -r-aroma-light -r-arrangements -r-ash -r-askpass -r-asreml -r-assertive -r-assertive-base -r-assertive-code -r-assertive-data -r-assertive-data-uk -r-assertive-data-us -r-assertive-datetimes -r-assertive-files -r-assertive-matrices -r-assertive-models -r-assertive-numbers -r-assertive-properties -r-assertive-reflection -r-assertive-sets -r-assertive-strings -r-assertive-types -r-assertthat -r-automap -r-backports -r-bamsignals -r-base64 -r-base64enc -r-basilisk -r-basilisk-utils -r-bayesm -r-bayesplot -r-bbmisc -r-beachmat -r-beanplot -r-beeswarm -r-bfast -r-bfastspatial -r-bglr -r-bh -r-biasedurn -r-bibtex -r-bigalgebra -r-biglm -r-bigmemory -r-bigmemory-sri -r-bindr -r-bindrcpp -r-bio3d -r-biobase -r-biocfilecache -r-biocgenerics -r-biocinstaller -r-biocio -r-biocmanager -r-biocneighbors -r-biocparallel -r-biocsingular -r-biocstyle -r-biocversion -r-biom-utils -r-biomart -r-biomartr -r-biomformat -r-biostrings -r-biovizbase -r-bit -r-bit64 -r-bitops -r-blavaan -r-blob -r-blockmodeling -r-bluster -r-bmp -r-bookdown -r-boot -r-boruta -r-brew -r-bridgesampling -r-brio -r-brms -r-brobdingnag -r-broom -r-broom-helpers -r-bsgenome -r-bsgenome-hsapiens-ucsc-hg19 -r-bslib -r-bsseq -r-bumphunter -r-bwstest -r-c50 -r-ca -r-cachem -r-cairo -r-callr -r-car -r-caracas -r-cardata -r-caret -r-caretensemble -r-caroline -r-category -r-catools -r-cca -r-ccp -r-cdcfluview -r-cellranger -r-champ -r-champdata -r-checkmate -r-checkpoint -r-chemometrics -r-chipseq -r-chron -r-circlize -r-circstats -r-clarabel -r-class -r-classint -r-cli -r-clipr -r-clisymbols -r-clock -r-clue -r-cluster -r-clustergeneration -r-clusterprofiler -r-cmdstanr -r-cner -r-coda -r-codetools -r-codex -r-coin -r-colorspace -r-colourpicker -r-combinat -r-commonmark -r-complexheatmap -r-compositions -r-compquadform -r-condop -r-conflicted -r-conquer -r-consrank -r-construct -r-convevol -r-copula -r-corhmm -r-corpcor -r-corrplot -r-countrycode -r-covr -r-cowplot -r-cpp11 -r-crayon -r-credentials -r-crosstalk -r-crul -r-ctc -r-cubature -r-cubist -r-curl -r-cvxr -r-dada2 -r-data-table -r-dbi -r-dbplyr -r-debugme -r-decipher -r-delayedarray -r-delayedmatrixstats -r-deldir -r-dendextend -r-densvis -r-deoptim -r-deoptimr -r-deriv -r-desc -r-deseq -r-deseq2 -r-desolve -r-devtools -r-dexseq -r-diagram -r-diagrammer -r-dicekriging -r-dichromat -r-diffobj -r-diffusionmap -r-digest -r-diptest -r-dir-expiry -r-dirichletmultinomial -r-dismo -r-distributional -r-diversitree -r-dmrcate -r-dnacopy -r-do-db -r-doby -r-domc -r-doparallel -r-dorng -r-dose -r-dosnow -r-dotcall64 -r-downlit -r-downloader -r-dplyr -r-dqrng -r-dss -r-dt -r-dtplyr -r-dtw -r-dupradar -r-dygraphs -r-dynamictreecut -r-e1071 -r-earth -r-ebseq -r-ecosolver -r-ecp -r-edger -r-effects -r-elemstatlearn -r-ellipse -r-ellipsis -r-emmeans -r-emmli -r-energy -r-enrichplot -r-ensembldb -r-envstats -r-ergm -r-estimability -r-europepmc -r-evaluate -r-evd -r-exactextractr -r-exomecopy -r-exomedepth -r-experimenthub -r-expint -r-expm -r-factoextra -r-factominer -r-fansi -r-farver -r-fastcluster -r-fastdigest -r-fastdummies -r-fastica -r-fastmap -r-fastmatch -r-fastmatrix -r-fda -r-fdb-infiniummethylation-hg18 -r-fdb-infiniummethylation-hg19 -r-fds -r-ff -r-fftwtools -r-fgsea -r-fields -r-filehash -r-filelock -r-findpython -r-fit-models -r-fitdistrplus -r-flashclust -r-flexclust -r-flexmix -r-fnn -r-fontawesome -r-forcats -r-foreach -r-forecast -r-foreign -r-formatr -r-formula -r-fpc -r-fpcompare -r-fracdiff -r-fs -r-functional -r-furrr -r-futile-logger -r-futile-options -r-future -r-future-apply -r-gamlss -r-gamlss-data -r-gamlss-dist -r-gamm4 -r-gargle -r-gbm -r-gbrd -r-gcrma -r-gdalutilities -r-gdalutils -r-gdata -r-gdsfmt -r-geiger -r-genefilter -r-genelendatabase -r-genemeta -r-geneplotter -r-generics -r-genetics -r-genie3 -r-genomeinfodb -r-genomeinfodbdata -r-genomicalignments -r-genomicfeatures -r-genomicranges -r-gensa -r-geojsonsf -r-geometries -r-geometry -r-geomorph -r-geonames -r-geoquery -r-geor -r-geosphere -r-gert -r-getopt -r-getoptlong -r-ggally -r-ggbeeswarm -r-ggbio -r-ggdendro -r-ggforce -r-ggfun -r-ggjoy -r-ggmap -r-ggnewscale -r-ggplot2 -r-ggplotify -r-ggpubr -r-ggraph -r-ggrastr -r-ggrepel -r-ggridges -r-ggsci -r-ggsignif -r-ggstats -r-ggthemes -r-ggtree -r-ggvis -r-gh -r-gistr -r-git2r -r-gitcreds -r-glimma -r-glmgampoi -r-glmnet -r-globaloptions -r-globals -r-globaltest -r-glue -r-gmodels -r-gmp -r-go-db -r-goftest -r-gofuncr -r-googleauthr -r-googledrive -r-googlesheets4 -r-googlevis -r-goplot -r-gosemsim -r-goseq -r-gostats -r-gower -r-gparotation -r-gplots -r-graph -r-graphlayouts -r-grbase -r-gridbase -r-gridextra -r-gridgraphics -r-gsa -r-gsalib -r-gseabase -r-gsl -r-gsodr -r-gson -r-gss -r-gstat -r-gsubfn -r-gtable -r-gtools -r-gtrellis -r-gviz -r-gwmodel -r-hardhat -r-haven -r-hdf5array -r-hdf5r -r-hdo-db -r-hdrcde -r-here -r-hexbin -r-hh -r-highr -r-hmisc -r-hms -r-hoardr -r-htmltable -r-htmltools -r-htmlwidgets -r-httpcode -r-httpuv -r-httr -r-httr2 -r-humaniformat -r-hwriter -r-hydrogof -r-hydrotsm -r-hypergraph -r-ica -r-ids -r-ieugwasr -r-igraph -r-illumina450probevariants-db -r-illuminahumanmethylation450kanno-ilmn12-hg19 -r-illuminahumanmethylation450kmanifest -r-illuminahumanmethylationepicanno-ilm10b4-hg19 -r-illuminahumanmethylationepicmanifest -r-illuminaio -r-imager -r-impute -r-influencer -r-ini -r-inline -r-insight -r-interactivedisplaybase -r-interp -r-intervals -r-inum -r-ipred -r-iranges -r-irdisplay -r-irkernel -r-irlba -r-isdparser -r-islr -r-iso -r-isoband -r-isva -r-iterators -r-iterpc -r-jade -r-janitor -r-jaspar2018 -r-jomo -r-jpeg -r-jquerylib -r-jsonify -r-jsonlite -r-kableextra -r-kegggraph -r-keggrest -r-kernlab -r-kernsmooth -r-kknn -r-klar -r-knitr -r-kpmt -r-ks -r-ksamples -r-labeling -r-labelled -r-lambda-r -r-laplacesdemon -r-lars -r-later -r-lattice -r-latticeextra -r-lava -r-lavaan -r-lazyeval -r-ldheatmap -r-leafem -r-leaflet -r-leaflet-providers -r-leafpop -r-leaps -r-learnbayes -r-leiden -r-lfe -r-lhs -r-libcoin -r-libpressio -r-lidr -r-lifecycle -r-limma -r-limsolve -r-linprog -r-list -r-listenv -r-lme4 -r-lmertest -r-lmtest -r-lobstr -r-locfit -r-log4r -r-loo -r-lpsolve -r-lpsolveapi -r-lsei -r-lubridate -r-lumi -r-lwgeom -r-magic -r-magick -r-magrittr -r-makecdfenv -r-maldiquant -r-manipulatewidget -r-mapplots -r-mapproj -r-maps -r-maptools -r-mapview -r-markdown -r-marray -r-mass -r-mathjaxr -r-matlab -r-matr -r-matrix -r-matrixgenerics -r-matrixmodels -r-matrixstats -r-mclogit -r-mclust -r-mcmc -r-mcmcglmm -r-mcmcpack -r-mco -r-mda -r-memisc -r-memoise -r-memuse -r-mendelianrandomization -r-mergemaid -r-meta -r-metadat -r-metafor -r-metap -r-metapod -r-methylumi -r-mgcv -r-mgraster -r-mice -r-microbenchmark -r-mime -r-minfi -r-miniui -r-minqa -r-misc3d -r-missmethyl -r-mitml -r-mitools -r-mixtools -r-mlbench -r-mlinterfaces -r-mlr -r-mlrmbo -r-mmwrweek -r-mnormt -r-mockery -r-modelmetrics -r-modelr -r-modeltools -r-mpm -r-mr-raps -r-mrinstruments -r-mrmix -r-mrpresso -r-mscoreutils -r-msnbase -r-multcomp -r-multcompview -r-multicool -r-multitaper -r-multtest -r-munsell -r-mutoss -r-mvtnorm -r-mzid -r-mzr -r-nada -r-nanotime -r-ncbit -r-ncdf4 -r-network -r-networkd3 -r-neuralnet -r-nfactors -r-nimble -r-nleqslv -r-nlme -r-nloptr -r-nmf -r-nmof -r-nnet -r-nnls -r-nonnest2 -r-nor1mix -r-nortest -r-np -r-npsurv -r-numderiv -r-oligoclasses -r-openssl -r-openxlsx -r-optimparallel -r-optimx -r-optparse -r-ordinal -r-org-hs-eg-db -r-organismdbi -r-osqp -r-packrat -r-pacman -r-paleotree -r-pamr -r-pan -r-parallelly -r-parallelmap -r-paramhelpers -r-party -r-partykit -r-patchwork -r-pathview -r-pbapply -r-pbdzmq -r-pbivnorm -r-pbkrtest -r-pcamethods -r-pcapp -r-pegas -r-permute -r-pfam-db -r-phangorn -r-phantompeakqualtools -r-pheatmap -r-philentropy -r-phylobase -r-phyloseq -r-phylostratr -r-phytools -r-picante -r-piggyback -r-pillar -r-pinfsc50 -r-pixmap -r-pkgbuild -r-pkgcache -r-pkgconfig -r-pkgdepends -r-pkgdown -r-pkgload -r-pkgmaker -r-pki -r-pl94171 -r-plogr -r-plot3d -r-plotly -r-plotmo -r-plotrix -r-pls -r-plyr -r-pmcmr -r-pmcmrplus -r-png -r-polspline -r-polyclip -r-polynom -r-pool -r-poorman -r-popgenome -r-popvar -r-posterior -r-powerlaw -r-prabclus -r-pracma -r-praise -r-preprocesscore -r-prettydoc -r-prettyunits -r-proc -r-processx -r-prodlim -r-profvis -r-progress -r-progressr -r-proj -r-proj4 -r-projpred -r-promises -r-protgenerics -r-proto -r-proxy -r-pryr -r-ps -r-pscbs -r-pspline -r-psych -r-ptw -r-purrr -r-pvclust -r-qqconf -r-qs -r-qtl -r-quadprog -r-quantmod -r-quantreg -r-quantro -r-questionr -r-quickjsr -r-quickplot -r-qvalue -r-r-cache -r-r-methodss3 -r-r-oo -r-r-utils -r-r6 -r-radialmr -r-ragg -r-rainbow -r-randomfields -r-randomfieldsutils -r-randomforest -r-randomglm -r-ranger -r-rann -r-rapidjsonr -r-rapiserialize -r-rappdirs -r-raster -r-rbgl -r-rbibutils -r-rbokeh -r-rcmdcheck -r-rcolorbrewer -r-rcpp -r-rcppannoy -r-rcpparmadillo -r-rcppblaze -r-rcppcctz -r-rcppcnpy -r-rcppdate -r-rcppde -r-rcppeigen -r-rcppensmallen -r-rcppgsl -r-rcpphnsw -r-rcppml -r-rcppparallel -r-rcppprogress -r-rcpproll -r-rcpptoml -r-rcppziggurat -r-rcurl -r-rda -r-rdpack -r-readbitmap -r-readr -r-readxl -r-reams -r-recipes -r-reformulas -r-registry -r-rematch -r-rematch2 -r-remotes -r-renv -r-reordercluster -r-reportingtools -r-repr -r-reprex -r-reproducible -r-require -r-reshape -r-reshape2 -r-restfulr -r-reticulate -r-rex -r-rfast -r-rferns -r-rgdal -r-rgenoud -r-rgeos -r-rgexf -r-rgl -r-rgooglemaps -r-rgraphviz -r-rhdf5 -r-rhdf5filters -r-rhdf5lib -r-rhmmer -r-rhtslib -r-rinside -r-rio -r-rjags -r-rjava -r-rjson -r-rjsonio -r-rlang -r-rlas -r-rle -r-rlist -r-rmariadb -r-rmarkdown -r-rminer -r-rmpfr -r-rmpi -r-rms -r-rmutil -r-rmysql -r-rnaseqmap -r-rncl -r-rnexml -r-rngtools -r-rnoaa -r-robust -r-robustbase -r-roc -r-rocr -r-rodbc -r-rook -r-rots -r-roxygen2 -r-rpart -r-rpart-plot -r-rpmm -r-rpostgres -r-rpostgresql -r-rprojroot -r-rpsychi -r-rrblup -r-rrcov -r-rrpp -r-rsamtools -r-rsconnect -r-rsnns -r-rsolnp -r-rspectra -r-rsqlite -r-rstan -r-rstantools -r-rstatix -r-rstudioapi -r-rsubread -r-rsvd -r-rtracklayer -r-rtsne -r-runit -r-runjags -r-ruv -r-rvcheck -r-rversions -r-rvest -r-rviennacl -r-rzmq -r-s2 -r-s4vectors -r-samr -r-sandwich -r-sass -r-satellite -r-scaledmatrix -r-scales -r-scater -r-scattermore -r-scatterpie -r-scatterplot3d -r-scdblfinder -r-scran -r-scrime -r-scs -r-sctransform -r-scuttle -r-sdmtools -r-segmented -r-selectr -r-seqinr -r-seqlogo -r-servr -r-sessioninfo -r-sets -r-seurat -r-seuratobject -r-sf -r-sfheaders -r-sfsmisc -r-sftime -r-shadowtext -r-shape -r-shiny -r-shinydashboard -r-shinyfiles -r-shinyjs -r-shinystan -r-shinythemes -r-shortread -r-siggenes -r-signac -r-simpleaffy -r-singlecellexperiment -r-sitmo -r-sm -r-smoof -r-sn -r-snakecase -r-snow -r-snowfall -r-snprelate -r-snpstats -r-som -r-somaticsignatures -r-sourcetools -r-sp -r-spacetime -r-spades -r-spades-addins -r-spades-core -r-spades-tools -r-spam -r-sparsem -r-sparsematrixstats -r-spatial -r-spatialeco -r-spatialpack -r-spatialreg -r-spatstat -r-spatstat-core -r-spatstat-data -r-spatstat-explore -r-spatstat-geom -r-spatstat-linnet -r-spatstat-model -r-spatstat-random -r-spatstat-sparse -r-spatstat-univar -r-spatstat-utils -r-spdata -r-spdep -r-speedglm -r-spem -r-splancs -r-splines2 -r-splitstackshape -r-sqldf -r-squarem -r-squash -r-sseq -r-stabledist -r-stanheaders -r-stargazer -r-stars -r-statmod -r-statnet-common -r-stringfish -r-stringi -r-stringr -r-strucchange -r-strucchangercpp -r-styler -r-subplex -r-summarizedexperiment -r-suppdists -r-survey -r-survival -r-sva -r-svglite -r-sys -r-systemfonts -r-tarifx -r-taxizedb -r-tclust -r-teachingdemos -r-tensor -r-tensora -r-terra -r-tester -r-testit -r-testthat -r-textshaping -r-tfbstools -r-tfisher -r-tfmpvalue -r-th-data -r-threejs -r-tibble -r-tictoc -r-tidycensus -r-tidygraph -r-tidyr -r-tidyselect -r-tidytree -r-tidyverse -r-tiff -r-tigris -r-timechange -r-timedate -r-tinytex -r-tinytiger -r-tmixclust -r-tmvnsim -r-topgo -r-treeio -r-triebeard -r-trimcluster -r-truncdist -r-truncnorm -r-trust -r-tseries -r-tsne -r-ttr -r-tweenr -r-twosamplemr -r-txdb-hsapiens-ucsc-hg18-knowngene -r-txdb-hsapiens-ucsc-hg19-knowngene -r-tximeta -r-tximport -r-tximportdata -r-tzdb -r-ucminf -r-udunits2 -r-units -r-upsetr -r-urca -r-urlchecker -r-urltools -r-usethis -r-utf8 -r-uuid -r-uwot -r-v8 -r-variantannotation -r-varselrf -r-vcd -r-vcfr -r-vctrs -r-vegan -r-vfs -r-vgam -r-vioplot -r-vipor -r-viridis -r-viridislite -r-visnetwork -r-vroom -r-vsn -r-waldo -r-watermelon -r-webshot -r-wgcna -r-whisker -r-withr -r-wk -r-writexl -r-wru -r-xde -r-xfun -r-xgboost -r-xlconnect -r-xlconnectjars -r-xlsx -r-xlsxjars -r-xmapbridge -r-xml -r-xml2 -r-xnomial -r-xopen -r-xtable -r-xts -r-xvector -r-yaimpute -r-yaml -r-yapsa -r-yaqcaffy -r-yarn -r-yulab-utils -r-zcompositions -r-zeallot -r-zip -r-zlibbioc -r-zoo -r3d -rabbitmq -rabbitmq-c -racket -racon -raft -ragel -raja -raja-perf -ramulator -randfold -random123 -randrproto -range-v3 -rankstr -rapidjson -raptor2 -rarpd -rasdaemon -rasqal -ratel -ravel -raxml -raxml-ng -ray -rayleigh -raylib -rccl -rccl-tests -rclone -rdc -rdkit -rdma-core -rdp-classifier -rdptools -re2 -re2c -readfq -readline -recola -recola-sm -recon -recorder -recordproto -redis -redis-ai -redis-plus-plus -reditools -redland -redland-bindings -redset -redundans -reframe -regale -regcm -regenie -regtools -relax -relion -remhos -rempi -rename -rendercheck -renderproto -repeatafterme -repeatmasker -repeatmodeler -repeatscout -reprimand -resolve -resourceproto -restic -revbayes -revocap-coupler -revocap-refiner -rgb -rhash -rinetd -ripgrep -riscv-gnu-toolchain -rivet -rkcommon -rkt-base -rkt-cext-lib -rkt-compiler-lib -rkt-dynext-lib -rkt-racket-lib -rkt-rackunit-lib -rkt-scheme-lib -rkt-testing-util-lib -rkt-zo-lib -rlwrap -rmats -rmgdft -rmlab -rna-seqc -rnaquast -rnaz -rng-tools -rngstreams -rnpletal -roary -rocal -rocalution -rocblas -rocdecode -rocfft -rocjpeg -rocketmq -rocksdb -rockstar -rocm-bandwidth-test -rocm-clang-ocl -rocm-cmake -rocm-core -rocm-dbgapi -rocm-debug-agent -rocm-device-libs -rocm-examples -rocm-gdb -rocm-opencl -rocm-openmp-extras -rocm-smi-lib -rocm-tensile -rocm-validation-suite -rocminfo -rocmlir -rocprim -rocprofiler-compute -rocprofiler-dev -rocprofiler-register -rocprofiler-sdk -rocprofiler-systems -rocpydecode -rocrand -rocshmem -rocsolver -rocsparse -rocthrust -roctracer-dev -roctracer-dev-api -rocwmma -rodinia -roms -root -rosco -rose -ross -routinator -routino -rpcsvc-proto -rpm -rpp -rr -rrdtool -rsbench -rsem -rsl -rstart -rstudio -rsync -rsyslog -rt-tests -rtags -rtax -rtmpdump -ruby -ruby-asciidoctor -ruby-charlock-holmes -ruby-erubis -ruby-gist -ruby-gnuplot -ruby-hpricot -ruby-mustache -ruby-narray -ruby-rake -ruby-rdiscount -ruby-ronn -ruby-rubyinline -ruby-svn2git -ruby-terminal-table -ruby-thor -ruby-tmuxinator -ruby-unicode-display-width -ruby-xdg -ruby-zentest -runc -rust -rust-bindgen -rust-bootstrap -rust-clap -s4pred -sabre -saga-gis -sailfish -salmon -salmon-tddft -salome-configuration -salome-med -salome-medcoupling -salt -sam2p -sambamba -samblaster -samrai -samtools -samurai -sandbox -sandia-micro-benchmarks -sartre -sarus -satsuma2 -savanna -saws -sbcl -sbcl-bootstrap -sblim-sfcc -sbml -sbp -sbt -scafacos -scala -scalasca -scale -scallop -scalpel -scan-for-matches -scantailor -scc -sccache -scine-core -scine-database -scine-molassembler -scine-qcmaquis -scine-readuct -scine-serenity -scine-sparrow -scine-utilities -scine-xtb -scipoptsuite -scitokens-cpp -scnlib -scons -scorec-core -scorecard -scorep -scorpio -scotch -scr -screen -scripts -scrnsaverproto -scrot -scs -sctk -sdl2 -sdl2-image -sdl2-ttf -sdsl-lite -seacas -seacr -seal -sed -sedacs -seissol -selalib -semiprof -sendme -sensei -sentencepiece -sentieon-genomics -sepp -seq-gen -seqan -seqfu -seqkit -seqprep -seqtk -serenity -serenity-libint -serf -serialbox -sessreg -setserial -setxkbmap -sfcgal -sfcio -sga -sgpp -shadow -shamrock -shapeit -shapeit4 -shapelib -shapemapper -shared-mime-info -shark -shc -sheenbidi -shellcheck -shengbte -sherpa -shiro -shocklibs -shoremap -shortstack -showfont -shred -shtools -shuffile -sicer2 -sickle -sicm -siesta -sigcpp -sigio -signalp -signify -silo -simde -simdjson -simgrid -simmetrix-simmodsuite -simple-dftd3 -simplemoc -simsipm -simul -simulationio -sina -singular-factory -singularity-eos -singularity-hpc -singularityce -sio -sionlib -sirius -sjpeg -skilion-onedrive -skopeo -sl -slang -slate -sleef -slepc -slf4j -slirp4netns -sloccount -slurm -slurm-drmaa -smalt -smartdenovo -smartmontools -smee-client -smof -smproxy -snakemake -snap -snap-berkeley -snap-korf -snappy -snbone -sniffles -snpeff -snphylo -snptest -soapdenovo-trans -soapdenovo2 -socat -soci -sofa-c -sollya -solr -somatic-sniper -sombrero -sonlib -sopt -soqt -sortmerna -sos -sosflow -source-highlight -sourmash -sowing -sox -sp -spaceranger -spack -spack-configs-dav-sdk -spack-configs-facilities -spack-configs-tools-sdk -spades -span-lite -spark -sparse -sparsehash -sparskit -sparta -spath -spatialdata -spatter -spdk -spdlog -specfem3d-globe -spectra -spectre -spectrum-mpi -speex -speexdsp -sperr -spfft -spglib -sph2pipe -spherepack -sphexa -spindle -spiner -spiral-package-fftx -spiral-package-hcol -spiral-package-jit -spiral-package-mpi -spiral-package-simt -spiral-software -spla -spm -spot -sprng -sqlcipher -sqlite -sqlite-jdbc -sqlitebrowser -sqoop -squashfs -squashfs-mount -squashfuse -squid -sra-tools -sratoolkit -srcml -srcml-identifier-getter-tool -srilm -srm-ifce -sse2neon -sshfs -sshpass -ssht -ssmtp -sspace-longread -sspace-standard -sst-core -sst-dumpi -sst-elements -sst-macro -sst-transports -stacks -staden-io-lib -star -star-ccm-plus -starlight -starpu -startup-notification -stat -stata -stc -stdexec -steps -stinger -storm -stow -strace -stream -stress -stress-ng -stressapptest -string-view-lite -stringtie -stripack -structure -strumpack -su2 -sublime-text -subread -subversion -suite-sparse -sumaclust -sumo -sundials -suntans -superchic -superlu -superlu-dist -superlu-mt -supermagic -surfer -survey -sw4 -sw4lite -swan -swap-assembler -swarm -swfft -swftools -swiftsim -swig -swipl -symengine -symlinks -sympack -sympol -sys-sage -sysbench -syscalc -sysfsutils -sysget -sysstat -systemc -systemd -systemtap -sz -sz-cpp -sz3 -szauto -szx -t8code -tabix -tajo -talass -talloc -tamaas -tandem -tangram -tantan -tar -targetp -task -taskd -taskflow -tasmanian -tassel -tau -tauola -tb-lmto -tbl2asn -tblite -tcl -tcl-bwidget -tcl-itcl -tcl-tcllib -tcl-tclxml -tcl-togl -tclap -tcoffee -tcpdump -tcptrace -tcsh -tdengine -tealeaf -tecio -teckit -tecplot -telegraf -telocal -tempestextremes -tempestremap -templight -templight-tools -tempo -tengine -tensorflow-serving-client -tensorpipe -termcap -terminalimageviewer -tesseract -test-drive -tests-sos -testu01 -tetgen -tethex -tetranscripts -texi2html -texinfo -texlive -texstudio -textparser -tfel -the-platinum-searcher -the-silver-searcher -theia-ide -thepeg -thermo4pfm -thesis -thornado-mini -thrift -thrust -thunar -thunar-volman -tidy-html5 -tig -tiled-mm -time -timedatex -timemory -timew -tini -tinker -tiny-tensor-compiler -tinycbor -tinygltf -tinyobjloader -tinyxml -tinyxml2 -tioga -tippecanoe -tiptop -tiramisu -tix -tixi -tk -tkrzw -tl-expected -tldd -tmalign -tmhmm -tmscore -tmux -tnftp -tomcat -toml-f -toml11 -tomlplusplus -topaz -topaz-3dem -topcom -tophat -torch-scatter -torque -totalview -toybox -tpm2-tss -tracer -tracy -tracy-client -tramonto -transabyss -transdecoder -transferbench -transposome -transrate -transset -trapproto -tree -tree-sitter -treelite -treesub -trexio -trf -triangle -trident -trilinos -trilinos-catalyst-ioss-adapter -trimal -trimgalore -trimmomatic -trinity -trinotate -trivy -trnascan-se -trompeloeil -truchas -tskit -tsne-cuda -tulip -tumbler -turbine -turbomole -turnserver -twm -tycho2 -typescript -typhon -typhonio -typos -typst -ucc -uchardet -ucsc-bedclip -ucsc-bedgraphtobigwig -ucx -udunits -ufo-core -ufo-filters -ufs-utils -ufs-weather-model -uftrace -umap -umesimd -umoci -umpire -unblur -uncrustify -unibilium -unifdef -unifyfs -unigen -unison -units -unittest-cpp -universal -universal-ctags -unixodbc -unqlite -unrar -unuran -unzip -upcxx -upp -uqtk -uriparser -usalign -usbutils -usearch -userspace-rcu -ut -utf8cpp -utf8proc -uthash -util-linux -util-linux-uuid -util-macros -uvw -uwtools -vacuumms -vala -valgrind -valijson -vampirtrace -vapor -vardictjava -variorum -varnish-cache -varscan -vasp -vbfnlo -vbz-compression -vc -vcftools -vcsh -vde -vdt -veccore -vecgeom -veclibfort -vecmem -vectorclass-version2 -vegas2 -veloc -velvet -velvetoptimiser -vep -vep-cache -verdict -verible -verilator -verrou -vesta -vfkit -vgm -videoproto -viennarna -viewres -vifi -vigra -vim -vir-simd -virtualgl -visit -visit-cgns -visit-ffp -visit-mfem -visit-silo -visit-unv -viskores -vite -vizglow -vmatch -vmc -vmd -volk -voms -voropp -votca -vpfft -vpic -vsearch -vsftpd -vt -vtable-dumper -vtk -vtk-h -vtk-m -vvtest -w3emc -w3m -w3nco -wannier90 -warpx -wasi-sdk-prebuilt -watch -wayland -wayland-protocols -wcs -wcslib -webbench -weechat -weighttp -wget -wgl -wgrib2 -wgsim -which -whip -whizard -wi4mpi -win-file -win-gpg -win-sdk -win-wdk -winbison -windowswmproto -wiredtiger -wireshark -wise2 -wonton -wordnet -wps -wrf -wrf-io -wrk -wsmancli -wt -wtdbg2 -wxparaver -wxpropgrid -wxwidgets -x11perf -x264 -xabclib -xalan-c -xapian-core -xauth -xbacklight -xbae -xbiff -xbitmaps -xbraid -xcalc -xcb-demo -xcb-proto -xcb-util -xcb-util-cursor -xcb-util-errors -xcb-util-image -xcb-util-keysyms -xcb-util-renderutil -xcb-util-wm -xcb-util-xrm -xcdf -xcfun -xclip -xclipboard -xclock -xcmiscproto -xcmsdb -xcompmgr -xconsole -xcrysden -xcursor-themes -xcursorgen -xdbedizzy -xdelta -xditview -xdm -xdmf3 -xdotool -xdpyinfo -xdriinfo -xedit -xeniumranger -xerces-c -xeus -xev -xextproto -xeyes -xf86bigfontproto -xf86dga -xf86dgaproto -xf86driproto -xf86miscproto -xf86rushproto -xf86vidmodeproto -xfce4-appfinder -xfce4-core -xfce4-panel -xfce4-session -xfce4-settings -xfconf -xfd -xfdesktop -xfindproxy -xfontsel -xforms -xfs -xfsdump -xfsinfo -xfsprogs -xfwm4 -xfwp -xgamma -xgboost -xgc -xhmm -xhost -xineramaproto -xinit -xinput -xios -xkbcomp -xkbdata -xkbevd -xkbprint -xkbutils -xkeyboard-config -xkill -xl -xload -xlogo -xlsatoms -xlsclients -xlsfonts -xmag -xman -xmessage -xmh -xmlf90 -xmlrpc-c -xmlto -xmodmap -xmore -xnedit -xnnpack -xolotl -xorg-cf-files -xorg-docs -xorg-gtest -xorg-server -xorg-sgml-doctools -xorgproto -xphelloworld -xplor-nih -xplsprinters -xpmem -xpr -xprehashprinterlist -xprop -xproperty -xproto -xproxymanagementprotocol -xqilla -xrandr -xrdb -xrdcl-record -xrefresh -xrootd -xrx -xsbench -xscope -xsd -xsdk -xset -xsetmode -xsetpointer -xsetroot -xsimd -xsm -xstdcmap -xtb -xtcdata -xtensor -xtensor-blas -xtensor-python -xterm -xtl -xtrans -xtrap -xts -xv -xvidtune -xvinfo -xwd -xwidgets -xwininfo -xwud -xxd-standalone -xxdiff -xxhash -xyce -xz -yade -yafyaml -yajl -yaksa -yambo -yaml-cpp -yara -yarn -yasm -ycruncher -ycsb -yoda -yorick -yosys -yq -yyjson -z-checker -z3 -zabbix -zerosum -zfp -zfs -ziatest -zig -zip -zipkin -zlib -zlib-ng -zoltan -zookeeper -zookeeper-benchmark -zopfli -zoxide -zpares -zpp -zsh -zstd -zstr -zuo -zycore-c -zydis -zziplib -==> 8611 packages +3dtk lua-mpack py-freezegun r-adabag +3proxy lua-sol2 py-frozendict r-ade4 +4ti2 lucene py-frozenlist r-adegenet +7zip luit py-fs r-adegraphics +abacus lulesh py-fsspec r-adephylo +abduco lumpy-sv py-fsspec-xrootd r-adespatial +abi-compliance-checker lustre py-ftfy r-adgoftest +abi-dumper lvarray py-ftputil r-adsplit +abinit lvm2 py-funcy r-aer +abseil-cpp lwgrp py-furo r-afex +abyss lwm2 py-fury r-affxparser +accfft lwtnn py-fusepy r-affy +acct lxc py-future r-affycomp +accumulo lynx py-fuzzywuzzy r-affycompatible +ace lz4 py-fypp r-affycontam +acfl lzma py-galaxy-containers r-affycoretools +ack lzo py-galaxy-job-metrics r-affydata +acl lzop py-galaxy-objectstore r-affyexpress +acpica-tools m4 py-galaxy-sequence-utils r-affyilm +acpid macfuse py-galaxy-tool-util r-affyio +activeharmony macsio py-galaxy-util r-affypdnn +activemq mad-numdiff py-galaxy2cwl r-affyplm +acts madgraph5amc py-gast r-affyqcreport +acts-algebra-plugins madis py-gcovr r-affyrnadegradation +acts-dd4hep madx py-gcs-oauth2-boto-plugin r-agdex +actsvg maeparser py-gcsfs r-agilp +additivefoam mafft py-gdc-client r-agimicrorna +addrwatch magic-enum py-gdown r-aims +adept magics py-gee-asset-manager r-aldex2 +adept-utils magma py-geeadd r-allelicimbalance +adf mahout py-geemap r-alpine +adiak makedepend py-geeup r-als +adios makedepf90 py-gemmforge r-alsace +adios-catalyst maker py-gemmi r-altcdfenvs +adios2 mallocmc py-genders r-amap +adlbx maloc py-geneimpacts r-amelia +admixtools malt py-generateds r-ampliqueso +adms mamba py-genshi r-analysispageserver +adol-c man-db py-gensim r-anaquin +advancecomp mapl py-geoalchemy2 r-aneufinder +adwaita-icon-theme mapnik py-geocoder r-aneufinderdata +aegean mapserver py-geocube r-animation +aeskeyfind mapsplice2 py-geographiclib r-annaffy +aespipe maq py-geojson r-annotate +affinity maqao py-geomdl r-annotationdbi +agile mariadb py-geopandas r-annotationfilter +agrep mariadb-c-client py-geoplot r-annotationforge +aida mark py-geopmdpy r-annotationhub +akantu masa py-geopmpy r-anytime +alan mash py-geopy r-aod +albany masurca py-geoviews r-ape +albert mathematica py-gest-api r-aplot +alembic mathic py-gevent r-argparse +alglib mathicgb py-gf256 r-arm +all-library matio py-gfal2-python r-aroma-light +allpaths-lg matlab py-gffutils r-arrangements +alluxio matrix-switch py-ghp-import r-ash +alpaka maven py-gidgethub r-askpass +alpgen maverick py-gidgetlab r-asreml +alps mawk py-gimmik r-assertive +alpscore mbdyn py-gin-config r-assertive-base +alquimia mbedtls py-git-review r-assertive-code +alsa-lib mc py-gitdb r-assertive-data +alsa-plugins mcl py-gitpython r-assertive-data-uk +aluminum mcpp py-glean-parser r-assertive-data-us +amber mct py-glean-sdk r-assertive-datetimes +ambertools mctc-lib py-glmnet r-assertive-files +amd-aocl mcutils py-glmnet-python r-assertive-matrices +amdblis mdb py-glmsingle r-assertive-models +amdfftw mdspan py-glob2 r-assertive-numbers +amdlibflame mdsplus py-globus-cli r-assertive-properties +amdlibm mdtest py-globus-sdk r-assertive-reflection +amdscalapack med py-gluoncv r-assertive-sets +amdsmi medipack py-glymur r-assertive-strings +amduprof meep py-gmsh r-assertive-types +amg2013 mefit py-gmsh-interop r-assertthat +amg2023 megadock py-gmxapi r-automap +amg4psblas megahit py-gnuplot r-backports +amgx melissa py-goatools r-bamsignals +aml memaxes py-gooey r-base64 +amp memcached py-google r-base64enc +ampl meme py-google-api-core r-basilisk +ampliconnoise memkind py-google-api-python-client r-basilisk-utils +ampt memtailor py-google-apitools r-bayesfactor +amqp-cpp memtester py-google-auth r-bayesm +amr-wind mepo py-google-auth-httplib2 r-bayesplot +amrex meraculous py-google-auth-oauthlib r-bbmisc +amrfinder mercurial py-google-cloud-appengine-logging r-beachmat +amrvis mercury py-google-cloud-audit-log r-beanplot +ams mergiraf py-google-cloud-batch r-beeswarm +anaconda3 mesa py-google-cloud-bigquery r-bench +andi mesa-demos py-google-cloud-core r-bfast +angsd mesa-glu py-google-cloud-logging r-bfastspatial +anicalculator meshkit py-google-cloud-storage r-bglr +ant meshlab py-google-crc32c r-bh +antimony meshoptimizer py-google-pasta r-biasedurn +antlr meshtool py-google-reauth r-bibtex +antlr4-complete meson py-google-resumable-media r-bigalgebra +antlr4-cpp-runtime mesquite py-googleapis-common-protos r-biglm +ants met py-googledrivedownloader r-bigmemory +any2fasta metabat py-gosam r-bigmemory-sri +aocc metacarpa py-gpaw r-bindr +aocl-compression metaeuk py-gpaw-data r-bindrcpp +aocl-crypto metal py-gpustat r-bio3d +aocl-da metall py-gputil r-biobase +aocl-dlp metaphysicl py-gpy r-biocfilecache +aocl-libmem methyldackel py-gpyopt r-biocgenerics +aocl-sparse metis py-gpytorch r-biocinstaller +aocl-utils metkit py-gql r-biocio +aoflagger metplus py-gradio r-biocmanager +aom mfem py-gradio-client r-biocneighbors +aotriton mg py-grandalf r-biocparallel +aotriton-llvm mgard py-graphcast r-biocsingular +apache-tvm mgardx py-grapheme r-biocstyle +apachetop mgcfd-op2 py-graphene r-biocversion +ape mgis py-graphlib-backport r-biom-utils +aperture-photometry microbiomeutil py-graphql-core r-biomart +apex microsocks py-graphql-relay r-biomartr +apfel migraphx py-graphql-ws r-biomformat +apfelxx migrate py-graphviz r-biostrings +apktool migrate-package-prs py-gravity r-biovizbase +apple-clang mii py-grayskull r-bit +apple-gl mille py-greenlet r-bit64 +apple-glu millepede py-grequests r-bitops +apple-libunwind mimalloc py-griddataformats r-blavaan +apple-libuuid mimic-mcl py-griffe r-blob +applewmproto minc-toolkit py-gromacswrapper r-blockmodeling +appres minced py-grpc-google-iam-v1 r-bluster +apptainer mindthegap py-grpcio r-bmp +apr miniamr py-grpcio-status r-bookdown +apr-util miniapp-ascent py-grpcio-tools r-boot +aqlprofile miniasm py-gsd r-boruta +aragorn miniconda3 py-gssapi r-brew +arbor minife py-gsutil r-bridgesampling +arborx miniforge3 py-gtdbtk r-brio +arc minigan py-gunicorn r-brms +archer minighost py-gxformat2 r-brobdingnag +aretomo minigmg py-gym r-broom +aretomo2 minimap2 py-h11 r-broom-helpers +aretomo3 minimd py-h2 r-bsgenome +argobots minio py-h3 r-bsgenome-hsapiens-ucsc-hg19 +argon2 miniocli py-h5glance r-bslib +argp-standalone miniqmc py-h5io r-bsseq +args minisign py-h5netcdf r-bumphunter +argtable minismac2d py-h5py r-bwstest +aria2 minitri py-h5sh r-c50 +arkouda minivite py-hacking r-ca +arm-forge minixyce py-hail r-cachem +arm-kernels minizip py-handy-archives r-cairo +armadillo minuit py-hatch r-callr +armcimpi miopen-hip py-hatch-cython r-car +armcomputelibrary mira py-hatch-fancy-pypi-readme r-caracas +armpl-gcc miranda py-hatch-jupyter-builder r-cardata +arpack-ng mirdeep2 py-hatch-nodejs-version r-caret +arrayfire mitofates py-hatch-requirements-txt r-caretensemble +arrow mitos py-hatch-vcs r-caroline +asagi mivisionx py-hatchet r-category +ascent mixcr py-hatchling r-catools +asciidoc mkfontdir py-hclust2 r-cca +asciidoc-py3 mkfontscale py-hdbscan r-ccp +asdcplib mlc-llm py-hdf5plugin r-cdcfluview +asdf-cxx mlhka py-hdfs r-cellranger +asio mlocate py-healpix r-champ +aspa mlpack py-healpy r-champdata +aspcud mlperf-deepcam py-heapdict r-checkmate +aspect mlst py-heat r-checkpoint +aspell mmg py-heavyball r-chemometrics +aspell6-de mmseqs2 py-hep-ml r-chipseq +aspell6-en mmv py-hepdata-converter r-chron +aspell6-es moab py-hepdata-lib r-circlize +aspera-cli mochi-margo py-hepdata-validator r-circstats +assimp mochi-thallium py-hepstats r-clarabel +astra model-angelo py-hepunits r-class +astral model-traits py-heudiconv r-classint +astyle modeltest-ng py-hf-transfer r-cli +at-spi2-atk modern-wheel py-hf-xet r-clipr +at-spi2-core modylas py-hieroglyph r-clisymbols +atf mojitos py-highspy r-clock +atfl mokutil py-hiredis r-clue +athena molcas py-hist r-cluster +atk mold py-histbook r-clustergeneration +atlas molden py-histogrammar r-clusterprofiler +atom-dft molgw py-histoprint r-cmdstanr +atompaw mongo-c-driver py-hjson r-cner +atop mongo-cxx-driver py-hmmlearn r-coda +attr mongodb-async-driver py-holland-backup r-codetools +audacious mono py-holoviews r-codex +audacity montage py-horovod r-coin +audit-userspace moosefs py-hpack r-colorspace +augustus moreutils py-hpbandster r-colourpicker +authd mosesdecoder py-hpccm r-combinat +authselect mosh py-hsluv r-commonmark +autoconf mosquitto py-hstspreload r-complexheatmap +autoconf-archive mothur py-htgettoken r-compositions +autodiff motif py-html2text r-compquadform +autodock-gpu motioncor2 py-html5lib r-condop +autodock-vina mount-point-attributes py-htmldate r-conflicted +autogen mozjpeg py-htmlgen r-conquer +automaded mozjs py-htseq r-consrank +automake mpark-variant py-httpbin r-construct +autossh mpas-model py-httpcore r-contfrac +avizo mpb py-httplib2 r-convevol +aws-ofi-nccl mpc py-httpretty r-copula +aws-ofi-rccl mpdecimal py-httpstan r-corhmm +aws-parallelcluster mpe2 py-httptools r-corpcor +aws-sdk-cpp mpest py-httpx r-corrplot +awscli mpfi py-huggingface-hub r-countrycode +awscli-v2 mpfr py-humanfriendly r-covr +axel mpi-bash py-humanize r-cowplot +axl mpi-rockstar py-hvac r-cpp11 +axom mpi-serial py-hvplot r-crayon +azcopy mpi-sync-clocks py-hydra-core r-credentials +babelflow mpi-test-suite py-hypercorn r-crosstalk +babelstream mpibenchmark py-hyperframe r-crul +babeltrace mpibind py-hyperlink r-ctc +babeltrace2 mpich py-hyperopt r-cubature +babl mpidiff py-hypothesis r-cubist +bacio mpifileutils py-ibm-cloud-sdk-core r-curl +backupninja mpigraph py-ibm-watson r-cvxr +backward-cpp mpilander py-ics r-d3r +bam-readcount mpileaks py-id r-dada2 +bamaddrg mpip py-identify r-data-table +bamdst mpir py-idna r-dbi +bamtools mpitrampoline py-idna-ssl r-dbplyr +bamutil mpiwrapper py-igor r-debugme +banner mpix-launch-swift py-igor2 r-decipher +bannergrab mpl py-igraph r-delayedarray +barrnap mppp py-igv-notebook r-delayedmatrixstats +bart mpsolve py-igwn-auth-utils r-deldir +barvinok mpt py-ihm r-dendextend +bash mptensor py-illumina-utils r-densvis +bash-completion mrbayes py-ilmbase r-deoptim +bashtop mrbench py-imagecodecs r-deoptimr +bat mrchem py-imagecorruptions-imaug r-deriv +batchedblas mrcpp py-imagehash r-desc +batctl mrnet py-imageio r-deseq +bats mrtrix3 py-imageio-ffmpeg r-deseq2 +baurmc mruby py-imagesize r-desolve +bazel mscclpp py-imaug r-devtools +bbcp mscgen py-imbalanced-learn r-dexseq +bbmap msgpack-c py-imgaug r-diagram +bc mshadow py-iminuit r-diagrammer +bcache msmc py-immutabledict r-dicekriging +bcftools msmc2 py-immutables r-dichromat +bdftopcf msmpi py-importlib-metadata r-diffobj +bdii msolve py-importlib-resources r-diffusionmap +bdsim msr-safe py-imutils r-digest +bdw-gc mstk py-in-n-out r-diptest +beagle mstore py-incremental r-dir-expiry +beakerlib msvc py-inflect r-dirichletmultinomial +bear mt-metis py-inheritance r-dismo +beast-tracer mtn py-iniconfig r-distributional +beast1 mui py-iniparse r-diversitree +beast2 mujoco py-inquirer r-dmrcate +beatnik multicharge py-inquirerpy r-dnacopy +bedops multitail py-inscriptis r-do-db +bedtools2 multitime py-installer r-doby +beforelight multiverso py-instrain r-domc +benchmark mumax py-intake r-doparallel +berkeley-db mummer py-intake-esm r-dorng +berkeleygw mummer4 py-intbitset r-dose +bertini mumps py-intel-openmp r-dosnow +bfs munge py-intensity-normalization r-dotcall64 +bgen muparser py-interface-meta r-downlit +bgpdump muparserx py-interlap r-downloader +bib2xhtml muscle py-intervaltree r-dplyr +bigdft-atlab muscle5 py-invoke r-dqrng +bigdft-chess muse py-iocapture r-dss +bigdft-core music py-iopath r-dt +bigdft-futile musica py-ipaddress r-dtplyr +bigdft-libabinit musl py-ipdb r-dtw +bigdft-liborbs must py-ipycanvas r-dupradar +bigdft-psolver muster py-ipyevents r-dygraphs +bigdft-spred mutationpp py-ipyfilechooser r-dynamictreecut +bigdft-suite mvapich py-ipykernel r-e1071 +bigreqsproto mvapich-plus py-ipyleaflet r-earth +bigwhoop mvapich2 py-ipympl r-ebseq +bind9 mxm py-ipyparallel r-ecosolver +binder mxml py-ipyrad r-ecp +binutils mxnet py-ipython r-edger +bioawk mypaint-brushes py-ipython-cluster-helper r-effects +biobambam2 mysql py-ipython-genutils r-elemstatlearn +biobloom mysql-connector-c py-ipython-pygments-lexers r-ellipse +biopieces mysqlpp py-ipytree r-ellipsis +bird n2p2 py-ipyvtk-simple r-elliptic +bismark nacos py-ipyvue r-emmeans +bison nag py-ipyvuetify r-emmli +bitgroomingz nalu py-ipywidgets r-energy +bitlbee nalu-wind py-irpf90 r-enrichplot +bitmap namd py-isa-rwval r-ensembldb +bitsery nano py-isal r-envstats +blackhat nanoflann py-iso8601 r-ergm +blake3 nanomsg py-isodate r-estimability +blaspp nanopb py-isoduration r-europepmc +blast-plus nasm py-isort r-evaluate +blast2go nauty py-itables r-evd +blat navi py-iterative-stats r-exactextractr +blaze nb py-itk r-exomecopy +blis nbdkit py-itolapi r-exomedepth +bliss ncbi-magicblast py-itsdangerous r-experimenthub +blitz ncbi-rmblastn py-jacobi r-expint +blktrace ncbi-toolkit py-jaconv r-expm +bloaty ncbi-vdb py-jamo r-factoextra +blogbench nccl py-janus r-factominer +blt nccl-fastsocket py-jaraco-classes r-fansi +bmake nccl-tests py-jaraco-context r-farver +bmi nccmp py-jaraco-functools r-fastcluster +bml ncdu py-jarowinkler r-fastdigest +bohrium ncftp py-jarvis-util r-fastdummies +boinc-client ncio py-javaproperties r-fastica +bolt ncl py-jax r-fastmap +bonniepp nco py-jaxlib r-fastmatch +bookleaf-cpp ncompress py-jaxtyping r-fastmatrix +boost ncurses py-jcb r-fda +boostmplcartesianproduct ncview py-jdatetime r-fdb-infiniummethylation-hg18 +boringssl ncvis py-jdcal r-fdb-infiniummethylation-hg19 +botan ndiff py-jedi r-fds +bowtie ndzip py-jeepney r-ff +bowtie2 neartree py-jellyfish r-fftwtools +boxlib neic-finitefault py-jinja2 r-fgsea +bpp-core nek5000 py-jinja2-cli r-fields +bpp-phyl nekbone py-jinja2-humanize-extension r-filehash +bpp-phyl-omics nekcem py-jinja2-time r-filelock +bpp-popgen neko py-jiter r-findpython +bpp-seq nekrs py-jmespath r-fit-models +bpp-seq-omics nektar py-jmp r-fitdistrplus +bpp-suite nektools py-joblib r-flashclust +bracken nemsio py-jplephem r-flexclust +brahma nemsiogfs py-jproperties r-flexmix +braker neo4j py-jprops r-fnn +branson neocmakelsp py-jpype1 r-fontawesome +breakdancer neofoam py-jraph r-forcats +bref3 neon py-jsmin r-foreach +breseq neovim py-json-get r-forecast +bricks nep py-json-tricks r-foreign +bridger neper py-json2html r-formatr +brigand nest py-json5 r-formula +brltty net-snmp py-jsonargparse r-fpc +brotli netcdf-c py-jsondiff r-fpcompare +brpc netcdf-cxx py-jsonlines r-fracdiff +brunsli netcdf-cxx4 py-jsonpatch r-fs +brynet netcdf-fortran py-jsonpath-ng r-functional +bsseeker2 netcdf95 py-jsonpickle r-furrr +btllib netdata py-jsonpointer r-futile-logger +btop netgauge py-jsonref r-futile-options +bubblewrap netgen py-jsonschema r-future +bucky netkit-ftp py-jsonschema-specifications r-future-apply +buddy netlib-lapack py-junit-xml r-gamlss +bueno netlib-scalapack py-junit2html r-gamlss-data +bufr netlib-xblas py-jupyter r-gamlss-dist +bufr-query netpbm py-jupyter-client r-gamm4 +bulker netperf py-jupyter-console r-gargle +bump2version nettle py-jupyter-core r-gbm +bumpversion networkdirect py-jupyter-events r-gbrd +busco neuron py-jupyter-leaflet r-gcrma +busybox neve py-jupyter-lsp r-gdalutilities +butter newt py-jupyter-packaging r-gdalutils +butterflypack nextdenovo py-jupyter-server r-gdata +bwa nextflow py-jupyter-server-mathjax r-gdsfmt +bwtool nf-core-tools py-jupyter-server-proxy r-geiger +byacc nf-seqerakit py-jupyter-server-terminals r-genefilter +byfl nf-tower-agent py-jupyter-telemetry r-genelendatabase +byobu nf-tower-cli py-jupyterhub r-genemeta +byte-lite nf-wave-cli py-jupyterlab r-geneplotter +byte-unixbench nfft py-jupyterlab-pygments r-generics +byteman nfs-ganesha py-jupyterlab-server r-genetics +bzip2 nfs-utils py-jupyterlab-widgets r-genie3 +c-ares nghttp2 py-jupytext r-genomeinfodb +c-blosc nginx py-justext r-genomeinfodbdata +c-blosc2 ngmerge py-jwcrypto r-genomicalignments +c-lime ngmlr py-kaggle r-genomicfeatures +c-raft ngspice py-kaldiio r-genomicranges +c3d nicstat py-kaleido r-gensa +ca-certificates-mozilla nim py-kb-python r-geojsonsf +cabana nimrod-aai py-keras r-geometries +cabana-pd ninja py-keras-applications r-geometry +cachefilesd ninja-fortran py-keras-preprocessing r-geomorph +caffe ninja-phylogeny py-keras2onnx r-geonames +cairo nix py-kerberos r-geoquery +cairomm njet py-kerchunk r-geor +caliper nlcglib py-key-value-aio r-geosphere +callflow nlohmann-json py-keyboard r-gert +callpath nlohmann-json-schema-validator py-keyring r-getopt +camellia nlopt py-keyrings-alt r-getoptlong +camp nmad py-keystoneauth1 r-ggally +camx nn-c py-kitchen r-ggbeeswarm +canal nnn py-kiwisolver r-ggbio +cans nnpack py-kmodes r-ggdendro +cantera nnvm py-knack r-ggforce +canu node-js py-kneaddata r-ggfun +cap3 nopayloadclient py-kombu r-ggjoy +capnproto normaliz py-kornia r-ggmap +capstone notmuch py-kornia-rs r-ggnewscale +cardioid npb py-kosh r-ggpattern +care npm py-krb5 r-ggplot2 +cargo-c npth py-kt-legacy r-ggplotify +cargs nq py-kubernetes r-ggpubr +casacore nrm py-kymatio r-ggraph +casacore-measures ns-3-dev py-lagom r-ggrastr +cask nseg py-langcodes r-ggrepel +casper nsimd py-langsmith r-ggridges +cassandra nsjail py-language-data r-ggsci +cassini-headers nspr py-lap r-ggsignif +castep nss py-laplace-torch r-ggstats +catch2 ntirpc py-lark r-ggthemes +cbc ntl py-lark-parser r-ggtree +cbench ntpoly py-laspy r-ggvis +cbflib numactl py-latexcodec r-gh +cbindgen numamma py-law r-gistr +cblas numap py-lazy r-git2r +cbqn numaprof py-lazy-loader r-gitcreds +cbtf numdiff py-lazy-object-proxy r-glimma +cbtf-argonavis nut py-lazy-property r-glmgampoi +cbtf-argonavis-gui nvbandwidth py-lazyarray r-glmnet +cbtf-krell nvcomp py-lcls-krtc r-globaloptions +cbtf-lanl nvdimmsim py-ldap3 r-globals +cc65 nvhpc py-leather r-globaltest +ccache nvidia-container-toolkit py-leidenalg r-glue +cce nvidia-nsight-systems py-lerc r-gmodels +ccfits nvpl-blas py-lfpykit r-gmp +ccls nvpl-common py-lhsmdu r-go-db +ccs-qcd nvpl-fft py-liac-arff r-goftest +cctools nvpl-lapack py-libclang r-gofuncr +cdbfasta nvpl-scalapack py-libconf r-googleauthr +cdd nvptx-tools py-libcst r-googledrive +cddlib nvshmem py-libensemble r-googlesheets4 +cdecimal nvtop py-liblas r-googlevis +cdhit nvtx py-librosa r-goplot +cdi nwchem py-librt r-gosemsim +cdo nyancat py-libsonata r-goseq +cdt oc py-lifelines r-gostats +ceed ocaml py-lightgbm r-gower +celeritas ocamlbuild py-lightly r-gparotation +cellpose occa py-lightly-utils r-gplots +cellranger oci-systemd-hook py-lightning r-graph +centrifuge ocl-icd py-lightning-api-access r-graphlayouts +cepgen oclgrind py-lightning-cloud r-grbase +cereal oclint py-lightning-fabric r-gridbase +ceres-solver oclock py-lightning-lite r-gridextra +cernlib octa py-lightning-uq-box r-gridgraphics +cfitsio octave py-lightning-utilities r-gridpattern +cgal octave-arduino py-lightpipes r-gsa +cgdb octave-control py-ligo-segments r-gsalib +cgdcbxd octave-gsl py-lil-aretomo r-gseabase +cget octave-instrctl py-line-profiler r-gsl +cgl octave-io py-linear-operator r-gsodr +cgm octave-optim py-linear-tree r-gson +cgns octave-quaternion py-linecache2 r-gss +cgsi-gsoap octave-signal py-lineenhancer r-gstat +chaco octave-splines py-linkchecker r-gsubfn +chafa octave-statistics py-linkify-it-py r-gtable +chai octave-struct py-lit r-gtools +chameleon octave-symbolic py-litdata r-gtrellis +changa octopus py-littleutils r-gviz +channelflow odc py-lizard r-gwmodel +chaparral odgi py-llama-cpp-python r-hardhat +chapel of-catalyst py-llnl-sina r-haven +chaplin of-precice py-llvmlite r-hdf5array +charliecloud ollama py-lmdb r-hdf5r +charmpp ome-common-cpp py-lmfit r-hdo-db +chatterbug ome-files-cpp py-lmodule r-hdrcde +check ome-model py-localcider r-here +chemfiles omega-h py-locket r-hexbin +chexmix omm py-lockfile r-hh +chez-scheme omm-bundle py-logilab-common r-highr +chgcentre omnictl py-logistro r-hmisc +chlorop omniperf py-logmuse r-hms +chombo omnitrace py-logomaker r-hoardr +chrony ompss py-loguru r-htmltable +chrpath ompss-2 py-loky r-htmltools +cimfomfa ompt-openmp py-loompy r-htmlwidgets +cinch oneapi-igc py-looseversion r-httpcode +circe2 oneapi-level-zero py-louie r-httpuv +circos onednn py-lpips r-httr +cistem oniguruma py-lru-dict r-httr2 +citcoms onnx py-lscsoft-glue r-humaniformat +cityhash ont-guppy py-lsprotocol r-hwriter +civetweb oommf py-luigi r-hydrogof +cjson oomph py-lupa r-hydrotsm +ck op2-dsl py-lvis r-hypergeo +clamav opa-psm2 py-lws r-hypergraph +clamr opam py-lxml r-ica +clapack opari2 py-lz4 r-ids +clara opdilib py-lzstring r-ieugwasr +claude-code open-iscsi py-m2r r-igraph +claw open-isns py-macholib r-illumina450probevariants-db +clblast open3d py-machotools r-illuminahumanmethylation450kanno-ilmn12-hg19 +cleaveland4 openal-soft py-macs2 r-illuminahumanmethylation450kmanifest +cleverleaf openbabel py-macs3 r-illuminahumanmethylationepicanno-ilm10b4-hg19 +clfft openblas py-maestrowf r-illuminahumanmethylationepicmanifest +clhep opencarp py-magicgui r-illuminaio +cli11 opencascade py-mahotas r-imager +clinfo opencl-c-headers py-mailchecker r-impute +clingo opencl-clhpp py-make r-influencer +clingo-bootstrap opencl-headers py-makefun r-ini +clingo-bootstrap-pgo opencl-icd-loader py-mako r-inline +cln opencoarrays py-mapbox-earcut r-insight +cloc opencolorio py-mapclassify r-interactivedisplaybase +cloog opencv py-mariadb r-interp +cloverleaf opendatadetector py-marisa-trie r-intervals +cloverleaf-ref opendx py-markdown r-inum +cloverleaf3d openexr py-markdown-include r-ipred +clp openfast py-markdown-it-py r-iranges +clustal-omega openfdtd py-markdown2 r-irdisplay +clustalw openfoam py-markov-clustering r-irkernel +cmake openfoam-org py-markovify r-irlba +cmaq openfpgaloader py-markupsafe r-isdparser +cmark openfst py-marshmallow r-islr +cmdlime opengl py-matminer r-iso +cmdstan openglu py-matplotlib r-isoband +cminpack openimagedenoise py-matplotlib-inline r-isva +cmocka openimageio py-matplotlib-scalebar r-iterators +cmockery openipmi py-maturin r-iterpc +cmor openjdk py-mayavi r-jade +cni-plugins openjpeg py-mbstrdecoder r-janitor +cnmem openkim-models py-mccabe r-jaspar2018 +cnpy openldap py-md-environ r-jomo +cntk openlibm py-mda-xdrlib r-jpeg +cntk1bitsgd openloops py-mdahole2 r-jquerylib +cnvnator openmc py-mdanalysis r-jsonify +codar-cheetah openmm py-mdanalysistests r-jsonlite +code-server openmolcas py-mdi r-kableextra +codec2 openmpi py-mdit-py-plugins r-kegggraph +codecov openmx py-mdocfile r-keggrest +codee opennurbs py-mdurl r-kernlab +codes openpa py-meautility r-kernsmooth +codipack openpbs py-mechanize r-kknn +coevp openpmd-api py-medaka r-klar +cohmm openradioss-engine py-meldmd r-knitr +cohomcalg openradioss-starter py-melissa-core r-kpmt +coin3d openrasmol py-memelite r-ks +coinhsl openresty py-memory-profiler r-ksamples +coinmp openscenegraph py-memprof r-labeling +coinutils openslide py-memray r-labelled +collectd openslp py-mendeleev r-lambda-r +collier openspeedshop py-mercantile r-laplacesdemon +colm openspeedshop-utils py-mergedeep r-lars +colordiff openssh py-merlin r-later +comd openssl py-meshio r-lattice +comet opensta py-meshpy r-latticeextra +comgr openstf py-meson-python r-lava +commons-lang opensubdiv py-metaphlan r-lavaan +commons-lang3 opentsdb py-metasv r-lazyeval +commons-logging openturns py-metatensor-core r-ldheatmap +compadre openvdb py-metatensor-learn r-leafem +compiler-wrapper openvkl py-metatensor-operations r-leaflet +composable-kernel openwsman py-metatensor-torch r-leaflet-providers +compose ophidia-analytics-framework py-metatomic-torch r-leafpop +compositeproto ophidia-io-server py-metatrain r-leaps +composyx ophidia-primitives py-metis r-learnbayes +conda4aarch64 ophidia-server py-metomi-isodatetime r-leiden +conduit opium py-metomi-rose r-lfe +conmon optional-lite py-metpy r-lhs +connect-proxy optipng py-metric-learn r-libcoin +conquest optix-dev py-metrics r-libpressio +conserver opus py-mffpy r-lidr +console-bridge or-tools py-mg-rast-tools r-lifecycle +constype oracle-instant-client py-mgmetis r-limma +consul oras py-microsoft-aurora r-limsolve +cool orbit2 py-mido r-linprog +coordgen orc py-mikado r-list +coral orca py-mike r-listenv +corenlp orca-faccts py-minio r-lme4 +coreutils orfm py-minisom r-lmertest +corset orientdb py-minkowskiengine r-lmtest +cosbench orthofiller py-minrpc r-lobstr +cosign orthofinder py-misk r-locfit +cosimio orthomcl py-misopy r-log4r +cosma osg-ca-certs py-mistletoe r-loo +cosmoflow-benchmark osi py-mistune r-lpsolve +cosmomc osmctools py-mizani r-lpsolveapi +cosp2 osmesa py-mkdocs r-lsei +costa osmosis py-mkdocs-autorefs r-lubridate +costo ospray py-mkdocs-jupyter r-lumi +cotter osqp py-mkdocs-material r-lwgeom +countdown ossp-uuid py-mkdocs-material-extensions r-magic +covfie osu-micro-benchmarks py-mkdocstrings r-magick +cowsay otf py-mkdocstrings-python r-magrittr +cp2k otf-cpt py-ml-collections r-makecdfenv +cpat otf2 py-ml-dtypes r-maldiquant +cpio ovito py-mlflow r-manipulatewidget +cplex oxide-rs py-mlperf-logging r-mapplots +cpmd p11-kit py-mlxtend r-mapproj +cpp-argparse p3dfft3 py-mmcv r-maps +cpp-httplib p4est py-mmengine r-maptools +cpp-logger p7zip py-mmtf-python r-mapview +cpp-termcolor pacbio-daligner py-mne r-markdown +cppad pacbio-damasker py-mne-bids r-marray +cppcheck pacbio-dazz-db py-mo-pack r-mass +cppcodec pacbio-dextractor py-moarchiving r-mathjaxr +cppcoro pace py-mock r-matlab +cppgsl pacifica-cli py-model-index r-matr +cpprestsdk packmol py-modelcif r-matrix +cpptrace pacparser py-modepy r-matrixgenerics +cppunit pacvim py-modin r-matrixmodels +cppzmq paddle py-modisco r-matrixstats +cpr padicotm py-modred r-mclogit +cprnc pagit py-modules-gui r-mclust +cpu-features pagmo py-moltemplate r-mcmc +cpuinfo pagmo2 py-monai r-mcmcglmm +cqrlib paintor py-monkeytype r-mcmcpack +cquery pajeng py-monotonic r-mco +cracklib pal py-monty r-mda +cradl palace py-more-itertools r-memisc +cram palisade-development py-morph-tool r-memoise +cray-fftw paml py-morphio r-memuse +cray-libsci panda py-morphosamplers r-mendelianrandomization +cray-mpich pandaseq py-motmetrics r-mergemaid +cray-mvapich2 pandoc py-mouseinfo r-meta +cray-pmi pandoramonitoring py-moviepy r-metadat +creduce pandorapfa py-mpi4jax r-metafor +crmc pandorasdk py-mpi4py r-metap +croc pango py-mpld3 r-metapod +cromwell pangolin py-mpldock r-methylumi +cromwell-womtool pangomm py-mplhep r-mgcv +cronie papi py-mplhep-data r-mgraster +crosstool-ng papyrus py-mpmath r-mice +crow paraconf py-mrcfile r-microbenchmark +crtm paradiseo py-msal r-mime +crtm-fix parafeed py-msal-extensions r-minfi +crunch parallel py-msgpack r-miniui +crux-toolkit parallel-hashmap py-msgpack-numpy r-minqa +cry parallel-netcdf py-msrest r-misc3d +cryodrgn parallelio py-msrestazure r-missmethyl +cryoef parallelmergetree py-mui4py r-mitml +cryptopp paraview py-multi-imbalance r-mitools +cryptsetup pareval py-multi-key-dict r-mixtools +csa-c parflow py-multidict r-mlbench +cscope parmetis py-multiecho r-mlinterfaces +csdp parmgridgen py-multipledispatch r-mlr +csvtk parmmg py-multiprocess r-mlrmbo +ctffind parquet-format py-multiqc r-mmwrweek +ctpl parsec py-multiurl r-mnormt +ctre parsimonator py-mumps4py r-mockery +cub parsplice py-munch r-modelmetrics +cuba parthenon py-munkres r-modelr +cubature partons py-murmurhash r-modeltools +cube partons-elementary-utils py-mutagen r-mpm +cube-blade partons-numa py-mx r-mr-raps +cubelib pass py-mxfold2 r-mrinstruments +cubew passt py-myhdl r-mrmix +cubist pasta py-mypy r-mrpresso +cublasmp pastix py-mypy-extensions r-mscoreutils +cuda patch py-mysql-connector-python r-msnbase +cuda-memtest patchelf py-mysqlclient r-multcomp +cudd patchutils py-myst-parser r-multcompview +cudnn pathfinder py-namex r-multicool +cudss pax-utils py-nanobind r-multitaper +cufflinks pbbam py-nanoget r-multtest +cufftmp pblat py-nanomath r-munsell +cunit pbmpi py-nanoplot r-mutoss +cups pbwt py-nanostat r-mvtnorm +curl pbzip2 py-nanotime r-mzid +cusolvermp pciutils py-nanotron r-mzr +cusparselt pcl py-napari r-nada +cusz pcma py-napari-console r-nanotime +cutensor pcre py-napari-plugin-engine r-ncbit +cutlass pcre2 py-napari-plugin-manager r-ncdf4 +cvector pcsclite py-napari-svg r-network +cvise pdal py-nara-wpe r-networkd3 +cvs pdc py-narwhals r-neuralnet +cxi-driver pdf2svg py-natsort r-nfactors +cxxopts pdftk py-nbclassic r-nimble +cxxtest pdi py-nbclient r-nleqslv +cyrus-sasl pdiplugin-decl-hdf5 py-nbconvert r-nlme +czmq pdiplugin-decl-netcdf py-nbdime r-nloptr +daemonize pdiplugin-mpi py-nbformat r-nmf +dakota pdiplugin-pycall py-nbmake r-nmof +daligner pdiplugin-serialize py-nbqa r-nnet +dalton pdiplugin-set-value py-nbsphinx r-nnls +damageproto pdiplugin-trace py-nbstripout r-nonnest2 +damaris pdiplugin-user-code py-nbval r-nor1mix +damask pdsh py-nc-time-axis r-nortest +damask-grid pdt py-ncbi-genome-download r-np +damask-mesh pegtl py-ndg-httpsclient r-npsurv +damselfly pelican py-ndindex r-numderiv +daos pennant py-neo r-oligoclasses +darshan-runtime percept py-neo4j r-openssl +darshan-util percolator py-neobolt r-openxlsx +dash percona-server py-neotime r-optimparallel +datamash perfstubs py-neovim-remote r-optimx +dataspaces perl py-neptune-client r-optparse +datatransferkit perl-acme-damn py-nest-asyncio r-ordinal +date perl-algorithm-c3 py-nestle r-org-hs-eg-db +dateutils perl-algorithm-diff py-netaddr r-organismdbi +dav-sdk perl-alien-build py-netcdf4 r-osqp +davix perl-alien-build-plugin-download-gitlab py-netifaces r-packrat +dbcsr perl-alien-libxml2 py-netket r-pacman +dbow2 perl-any-uri-escape py-netpyne r-paleotree +dbus perl-apache-logformat-compiler py-networkit r-pamr +dbus-glib perl-app-cmd py-networkx r-pan +dbxtool perl-appconfig py-neuralgcm r-parallelly +dcap perl-archive-zip py-neurokit2 r-parallelmap +dcm2niix perl-array-utils py-neurolab r-paramhelpers +dcmtk perl-b-cow py-neurom r-party +dctz perl-b-hooks-endofscope py-neurora r-partykit +dd4hep perl-b-keywords py-neurotools r-patchwork +ddc perl-bignum py-nexus-sdk r-pathview +ddd perl-bio-asn1-entrezgene py-nexusforge r-pbapply +dealii perl-bio-bigfile py-nglview r-pbdzmq +dealii-parameter-gui perl-bio-cluster py-ngs-tools r-pbivnorm +debbuild perl-bio-db-hts py-nh3 r-pbkrtest +debugedit perl-bio-ensembl py-nibabel r-pcamethods +decentralized-internet perl-bio-ensembl-funcgen py-nilearn r-pcapp +deconseq-standalone perl-bio-ensembl-io py-nipype r-pegas +deconwolf perl-bio-ensembl-variation py-nitransforms r-pepxmltab +dedisp perl-bio-eutilities py-niworkflows r-permute +deepmdkit perl-bio-searchio-hmmer py-nltk r-pfam-db +dejagnu perl-bio-variation py-node-semver r-phangorn +delly2 perl-bioperl py-nodeenv r-phantompeakqualtools +delphes perl-bit-vector py-non-regression-test-tools r-pheatmap +delta perl-bsd-resource py-nose r-philentropy +demuxlet perl-cache-cache py-nose-cov r-phylobase +deno perl-cache-memcached py-nose2 r-phyloseq +denovogear perl-cairo py-nosexcover r-phylostratr +detray perl-canary-stability py-notebook r-phytools +dfelibs perl-capture-tiny py-notebook-shim r-picante +dftbplus perl-carp py-npe2 r-piggyback +dftd3-lib perl-carp-assert py-nptyping r-pillar +dftd4 perl-carp-clan py-npx r-pinfsc50 +dftfe perl-catalyst-action-renderview py-ntlm-auth r-pixmap +dhpmm-f perl-catalyst-action-rest py-ntplib r-pkgbuild +dhtest perl-catalyst-component-instancepercontext py-nugraph r-pkgcache +dia perl-catalyst-devel py-nuitka r-pkgconfig +dia-umpire-se perl-catalyst-plugin-cache py-num2words r-pkgdepends +dialign perl-catalyst-plugin-configloader py-numba r-pkgdown +dialign-tx perl-catalyst-plugin-static-simple py-numba4jax r-pkgload +diamond perl-catalyst-runtime py-numbagg r-pkgmaker +dicom3tools perl-catalyst-view-json py-numcodecs r-pki +diffmark perl-cgi py-numdifftools r-pl94171 +diffsplice perl-cgi-simple py-numexpr r-plogr +difftastic perl-cgi-struct py-numexpr3 r-plot3d +diffutils perl-chart-gnuplot py-numkit r-plotly +digitrounding perl-chi py-numl r-plotmo +dihydrogen perl-chi-driver-memcached py-numpy r-plotrix +dimemas perl-class-accessor py-numpy-groupies r-pls +dineof perl-class-accessor-grouped py-numpy-indexed r-plyr +ding-libs perl-class-accessor-lvalue py-numpy-quaternion r-pmcmr +dire perl-class-c3 py-numpy-stl r-pmcmrplus +direnv perl-class-c3-adopt-next py-numpydoc r-png +discotec perl-class-c3-componentised py-nvidia-dali r-polspline +discovar perl-class-data-inheritable py-nvidia-ml-py r-polyclip +discovardenovo perl-class-inspector py-nvidia-ml-py3 r-polynom +disktype perl-class-load py-nvidia-modulus r-pool +dislin perl-class-load-xs py-nvidia-nvcomp r-poorman +distbench perl-class-method-modifiers py-nvidia-nvimagecodec r-popgenome +distcc perl-class-singleton py-nvidia-nvjpeg2k r-popvar +diy perl-class-tiny py-nvidia-nvtiff r-posterior +dla-future perl-clone py-nvidia-physicsnemo r-powerlaw +dla-future-fortran perl-clone-choose py-nvitop r-prabclus +dlb perl-clone-pp py-nvtx r-pracma +dlib perl-common-sense py-oauth2client r-praise +dlpack perl-compress-bzip2 py-oauthlib r-preprocesscore +dmd perl-compress-lzo py-obspy r-prettydoc +dmidecode perl-compress-raw-bzip2 py-ocnn r-prettyunits +dmlc-core perl-compress-raw-zlib py-odc-geo r-proc +dmtcp perl-config-any py-odfpy r-processx +dmxproto perl-config-general py-ogb r-prodlim +dnsmap perl-config-inifiles py-okada-wrapper r-profmem +dnsmasq perl-config-simple py-olcf-velocity r-profvis +dnstop perl-config-tiny py-olefile r-progress +dnstracer perl-context-preserve py-olmoearth-pretrain-minimal r-progressr +docbook-xml perl-contextual-return py-omegaconf r-proj +docbook-xsl perl-convert-nls-date-format py-onnx r-proj4 +dock perl-cookie-baker py-onnx-opcounter r-projpred +doctest perl-cpan-meta-check py-onnxconverter-common r-promises +dolfinx-mpc perl-cpanel-json-xs py-onnxmltools r-protgenerics +dorado perl-css-minifier-xs py-onnxruntime r-proto +dorian3d-dlib perl-data-dump py-ont-fast5-api r-proxy +dos2unix perl-data-dumper py-opcodes r-pryr +dosfstools perl-data-dumper-concise py-open-clip-torch r-ps +dotconf perl-data-optlist py-openai r-pscbs +dotnet-core-sdk perl-data-predicate py-openai-whisper r-pspline +double-batched-fft-library perl-data-stag py-openapi-schema-pydantic r-psych +double-conversion perl-data-uuid py-opencensus r-ptw +doxygen perl-data-visitor py-opencensus-context r-purrr +dpdk perl-date-exception py-opencv-python r-pvclust +dplasma perl-date-manip py-opendatalab r-qqconf +dpmjet perl-date-utils py-openidc-client r-qs +draco perl-datetime py-openmc r-qtl +dracut perl-datetime-format-builder py-openmesh r-quadprog +dramsim2 perl-datetime-format-iso8601 py-openmim r-quantmod +dramsim3 perl-datetime-format-mysql py-openpmd-validator r-quantreg +dri2proto perl-datetime-format-oracle py-openpmd-viewer r-quantro +dri3proto perl-datetime-format-pg py-openpyxl r-questionr +drill perl-datetime-format-strptime py-openslide-python r-quickjsr +drishti perl-datetime-locale py-opentelemetry-api r-quickplot +dropwatch perl-datetime-timezone py-opentelemetry-exporter-prometheus r-qvalue +druid perl-db-file py-opentelemetry-instrumentation r-r-cache +ds perl-dbd-mysql py-opentelemetry-sdk r-r-methodss3 +dsdp perl-dbd-oracle py-opentelemetry-semantic-conventions r-r-oo +dsfmt perl-dbd-pg py-opentree r-r-utils +dsqss perl-dbd-sqlite py-opentuner r-r6 +dsrc perl-dbi py-opppy r-radialmr +dssp perl-dbix-class py-ops r-ragg +dtc perl-devel-checklib py-opt-einsum r-rainbow +dtcmp perl-devel-cover py-optax r-randomfields +dtf perl-devel-cycle py-optree r-randomfieldsutils +duckdb perl-devel-globaldestruction py-optuna r-randomforest +duperemove perl-devel-overloadinfo py-or-tools r-randomglm +dust perl-devel-size py-oracledb r-ranger +dwz perl-devel-stacktrace py-orbax-checkpoint r-rann +dxt-explorer perl-devel-stacktrace-ashtml py-ordered-set r-rapidjsonr +dyninst perl-devel-symdump py-orderly-set r-rapiserialize +dysco perl-digest-jhash py-orjson r-rappdirs +e2fsprogs perl-digest-md5 py-os-service-types r-raster +e3sm-kernels perl-digest-md5-file py-oset r-rbgl +e3sm-scorpio perl-digest-sha1 py-oslo-config r-rbibutils +e4s-alc perl-dist-checkconflicts py-oslo-i18n r-rbokeh +e4s-cl perl-email-abstract py-oslo-serialization r-rcmdcheck +ea-utils perl-email-address-xs py-oslo-utils r-rcolorbrewer +eagle perl-email-date-format py-osqp r-rcpp +earlyoom perl-email-messageid py-outdated r-rcppannoy +easi perl-email-mime py-overpy r-rcpparmadillo +easybuild perl-email-mime-contenttype py-overrides r-rcppblaze +easyloggingpp perl-email-mime-encodings py-owlrl r-rcppcctz +ebms perl-email-sender py-owslib r-rcppcnpy +ecbuild perl-email-simple py-oyaml r-rcppdate +eccodes perl-email-stuffer py-p2j r-rcppde +eccodes-cosmo-resources perl-encode-locale py-pacifica-downloader r-rcppeigen +ecdsautils perl-error py-pacifica-namespace r-rcppensmallen +ecflow perl-eval-closure py-pacifica-uploader r-rcppgsl +eckit perl-exception-class py-packaging r-rcpphnsw +eclipse-gcj-parser perl-exporter-auto py-pager r-rcppml +ecmwf-atlas perl-exporter-lite py-paho-mqtt r-rcppparallel +ecos perl-exporter-tiny py-palettable r-rcppprogress +ecoslim perl-extutils-config py-pamela r-rcpproll +ecp-data-vis-sdk perl-extutils-depends py-panaroo r-rcpptoml +ecp-proxy-apps perl-extutils-helpers py-pandas r-rcppziggurat +ectrans perl-extutils-installpaths py-pandas-datareader r-rcurl +ed perl-extutils-makemaker py-pandas-stubs r-rda +editline perl-extutils-pkgconfig py-pandera r-rdpack +editorconfig perl-ffi-checklib py-pandocfilters r-readbitmap +editres perl-file-changenotify py-panedr r-readr +edm4hep perl-file-chdir py-panel r-readxl +eem perl-file-copy-recursive py-papermill r-reams +efivar perl-file-find-rule py-paralleltask r-recipes +egl perl-file-grep py-param r-reformulas +eigen perl-file-homedir py-parameterized r-registry +eigenexa perl-file-listing py-paramiko r-rematch +elasticsearch perl-file-pushd py-paramz r-rematch2 +elastix perl-file-remove py-parasail r-remotes +elbencho perl-file-sharedir py-parmed r-renv +elfio perl-file-sharedir-install py-parse r-reordercluster +elfutils perl-file-slurp py-parse-type r-reportingtools +elk perl-file-slurp-tiny py-parsedatetime r-repr +elmerfem perl-file-slurper py-parsimonious r-reprex +elpa perl-file-spec py-parsl r-reproducible +elsd perl-file-temp py-parsley r-require +elsdc perl-file-which py-parso r-reshape +elsi perl-filesys-notify-simple py-partd r-reshape2 +emacs perl-font-ttf py-particle r-restfulr +ember perl-forks py-paste r-reticulate +emblmygff3 perl-fth py-pastedeploy r-rex +emboss perl-gd py-pastel r-rfast +embree perl-gdgraph py-pastml r-rferns +enca perl-gdgraph-histogram py-patch r-rgdal +enchant perl-gdtextutil py-patch-ng r-rgenoud +energyplus perl-getopt-argvfile py-path-py r-rgeos +ensmallen perl-getopt-long-descriptive py-pathlib-abc r-rgexf +entrezdirect perl-getopt-tabular py-pathlib2 r-rgl +entt perl-graph py-pathml r-rgooglemaps +environment-modules perl-graph-readwrite py-pathos r-rgraphviz +enzo perl-graphviz py-pathsimanalysis r-rhdf5 +enzyme perl-gzip-faster py-pathspec r-rhdf5filters +eospac perl-hash-merge py-pathtools r-rhdf5lib +epic perl-hash-moreutils py-pathvalidate r-rhmmer +epics-base perl-hash-multivalue py-pathy r-rhtslib +epics-ca-gateway perl-heap py-patool r-rinside +epics-pcas perl-hook-lexwrap py-patsy r-rio +epics-snmp perl-html-parser py-pauvre r-rjags +eprosima-fastcdr perl-html-tagset py-pbr r-rjava +eprosima-fastdds perl-html-template py-pdb-tools r-rjson +epsic perl-http-body py-pdbfixer r-rjsonio +eq-r perl-http-cookiejar py-pdequinox r-rlang +er perl-http-cookies py-pdf2image r-rlas +erf perl-http-daemon py-pdm-backend r-rle +erfa perl-http-date py-pdm-pep517 r-rlist +erlang perl-http-entity-parser py-pdoc3 r-rmariadb +ermod perl-http-headers-fast py-peachpy r-rmarkdown +erne perl-http-message py-peakutils r-rminer +es-shell perl-http-multipartparser py-pebble r-rmpfr +esmf perl-http-negotiate py-peft r-rmpi +espanso perl-http-parser-xs py-pelicanfs r-rms +essl perl-http-request-ascgi py-pem r-rmutil +estarlight perl-http-server-simple py-pendulum r-rmysql +esys-particle perl-http-tiny py-pennylane r-rnaseqmap +etcd perl-import-into py-pennylane-lightning r-rncl +ethminer perl-inline py-pennylane-lightning-kokkos r-rnexml +ethtool perl-inline-c py-pep517 r-rngtools +etsf-io perl-io-all py-pep8 r-rnoaa +eve perl-io-compress py-pep8-naming r-robust +evemu perl-io-html py-perfdump r-robustbase +everytrace perl-io-prompt py-performance r-roc +everytrace-example perl-io-sessiondata py-periodictable r-rocr +evieext perl-io-socket-ssl py-petastorm r-rodbc +evtgen perl-io-string py-petname r-rook +exabayes perl-io-stringy py-petsc4py r-rots +exaca perl-io-tty py-pexpect r-roxygen2 +exactextract perl-ipc-run py-pfzy r-rpart +exago perl-ipc-run3 py-pgzip r-rpart-plot +examl perl-ipc-sharelite py-phanotate r-rpmm +exampm perl-ipc-system-simple py-phonenumbers r-rpostgres +exasp2 perl-javascript-minifier-xs py-phonopy r-rpostgresql +exawind perl-json py-photutils r-rprojroot +exaworks perl-json-any py-phydms r-rpsychi +exchcxx perl-json-maybexs py-phylophlan r-rrblup +exciting perl-json-xs py-pickle5 r-rrcov +exempi perl-kyotocabinet py-pickleshare r-rrpp +exiv2 perl-libwww-perl py-picmistandard r-rsamtools +exmcutils perl-libxml-perl py-picrust2 r-rsconnect +exo perl-lingua-en-inflect py-pid r-rsnns +exodusii perl-list-compare py-pika r-rsolnp +exonerate perl-list-moreutils py-pillow r-rspectra +exonerate-gff3 perl-list-moreutils-xs py-pillow-simd r-rsqlite +expat perl-list-someutils py-pint r-rstan +expect perl-log-any py-pint-xarray r-rstantools +express perl-log-any-adapter-callback py-pip r-rstatix +exprtk perl-log-dispatch py-pipcl r-rstudioapi +extrae perl-log-dispatch-filerotate py-pipdeptree r-rsubread +exuberant-ctags perl-log-log4perl py-piper r-rsvd +eza perl-logger-simple py-pipits r-rtracklayer +eztrace perl-lwp-mediatypes py-pispino r-rtsne +f2c perl-lwp-protocol-https py-pivy r-runit +f3d perl-mailtools py-pkgconfig r-runjags +f77-zmq perl-math-bezier py-pkginfo r-ruv +f90cache perl-math-bigint py-pkgutil-resolve-name r-rvcheck +fabtests perl-math-bigrat py-plac r-rversions +fabulous perl-math-cdf py-plaid r-rvest +faircmakemodules perl-math-cephes py-planar r-rviennacl +fairlogger perl-math-matrixreal py-planet r-rzmq +fairmq perl-math-round py-planetary-computer r-s2 +fairroot perl-math-symbolic py-platformdirs r-s4vectors +fairsoft-bundle perl-math-vecstat py-plotext r-s7 +fairsoft-config perl-mce py-plotille r-samr +faiss perl-memory-process py-plotly r-sandwich +fakechroot perl-metacpan-client py-plotnine r-sass +faketime perl-mime-types py-pluggy r-satellite +fakexrandr perl-mni-perllib py-plum-dispatch r-scaledmatrix +falco perl-mock-config py-ply r-scales +falcon perl-module-build py-pmtiles r-scater +fann perl-module-build-tiny py-pmw r-scattermore +faodel perl-module-corelist py-pmw-patched r-scatterpie +fargparse perl-module-find py-pockets r-scatterplot3d +fasd perl-module-implementation py-poetry r-scdblfinder +fast-float perl-module-install py-poetry-core r-scran +fast-global-file-status perl-module-mask py-poetry-dynamic-versioning r-scrime +fasta perl-module-pluggable py-poetry-plugin-export r-scs +fastani perl-module-runtime py-poetry-plugin-tweak-dependencies-version r-sctransform +fastdb perl-module-runtime-conflicts py-polars r-scuttle +fastdfs perl-module-scandeps py-pomegranate r-sdmtools +fastjar perl-module-util py-pooch r-segmented +fastjet perl-mojolicious py-portalocker r-selectr +fastjson perl-moo py-portend r-seqinr +fastmath perl-moose py-portpicker r-seqlogo +fastme perl-moosex-emulate-class-accessor-fast py-postcactus r-servr +fastor perl-moosex-getopt py-poster r-sessioninfo +fastp perl-moosex-methodattributes py-pot r-sets +fastphase perl-moosex-role-parameterized py-pox r-seurat +fastplong perl-moox-types-mooselike py-poxy r-seuratobject +fastq-scan perl-moox-types-mooselike-numeric py-poyo r-sf +fastq-screen perl-mozilla-ca py-ppft r-sfheaders +fastqc perl-mro-compat py-pprintpp r-sfsmisc +fastqvalidator perl-namespace-autoclean py-pre-commit r-sftime +fasttext perl-namespace-clean py-preshed r-shadowtext +fasttransforms perl-net-cidr-lite py-pretrainedmodels r-shape +fasttree perl-net-http py-pretty-errors r-shiny +fastx-toolkit perl-net-ip py-prettytable r-shinydashboard +faust perl-net-scp-expect py-priority r-shinyfiles +fbgemm perl-net-server py-profilehooks r-shinyfiletree +fca perl-net-server-ss-prefork py-proglog r-shinyjs +fcgi perl-net-ssleay py-progress r-shinystan +fckit perl-number-compare py-progressbar2 r-shinythemes +fd perl-number-format py-progressbar33 r-shinywidgets +fdb perl-object-insideout py-projectq r-shortread +fds perl-package-deprecationmanager py-prokaryote r-siggenes +fdupes perl-package-stash py-prometheus-client r-signac +feh perl-package-stash-xs py-prometheus-flask-exporter r-simpleaffy +fenics perl-package-variant py-promise r-singlecellexperiment +fenics-basix perl-padwalker py-prompt-toolkit r-sitmo +fenics-dolfinx perl-parallel-forkmanager py-propcache r-sm +fenics-ufcx perl-params-util py-properscoring r-smoof +feq-parse perl-params-validate py-proto-plus r-sn +fermi perl-params-validationcompiler py-protobuf r-snakecase +fermikit perl-parse-recdescent py-protoc-gen-swagger r-snow +fermisciencetools perl-parse-yapp py-prov r-snowfall +ferret perl-parselex py-proxystore r-snprelate +feynhiggs perl-parsetemplate py-prwlock r-snpstats +ffb perl-path-class py-psalg r-som +fflas-ffpack perl-path-tiny py-psana r-somaticsignatures +ffmpeg perl-pathtools py-psij-python r-sourcetools +ffr perl-pdf-api2 py-psmon r-sp +ffsb perl-pegex py-pspamm r-spacetime +ffte perl-perl-critic py-psutil r-spades +fftw perl-perl-critic-moose py-psyclone r-spades-addins +fftx perl-perl-tidy py-psycopg2 r-spades-core +fgsl perl-perl-unsafe-signals py-psygnal r-spades-tools +fiat perl-perl-version py-ptyprocess r-spam +fides perl-perl4-corelibs py-pubchempy r-sparsem +figcone perl-perl6-slurp py-pudb r-sparsematrixstats +figlet perl-perlio-gzip py-pulp r-spatial +figtree perl-perlio-utf8-strict py-pulsar-galaxy-lib r-spatialeco +file perl-plack py-pure-eval r-spatialpack +filebench perl-plack-middleware-assets py-pure-sasl r-spatialreg +filo perl-plack-middleware-crossorigin py-puremagic r-spatstat +filtlong perl-plack-middleware-deflater py-py r-spatstat-core +fimpute perl-plack-middleware-fixmissingbodyinredirect py-py-cpuinfo r-spatstat-data +finch perl-plack-middleware-methodoverride py-py-spy r-spatstat-explore +findbugs perl-plack-middleware-removeredundantbody py-py-tes r-spatstat-geom +findutils perl-plack-middleware-reverseproxy py-py2bit r-spatstat-linnet +fio perl-plack-test-externalserver py-py2neo r-spatstat-model +fipscheck perl-pod-coverage py-py4j r-spatstat-random +fish perl-pod-parser py-py6s r-spatstat-sparse +fixesproto perl-pod-spell py-pyabel r-spatstat-univar +fj perl-posix-strftime-compiler py-pyaestro r-spatstat-utils +fjcontrib perl-ppi py-pyahocorasick r-spdata +fl perl-ppix-quotelike py-pyamg r-spdep +flac perl-ppix-regexp py-pyaml r-speedglm +flamegraph perl-ppix-utils py-pyaml-env r-spem +flamemaster perl-proc-daemon py-pyani r-splancs +flann perl-proc-processtable py-pyarrow r-splines2 +flap perl-readonly py-pyasn1 r-splitstackshape +flash perl-readonly-xs py-pyasn1-modules r-sqldf +flashdimmsim perl-ref-util py-pyassimp r-squarem +flatbuffers perl-regexp-common py-pyautogui r-squash +flatcc perl-role-tiny py-pybedtools r-sseq +flcl perl-rose-datetime py-pybids r-stabledist +flecsi perl-rose-db py-pybigwig r-stanheaders +flecsph perl-rose-db-object py-pybind11 r-stargazer +fleur perl-rose-object py-pybind11-stubgen r-stars +flex perl-safe-isa py-pybktree r-statmod +flexi perl-scalar-list-utils py-pybobyqa r-statnet-common +flexiblas perl-scalar-util-numeric py-pybrain r-stringfish +flibcpp perl-scope-guard py-pybtex r-stringi +flink perl-search-elasticsearch py-pybtex-docutils r-stringr +flint perl-sereal py-pybv r-strucchange +flit perl-sereal-decoder py-pycairo r-strucchangercpp +fltk perl-sereal-encoder py-pycares r-styler +fluidnumerics-self perl-server-starter py-pycbc r-subplex +flume perl-set-intervaltree py-pycgns r-summarizedexperiment +flux perl-set-intspan py-pychecker r-suppdists +flux-core perl-set-object py-pycifrw r-survey +flux-pmix perl-set-scalar py-pyclibrary r-survival +flux-python perl-soap-lite py-pycm r-sva +flux-sched perl-sort-naturally py-pycmd r-svglite +flux-security perl-specio py-pycocotools r-sys +fluxbox perl-spiffy py-pycodestyle r-systemfonts +fmi4cpp perl-sql-abstract py-pycollada r-tarifx +fms perl-sql-abstract-classic py-pycompadre r-taxizedb +fmt perl-sql-reservedwords py-pyconify r-tclust +foam-extend perl-sql-translator py-pycorenlp r-teachingdemos +foldseek perl-star-fusion py-pycortex r-tensor +folly perl-starman py-pycosat r-tensora +font-util perl-statistics-basic py-pycparser r-terra +fontcacheproto perl-statistics-descriptive py-pycrypto r-tester +fontconfig perl-statistics-pca py-pycryptodome r-testit +fontsproto perl-stream-buffered py-pycryptodomex r-testthat +fonttosfnt perl-strictures py-pyct r-textshaping +foonathan-memory perl-string-approx py-pycubexr r-tfbstools +form perl-string-crc32 py-pycuda r-tfisher +formetis perl-string-format py-pycurl r-tfmpvalue +fortrilinos perl-string-numeric py-pydantic r-th-data +fortuno perl-string-rewriteprefix py-pydantic-compat r-threejs +fossil perl-sub-exporter py-pydantic-core r-tibble +foundationdb perl-sub-exporter-progressive py-pydantic-extra-types r-tictoc +fox perl-sub-identify py-pydantic-settings r-tidycensus +fp16 perl-sub-install py-pydantic-tes r-tidygraph +fpart perl-sub-name py-pydap r-tidyr +fpc perl-sub-quote py-pydata-sphinx-theme r-tidyselect +fpchecker perl-sub-uplevel py-pydatalog r-tidytree +fping perl-svg py-pydeface r-tidyverse +fplll perl-swissknife py-pydeprecate r-tiff +fplo perl-sys-sigaction py-pydeps r-tigris +fpm perl-task-weaken py-pydevtool r-timechange +fpocket perl-template-toolkit py-pydftracer r-timedate +fpzip perl-term-ansicolor-markup py-pydicom r-tinytex +fq perl-term-readline-gnu py-pydispatcher r-tinytiger +fqtrim perl-term-table py-pydmd r-tmixclust +fr-hit perl-termreadkey py-pydocstyle r-tmvnsim +fraggenescan perl-test-base py-pydoe r-topgo +freebayes perl-test-class py-pydoe2 r-treeio +freecad perl-test-cleannamespaces py-pydot r-triebeard +freefem perl-test-deep py-pydot2 r-trimcluster +freeglut perl-test-diaginc py-pydotplus r-truncdist +freeimage perl-test-differences py-pydub r-truncnorm +freeipmi perl-test-exception py-pyeda r-trust +freesasa perl-test-fatal py-pyedr r-tseries +freesurfer perl-test-file py-pyee r-tsne +freetype perl-test-file-contents py-pyelftools r-ttr +freexl perl-test-file-sharedir py-pyem r-tweenr +fribidi perl-test-json py-pyenchant r-twosamplemr +frobby perl-test-leaktrace py-pyepsg r-txdb-hsapiens-ucsc-hg18-knowngene +frontier-client perl-test-longstring py-pyerfa r-txdb-hsapiens-ucsc-hg19-knowngene +frontistr perl-test-memory-cycle py-pyeventsystem r-tximeta +frugally-deep perl-test-mockobject py-pyface r-tximport +fseq perl-test-mocktime py-pyfaidx r-tximportdata +fsl perl-test-more py-pyfasta r-tzdb +fslsfonts perl-test-most py-pyfastaq r-ucminf +fstobdf perl-test-needs py-pyfftw r-udunits2 +fstrack perl-test-nowarnings py-pyfiglet r-units +ftgl perl-test-object py-pyfits r-upsetr +ftjam perl-test-output py-pyfive r-urca +ftk perl-test-perl-critic py-pyflakes r-urlchecker +ftobjectlibrary perl-test-pod py-pyfr r-urltools +ftxui perl-test-pod-coverage py-pygame r-usethis +fujitsu-fftw perl-test-requires py-pygdal r-utf8 +fujitsu-frontistr perl-test-requiresinternet py-pygdbmi r-uuid +fujitsu-mpi perl-test-sharedfork py-pygelf r-uwot +fujitsu-ssl2 perl-test-subcalls py-pygeos r-v8 +fullock perl-test-tcp py-pygetwindow r-variantannotation +func perl-test-time py-pygit2 r-varselrf +functionalplus perl-test-time-hires py-pygithub r-vcd +funhpc perl-test-trap py-pyglet r-vcfr +funwave perl-test-warn py-pygments r-vctrs +fuse-overlayfs perl-test-warnings py-pygments-pytest r-vegan +fusion-io perl-test-weaken py-pygmsh r-vfs +fvtkhdf perl-test-without-module py-pygmt r-vgam +fwq perl-test-xml py-pygobject r-vioplot +fxdiv perl-test-xml-simple py-pygps r-vipor +fxt perl-test-xpath py-pygpu r-viridis +fyba perl-test-yaml py-pygraphviz r-viridislite +fzf perl-test2-plugin-nowarnings py-pygresql r-visnetwork +g2 perl-test2-suite py-pygrib r-vroom +g2c perl-text-csv py-pygtrie r-vsn +g2o perl-text-csv-xs py-pyh5md r-waldo +g2tmpl perl-text-diff py-pyhdf r-watermelon +g4abla perl-text-format py-pyheadtail r-webshot +g4adept perl-text-glob py-pyhmmer r-wgcna +g4channeling perl-text-nsp py-pyhull r-whisker +g4emlow perl-text-simpletable py-pyicu r-withr +g4ensdfstate perl-text-soundex py-pyinstrument r-wk +g4hepem perl-text-unidecode py-pyinstrument-cext r-writexl +g4incl perl-thread-queue py-pyisemail r-wru +g4ndl perl-threads py-pyjnius r-xde +g4neutronxs perl-throwable py-pyjwt r-xfun +g4nudexlib perl-tie-ixhash py-pyke r-xgboost +g4particlexs perl-tie-toobject py-pykerberos r-xlconnect +g4photonevaporation perl-time-clock py-pykml r-xlconnectjars +g4pii perl-time-duration py-pykokkos-base r-xlsx +g4radioactivedecay perl-time-duration-parse py-pykwalify r-xlsxjars +g4realsurface perl-time-hires py-pylab-sdk r-xmapbridge +g4saiddata perl-time-piece py-pylatex r-xml +g4tendl perl-timedate py-pyld r-xml2 +g4urrpt perl-tk py-pylev r-xnomial +g4vg perl-tree-simple py-pylibjpeg-libjpeg r-xopen +gadap perl-tree-simple-visitorfactory py-pylibjpeg-openjpeg r-xtable +gamess-ri-mp2-miniapp perl-try-tiny py-pylibjpeg-rle r-xts +gams perl-type-tiny py-pylibmagic r-xvector +gapbs perl-types-serialiser py-pylikwid r-yaimpute +gapcloser perl-universal-can py-pylint r-yaml +gapfiller perl-universal-isa py-pylint-gitlab r-yapsa +garcon perl-uri py-pylith r-yaqcaffy +garfieldpp perl-uri-encode py-pylops r-yarn +gasnet perl-uri-find py-pymatgen r-yulab-utils +gatb-core perl-uri-ws py-pymatreader r-zcompositions +gate perl-want py-pymbolic r-zeallot +gatepet2stir perl-www-form-urlencoded py-pymc3 r-zip +gatetools perl-www-robotrules py-pymdown-extensions r-zlibbioc +gatk perl-xml-dom py-pymeeus r-zoo +gau2grid perl-xml-dom-xpath py-pyminifier r3d +gaudi perl-xml-filter-buffertext py-pymol rabbitmq +gaussian perl-xml-hash-xs py-pymongo rabbitmq-c +gaussian-view perl-xml-libxml py-pymoo racket +gauxc perl-xml-libxslt py-pymorph racon +gawk perl-xml-namespacesupport py-pympler raft +gbl perl-xml-parser py-pymsgbox ragel +gblocks perl-xml-parser-lite py-pymummer raja +gcc perl-xml-quote py-pymumps raja-perf +gcc-runtime perl-xml-regexp py-pymupdf ramulator +gccmakedep perl-xml-sax py-pymupdf-fonts randfold +gccxml perl-xml-sax-base py-pymysql random123 +gchp perl-xml-sax-writer py-pynacl randrproto +gcta perl-xml-semanticdiff py-pynio range-v3 +gdal perl-xml-simple py-pynisher rank-run +gdb perl-xml-twig py-pynn rankstr +gdbm perl-xml-writer py-pynndescent rapidjson +gdk-pixbuf perl-xml-xpath py-pynpm raptor2 +gdl perl-xml-xpathengine py-pynrrd rarpd +gdrcopy perl-yaml py-pynucleus rasdaemon +geant3 perl-yaml-libyaml py-pynumpress rasqal +geant4 perl-yaml-syck py-pynvim ratel +geant4-data perl-yaml-tiny py-pynvml ravel +geant4-vmc pestpp py-pynvtx raxml +geany petaca py-pyodbc raxml-ng +gearshifft petsc py-pyogrio ray +gegelati pexsi py-pyomo rayleigh +gegl pfapack py-pyopencl raylib +gem5 pfft py-pyopengl rccl +gemma pfind py-pyopenssl rccl-tests +gemmlowp pflare py-pypar rclone +genemark-et pflask py-pyparsing rdc +generalbrokenlines pflogger py-pypdf rdkit +generate-ninja pflotran py-pypdf2 rdma-core +generax pfunit py-pypeflow rdp-classifier +genesis pgdspider py-pypeg2 rdptools +genfit pgplot py-pyperclip re2 +gengeo ph5concat py-pyperf re2c +gengetopt phantompeakqualtools py-pypinfo readfq +genie pharokka py-pypinyin readline +genomefinisher phast py-pypistats realm +genometools phasta py-pypng recola +genomeworks phist py-pyppeteer recola-sm +genrich phoenix py-pyprecice recon +geode photos py-pyprof2html recorder +geoip-api-c photos-f py-pyproj recordproto +geomodel photospline py-pyproject-hooks redis +geos php py-pyproject-metadata redis-ai +getorganelle phrap-crossmatch-swat py-pyproject-parser redis-plus-plus +gettext phred py-pypulse reditools +gexiv2 phylip py-pyqi redland +gfal2 phylobayesmpi py-pyqt-builder redland-bindings +gfal2-util phyluce py-pyqt4 redset +gfan picard py-pyqt5 redundans +gffcompare picsar py-pyqt5-sip reframe +gffread picsarlite py-pyqt6 regale +gflags pidx py-pyqt6-sip regcm +gfsio pig py-pyqtgraph regenie +gftl pigz py-pyquaternion regtools +gftl-shared pika py-pyreadline relax +ggml pika-algorithms py-pyrect relion +gh pilercr py-pyrevolve remhos +ghex pilon py-pyrfr rempi +ghost pindel py-pyro-api rename +ghostscript pinentry py-pyro-ppl rendercheck +ghostscript-fonts pinfo py-pyro4 renderproto +giblib pioman py-pyroaring repeatafterme +giflib pipework py-pyrocko repeatmasker +gimp pipx py-pyrodigal repeatmodeler +ginac piranha py-pyrodigal-gv repeatscout +ginkgo pism py-pyrometheus reprimand +giraph pixman py-pyrr resolve +git pixz py-pyrsistent resourceproto +git-annex pkg-config py-pysam restic +git-fat-git pkgconf py-pyscaf revbayes +git-filter-repo pktools py-pyscf revocap-coupler +git-imerge planck-likelihood py-pyscipopt revocap-refiner +git-lfs plantuml py-pyscreeze rgb +gitconddb plasma py-pyseer rhash +givaro plink py-pyserial rinetd +gl2ps plink-ng py-pysftp ripgrep +glab plink2 py-pyshacl riscv-gnu-toolchain +glew plog py-pyshp rivet +glfmultiples ploticus py-pyside2 rkcommon +glfw plplot py-pysimdjson rkt-base +glib plsm py-pysindy rkt-cext-lib +glib-bootstrap plumed py-pysmartdl rkt-compiler-lib +glib-networking ply py-pysmiles rkt-dynext-lib +glibc pmdk py-pysocks rkt-racket-lib +glibmm pmemkv py-pysolar rkt-rackunit-lib +glimmer pmerge py-pyspark rkt-scheme-lib +glm pmgr-collective py-pyspellchecker rkt-testing-util-lib +global pmix py-pyspice rkt-zo-lib +globalarrays pmlib py-pyspnego rlwrap +globus-callout pnfft py-pyspoa rmats +globus-common pngquant py-pyspod rmgdft +globus-ftp-client pngwriter py-pysqlite3 rmlab +globus-ftp-control pnmpi py-pystac rna-seqc +globus-gass-copy poamsa py-pystac-client rnaquast +globus-gass-transfer pocl py-pystache rnaz +globus-gsi-callback podio py-pystan rng-tools +globus-gsi-cert-utils podman py-pysurfer rngstreams +globus-gsi-credential podman-compose py-pytablewriter rnpletal +globus-gsi-openssl-error poke py-pytailf roary +globus-gsi-proxy-core polymake py-pytaridx rocal +globus-gsi-proxy-ssl polyml py-pytecplot rocalution +globus-gsi-sysconfig polypolish py-pytesseract rocblas +globus-gss-assist poorjit py-pytest rocdecode +globus-gssapi-error poplddecay py-pytest-aiohttp rocfft +globus-gssapi-gsi poppler py-pytest-allclose rocjpeg +globus-io poppler-data py-pytest-arraydiff rocketmq +globus-openssl-module popt py-pytest-astropy rocksdb +globus-xio porta py-pytest-astropy-header rockstar +globus-xio-gsi-driver portage py-pytest-asyncio rocm-bandwidth-test +globus-xio-pipe-driver portcullis py-pytest-benchmark rocm-clang-ocl +globus-xio-popen-driver ports-of-call py-pytest-cache rocm-cmake +glog possvm py-pytest-check-links rocm-core +gloo postgis py-pytest-cmake rocm-dbgapi +glow postgresql py-pytest-cov rocm-debug-agent +glpk povray py-pytest-cpp rocm-device-libs +glproto powerapi py-pytest-datadir rocm-examples +gluegen powertop py-pytest-doctestplus rocm-gdb +glusterfs ppl py-pytest-fail-slow rocm-opencl +glvis pplacer py-pytest-filter-subpackage rocm-openmp-extras +glx ppopen-appl-amr-fdm py-pytest-flake8 rocm-smi-lib +gmake ppopen-appl-bem py-pytest-flakes rocm-tensile +gmap-gsnap ppopen-appl-bem-at py-pytest-forked rocm-validation-suite +gmic ppopen-appl-dem-util py-pytest-html rocminfo +gmime ppopen-appl-fdm py-pytest-httpbin rocmlir +gmodel ppopen-appl-fdm-at py-pytest-isort rocprim +gmp ppopen-appl-fem py-pytest-lazy-fixture rocprofiler-compute +gmsh ppopen-appl-fvm py-pytest-memray rocprofiler-compute-viewer +gmt ppopen-at py-pytest-metadata rocprofiler-dev +gmtsar ppopen-math-mp py-pytest-mock rocprofiler-register +gnat ppopen-math-vis py-pytest-mpi rocprofiler-sdk +gnds pprof py-pytest-mypy rocprofiler-systems +gnina prank py-pytest-openfiles rocpydecode +gnome-common precice py-pytest-parallel rocrand +gnuconfig predixy py-pytest-pep8 rocshmem +gnupg premake-core py-pytest-pylint rocsolver +gnuplot presentproto py-pytest-qt rocsparse +gnuradio preseq py-pytest-random-order rocthrust +gnutls pressio-log py-pytest-regtest roctracer-dev +go pressio-ops py-pytest-remotedata roctracer-dev-api +go-bootstrap pressio-rom py-pytest-reportlog rocwmma +go-md2man presto py-pytest-retry rodinia +go-sh prettier py-pytest-runner roms +goaccess price py-pytest-socket root +gobject-introspection prime95 py-pytest-subprocess roounfold +goblin-hmc-sim primer3 py-pytest-timeout rosco +gocryptfs prinseq-lite py-pytest-workflow rose +goimports printproto py-pytest-xdist ross +goma prism py-python-benedict routinator +gomplate prmon py-python-bioformats routino +google-cloud-cli prng py-python-box rpcsvc-proto +google-cloud-cpp probconsrna py-python-calamine rpm +google-crc32c procenv py-python-certifi-win32 rpp +googletest process-in-process py-python-constraint rr +gopls procps py-python-crfsuite rrdtool +gosam-contrib procps-ng py-python-daemon rsbench +goshimmer prod-util py-python-dateutil rsem +gotcha prodigal py-python-deprecated rsl +gource professor py-python-discovery rstart +gpcnet profugusmc py-python-docs-theme rstudio +gperf proj py-python-docx rsync +gperftools prokka py-python-dotenv rsyslog +gpgme prometheus py-python-editor rt-tests +gpi-2 prometheus-cpp py-python-engineio rtags +gpi-space prophecy4f py-python-fmask rtax +gplates proteowizard py-python-fsutil rtmpdump +gprofng-gui protobuf py-python-gitlab ruby +gprolog protobuf-c py-python-hostlist ruby-asciidoctor +gptl proxymngr py-python-igraph ruby-charlock-holmes +gptune prrte py-python-javabridge ruby-erubis +gpu-burn pruners-ninja py-python-jenkins ruby-gist +gpuscout ps-lite py-python-jose ruby-gnuplot +gqrx psalg py-python-json-logger ruby-hpricot +gr-osmosdr psblas py-python-keystoneclient ruby-mustache +grabix pscmc py-python-ldap ruby-narray +grace psi4 py-python-levenshtein ruby-rake +grackle psimd py-python-libsbml ruby-rdiscount +gradle psipred py-python-logstash ruby-ronn +grads pslib py-python-louvain ruby-rubyinline +grafana psm py-python-lsp-jsonrpc ruby-svn2git +graph500 psmc py-python-lsp-ruff ruby-terminal-table +graphblast psrcat py-python-lsp-server ruby-thor +graphicsmagick psrchive py-python-lzo ruby-tmuxinator +graphite2 psrdada py-python-magic ruby-unicode-display-width +graphlib pstreams py-python-mapnik ruby-xdg +graphmap pthreadpool py-python-markdown-math ruby-zentest +graphviz pueue py-python-memcached runc +grass pugixml py-python-multipart rust +graylog2-server puk py-python-mumps rust-bindgen +green-mbpt pukabi py-python-oauth2 rust-bootstrap +green-seet pulseaudio py-python-picard rust-clap +greenx pumgen py-python-pptx s4pred +grep pumi py-python-ptrace s5cmd +grib-util purify py-python-rapidjson sabre +gribjump pv py-python-slugify saga-gis +grid pvm py-python-socketio sage +gridlab-d pwgen py-python-sotools sailfish +gridtools pxz py-python-subunit salmon +grnboost py-3to2 py-python-swiftclient salmon-tddft +groff py-4suite-xml py-python-utils salome-configuration +gromacs py-a2wsgi py-python-xlib salome-medcoupling +gromacs-chain-coordinate py-abcpy py-python-xmp-toolkit saltfm +gromacs-swaxs py-abipy py-python3-openid sam2p +grpc py-about-time py-python3-xlib sambamba +gsettings-desktop-schemas py-absl-py py-pythonqwt samblaster +gsi-ncdiag py-accelerate py-pythonsollya samrai +gsibec py-accessible-pygments py-pythran samtools +gsl py-accimage py-pytimeparse samurai +gsl-lite py-acme-tiny py-pytng sandbox +gslib py-acres py-pytokens sandia-micro-benchmarks +gsoap py-adal py-pytoml sartre +gspell py-adb-enhanced py-pytools sarus +gtfsort py-addict py-pytorch-gradual-warmup-lr satsuma2 +gtk-doc py-adios py-pytorch-lightning savanna +gtkmm py-adios4dolfinx py-pytorch-sphinx-theme saws +gtkorvo-atl py-advancedhtmlparser py-pytorch-warmup sbcl +gtkorvo-cercs-env py-aenum py-pyts sbcl-bootstrap +gtkorvo-dill py-affine py-pytuq sblim-sfcc +gtkorvo-enet py-agate py-pytweening sbml +gtkplus py-agate-dbf py-pytz sbp +gtksourceview py-agate-excel py-pyu2f sbt +gts py-agate-sql py-pyudev scafacos +guacamole-client py-ahpy py-pyugrid scala +guacamole-server py-aiobotocore py-pyupgrade scalasca +guidance py-aiocontextvars py-pyusb scale +guile py-aiodns py-pyutilib scallop +gunrock py-aiofiles py-pyuwsgi scalpel +gurobi py-aiohappyeyeballs py-pyvcf scan-for-matches +gvproxy py-aiohttp py-pyvips scantailor +gxsview py-aiohttp-cors py-pyvista scc +gzip py-aioitertools py-pyvistaqt sccache +h2database py-aiojobs py-pyviz-comms scine-core +h5bench py-aioredis py-pyvolve scine-database +h5cpp py-aiosignal py-pywavelets scine-molassembler +h5hut py-aiosqlite py-pywcs scine-qcmaquis +h5part py-aiowebdav2 py-pywin32 scine-readuct +h5utils py-alabaster py-pywinpty scine-serenity +h5z-zfp py-albucore py-pyworld scine-sparrow +haccabana py-alembic py-pyxlsb scine-utilities +hacckernels py-alive-progress py-pyyaml scine-xtb +hackrf-host py-alpaca-eval py-pyyaml-env-tag scipoptsuite +hadoop py-alpaca-farm py-pyzmq scitokens-cpp +hadoop-xrootd py-alphafold py-qdldl scnlib +hal py-altair py-qiskit-aer scons +half py-altgraph py-qiskit-ibm-provider scorecard +halide py-amici py-qiskit-nature scorep +hama py-amityping py-qiskit-terra scorpio +hammer py-amplpy py-qmtest scotch +hapcut2 py-ampltools py-qpsolvers scr +hapdip py-amqp py-qpth screen +haploview py-amrex py-qrcode scripts +haproxy py-angel py-qsymm scrnsaverproto +hard py-aniso8601 py-qtawesome scrot +hardlink py-anndata py-qtconsole scs +harfbuzz py-annexremote py-qtpy sctk +harminv py-annotated-types py-quantiphy sdl2 +hashcat py-annoy py-quantities sdl2-image +haveged py-ansi2html py-quantum-blackbird sdl2-ttf +hazelcast py-ansible py-quantum-xir sdsl-lite +hbase py-ansimarkup py-quart seacas +hbm-dramsim2 py-ansiwrap py-quast seacr +hc py-antimeridian py-quaternionic seal +hcoll py-antipickle py-qudida sed +hdf py-antlr4-python3-runtime py-queryablelist sedacs +hdf-eos2 py-antspyx py-querystring-parser seissol +hdf-eos5 py-anuga py-questionary selalib +hdf5 py-anvio py-qutip semiprof +hdf5-blosc py-anybadge py-qutip-qip sendme +hdf5-vfd-gds py-anyio py-rachis sensei +hdf5-vol-async py-anytree py-radiant-mlhub sentencepiece +hdf5-vol-cache py-anywidget py-radical-entk sentieon-genomics +hdf5-vol-daos py-apache-libcloud py-radical-gtod sepp +hdf5-vol-external-passthrough py-apache-tvm-ffi py-radical-pilot seq-gen +hdf5-vol-log py-apebench py-radical-saga seqan +hdfview py-apex py-radical-utils seqfu +healpix-cxx py-apeye py-ranger-fm seqkit +heaptrack py-apeye-core py-rapidfuzz seqprep +heasoft py-apipkg py-rapidfuzz-capi seqtk +heffte py-apispec py-rarfile serenity +heimdall py-app-model py-rassumfrassum serenity-libint +helib py-appdirs py-rasterio serf +helics py-applicationinsights py-rasterstats serialbox +helm py-appnope py-ratelim sessreg +help2man py-apprise py-ratelimiter setserial +henson py-apptools py-raven setxkbmap +hepmc py-apscheduler py-ray sfcgal +hepmc3 py-arcgis py-rbtools sfcio +hepmcanalysis py-arch py-rdflib sfml +heppdt py-archspec py-rdflib-jsonld sga +heputils py-arcp py-rdt sgpp +hermes py-argcomplete py-reacton shadow +hermes-shm py-argh py-readchar shadowenv +herwig3 py-argon2-cffi py-readme-renderer shamrock +herwigpp py-argon2-cffi-bindings py-recommonmark shapeit +hevea py-argparse-dataclass py-redis shapeit4 +heyoka py-argparse-manpage py-referencing shapelib +hh-suite py-args py-refgenconf shapemapper +hibench py-arkouda py-refgenie shared-mime-info +hicolor-icon-theme py-arm-pyart py-regex shark +hicops py-arpeggio py-regionmask shc +hicup py-arrow py-regions sheenbidi +highfive py-art py-reindent shellcheck +highway py-arviz py-relion shengbte +highwayhash py-asciitree py-relion-blush sherpa +hiop py-asdf py-relion-classranker shiro +hip py-asdf-astropy py-repligit shocklibs +hip-tensor py-asdf-coordinates-schemas py-reportlab shoremap +hip-tests py-asdf-standard py-reportseff shortstack +hipace py-asdf-transform-schemas py-repoze-lru showfont +hipblas py-asdf-unit-schemas py-reproject shred +hipblas-common py-asdfghjkl py-requests shtns +hipblaslt py-ase py-requests-cache shtools +hipcc py-asgi-lifespan py-requests-file shuffile +hipcub py-asgiref py-requests-ftp sicer2 +hipdnn py-asn1crypto py-requests-futures sickle +hipfft py-aspy-yaml py-requests-kerberos sicm +hipfort py-asserts py-requests-mock siesta +hipify-clang py-ast-serialize py-requests-ntlm sigcpp +hiprand py-asteval py-requests-oauthlib sigio +hipsolver py-astor py-requests-toolbelt signalp +hipsparse py-astpretty py-requests-unixsocket signify +hipsparselt py-astroid py-requirements-parser silo +hipsycl py-astropy py-reretry simde +hiptt py-astropy-healpix py-resampy simdjson +hiredis py-astropy-helpers py-resize-right simgrid +hisat2 py-astropy-iers-data py-resolvelib simmetrix-simmodsuite +hisea py-asttokens py-responses simple-dftd3 +hive py-astunparse py-resultsfile simplemoc +hivex py-async-generator py-retry simsipm +hmmer py-async-lru py-retry-decorator simul +hohqmesh py-async-timeout py-retrying simulationio +homer py-asyncio py-retworkx sina +hoomd-blue py-asyncpg py-rfc3339-validator singular-factory +hoppet py-asynctest py-rfc3986 singularity-eos +hotspot py-atomicwrites py-rfc3986-validator singularity-hpc +hp2p py-atpublic py-rfc3987-syntax singularityce +hpc-beeflow py-atropos py-rich sio +hpcc py-ats py-rich-argparse sionlib +hpccg py-attmap py-rich-click sirius +hpcg py-attrs py-rio-pmtiles sjpeg +hpckit py-audioread py-rios skilion-onedrive +hpctoolkit py-auditwheel py-rioxarray skopeo +hpcviewer py-authlib py-rise sl +hpcx-mpi py-autocfg py-river slang +hpddm py-autodocsumm py-rmm slate +hpgmg py-autograd py-rnc2rng sleef +hping py-autograd-gamma py-robocrys slepc +hpl py-automat py-robotframework slf4j +hpx py-autopep8 py-rocrate slirp4netns +hpx-kokkos py-autoray py-roifile sloccount +hpx5 py-autoreject py-roman-numerals slurm +hsa-amd-aqlprofile py-auxlib py-roman-numerals-py slurm-drmaa +hsa-rocr-dev py-avro py-rope smalt +hsakmt py-avro-json-serializer py-rosdep smartdenovo +hsakmt-roct py-avro-python3 py-rosdistro smartmontools +hsf-cmaketools py-awesome-slugify py-rosinstall smee-client +hssp py-awkward py-rosinstall-generator smof +hstr py-awkward-cpp py-rospkg smproxy +hto4l py-awkward0 py-rotary-embedding-torch snakemake +htop py-awscrt py-rouge-score snap +htslib py-ax-platform py-routes snap-berkeley +http-get py-azote py-rpds-py snap-korf +http-load py-azure-batch py-rply snappy +http-parser py-azure-cli-command-modules-nspkg py-rpy2 snbone +http-ping py-azure-cli-core py-rsa sniffles +http-post py-azure-cli-nspkg py-rsatoolbox snpeff +httpd py-azure-cli-telemetry py-rseqc snphylo +httperf py-azure-common py-rst2pdf snptest +httpie py-azure-core py-rtoml soapdenovo-trans +httping py-azure-cosmos py-rtree soapdenovo2 +httpress py-azure-datalake-store py-ruamel-ordereddict socat +hub py-azure-functions-devops-build py-ruamel-yaml soci +hudi py-azure-graphrbac py-ruamel-yaml-clib sofa-c +hugo py-azure-identity py-ruamel-yaml-jinja2 sollya +hunspell py-azure-keyvault py-rucio-clients solr +hw-probe py-azure-keyvault-certificates py-ruff somatic-sniper +hwdata py-azure-keyvault-keys py-rustworkx sombrero +hwloc py-azure-keyvault-nspkg py-rx sonlib +hwmalloc py-azure-keyvault-secrets py-s3cmd sopt +hybpiper py-azure-loganalytics py-s3fs soqt +hybrid-lambda py-azure-mgmt-advisor py-s3transfer sortmerna +hybridsim py-azure-mgmt-apimanagement py-sacrebleu sos +hycom py-azure-mgmt-appconfiguration py-sacremoses sosflow +hydra py-azure-mgmt-applicationinsights py-safe-netrc source-highlight +hydrogen py-azure-mgmt-authorization py-safetensors sourmash +hypar py-azure-mgmt-batch py-salib sowing +hyperfine py-azure-mgmt-batchai py-sarif-tools sox +hyperqueue py-azure-mgmt-billing py-scandir sp +hyperscan py-azure-mgmt-botservice py-scanpy spaceranger +hyphen py-azure-mgmt-cdn py-schema spack +hyphy py-azure-mgmt-cognitiveservices py-schema-salad spack-configs-dav-sdk +hypre py-azure-mgmt-compute py-scientificpython spack-configs-facilities +hypre-cmake py-azure-mgmt-consumption py-scifem spack-configs-tools-sdk +hypredrive py-azure-mgmt-containerinstance py-scikit-build spades +hztool py-azure-mgmt-containerregistry py-scikit-build-core span-lite +i3 py-azure-mgmt-containerservice py-scikit-fmm spark +ibm-databroker py-azure-mgmt-core py-scikit-fuzzy sparse +ibmisc py-azure-mgmt-cosmosdb py-scikit-image sparsehash +icarus py-azure-mgmt-datalake-analytics py-scikit-learn sparskit +iceauth py-azure-mgmt-datalake-store py-scikit-learn-extra sparta +icedtea py-azure-mgmt-datamigration py-scikit-matter spath +icet py-azure-mgmt-deploymentmanager py-scikit-optimize spatialdata +icey py-azure-mgmt-devtestlabs py-scikit-sparse spatter +ico py-azure-mgmt-dns py-scikits-odes spdk +icon py-azure-mgmt-eventgrid py-scine-chemoton spdlog +icu4c py-azure-mgmt-eventhub py-scine-puffin specfem3d-globe +id3lib py-azure-mgmt-hdinsight py-scinum spectra +idba py-azure-mgmt-imagebuilder py-scipy spectre +idg py-azure-mgmt-iotcentral py-scitokens spectrum-mpi +idl py-azure-mgmt-iothub py-scooby speex +iegenlib py-azure-mgmt-iothubprovisioningservices py-scoop speexdsp +ignite py-azure-mgmt-keyvault py-scp sperr +igprof py-azure-mgmt-kusto py-screed spfft +igraph py-azure-mgmt-loganalytics py-scs spglib +igv py-azure-mgmt-managedservices py-sdmetrics sph2pipe +igvtools py-azure-mgmt-managementgroups py-sdnotify spherepack +ike-scan py-azure-mgmt-maps py-sdv sphexa +ilmbase py-azure-mgmt-marketplaceordering py-seaborn spindle +ima-evm-utils py-azure-mgmt-media py-secretstorage spiner +imagemagick py-azure-mgmt-monitor py-seekpath spiral-package-fftx +imake py-azure-mgmt-msi py-segmentation-models-pytorch spiral-package-hcol +imath py-azure-mgmt-netapp py-selenium spiral-package-jit +imgui py-azure-mgmt-network py-semantic-version spiral-package-mpi +imlib2 py-azure-mgmt-nspkg py-semver spiral-package-simt +imod py-azure-mgmt-policyinsights py-send2trash spiral-software +imp py-azure-mgmt-privatedns py-sentencepiece spla +impalajit py-azure-mgmt-rdbms py-sentry-sdk spm +improved-rdock py-azure-mgmt-recoveryservices py-seqeval spot +impute2 py-azure-mgmt-recoveryservicesbackup py-sequence-models sprng +indicators py-azure-mgmt-redhatopenshift py-seriate sqlcipher +infernal py-azure-mgmt-redis py-serpent sqlite +influxdb py-azure-mgmt-relay py-session-info sqlite-jdbc +iniparser py-azure-mgmt-reservations py-setproctitle sqlitebrowser +inputproto py-azure-mgmt-resource py-setupmeta sqoop +integratorxx py-azure-mgmt-search py-setuptools squashfs +intel-gpu-tools py-azure-mgmt-security py-setuptools-cpp squashfs-mount +intel-gtpin py-azure-mgmt-servicebus py-setuptools-git squashfuse +intel-llvm py-azure-mgmt-servicefabric py-setuptools-git-versioning squid +intel-mlc py-azure-mgmt-signalr py-setuptools-reproducible sra-tools +intel-mpi-benchmarks py-azure-mgmt-sql py-setuptools-rust sratoolkit +intel-oneapi-advisor py-azure-mgmt-sqlvirtualmachine py-setuptools-scm srcml +intel-oneapi-ccl py-azure-mgmt-storage py-setuptools-scm-git-archive srcml-identifier-getter-tool +intel-oneapi-compilers py-azure-mgmt-trafficmanager py-sfepy srilm +intel-oneapi-compilers-classic py-azure-mgmt-web py-sgp4 srm-ifce +intel-oneapi-dal py-azure-multiapi-storage py-sh sse2neon +intel-oneapi-dnn py-azure-nspkg py-shap sshfs +intel-oneapi-dpct py-azure-storage-blob py-shapely sshpass +intel-oneapi-dpl py-azure-storage-common py-shellescape ssht +intel-oneapi-inspector py-azure-storage-nspkg py-shellingham ssmtp +intel-oneapi-ipp py-b2luigi py-shiboken2 sspace-longread +intel-oneapi-ippcp py-babel py-shippinglabel sspace-standard +intel-oneapi-itac py-backcall py-shortbred sst-core +intel-oneapi-mkl py-backoff py-shortuuid sst-dumpi +intel-oneapi-mpi py-backpack-for-pytorch py-shroud sst-elements +intel-oneapi-runtime py-backports-abc py-shtab sst-macro +intel-oneapi-tbb py-backports-cached-property py-simpervisor sst-transports +intel-oneapi-vpl py-backports-entry-points-selectable py-simple-slurm stacks +intel-oneapi-vtune py-backports-lzma py-simpleeval staden-io-lib +intel-pin py-backports-os py-simplegeneric star +intel-tbb py-backports-ssl-match-hostname py-simplejson star-ccm-plus +intel-xed py-backports-tarfile py-simplekml starlight +interproscan py-backports-tempfile py-simpletraj starpu +intltool py-backports-weakref py-simpy starship +ioapi py-backports-zoneinfo py-simsimd startup-notification +ior py-bagit py-singledispatchmethod stat +iotaa py-bagit-profile py-sip stata +iozone py-bakta py-six stc +ip py-bandit py-skl2onnx stdexec +ipcalc py-barectf py-slepc4py steps +iperf2 py-basemap py-slicer stinger +iperf3 py-bash-kernel py-slurm-pipeline storm +ipm py-basis-set-exchange py-smac stow +ipopt py-batchspawner py-smart-open strace +iproute2 py-bayesian-optimization py-smartredis stream +iptraf-ng py-bcbio-gff py-smartsim stress +iq-tree py-bcolz py-smartypants stress-ng +irep py-bcrypt py-smmap stressapptest +isa-l py-bdbag py-smolagents string-view-lite +isa-l-crypto py-beaker py-smote-variants stringtie +isaac py-beancount py-snakemake-executor-plugin-azure-batch stripack +isaac-server py-beartype py-snakemake-executor-plugin-cluster-generic structure +isc-dhcp py-beautifulsoup4 py-snakemake-executor-plugin-cluster-sync strumpack +iscdtoolbox-commons py-beniget py-snakemake-executor-plugin-drmaa su2 +iscdtoolbox-elasticity py-bibtexparser py-snakemake-executor-plugin-flux sublime-text +isescan py-bidict py-snakemake-executor-plugin-googlebatch subread +isl py-bids-validator py-snakemake-executor-plugin-kubernetes subversion +iso-codes py-bids-validator-deno py-snakemake-executor-plugin-slurm suite-sparse +isoquant py-bidscoin py-snakemake-executor-plugin-slurm-jobstep sumaclust +ispc py-bidskit py-snakemake-executor-plugin-tes sumo +istio py-bidsschematools py-snakemake-interface-common sundials +itensor py-bigdft py-snakemake-interface-executor-plugins suntans +itk py-bigfloat py-snakemake-interface-logger-plugins superchic +itstool py-billiard py-snakemake-interface-report-plugins superlu +itsx py-binary py-snakemake-interface-scheduler-plugins superlu-dist +iwyu py-binaryornot py-snakemake-interface-storage-plugins superlu-mt +jacamar-ci py-bintrees py-snakemake-storage-plugin-azure supermagic +jackcess py-binwalk py-snakemake-storage-plugin-fs surfer +jafka py-biobb-common py-snakemake-storage-plugin-ftp survey +jags py-biobb-gromacs py-snakemake-storage-plugin-gcs sw4 +jali py-biobb-io py-snakemake-storage-plugin-http sw4lite +jansi py-biobb-model py-snakemake-storage-plugin-pelican swan +jansi-native py-biobb-structure-checking py-snakemake-storage-plugin-rucio swap-assembler +jansson py-biobb-structure-utils py-snakemake-storage-plugin-s3 swarm +jasper py-bioblend py-snakemake-storage-plugin-sftp swfft +javafx py-biom-format py-snakemake-storage-plugin-zenodo swftools +jbigkit py-biomine py-snakeviz swiftsim +jblob py-biopandas py-snappy swig +jchronoss py-biopython py-sncosmo swipl +jdk py-biosppy py-sniffio syclomatic +jedi-cmake py-biotite py-snoop symengine +jellyfish py-biotraj py-snowballstemmer symlinks +jemalloc py-bitarray py-snuggs sympack +jetty-project py-bitshuffle py-sobol-seq sympol +jhpcn-df py-bitstring py-social-auth-core sys-sage +jimtcl py-bitstruct py-sonlib sysbench +jline3 py-black py-sortedcollections syscalc +jmol py-blake3 py-sortedcontainers sysfsutils +jogl py-bleach py-soundfile sysget +jonquil py-blessed py-soupsieve sysstat +jose py-blessings py-soyclustering systemc +jpegoptim py-blight py-spacy systemd +jq py-blinker py-spacy-legacy systemtap +json-c py-blis py-spacy-loggers sz +json-cwx py-blosc py-spacy-models-en-core-web-sm sz-cpp +json-fortran py-blosc2 py-spacy-models-en-vectors-web-lg sz3 +json-glib py-blosum py-sparse szauto +jsoncons py-bluepyefe py-spatialist szx +jsoncpp py-bluepyemodel py-spatialite t8code +jsonnet py-bluepyopt py-spatialpandas tabix +jstorm py-bmap-tools py-spdlog tajo +jube py-bmtk py-spectra talass +judy py-bokeh py-spectral talloc +jujutsu py-boltons py-speech-recognition talosctl +julea py-boom-boot-manager py-spefile tamaas +julia py-boost-histogram py-spgl1 tandem +jump py-boto py-spglib tangram +junit4 py-boto3 py-spherical tantan +just py-botocore py-sphericart tar +justbuild py-botorch py-sphericart-torch targetp +jwt-cpp py-bottle py-sphinx task +jxrlib-debian py-bottleneck py-sphinx-argparse taskd +k8 py-bqplot py-sphinx-autodoc-typehints taskflow +kadath py-braceexpand py-sphinx-basic-ng tasmanian +kafka py-brain-indexer py-sphinx-book-theme tassel +kagen py-branca py-sphinx-bootstrap-theme tau +kahip py-bravado py-sphinx-click tauola +kaiju py-bravado-core py-sphinx-copybutton tb-lmto +kakoune py-breakseq2 py-sphinx-design tbl2asn +kakoune-lsp py-breathe py-sphinx-fortran tblite +kaks-calculator py-brian py-sphinx-gallery tcl +kaldi py-brian2 py-sphinx-github-changelog tcl-bwidget +kalign py-brotli py-sphinx-immaterial tcl-itcl +kallisto py-brotlipy py-sphinx-jinja2-compat tcl-tcllib +karma py-bsddb3 py-sphinx-multiversion tcl-tclxml +kassiopeia py-build py-sphinx-prompt tcl-togl +kbd py-bx-python py-sphinx-removed-in tclap +kbproto py-cachecontrol py-sphinx-rtd-dark-mode tcoffee +kcov py-cached-property py-sphinx-rtd-theme tcpdump +kdiff3 py-cachetools py-sphinx-tabs tcptrace +kea py-cachey py-sphinx-theme-builder tcsh +kealib py-cachy py-sphinx-toolbox tdengine +keepalived py-cairocffi py-sphinxautomodapi tealeaf +keepassxc py-cairosvg py-sphinxcontrib-applehelp tecio +kenlm py-caliper-reader py-sphinxcontrib-bibtex teckit +kentutils py-callmonitor py-sphinxcontrib-devhelp tecplot +keyutils py-calver py-sphinxcontrib-htmlhelp telegraf +khmer py-cantoolz py-sphinxcontrib-issuetracker telocal +kibana py-carputils py-sphinxcontrib-jquery tempestextremes +kicad py-cartopy py-sphinxcontrib-jsmath tempestremap +kim-api py-casadi py-sphinxcontrib-mermaid templight +kinesis py-catalogue py-sphinxcontrib-moderncmakedomain templight-tools +kineto py-catkin-pkg py-sphinxcontrib-napoleon tempo +kitty py-cattrs py-sphinxcontrib-plantuml tengine +kmergenie py-cbor2 py-sphinxcontrib-programoutput tensorflow-serving-client +kmod py-cclib py-sphinxcontrib-qthelp tensorpipe +knem py-cdo py-sphinxcontrib-serializinghtml termcap +kokkos py-cdsapi py-sphinxcontrib-spelling terminalimageviewer +kokkos-fft py-cekit py-sphinxcontrib-tikz tesseract +kokkos-kernels py-celery py-sphinxcontrib-trio test-drive +kokkos-nvcc-wrapper py-cellprofiler py-sphinxcontrib-websupport tests-sos +kokkos-tools py-cellprofiler-core py-sphinxemoji testu01 +koliop py-centrosome py-sphobjinv tetgen +kraken py-cerberus py-spykeutils tethex +kraken2 py-certifi py-spython tetranscripts +krakenuniq py-certipy py-sqlalchemy texi2html +krb5 py-cf-units py-sqlalchemy-migrate texinfo +krims py-cf-xarray py-sqlalchemy-stubs texlive +kripke py-cffconvert py-sqlalchemy-utils texstudio +kubectl py-cffi py-sqlitedict textparser +kubernetes py-cfgrib py-sqlparse tfel +kumi py-cfgv py-srsly the-platinum-searcher +kvasir-mpl py-cftime py-sseclient the-silver-searcher +kvtree py-cgen py-sshtunnel theia-ide +kylin py-chai py-sspilib thepeg +kynema py-chai-lab py-stack-data thermo4pfm +kynema-driver py-chainer py-starfile thesis +kynema-fmb py-chainforgecodegen py-starlette thornado-mini +kynema-sgf py-chainmap py-starlette-context thrift +kynema-ugf py-chalice py-starsessions thrust +kyotocabinet py-chardet py-stashcp thunar +ladot py-charm4py py-statmorph thunar-volman +laghos py-charset-normalizer py-statsmodels tidy-html5 +lame py-chart-studio py-stdlib-list tig +lammps py-cheap-repr py-stestr tiled-mm +lammps-example-plugin py-checkm-genome py-stevedore time +landsfcutil py-cheetah3 py-stomp-py timedatex +lanl-cmake-modules py-chemfiles py-stopit timemory +lapackpp py-chemiscope py-storm timew +last py-cheroot py-stratify tini +lastz py-cherrypy py-strawberryfields tinker +laszip py-chex py-streamlit tiny-tensor-compiler +latex2html py-choreographer py-stringzilla tinycbor +latte py-chronyk py-striprtf tinygltf +launchmon py-ci-info py-stsci-distutils tinyobjloader +laynii py-ci-sdr py-stui tinyxml +lazygit py-cig-pythia py-submitit tinyxml2 +lazyten py-cinema-lib py-subrosa tioga +lbann py-cinemasci py-subword-nmt tippecanoe +lbfgspp py-circus py-supermercado tiptop +lbxproxy py-citeproc-py py-superqt tiramisu +lc-framework py-clarabel py-supervisor tix +lcals py-clean-text py-svgpath tixi +lcc py-cleo py-svgpathtools tk +lcgenv py-click py-svgutils tkrzw +lci py-click-didyoumean py-svgwrite tl-expected +lcio py-click-option-group py-swagger-spec-validator tldd +lcms py-click-plugins py-symengine tmalign +lcov py-click-repl py-symfit tmhmm +ldak py-cligj py-sympy tmscore +ldc py-clikit py-syned tmux +ldc-bootstrap py-climate py-sysrsync tnftp +ldsc py-climax py-systemd-python tofu-ls +lean4 py-clint py-tabledata tomcat +legion py-clip-anytorch py-tables toml-f +lemon py-clipboard py-tabulate toml11 +leptonica py-cloudauthz py-tatsu tomlplusplus +lerc py-cloudbridge py-tblib topaz +less py-cloudpathlib py-tbparse topaz-3dem +lesstif py-cloudpickle py-tcolorpy topcom +leveldb py-clustershell py-tempita tophat +lfortran py-cma py-templateflow torch-scatter +lftp py-cmaes py-tempora torque +lhapdf py-cmake-format py-tenacity totalview +lhapdf5 py-cmake-parser py-tensorboard toybox +lhapdfsets py-cmocean py-tensorboard-data-server tpm2-tss +libabigail py-cmseq py-tensorboard-plugin-wit tracer +libaec py-cmsml py-tensorboardx tracy +libaio py-cmyt py-tensorflow tracy-client +libao py-coapthon3 py-tensorflow-datasets tramonto +libapplewm py-coca-pytorch py-tensorflow-estimator transabyss +libapreq2 py-coclust py-tensorflow-hub transdecoder +libarchive py-codebasin py-tensorflow-metadata transferbench +libasr py-codecarbon py-tensorflow-probability transposome +libassuan py-codechecker py-tensorly transrate +libatasmart py-codepy py-tensorstore transset +libatomic-ops py-codespell py-termcolor trapproto +libavif py-coherent-licensed py-termgraph tree +libbacktrace py-coilmq py-terminado tree-sitter +libbeagle py-colabtools py-terminaltables treelite +libbeato py-colorama py-tern treesub +libbeef py-colorcet py-tesorter trexio +libbigwig py-colorclass py-testfixtures trf +libbinio py-colored py-testinfra triangle +libblastrampoline py-colored-traceback py-testpath trident +libbsd py-coloredlogs py-testrepository trilinos +libbson py-colorful py-testresources trilinos-catalyst-ioss-adapter +libbytesize py-colorio py-testscenarios trimal +libcanberra py-colorlog py-testtools trimgalore +libcap py-colorlover py-tetoolkit trimmomatic +libcap-ng py-colormath py-text-unidecode trinity +libcatalyst py-colorpy py-textblob trinotate +libceed py-colorspacious py-texttable trivy +libcerf py-colossalai py-textual trnascan-se +libcgroup py-colour py-textual-fspicker trng +libcifpp py-comm py-textual-plotext trompeloeil +libcint py-common py-textwrap3 truchas +libcircle py-commonmark py-textx tskit +libconfig py-conan py-tf-keras tsne-cuda +libconfuse py-conda-inject py-tf2onnx tulip +libcroco py-conda-souschef py-tfdlpack tumbler +libctl py-confection py-theano turbine +libcudf py-configargparse py-thewalrus turbomole +libcuml py-configobj py-thinc turbovnc +libcumlprims py-configparser py-thop turnserver +libcxi py-configspace py-threadpoolctl twm +libcxxwrap-julia py-confluent-kafka py-throttler tycho2 +libcyaml py-connectionpool py-tidynamics typescript +libdaemon py-consolekit py-tifffile typhon +libdap4 py-constantly py-tiktoken typhonio +libdatrie py-contextily py-tilelang typos +libdc1394 py-contextlib2 py-timezonefinder typst +libde265 py-contexttimer py-timm ucc +libdeflate py-continuum py-tinyarray uchardet +libdicom py-contourpy py-tinycss2 ucsc-bedclip +libdisplay-info py-contrib py-tinydb ucsc-bedgraphtobigwig +libdistributed py-control py-tinyrecord ucx +libdivsufsort py-convertdate py-tld udunits +libdmx py-convokit py-tldextract ufo-core +libdrm py-cookiecutter py-tmtools ufo-filters +libdwarf py-coolname py-tokenize-rt ufs-utils +libeatmydata py-copulas py-tokenizers ufs-weather-model +libecpint py-corner py-toml uftrace +libedit py-correctionlib py-tomli umap +libefence py-corrfunc py-tomli-w umesimd +libelf py-counter py-tomlkit umoci +libemos py-courlan py-tomopy umpire +libepoxy py-cov-core py-toolz unblur +libestr py-coverage py-topiary-asr uncrustify +libev py-coveralls py-toposort unibilium +libevdev py-cppheaderparser py-torch unifdef +libevent py-cppy py-torch-c-dlpack-ext unifyfs +libevpath py-cramjam py-torch-cluster unigen +libexif py-crashtest py-torch-fidelity unison +libfabric py-crc32c py-torch-geometric units +libfastcommon py-crcmod py-torch-harmonics units-llnl +libfastjson py-croniter py-torch-nvidia-apex unittest-cpp +libffi py-crossmap py-torch-scatter universal +libffs py-cryolobm py-torch-sparse universal-ctags +libfirefly py-cryptography py-torch-spex unixodbc +libfive py-css-parser py-torch-spline-conv unqlite +libflame py-cssselect py-torchaudio unrar +libfms py-cssselect2 py-torchbenchmark unuran +libfontenc py-cssutils py-torchdata unzip +libfort py-csvkit py-torchdiffeq upcxx +libfs py-ctgan py-torchfile upp +libftdi py-cuda-bindings py-torchgeo uqtk +libfuse py-cuda-core py-torchmeta uriparser +libfyaml py-cuda-pathfinder py-torchmetrics usalign +libgain py-cudf py-torchseg usbutils +libgcrypt py-cufflinks py-torchsummary usearch +libgd py-cuml py-torchtext userspace-rcu +libgdsii py-cupy py-torchtoolbox ut +libgee py-current py-torchvision utf8cpp +libgeopm py-currentscape py-tornado utf8proc +libgeopmd py-curryreader py-tox uthash +libgeotiff py-curvlinops-for-pytorch py-toyplot util-linux +libgff py-custodian py-toytree util-linux-uuid +libgit2 py-custom-inherit py-tpot util-macros +libgit2-glib py-cutadapt py-tqdm uvw +libgpg-error py-cvxopt py-traceback2 uwtools +libgpiod py-cvxpy py-trafilatura vacuumms +libgpuarray py-cwl-upgrader py-trainax vala +libgridxc py-cwl-utils py-traitlets valgrind +libgssglue py-cwltool py-traits valijson +libgta py-cx-oracle py-traitsui vampirtrace +libgtextutils py-cycler py-traittypes vapor +libgtop py-cykhash py-trame vardictjava +libgudev py-cylc-flow py-trame-client variorum +libhandy py-cylc-rose py-trame-common varnish-cache +libharu py-cylp py-trame-server varscan +libhbaapi py-cymem py-trame-vtk vasp +libheif py-cyordereddict py-trame-vuetify vbfnlo +libhio py-cython py-transformer-engine vbz-compression +libhugetlbfs py-cython-bbox py-transformers vc +libiberty py-cyvcf2 py-transforms3d vcftools +libibumad py-d2to1 py-transonic vcsh +libical py-dace py-tree vde +libicd py-dacite py-tree-math vdt +libice py-dadi py-tree-sitter veccore +libiconv py-dalib py-tree-sitter-c vecgeom +libid3tag py-damask py-treehash veclibfort +libidl py-darshan py-treelib vecmem +libidn py-dasbus py-triangle vectorclass-version2 +libidn2 py-dash py-trieregex vegas2 +libimagequant py-dash-bootstrap-components py-trimesh velero +libimobiledevice py-dash-svg py-triton veloc +libinih py-dask py-trl velvet +libint py-dask-awkward py-trojanzoo-sphinx-theme velvetoptimiser +libisal py-dask-expr py-trove-classifiers vep +libiscsi py-dask-glm py-trx-python vep-cache +libjpeg py-dask-histogram py-tuiview verdict +libjpeg-turbo py-dask-jobqueue py-tuspy verible +libjson py-dask-ml py-tuswsgi verilator +libjwt py-dask-mpi py-tweedledum verrou +libjxl py-dask-sphinx-theme py-twine vesta +libkcapi py-databricks-cli py-twisted vfkit +libkml py-dataclasses py-ty vgm +libksba py-dataclasses-json py-typed-ast videoproto +liblas py-datacube py-typeguard viennarna +liblbfgs py-datalad py-typepy viewres +liblbxutil py-datalad-container py-typer vifi +libleidenalg py-datalad-deprecated py-types-dataclasses vigra +liblockfile py-datalad-hirni py-types-geopandas vim +liblognorm py-datalad-metadata-model py-types-pkg-resources vir-simd +liblouis py-datalad-metalad py-types-psutil virtualgl +libluv py-datalad-neuroimaging py-types-python-dateutil visit +liblzf py-datalad-webapp py-types-pytz visit-cgns +libmacaroons py-dataproperty py-types-pyyaml visit-ffp +libmad py-datasets py-types-requests visit-mfem +libmatheval py-datashader py-types-setuptools visit-silo +libmaus2 py-datatrove py-types-shapely visit-unv +libmaxminddb py-dateparser py-types-tqdm viskores +libmbim py-dateutils py-types-typed-ast vite +libmcfp py-datrie py-types-urllib3 vizglow +libmcrypt py-dbf py-typesentry vmatch +libmd py-dbfread py-typeshed-client vmc +libmesh py-dcm2bids py-typing-extensions vmd +libmetalink py-dcmstack py-typing-inspect volk +libmetatensor py-deap py-typing-inspection voms +libmetatensor-torch py-debtcollector py-typish voropp +libmetatomic-torch py-debugpy py-tzdata votca +libmicrodns py-decorator py-tzlocal vpfft +libmicrohttpd py-deepdiff py-ubiquerg vpic +libmmtf-cpp py-deepecho py-uc-micro-py vsearch +libmng py-deephyper py-ucsf-pyem vsftpd +libmnl py-deepmerge py-ucx-py vt +libmo-unpack py-deepsig-biocomp py-uhi vtable-dumper +libmodbus py-deepspeed py-ujson vtk +libmolgrid py-deeptools py-ultralytics vtk-h +libmonitor py-deeptoolsintervals py-umalqurra vtk-m +libmpdclient py-defusedxml py-umap-learn vvtest +libmypaint py-deisa py-umi-tools w3emc +libnbc py-deisa-core py-uncertainties w3m +libndp py-deisa-dask py-uncertainty-toolbox w3nco +libnet py-demjson py-unfoldnd wannier90 +libnetfilter-conntrack py-dendropy py-unicycler warpx +libnetfilter-cthelper py-deprecat py-unidecode wasi-sdk-prebuilt +libnetfilter-cttimeout py-deprecated py-unittest2py3k watch +libnetfilter-queue py-deprecation py-universal-pathlib wayland +libnetworkit py-deprecation-alias py-unshare wayland-protocols +libnfnetlink py-derivative py-unyt wcs +libnfs py-descartes py-update-checker wcslib +libnfsidmap py-devito py-uproot webbench +libnftnl py-devlib py-uproot3 weechat +libnids py-dgl py-uproot3-methods weighttp +libnl py-dh-scikit-optimize py-uqinn wget +libnotify py-diagnostic py-uri-template wgl +libnova py-dict2css py-uritemplate wgrib2 +libnrm py-dictdiffer py-url-normalize wgsim +libnsl py-dictobj py-urllib3 which +libogg py-dill py-urllib3-secure-extra whip +liboldx py-dinosaur py-urwid whizard +libopts py-dipy py-us wi4mpi +libp11 py-dirtyjson py-userpath win-file +libpam py-disbatch py-usgs win-gpg +libpaper py-discover py-utils win-sdk +libpcap py-diskcache py-uv win-wdk +libpciaccess py-dist-meta py-uv-build winbison +libpfm4 py-distance py-uv-dynamic-versioning windowswmproto +libpipeline py-distlib py-uvicorn wiredtiger +libplist py-distributed py-uvloop wireshark +libpmemobj-cpp py-distro py-uvw wise2 +libpng py-django py-uwsgi wonton +libpostal py-dlcpar py-uxarray wordnet +libpressio py-dm-haiku py-validate-pyproject wps +libpressio-adios1 py-dm-tree py-validators wrf +libpressio-adios2 py-dnaio py-vascpy wrf-io +libpressio-dataset py-dnspython py-vcf-kit wrk +libpressio-errorinjector py-docker py-vcrpy wsmancli +libpressio-jit py-dockerpy-creds py-vcstool wt +libpressio-nvcomp py-docket py-vcstools wtdbg2 +libpressio-opt py-docopt py-vcversioner wxparaver +libpressio-predict py-docopt-ng py-vector wxpropgrid +libpressio-rmetric py-docstring-parser py-vector-quantize-pytorch wxwidgets +libpressio-sperr py-docstring-to-markdown py-vermin x11perf +libpressio-tools py-docutils py-vermouth-martinize x264 +libpressio-tthresh py-docutils-stubs py-versioneer xabclib +libproxy py-dogpile-cache py-versioneer-518 xalan-c +libpsl py-doit py-versioningit xapian-core +libpsm3 py-dolfinx-mpc py-verspec xauth +libpsml py-dom-toml py-vesin xbacklight +libpspio py-domdf-python-tools py-vine xbae +libpthread-stubs py-dominate py-virtualenv xbiff +libpulsar py-donfig py-virtualenv-clone xbitmaps +libqglviewer py-dotmap py-virtualenvwrapper xbraid +libqrencode py-dotnetcore2 py-visdom xcalc +libquo py-downhill py-vispy xcb-demo +libraqm py-doxypypy py-vl-convert-python xcb-proto +libraw1394 py-dpath py-voluptuous xcb-util +librdkafka py-drep py-vsc-base xcb-util-cursor +librelp py-drmaa py-vsc-install xcb-util-errors +libreproc py-dryscrape py-vsts xcb-util-image +libressl py-duecredit py-vsts-cd-manager xcb-util-keysyms +libristra py-dulwich py-wadler-lindig xcb-util-renderutil +librmm py-dunamai py-waitress xcb-util-wm +librom py-dvc py-walinuxagent xcb-util-xrm +librsb py-dxchange py-wand xcdf +librsvg py-dxfile py-wandb xcfun +librtlsdr py-dynaconf py-warcio xclip +librttopo py-dynim py-warlock xclipboard +libsakura py-earth2mip py-wasabi xclock +libsamplerate py-earthengine-api py-watchdog xcmiscproto +libseccomp py-easybuild-easyblocks py-watchfiles xcmsdb +libsecret py-easybuild-easyconfigs py-waterdynamics xcompmgr +libsegfault py-easybuild-framework py-waves xconsole +libsharp py-eccodes py-wcsaxes xcrysden +libshm py-ecdsa py-wcwidth xcursor-themes +libsigcpp py-ecmwf-opendata py-webargs xcursorgen +libsignal-protocol-c py-ecmwflibs py-webcolors xdbedizzy +libsigsegv py-ecos py-webdataset xdelta +libsixel py-edam-ontology py-webdavclient3 xditview +libslirp py-edffile py-webencodings xdm +libsm py-edfio py-webkit-server xdmf3 +libsmeagol py-edflib-python py-weblogo xdotool +libsndfile py-editables py-webob xdpyinfo +libsodium py-editdistance py-websocket-client xdriinfo +libsolv py-edlib py-websockets xedit +libspatialindex py-eeglabio py-werkzeug xeniumranger +libspatialite py-eerepr py-wesanderson xerces-c +libspiro py-efel py-wget xeus +libsplash py-efficientnet-pytorch py-whatshap xev +libspng py-eg py-wheel xextproto +libssh py-eigenpy py-whenever xeyes +libssh2 py-einconv py-whey xf86bigfontproto +libstdcompat py-einops py-whey-pth xf86dga +libsvm py-elastic-transport py-whichcraft xf86dgaproto +libszip py-elasticsearch py-whoosh xf86driproto +libtar py-elasticsearch-dsl py-widgetsnbextension xf86miscproto +libtasn1 py-elephant py-wids xf86rushproto +libtermkey py-elevation py-wigners xf86vidmodeproto +libthai py-ema-pytorch py-win-unicode-console xfce4-appfinder +libtheora py-email-validator py-wincertstore xfce4-core +libtiff py-embedding-reader py-word2number xfce4-panel +libtirpc py-emcee py-wordcloud xfce4-session +libtlx py-emoji py-workload-automation xfce4-settings +libtomlc99 py-empy py-wradlib xfconf +libtommath py-entrypoints py-wrapt xfd +libtool py-enum-tools py-wsproto xfdesktop +libtorrent py-envisage py-wstool xfindproxy +libtraceevent py-ephem py-wub xfontsel +libtree py-eprosima-fastdds py-wurlitzer xforms +libuecc py-epydoc py-ww xfs +libunistring py-equation py-wxflow xfsdump +libunwind py-equinox py-wxmplot xfsinfo +liburcu py-espresso py-wxpython xfsprogs +liburing py-espressopp py-x-clip xfwm4 +libusb py-et-xmlfile py-x21 xfwp +libusbmuxd py-ete3 py-xanadu-cloud-client xgamma +libuser py-etelemetry py-xarray xgboost +libuv py-etils py-xarray-regrid xgc +libuv-julia py-eval-type-backport py-xarray-tensorstore xhmm +libva py-evaluate py-xattr xhost +libvdwxc py-eventlet py-xcdat xictools +libverto py-evodiff py-xdot xineramaproto +libvips py-ewah-bool-utils py-xenv xinit +libvorbis py-exarl py-xesmf xinput +libvori py-exceptiongroup py-xgboost xios +libvpx py-execnet py-xgcm xkbcomp +libvterm py-executing py-xhistogram xkbdata +libwebp py-exhale py-xlrd xkbevd +libwebsockets py-exifread py-xlsxwriter xkbprint +libwhich py-exodus-bundler py-xlwt xkbutils +libwindowswm py-expandvars py-xmlplain xkeyboard-config +libwmf py-expecttest py-xmlrunner xkill +libwnck py-exponax py-xmltodict xl +libx11 py-extension-helpers py-xonsh xload +libxau py-extras py-xopen xlogo +libxaw py-ez-setup py-xpyb xlsatoms +libxaw3d py-f90nml py-xskillscore xlsclients +libxc py-f90wrap py-xtb xlsfonts +libxcb py-fabric py-xvfbwrapper xmag +libxcomposite py-fabric3 py-xxhash xman +libxcrypt py-fair-esm py-xyzservices xmessage +libxcursor py-fairscale py-yacman xmh +libxcvt py-faker py-yacs xmlf90 +libxdamage py-fakeredis py-yahmm xmlrpc-c +libxdmcp py-falcon py-yajl xmlto +libxevie py-fallocate py-yamlreader xmodmap +libxext py-fastai py-yapf xmore +libxfce4ui py-fastaindex py-yarl xnedit +libxfce4util py-fastapi py-yaspin xnnpack +libxfixes py-fastapi-utils py-yolk3k xolotl +libxfont py-fastavro py-your xorg-cf-files +libxfont2 py-fastcache py-youtube-dl xorg-docs +libxfontcache py-fastcluster py-yq xorg-gtest +libxft py-fastcore py-yt xorg-server +libxi py-fastcov py-yt-dlp xorg-sgml-doctools +libxinerama py-fastdownload py-yt-dlp-ejs xorgproto +libxkbcommon py-fastdtw py-yte xphelloworld +libxkbfile py-fasteners py-ytopt xplor-nih +libxkbui py-fastfold py-ytopt-autotune xplsprinters +libxml2 py-fastjsonschema py-z3-solver xpmem +libxmu py-fastobo py-zarr xpr +libxp py-fastpath py-zc-buildout xprehashprinterlist +libxpm py-fastprogress py-zc-lockfile xprop +libxpresent py-fastremap py-zensical xproperty +libxprintapputil py-fastrlock py-zfit xproto +libxprintutil py-fasttext-numpy2 py-zfit-interface xproxymanagementprotocol +libxrandr py-fasttext-numpy2-wheel py-zfit-physics xqilla +libxrender py-faust-cchardet py-zict xrandr +libxres py-fava py-zipfile-deflate64 xrdb +libxscrnsaver py-fenics-basix py-zipp xrdcl-record +libxshmfence py-fenics-dijitso py-zipstream-new xrefresh +libxslt py-fenics-dolfinx py-zope-event xrootd +libxsmm py-fenics-ffc py-zope-interface xrx +libxstream py-fenics-ffcx py-zstandard xsbench +libxt py-fenics-fiat py-zxcvbn xscope +libxtrap py-fenics-instant pygmo xsd +libxtst py-fenics-ufl pypy xsdk +libxv py-fenics-ufl-legacy pypy-bootstrap xset +libxvmc py-ffmpy pyrefly xsetmode +libxxf86dga py-fief-client pystring xsetpointer +libxxf86misc py-file-magic pythia6 xsetroot +libxxf86vm py-filecheck pythia8 xsimd +libyaml py-filelock python xsm +libyogrt py-filemagic python-venv xstdcmap +libzip py-filetype q-e-sirius xtb +libzmq py-filterpy qb3 xtcdata +liftoff py-find-libpython qca xtensor +liggghts py-findlibs qcachegrind xtensor-blas +lighttpd py-fiona qcat xtensor-python +ligra py-fire qctool xterm +likwid py-fireworks qd xtl +lima py-fiscalyear qemacs xtrans +linaro-forge py-fisher qemu xtrap +linkphase3 py-fits-tools qgis xts +linktest py-fitsio qgraf xv +linsys-v py-fitter qhull xvidtune +linux-external-modules py-fixtures qjson xvinfo +linux-headers py-flake8 qmcpack xwd +linux-pam py-flake8-import-order qmd-progress xwidgets +linux-perf py-flake8-polyfill qnnpack xwininfo +lis py-flaky qorts xwud +listres py-flameprof qoz xxd-standalone +litestream py-flash-attn qpdf xxdiff +lizard py-flask qperf xxhash +lksctp-tools py-flask-babel qrmumps xyce +llama-cpp py-flask-compress qrupdate xz +llhttp py-flask-cors qscintilla yade +llvm py-flask-paginate qt yafyaml +llvm-amdgpu py-flask-restful qt-5compat yajl +llvm-doe py-flask-socketio qt-base yaksa +llvm-openmp py-flask-sqlalchemy qt-creator yambo +llvm-openmp-ompt py-flatbuffers qt-declarative yaml-cpp +lm-sensors py-flatten-dict qt-quick3d yamlfmt +lmbench py-flawfinder qt-quicktimeline yara +lmdb py-flax qt-shadertools yarn +lmod py-flexcache qt-svg yasm +lndir py-flexmock qt-tools ycruncher +lodepng py-flexparser qtgraph ycsb +log4c py-flexx qthreads yoda +log4cplus py-flit qtkeychain yorick +log4cpp py-flit-core qtltools yosys +log4cxx py-flit-scm qualimap yq +logrotate py-flox quandary yyjson +logstash py-flufl-lock quantum-espresso z-checker +loki py-fluiddyn quartz z3 +looptools py-fluidfft qucs zabbix +lordec py-fluidfft-builder quda zerosum +lorene py-fluidfft-fftw quest zfp +lp-solve py-fluidfft-fftwmpi quickjs zfs +lrose-core py-fluidfft-mpi-with-fftw quicksilver ziatest +lrslib py-fluidfft-p3dfft quo-vadis zig +lrzip py-fluidfft-pfft quota zip +lsd py-fluidsim qwt zipkin +lsf py-fluidsim-core qwtpolar zlib +lshw py-flye r zlib-ng +lsof py-fn-py r-a4 zoltan +lsquic py-folium r-a4base zookeeper +lsscsi py-fonttools r-a4classif zookeeper-benchmark +ltp py-ford r-a4core zopfli +ltr-retriever py-formatizer r-a4preproc zoxide +ltrace py-formulaic r-a4reporting zpares +lua py-fortls r-abadata zpp +lua-bit32 py-fortran-language-server r-abaenrichment zsh +lua-bitlib py-fortranformat r-abind zstd +lua-ffi py-fparser r-absseq zstr +lua-lpeg py-fprettify r-acde zuo +lua-luafilesystem py-fqdn r-acepack zycore-c +lua-luajit py-fracridge r-acgh zydis +lua-luajit-openresty py-fraction r-acme zziplib +lua-luaposix py-freetype-py r-ada +==> 8899 packages diff --git a/outputs/basics/mirror.out b/outputs/basics/mirror.out index 0a69262f8..810c08f8b 100644 --- a/outputs/basics/mirror.out +++ b/outputs/basics/mirror.out @@ -1,12 +1 @@ -$ spack mirror add tutorial /mirror -$ spack buildcache keys --install --trust -==> Fetching file:///mirror/blobs/sha256/f6/f6ea4378846cd46ab23fc727c20afc772f03c83a8b3b57b275f511f196d6b9d9 - [100%] 56.00 B @ 407.8 KB/s -==> Fetching file:///mirror/blobs/sha256/e6/e6b951d7df78889b27537f245504b97a6d211a2ae023fe9922a4beb51238a35c - [100%] 10.43 KB @ 177.7 MB/s -gpg: key A8E0CA3C1C2ADA2F: 7 signatures not checked due to missing keys -gpg: key A8E0CA3C1C2ADA2F: public key "Spack Project Official Binaries " imported -gpg: Total number processed: 1 -gpg: imported: 1 -gpg: no ultimately trusted keys found -gpg: inserting ownertrust of 6 +$ spack mirror add --unsigned tutorial /mirror diff --git a/outputs/basics/spec-zziplib.out b/outputs/basics/spec-zziplib.out index 17ee245c1..a45b3e6ab 100644 --- a/outputs/basics/spec-zziplib.out +++ b/outputs/basics/spec-zziplib.out @@ -1,67 +1,74 @@ -$ spack spec zziplib %gcc@12 - - zziplib@0.13.78~ipo build_system=cmake build_type=Release generator=make platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^cmake@3.31.9~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - ^curl@8.15.0~gssapi~ldap~libidn2~librtmp~libssh~libssh2+nghttp2 build_system=autotools libs:=shared,static tls:=openssl platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 -[+] ^nghttp2@1.48.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^ncurses@6.5-20250705~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 -[+] ^compiler-wrapper@1.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 - - ^coreutils@9.7~gprefix build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 -[+] ^gcc@12.3.0~binutils+bootstrap~graphite~mold~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^gawk@5.3.1~nls build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^libsigsegv@2.14 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[e] ^gcc@11.4.0~binutils+bootstrap~graphite~nvptx~piclibs~profiled~strip build_system=autotools build_type=RelWithDebInfo languages:='c,c++,fortran' platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^gcc-runtime@11.4.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^gmp@6.3.0+cxx build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^autoconf@2.72 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^automake@1.16.5 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^m4@1.4.20+sigsegv build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^libtool@2.4.7 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^findutils@4.10.0 build_system=autotools patches:=440b954 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^mpc@1.3.1 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^mpfr@4.2.1 build_system=autotools libs:=shared,static patches:=3ec29a6 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^autoconf-archive@2023.02.20 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^berkeley-db@18.1.40+cxx~docs+stl build_system=autotools patches:=26090f4,b231fcc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^gdbm@1.25 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^texinfo@7.2~xs build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^gettext@0.23.1+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^libxml2@2.13.5~http+pic~python+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^pigz@2.8 build_system=makefile platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^xz@5.6.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^ncurses@6.5-20250705~symlinks+termlib abi=none build_system=autotools patches:=7a351bc platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^zlib-ng@2.0.7 cflags=-O3 +compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 -[+] ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@11.4.0 - - ^gcc-runtime@12.3.0 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 -[e] ^glibc@2.35 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 -[+] ^gmake@4.4.1~guile build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 -[+] ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^python@3.14.0+bz2+ctypes+dbm~debug+libxml2+lzma~optimizations+pic+pyexpat+pythoncmd+readline+shared+sqlite3+ssl~tkinter+uuid+zlib+zstd build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^expat@2.7.3+libbsd build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^gdbm@1.25 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^gettext@0.23.1+bzip2+curses+git~libunistring+libxml2+pic+shared+tar+xz build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^libxml2@2.13.5~http+pic~python+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^pigz@2.8 build_system=makefile platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - ^openssl@3.6.0~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 -[+] ^ca-certificates-mozilla@2025-08-12 build_system=generic platform=linux os=ubuntu22.04 target=x86_64_v3 - - ^readline@8.3 build_system=autotools patches:=21f0a03 platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^sqlite@3.50.4+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^xz@5.6.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^zstd@1.5.7+programs build_system=makefile compression:=none libs:=shared,static platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 - - ^unzip@6.0 build_system=makefile patches:=179330d,24582ff,251d575,3371314,44599c8,47e9def,4e5a081,59c0983,64f6498,74bc961,7d8e5c7,81ca46c,881d2ed,aced0f2,b6f64d7,b7a14c3,c9a863e,ee9e260,f6f6236,f88b9d4,fde8f9d platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@11.4.0 - - ^zip@3.0 build_system=makefile patches:=14dc880,3bc30ba,5068e7c,51f48db,66ab4ce,a92fc4e,a95ed93,b930b69,eb83fc8,f7d0bc4,fa8312c platform=linux os=ubuntu22.04 target=x86_64_v3 %c=gcc@12.3.0 - - ^zlib-ng@2.2.4+compat+new_strategies+opt+pic+shared build_system=autotools platform=linux os=ubuntu22.04 target=x86_64_v3 %c,cxx=gcc@12.3.0 +$ spack spec zziplib %gcc@16 + - zziplib@0.13.80~ipo build_system=cmake build_type=Release generator=make platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^cmake@3.31.11~doc+ncurses+ownlibs~qtgui build_system=generic build_type=Release platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.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@16.1.0 +[b] ^nghttp2@1.67.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[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@16.1.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 +[b] ^openssl@3.6.1~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.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@16.1.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@16.1.0 +[b] ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[+] ^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 +[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 +[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 +[b] ^gmake@4.4.1~guile build_system=generic 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 +[+] ^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] ^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 +[+] ^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] ^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 +[+] ^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 +[+] ^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 +[+] ^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 +[+] ^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@16.1.0 +[+] ^pkgconf@2.5.1 build_system=autotools 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@16.1.0 +[b] ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^expat@2.8.1+libbsd build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.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@16.1.0 +[b] ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 +[b] ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^sqlite@3.53.1+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 +[b] ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.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@16.1.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 +[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@16.1.0 diff --git a/outputs/basics/tcl-zlib-clang.out b/outputs/basics/tcl-zlib-clang.out index b4c3a0591..7a76a127c 100644 --- a/outputs/basics/tcl-zlib-clang.out +++ b/outputs/basics/tcl-zlib-clang.out @@ -1,14 +1,7 @@ $ spack install tcl ^zlib-ng@2.0.7 %clang -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /usr (external llvm-14.0.0-qr2e4rdcbjmj4zokqhkstk3yitfyba7v) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-um7p6trqwrnsqapkzk5la2aqzcqky2dz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/75/751ebd94e77a39c48a0199bb1df7d465bf36581647a13ee274c49026d1dca348 - [100%] 16.12 MB @ 401.3 GB/s -==> Extracting tcl-8.6.17-ibbzvxtmiqzkhacq7f65pyupibc4wvnz from binary cache -==> tcl: Successfully installed tcl-8.6.17-ibbzvxtmiqzkhacq7f65pyupibc4wvnz - Search: 0.00s. Fetch: 0.19s. Install: 1.00s. Extract: 0.94s. Relocate: 0.06s. Total: 1.19s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-ibbzvxtmiqzkhacq7f65pyupibc4wvnz -==> Installing tcl-8.6.17-ibbzvxtmiqzkhacq7f65pyupibc4wvnz [7/7] +[ ] kie72sp zlib-ng@2.0.7 fetching from build cache (0s) +[ ] kie72sp zlib-ng@2.0.7 relocating (0s) +[+] kie72sp zlib-ng@2.0.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-kie72sp5o6k6qp7wr4dg7ccq5xdoadfg (0s) +[ ] 53i7gbs tcl@8.6.17 fetching from build cache (0s) +[ ] 53i7gbs tcl@8.6.17 relocating (0s) +[+] 53i7gbs tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-53i7gbsb6wbhk55vv62jpqudomfmw6f7 (1s) diff --git a/outputs/basics/tcl-zlib-hash.out b/outputs/basics/tcl-zlib-hash.out index 0bee4f8db..e0873bb44 100644 --- a/outputs/basics/tcl-zlib-hash.out +++ b/outputs/basics/tcl-zlib-hash.out @@ -1,14 +1 @@ -$ spack install tcl ^/qla -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -==> Fetching file:///mirror/blobs/sha256/d8/d8d39a8adcbdced977371947a8c04345f31aef23409780c4fa6b6e257f59fc8d - [100%] 16.13 MB @ 401.3 GB/s -==> Extracting tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq from binary cache -==> tcl: Successfully installed tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq - Search: 0.00s. Fetch: 0.19s. Install: 1.01s. Extract: 0.95s. Relocate: 0.06s. Total: 1.20s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq -==> Installing tcl-8.6.17-x74vmgrwo7h4ka3z3idhnde7xnuof3aq [7/7] +$ spack install tcl ^/slh diff --git a/outputs/basics/tcl.out b/outputs/basics/tcl.out index 74fbad416..98d6a1f74 100644 --- a/outputs/basics/tcl.out +++ b/outputs/basics/tcl.out @@ -1,20 +1,4 @@ $ spack install tcl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/ff/ffb2fabc060249fff7e2b34e57cd6de403b72025a1e78dcaed55ddec9e8f2fd1 - [100%] 220.69 KB @ 535.1 MB/s -==> Extracting zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd from binary cache -==> zlib-ng: Successfully installed zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd - Search: 0.00s. Fetch: 0.17s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.22s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd -==> Installing zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd [6/7] -==> Fetching file:///mirror/blobs/sha256/00/002f82b15e261bc3b23cb8fb003b2f8a83b267bc52bbd2061e1ad67e09183a73 - [100%] 16.13 MB @ 401.3 GB/s -==> Extracting tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 from binary cache -==> tcl: Successfully installed tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 - Search: 0.00s. Fetch: 0.03s. Install: 0.98s. Extract: 0.92s. Relocate: 0.06s. Total: 1.01s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 -==> Installing tcl-8.6.17-tsq4fjjw2p7oq6xiondqh232336zyrf4 [7/7] +[ ] jmv6sxq tcl@8.6.17 fetching from build cache (0s) +[ ] jmv6sxq tcl@8.6.17 relocating (0s) +[+] jmv6sxq tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-jmv6sxqk3p4ykp5vh7jl6i5na4vfr46e (1s) diff --git a/outputs/basics/trilinos-hdf5.out b/outputs/basics/trilinos-hdf5.out index fc77c3f6e..b99d8bcd6 100644 --- a/outputs/basics/trilinos-hdf5.out +++ b/outputs/basics/trilinos-hdf5.out @@ -1,32 +1,4 @@ $ spack install trilinos +hdf5 ^hdf5+hl+mpi ^mpich -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/yaksa-0.4-zuutzfx4dbcn7j3tgnyrw6gt4scz2dpt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-f4qiprwjcd2q3fp63uzgp47f3kw66r5h -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-zk6keshnphcta4rwsmvvexg5e25uqnbd -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-oa4vrqqj43a7pvuq7pyjgnnd3tesfmwk -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.3.1-n2l4ckstgt5elcr2mcrhvxmmixyatazg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-jtps3jq4asjl72kuklwdbg7cfwkgts5d -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-lguldtjks3wogzgqmuuoen2om3tywxr6 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-dmmnd4uqwksrryl6pb4sqaxxo5foevft -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-pmdeyoykxzmvfiruq4gpn4mifwgck6ml -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-4.3.2-amwozyio5q6wv3famb2mkqz3z7l5z5pd -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-gdk3ghc3gh5rpxoztushxjuvto5prlqd -==> Fetching file:///mirror/blobs/sha256/c7/c7ed19feafe0f0046e4f0689facd006014ff8e8744548b4cb1e39b5a9c1fb19e - [100%] 39.02 MB @ 391.3 GB/s -==> Extracting trilinos-16.1.0-k3ozjlurkcq33qpoqses4strvmxtexpe from binary cache -==> trilinos: Successfully installed trilinos-16.1.0-k3ozjlurkcq33qpoqses4strvmxtexpe - Search: 0.00s. Fetch: 0.22s. Install: 1.55s. Extract: 1.38s. Relocate: 0.14s. Total: 1.77s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-16.1.0-k3ozjlurkcq33qpoqses4strvmxtexpe -==> Installing trilinos-16.1.0-k3ozjlurkcq33qpoqses4strvmxtexpe [25/25] +[ ] 3sqhxga trilinos@17.1.1 fetching from build cache (0s) +[ ] 3sqhxga trilinos@17.1.1 relocating (0s) +[+] 3sqhxga trilinos@17.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-17.1.1-3sqhxgauqbdivdlcr6gdh2km37fiky5j (1s) diff --git a/outputs/basics/trilinos.out b/outputs/basics/trilinos.out index 648aedea2..87efe5fee 100644 --- a/outputs/basics/trilinos.out +++ b/outputs/basics/trilinos.out @@ -1,61 +1,13 @@ $ spack install trilinos -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-qlavhjbsgqyboovfvsultjdwzz5nvthw -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-foiizhdg2mc4jdjtuddksbzvr64roxea -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.5-20250705-ncdxq3juvboefpavgmovg5rb5bx76ohz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.4.38-yiij42powrfh2mwjebwiqxmkvinutofr -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.18-yzbm5q6nblzcjccy7kddijqdnkgkxvtp -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-txbwcin227323qmxmg4opnj4r4tvenz4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/nghttp2-1.48.0-ft5kpbdiz6kctcooz4ksam37pskskehg -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/mbedtls-2.28.9-bz3ghzheol2ecbi3vpldgbb3yd7yblle -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-x7t4najic2jb46srjiebkrf55utda3nl -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-kaz756eya6nj3ardls4b6aiaclkaux7i -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20240808-hdzcfgipukcqxsw7hjkksstbbz5otx3x -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-qtepnkrdvqazp3jmfnheapckbemejrhq -==> Fetching file:///mirror/blobs/sha256/d9/d966a88895b095541c290ecfce5555fdfdb74d87d83bef2e08f25cec5c7cbd2f - [100%] 23.97 MB @ 451.2 GB/s -==> Extracting openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt from binary cache -==> openblas: Successfully installed openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt - Search: 0.00s. Fetch: 0.20s. Install: 0.64s. Extract: 0.58s. Relocate: 0.04s. Total: 0.84s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt -==> Installing openblas-0.3.30-qz3ay7bveep7fy2v7vcln2zxc5ajfjxt [18/36] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.6.3-yzaocbs7geczi5d7qyvmqwrxi4r7dvph -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.0-gv7wpik32unrnickoxbgm5iqza572w6s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.13.5-5trxrsws5dig3bf63uc4xzcbsywsqtjo -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libssh2-1.11.1-txa2olxuoxfkv7jdjrdw27djcf6fa5sz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-lfgvgvawnpdxxz7prdfn4vsfgtwruxjc -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-lprginh6npwjirdhmghjqjckaa7ukrri -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.12.2-4hos3725nynk2bsskofvtcmk6pmtcjg4 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/curl-8.15.0-isdtvvdziidtozwacfgtdcv3cukd7uuz -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-0.23.1-cakgj4ntlncc4zsgty5z6sa7f7mwvlt7 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.0.0-yqlblh6p4u6vwmfhtffyrnxyqrliw2jm -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/cmake-3.31.9-ivvor7vdsqvplv65yyfragoxppyfi33t -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.21.3-hnmy4fwwly5s4xifp5roodj6opppwwiu -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.0.0-buin62mintd2cczzj6vsvai45vhpgg6w -==> Fetching file:///mirror/blobs/sha256/51/516c893799325a240194084e2c9ca9e5c4bfd9c246f9262c3f6169f8531e8ca6 - [100%] 61.03 MB @ 877.2 MB/s -==> Extracting kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 from binary cache -==> kokkos: Successfully installed kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 - Search: 0.00s. Fetch: 0.01s. Install: 0.14s. Extract: 0.12s. Relocate: 0.01s. Total: 0.15s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 -==> Installing kokkos-4.5.01-k2pkvic65lggk6lukma2humh6t2axbo6 [32/36] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-9.9p1-cxdcxo5pdxc2nk7domxigdqiygg4757e -==> Fetching file:///mirror/blobs/sha256/4e/4e747077084932d0b9e2f79313978109211fedfe1f695d5d4e5ad6681ec10278 - [100%] 61.16 MB @ 401.0 GB/s -==> Extracting kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght from binary cache -==> kokkos-kernels: Successfully installed kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght - Search: 0.00s. Fetch: 0.01s. Install: 0.19s. Extract: 0.16s. Relocate: 0.01s. Total: 0.20s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght -==> Installing kokkos-kernels-4.5.01-qknxuyj5vbyheego7mbhhwqrooi7kght [34/36] -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.8-tqxbnvoiw3nzds4xypcualamx3cvisln -==> Fetching file:///mirror/blobs/sha256/e8/e8e9738ee974efbf1676f64752e74a7548f6d7a2ef89385f32170c76234007e2 - [100%] 38.92 MB @ 441.4 GB/s -==> Extracting trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv from binary cache -==> trilinos: Successfully installed trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv - Search: 0.00s. Fetch: 0.06s. Install: 1.53s. Extract: 1.35s. Relocate: 0.14s. Total: 1.59s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv -==> Installing trilinos-16.1.0-tj433utqwna4zgloncl5jwlabsqgghcv [36/36] +[ ] 7kdghmr openblas@0.3.33 fetching from build cache (0s) +[ ] kpwomw3 kokkos@5.1.1 fetching from build cache (0s) +[ ] kpwomw3 kokkos@5.1.1 relocating (0s) +[ ] 7kdghmr openblas@0.3.33 relocating (0s) +[+] kpwomw3 kokkos@5.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-5.1.1-kpwomw3oxg75uzjlwi2j62ncy7uq356m (0s) +[ ] 5zilkuz kokkos-kernels@5.1.1 fetching from build cache (0s) +[ ] 5zilkuz kokkos-kernels@5.1.1 relocating (0s) +[+] 7kdghmr openblas@0.3.33 /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.33-7kdghmrs2gv3hijtczxgksuak43u6vsh (0s) +[+] 5zilkuz kokkos-kernels@5.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-5.1.1-5zilkuzvnsxj6abvzudjlshewffiatse (0s) +[ ] u43pchx trilinos@17.1.1 fetching from build cache (0s) +[ ] u43pchx trilinos@17.1.1 relocating (1s) +[+] u43pchx trilinos@17.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-17.1.1-u43pchxcfkd7syptwimxl4lozm5jmy2h (1s) diff --git a/outputs/basics/uninstall-ambiguous.out b/outputs/basics/uninstall-ambiguous.out index 6f769d0f8..50149ce63 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 2f30f02eb..4c243b25e 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 04242f6b3..2fe0224e5 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 70b074dcf..a0d15ee32 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 22c9e6b33..02b34507a 100644 --- a/outputs/basics/uninstall-zlib.out +++ b/outputs/basics/uninstall-zlib.out @@ -1,2 +1,43 @@ -$ 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 +Script started on 2026-06-16 15:42:15+00:00 [COMMAND="spack uninstall -y zlib-ng %gcc@14" TERM="xterm" TTY="/dev/pts/0" COLUMNS="-1" LINES="-1"] +==> Error: zlib-ng %gcc@14 matches multiple packages: + + -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- + z7qz2gt zlib-ng@2.3.3 slhcf4i zlib-ng@2.3.3 + +==> Error: You can either: + a) use a more specific spec, or + b) specify the spec by its hash (e.g. `spack uninstall /hash`), or + c) use `spack uninstall --all` to uninstall ALL matching specs. + + +Script done on 2026-06-16 15:42:16+00:00 [COMMAND_EXIT_CODE="1"] +$ spack uninstall -y zlib-ng %gcc@14 +Script started on 2026-06-16 15:49:17+00:00 [COMMAND="spack uninstall -y zlib-ng %gcc@14" TERM="xterm" TTY="/dev/pts/0" COLUMNS="201" LINES="55"] +==> Error: zlib-ng %gcc@14 matches multiple packages: + + -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- + z7qz2gt zlib-ng@2.3.3 slhcf4i zlib-ng@2.3.3 + +==> Error: You can either: + a) use a more specific spec, or + b) specify the spec by its hash (e.g. `spack uninstall /hash`), or + c) use `spack uninstall --all` to uninstall ALL matching specs. + + +Script done on 2026-06-16 15:49:18+00:00 [COMMAND_EXIT_CODE="1"] +$ spack uninstall -y zlib-ng %gcc@14 +Script started on 2026-06-16 16:13:46+00:00 [COMMAND="spack uninstall -y zlib-ng %gcc@14" TERM="xterm" TTY="/dev/pts/0" COLUMNS="201" LINES="55"] +==> Refusing to uninstall the following specs + -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- + slhcf4i zlib-ng@2.3.3 + +==> The following dependents are still installed: + -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- + jmv6sxq tcl@8.6.17 + +==> Error: There are still dependents. + use `spack uninstall --dependents` to remove dependents too + use `spack uninstall --force` to override + +Script done on 2026-06-16 16:13:46+00:00 [COMMAND_EXIT_CODE="1"] diff --git a/outputs/basics/versions-zlib.out b/outputs/basics/versions-zlib.out index 6a47807a6..21cc94a3a 100644 --- a/outputs/basics/versions-zlib.out +++ b/outputs/basics/versions-zlib.out @@ -1,5 +1,5 @@ $ spack versions zlib-ng ==> Safe versions (already checksummed): - 2.2.4 2.2.3 2.2.2 2.2.1 2.1.7 2.1.6 2.1.5 2.1.4 2.0.7 2.0.0 + 2.3.3 2.3.2 2.2.5 2.2.4 2.2.3 2.2.2 2.2.1 2.1.7 2.1.6 2.1.5 2.1.4 2.0.7 2.0.0 ==> Remote versions (not yet checksummed): - 2.3.0-rc2 2.3.0-rc1 2.2.5 2.2.0 2.1.8 + 2.3.1 2.3.0-rc2 2.3.0-rc1 2.1.8 diff --git a/outputs/basics/zlib-2.0.7.out b/outputs/basics/zlib-2.0.7.out index 89d6a1fc2..e2778da7d 100644 --- a/outputs/basics/zlib-2.0.7.out +++ b/outputs/basics/zlib-2.0.7.out @@ -1,13 +1,8 @@ $ spack install zlib-ng@2.0.7 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /usr (external llvm-14.0.0-qr2e4rdcbjmj4zokqhkstk3yitfyba7v) -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Fetching file:///mirror/blobs/sha256/20/2085c20a1109b030f20fc22fcedf9d26221e06992c78cb0741bda2908f371e53 - [100%] 196.30 KB @ 499.6 MB/s -==> Extracting zlib-ng-2.0.7-um7p6trqwrnsqapkzk5la2aqzcqky2dz from binary cache -==> zlib-ng: Successfully installed zlib-ng-2.0.7-um7p6trqwrnsqapkzk5la2aqzcqky2dz - Search: 0.00s. Fetch: 0.17s. Install: 0.05s. Extract: 0.04s. Relocate: 0.01s. Total: 0.22s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-um7p6trqwrnsqapkzk5la2aqzcqky2dz -==> Installing zlib-ng-2.0.7-um7p6trqwrnsqapkzk5la2aqzcqky2dz [6/6] +[e] yc4n2pp glibc@2.43 /usr (0s) +[ ] xm76mt3 gcc-runtime@15.2.0 fetching from build cache (0s) +[ ] xm76mt3 gcc-runtime@15.2.0 relocating (0s) +[+] xm76mt3 gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-xm76mt35elmqwrjdlibzhngqkiqnyq4p (1s) +[ ] 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-clang.out b/outputs/basics/zlib-clang.out index 4a177df67..ff8bc199e 100644 --- a/outputs/basics/zlib-clang.out +++ b/outputs/basics/zlib-clang.out @@ -1,28 +1,4 @@ $ spack install zlib-ng %clang -==> Fetching file:///mirror/blobs/sha256/26/26ccb2dd448159527529cfe52ba032f5fceecec872ff580cfed6fde523663934 - [100%] 351.34 KB @ 689.9 MB/s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -[+] /usr (external gcc-11.4.0-ml7cem5pfeoluzbhb7jsiisemvoauaz5) -[+] /usr (external llvm-14.0.0-qr2e4rdcbjmj4zokqhkstk3yitfyba7v) -==> Fetching file:///mirror/blobs/sha256/cc/cc94a1eb6710d8556df7f38940e55a2496551b567ad5cbc6c1be80d24ad02c99 - [100%] 10.48 MB @ 401.3 GB/s -==> Extracting gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh from binary cache -==> gcc-runtime: Successfully installed gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh - Search: 0.00s. Fetch: 0.18s. Install: 0.26s. Extract: 0.23s. Relocate: 0.03s. Total: 0.44s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh -==> Installing gcc-runtime-11.4.0-nokfxvaa4aklxfhoymvz6hlvbqw3kwnh [5/7] -==> Fetching file:///mirror/blobs/sha256/fd/fd27cb50518ba7449532809cf527a065fd7a84fae10042d1aa53b929899cc007 - [100%] 462.31 KB @ 737.6 MB/s -==> Extracting gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma from binary cache -==> gmake: Successfully installed gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma -==> Installing gmake-4.4.1-4obn7cgqfwoxyvmnpeedud63bsjhoqma [6/7] -==> Fetching file:///mirror/blobs/sha256/be/be279bb783c2fc29d9943d4fa11aab2704e9c0114c91f2aabd882d16b36fa2c6 - [100%] 240.79 KB @ 627.3 MB/s -==> Extracting zlib-ng-2.2.4-ct2r7xmldphegkos5g43flc6lm2nltcd from binary cache -==> zlib-ng: Successfully installed zlib-ng-2.2.4-ct2r7xmldphegkos5g43flc6lm2nltcd - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.02s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-ct2r7xmldphegkos5g43flc6lm2nltcd -==> Installing zlib-ng-2.2.4-ct2r7xmldphegkos5g43flc6lm2nltcd [7/7] +[ ] 5dji3nx zlib-ng@2.3.3 fetching from build cache (0s) +[ ] 5dji3nx zlib-ng@2.3.3 relocating (0s) +[+] 5dji3nx zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-5dji3nxkz53p6yf6icvu3rnyhz66mg7d (0s) diff --git a/outputs/basics/zlib-gcc-10.out b/outputs/basics/zlib-gcc-10.out index 8f5cae939..db37d5406 100644 --- a/outputs/basics/zlib-gcc-10.out +++ b/outputs/basics/zlib-gcc-10.out @@ -1,25 +1,4 @@ -$ spack install zlib-ng %gcc@10 -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.0-ntccuj2fi3y7asqifeq3i4iylrbxakw2 -[+] /usr (external gcc-10.5.0-ntkvysydhiybjhukdyndi7mf7nhsv4u7) -[+] /usr (external glibc-2.35-qg7qyazcn2fwrck5vgr3mxq3i4uxkhlo) -==> Fetching file:///mirror/blobs/sha256/74/7451c122b920fb458060a9b2ad9c19f599c210674ebe10f79357eb4e15c01f31 - [100%] 10.48 MB @ 371.2 GB/s -==> Extracting gcc-runtime-10.5.0-ahapkrsgqx4wwndxh4ix2xzrcbotpvnp from binary cache -==> gcc-runtime: Successfully installed gcc-runtime-10.5.0-ahapkrsgqx4wwndxh4ix2xzrcbotpvnp - Search: 0.00s. Fetch: 0.18s. Install: 0.26s. Extract: 0.23s. Relocate: 0.03s. Total: 0.44s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-10.5.0-ahapkrsgqx4wwndxh4ix2xzrcbotpvnp -==> Installing gcc-runtime-10.5.0-ahapkrsgqx4wwndxh4ix2xzrcbotpvnp [4/6] -==> Fetching file:///mirror/blobs/sha256/62/62350cfe0247aa8ce61f72a6b0eb8aaf19d1504123cf18236fc1ba81dc1f33a6 - [100%] 458.45 KB @ 786.8 MB/s -==> Extracting gmake-4.4.1-ufbescpw7rn7y7qxjx5yl776iojz3y5n from binary cache -==> gmake: Successfully installed gmake-4.4.1-ufbescpw7rn7y7qxjx5yl776iojz3y5n - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-ufbescpw7rn7y7qxjx5yl776iojz3y5n -==> Installing gmake-4.4.1-ufbescpw7rn7y7qxjx5yl776iojz3y5n [5/6] -==> Fetching file:///mirror/blobs/sha256/dd/ddb82d46c5ee682bda269c4a781010f0374102750dbfe10d8fb9d5f52f317380 - [100%] 221.37 KB @ 574.9 MB/s -==> Extracting zlib-ng-2.2.4-updxeyeustk7kqztd67jvjv4umdxjy7g from binary cache -==> zlib-ng: Successfully installed zlib-ng-2.2.4-updxeyeustk7kqztd67jvjv4umdxjy7g - Search: 0.00s. Fetch: 0.01s. Install: 0.02s. Extract: 0.01s. Relocate: 0.01s. Total: 0.03s -[+] /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.2.4-updxeyeustk7kqztd67jvjv4umdxjy7g -==> Installing zlib-ng-2.2.4-updxeyeustk7kqztd67jvjv4umdxjy7g [6/6] +$ spack install zlib-ng %gcc@14 +[ ] slhcf4i zlib-ng@2.3.3 fetching from build cache (0s) +[ ] slhcf4i zlib-ng@2.3.3 relocating (0s) +[+] slhcf4i zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-slhcf4ikhifycngjjlz2hyjkx24qi5md (0s) diff --git a/tutorial_basics.rst b/tutorial_basics.rst index 607df6848..b51e500c5 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -24,7 +24,7 @@ Next, we will demonstrate how to use the ``spack find`` command to view installe 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: @@ -33,7 +33,7 @@ Installing 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.2. +To get started, we simply clone the Spack repository and check out the latest v1.2 release: .. literalinclude:: outputs/basics/clone.out :language: console @@ -82,7 +82,7 @@ Let's go ahead and install ``gmake``: .. literalinclude:: outputs/basics/gmake.out :language: spec -You will see Spack installed ``gmake``, ``gcc``, ``gcc-runtime``, and ``glibc``. +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 tutorial, we'll ignore these components and focus on the packages explicitly installed and their listed dependencies. @@ -412,7 +412,7 @@ 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 .. literalinclude:: outputs/basics/compilers-2.out From 87c35936d13e4d81170e50a527191c34e92bb0cd Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 20:52:01 +0200 Subject: [PATCH 13/26] Fix "Installing Packages" --- tutorial_basics.rst | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/tutorial_basics.rst b/tutorial_basics.rst index b51e500c5..b95975842 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -70,43 +70,45 @@ For example, let's view all available Python packages. Installing Packages ------------------- -Installing a package with Spack is very simple. -To install a software package, type: +Installing a package 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 -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 tutorial, 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. -In Spack, compilers are treated as ordinary package dependencies rather than a special case: ``gmake`` depends on a compiler just as it depends on any other package. -The one convenience Spack adds is that it automatically searches the ``PATH`` environment variable for installed compilers, so those already on the system are ready to use. -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.** +We just built ``gmake`` from source. +To speed up the rest of the tutorial, let's add a binary cache: -Spack can install software either from source or from a binary cache. -Since we just installed our first package from source, let's set up a faster binary cache for the rest of the tutorial. -Packages in the binary cache are signed with GPG for security. -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. +.. Its packages are signed with GPG, so enabling it takes two steps: telling Spack where the cache lives and trusting the key the binaries were signed with. .. 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 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. --------------- The Spec Syntax From 31d604424f590ae19514f414dfd335004f4caa93 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 22:37:27 +0200 Subject: [PATCH 14/26] Fix "Transitive Dependencies" --- outputs/basics.sh | 20 +- outputs/basics/clone.out | 4 +- outputs/basics/gmake.out | 4 +- outputs/basics/hdf5-hl-mpi.out | 2 +- outputs/basics/hdf5-no-mpi.out | 4 +- outputs/basics/hdf5.out | 38 +- outputs/basics/install-gcc-16.out | 12 +- outputs/basics/list-py.out | 1424 +++--- outputs/basics/list.out | 4452 ++++++++--------- outputs/basics/tcl-zlib-hash.out | 1 - outputs/basics/trilinos.out | 2 +- outputs/basics/zlib-2.0.7.out | 2 +- .../{zlib-gcc-10.out => zlib-gcc-14.out} | 0 tutorial_basics.rst | 88 +- 14 files changed, 3035 insertions(+), 3018 deletions(-) delete mode 100644 outputs/basics/tcl-zlib-hash.out rename outputs/basics/{zlib-gcc-10.out => zlib-gcc-14.out} (100%) diff --git a/outputs/basics.sh b/outputs/basics.sh index 000d723c0..cfad950dc 100755 --- a/outputs/basics.sh +++ b/outputs/basics.sh @@ -37,26 +37,28 @@ example basics/mirror "spack mirror add --unsigned tutorial /mirror" # NOTE: specs reordered (spec-syntax subsections regrouped; querying moved to its # own section after the spec syntax; zlib-ng variant examples added; hdf5 moved to -# the virtual-dependencies block). Outputs under outputs/basics/ need regeneration. +# the virtual-dependencies block; spack info added to Variants). Outputs under +# outputs/basics/ need regeneration. example basics/versions-zlib "spack versions zlib-ng" example --tee basics/zlib-2.0.7 "spack install zlib-ng@2.0.7" +example basics/info-zlib "spack info --no-dependencies --no-versions zlib-ng" + example --tee basics/zlib-ipo "spack install zlib-ng +ipo" example --tee basics/zlib-build-type "spack install zlib-ng build_type=Debug" example --tee basics/zlib-clang "spack install zlib-ng %clang" -example --tee basics/zlib-gcc-10 "spack install zlib-ng %gcc@14" - -# Capture the hash now, before installing tcl. Installing tcl pulls a -# zlib-ng@2.3.3 %gcc@14 from the build cache as a dependency, which would otherwise -# make this query ambiguous (matching both the cache dependency and our explicit -# %gcc@14 build above). -zlib_hash=$(spack find --format "{hash:3}" zlib-ng %gcc@14) +example --tee basics/zlib-gcc-14 "spack install zlib-ng %gcc@14" +example basics/spec-tcl "spack spec -l tcl" example --tee basics/tcl "spack install tcl" +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 --tee basics/tcl-zlib-hash "spack install tcl ^/${zlib_hash}" +# Refer to the zlib-ng@2.0.7 %clang build we just installed by its hash. This spec +# is unambiguous (the other zlib-ng@2.0.7 build uses gcc), so the query is safe here. +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/find-ldf "spack find -ldf" diff --git a/outputs/basics/clone.out b/outputs/basics/clone.out index a3479edd0..cee841226 100644 --- a/outputs/basics/clone.out +++ b/outputs/basics/clone.out @@ -3,7 +3,7 @@ Cloning into '/home/spack/spack'... 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 | 12.31 MiB/s, done. +remote:nTotale2411 (delta2326),4reused.1327i(delta8249),/pack-reused 0 (from 0)K +Receiving objects: 100% (2411/2411), 5.48 MiB | 8.24 MiB/s, done. Resolving deltas: 100% (326/326), done. $ cd ~/spack diff --git a/outputs/basics/gmake.out b/outputs/basics/gmake.out index 748b6ecd2..1bca5cb81 100644 --- a/outputs/basics/gmake.out +++ b/outputs/basics/gmake.out @@ -5,9 +5,9 @@ $ spack install gmake [ ] mmywg7x compiler-wrapper@1.1.0 staging (0s) [ ] yhhe2we gcc-runtime@15.2.0 staging (0s) [ ] yhhe2we gcc-runtime@15.2.0 install (0s) +[+] yhhe2we gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-yhhe2wecmh7n4qwwmqxictetytv2m6wo (0s) [ ] mmywg7x compiler-wrapper@1.1.0 install (0s) [+] mmywg7x compiler-wrapper@1.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.1.0-mmywg7x4myxvxepmqe5go3ppxirmuijp (0s) -[+] 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 (1s) -[+] cdyuto2 gmake@4.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-cdyuto2vcd73fdknitpbrk3mofaa6hw5 (9s) +[+] cdyuto2 gmake@4.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-cdyuto2vcd73fdknitpbrk3mofaa6hw5 (8s) diff --git a/outputs/basics/hdf5-hl-mpi.out b/outputs/basics/hdf5-hl-mpi.out index 79bf291ef..853e2ac20 100644 --- a/outputs/basics/hdf5-hl-mpi.out +++ b/outputs/basics/hdf5-hl-mpi.out @@ -4,7 +4,7 @@ $ spack install hdf5+hl+mpi ^mpich [+] itb4a2s libfabric@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.5.1-itb4a2swgfzelii4nbzmo3fzdnfq5rhy (0s) [ ] xkilhym mpich@5.0.1 fetching from build cache (0s) [ ] xkilhym mpich@5.0.1 relocating (0s) -[+] xkilhym mpich@5.0.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-5.0.1-xkilhym6dn2n7afhh5dtjskmj5jwjbhm (0s) +[+] 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 (0s) diff --git a/outputs/basics/hdf5-no-mpi.out b/outputs/basics/hdf5-no-mpi.out index 7c5651ba2..55db01c34 100644 --- a/outputs/basics/hdf5-no-mpi.out +++ b/outputs/basics/hdf5-no-mpi.out @@ -1,4 +1,4 @@ $ spack install hdf5~mpi [ ] as6mmcj hdf5@1.14.6 fetching from build cache (0s) -[ ] as6mmcj hdf5@1.14.6 relocating (0s) -[+] as6mmcj hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-as6mmcjwjlgjhglp62wogxim6exfgtvd (0s) +[ ] 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.out b/outputs/basics/hdf5.out index cab55c2fb..72a2a37f4 100644 --- a/outputs/basics/hdf5.out +++ b/outputs/basics/hdf5.out @@ -7,61 +7,61 @@ $ spack install hdf5 [ ] bkzcu2s libxcrypt@4.5.2 fetching from build cache (0s) [ ] hhjyyqy xz@5.8.3 fetching from build cache (0s) [ ] 63aruxk zstd@1.5.7 fetching from build cache (0s) -[ ] vbwvgwx libiconv@1.18 fetching from build cache (0s) [ ] ekvivpv ncurses@6.6 relocating (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) [ ] hhjyyqy xz@5.8.3 relocating (0s) [ ] 2t2useu numactl@2.0.19 fetching from build cache (0s) [ ] 63aruxk zstd@1.5.7 relocating (0s) -[ ] qzkk5ym libpciaccess@0.17 fetching from build cache (0s) [ ] vbwvgwx libiconv@1.18 relocating (0s) -[+] g72d7i3 zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-g72d7i3bvgfmroytbp2d6giv67ymputp (0s) +[ ] qzkk5ym libpciaccess@0.17 fetching from build cache (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) [ ] 2t2useu numactl@2.0.19 relocating (0s) [ ] qzkk5ym libpciaccess@0.17 relocating (0s) [+] yvl6jpi pkgconf@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-yvl6jpilvkgopkrc2aanfhd3z7lz7r3l (0s) -[ ] afklka7 pigz@2.8 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) +[+] cbtgjrh bzip2@1.0.8 /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-cbtgjrhpwivtaewryhbkj6zxuukhoekx (0s) [ ] 33yozp5 openssl@3.6.1 fetching from build cache (0s) [+] 63aruxk zstd@1.5.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-63aruxky3a4xfivh32jt676wmoftlzy6 (0s) -[+] cbtgjrh bzip2@1.0.8 /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-cbtgjrhpwivtaewryhbkj6zxuukhoekx (0s) +[ ] afklka7 pigz@2.8 fetching from build cache (0s) [+] qzkk5ym libpciaccess@0.17 /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-qzkk5ymbu3z37kjhgylrkdy7w3hixzna (0s) -[ ] afklka7 pigz@2.8 relocating (0s) [+] vbwvgwx libiconv@1.18 /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-vbwvgwxvjrccmptlen3ebo555lk5wior (0s) -[ ] 33yozp5 openssl@3.6.1 relocating (0s) +[ ] afklka7 pigz@2.8 relocating (0s) [+] hhjyyqy xz@5.8.3 /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.8.3-hhjyyqygxtpzvdyoddyypk5sfyqdcmqe (0s) +[ ] 33yozp5 openssl@3.6.1 relocating (0s) [+] 2t2useu numactl@2.0.19 /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.19-2t2useutfyn7jozdzlunsc6336q6fcqx (0s) [+] afklka7 pigz@2.8 /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-afklka7uurghkxzfzr2kpku3hq64dp2w (0s) [ ] ujlg2ua libxml2@2.15.3 fetching from build cache (0s) -[ ] f5xe4px tar@1.35 fetching from build cache (0s) [ ] ujlg2ua libxml2@2.15.3 relocating (0s) +[ ] f5xe4px tar@1.35 fetching from build cache (0s) [ ] f5xe4px tar@1.35 relocating (0s) [+] ujlg2ua libxml2@2.15.3 /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.15.3-ujlg2uai6quwrnqjswhpatdam2owxnzh (0s) -[+] 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) +[+] f5xe4px tar@1.35 /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-f5xe4pxaujwc2cs2ppllgloh7gwbkkyd (0s) [ ] oopqoag libevent@2.1.12 fetching from build cache (0s) [ ] oopqoag libevent@2.1.12 relocating (0s) -[+] 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) +[+] ekvivpv ncurses@6.6 /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.6-ekvivpvwxpsfmbydk42j7me3ckftiheo (0s) +[+] oopqoag libevent@2.1.12 /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-oopqoagvk4zhptmzymsbim2dmnfy37zf (0s) +[ ] ujctyey hwloc@2.13.0 fetching from build cache (0s) [ ] sle3ix4 gettext@1.0 fetching from build cache (0s) [ ] uwyh3xy libedit@3.1-20251016 fetching from build cache (0s) -[ ] ujctyey hwloc@2.13.0 fetching from build cache (0s) -[ ] uwyh3xy libedit@3.1-20251016 relocating (0s) -[ ] sle3ix4 gettext@1.0 relocating (0s) -[ ] ujctyey hwloc@2.13.0 relocating (0s) -[+] uwyh3xy libedit@3.1-20251016 /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20251016-uwyh3xy52rwywtmgrdtwnljgevcnnctj (0s) -[+] ujctyey hwloc@2.13.0 /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.13.0-ujctyeyjzvata7o7oje5nefjmgqabosi (0s) +[ ] ujctyey hwloc@2.13.0 relocating (1s) +[ ] uwyh3xy libedit@3.1-20251016 relocating (1s) +[ ] sle3ix4 gettext@1.0 relocating (1s) +[+] uwyh3xy libedit@3.1-20251016 /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20251016-uwyh3xy52rwywtmgrdtwnljgevcnnctj (1s) +[+] ujctyey hwloc@2.13.0 /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.13.0-ujctyeyjzvata7o7oje5nefjmgqabosi (1s) [ ] ycyqykw pmix@6.1.0 fetching from build cache (0s) [ ] ycyqykw pmix@6.1.0 relocating (0s) [+] ycyqykw pmix@6.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.1.0-ycyqykw634st7ajhnrl2kqnkldgtk3xr (0s) [ ] nldxmxw prrte@4.1.0 fetching from build cache (0s) -[+] sle3ix4 gettext@1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-1.0-sle3ix4nizh2w3uwvaokqlqlotlaexbu (0s) [ ] nldxmxw prrte@4.1.0 relocating (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) -[+] ldqeqfw krb5@1.22.2 /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.22.2-ldqeqfwa76qeegjqhv72by6ayv5xlwae (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 (0s) diff --git a/outputs/basics/install-gcc-16.out b/outputs/basics/install-gcc-16.out index 84639ce34..e85d7a452 100644 --- a/outputs/basics/install-gcc-16.out +++ b/outputs/basics/install-gcc-16.out @@ -5,12 +5,12 @@ $ spack install gcc@16 [ ] cuzgmus binutils@2.46.0 relocating (0s) [+] xpmsy5x gmp@6.3.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-xpmsy5xffenfvl6lc5shb5a5krckrznd (0s) [ ] melg7ga mpfr@4.2.2 fetching from build cache (0s) -[ ] melg7ga mpfr@4.2.2 relocating (0s) -[+] cuzgmus binutils@2.46.0 /home/spack/spack/opt/spack/linux-x86_64_v3/binutils-2.46.0-cuzgmusnboe4pknwnod4jziquvzteeya (0s) -[+] melg7ga mpfr@4.2.2 /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.2-melg7gafkownovvlndh46ljc4nuf5puy (0s) +[ ] melg7ga mpfr@4.2.2 relocating (1s) +[+] 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 (1s) [ ] 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 (1s) -[ ] vlwdxlj gcc@16.1.0 relocating (1s) -[+] vlwdxlj gcc@16.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-16.1.0-vlwdxljzbis42fjrlecvyo4tmuq5eebn (2s) +[ ] vlwdxlj gcc@16.1.0 fetching from build cache (0s) +[ ] vlwdxlj gcc@16.1.0 relocating (0s) +[+] vlwdxlj gcc@16.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-16.1.0-vlwdxljzbis42fjrlecvyo4tmuq5eebn (1s) diff --git a/outputs/basics/list-py.out b/outputs/basics/list-py.out index ea6998573..c9cb022ec 100644 --- a/outputs/basics/list-py.out +++ b/outputs/basics/list-py.out @@ -1,714 +1,715 @@ $ spack list 'py-*' -py-3to2 py-fair-esm py-mysqlclient py-pywin32 -py-4suite-xml py-fairscale py-myst-parser py-pywinpty -py-a2wsgi py-faker py-namex py-pyworld -py-abcpy py-fakeredis py-nanobind py-pyxlsb -py-abipy py-falcon py-nanoget py-pyyaml -py-about-time py-fallocate py-nanomath py-pyyaml-env-tag -py-absl-py py-fastai py-nanoplot py-pyzmq -py-accelerate py-fastaindex py-nanostat py-qdldl -py-accessible-pygments py-fastapi py-nanotime py-qiskit-aer -py-accimage py-fastapi-utils py-nanotron py-qiskit-ibm-provider -py-acme-tiny py-fastavro py-napari py-qiskit-nature -py-acres py-fastcache py-napari-console py-qiskit-terra -py-adal py-fastcluster py-napari-plugin-engine py-qmtest -py-adb-enhanced py-fastcore py-napari-plugin-manager py-qpsolvers -py-addict py-fastcov py-napari-svg py-qpth -py-adios py-fastdownload py-nara-wpe py-qrcode -py-adios4dolfinx py-fastdtw py-narwhals py-qsymm -py-advancedhtmlparser py-fasteners py-natsort py-qtawesome -py-aenum py-fastfold py-nbclassic py-qtconsole -py-affine py-fastjsonschema py-nbclient py-qtpy -py-agate py-fastobo py-nbconvert py-quantiphy -py-agate-dbf py-fastpath py-nbdime py-quantities -py-agate-excel py-fastprogress py-nbformat py-quantum-blackbird -py-agate-sql py-fastremap py-nbmake py-quantum-xir -py-ahpy py-fastrlock py-nbqa py-quart -py-aiobotocore py-fasttext-numpy2 py-nbsphinx py-quast -py-aiocontextvars py-fasttext-numpy2-wheel py-nbstripout py-quaternionic -py-aiodns py-faust-cchardet py-nbval py-qudida -py-aiofiles py-fava py-nc-time-axis py-queryablelist -py-aiohappyeyeballs py-fenics-basix py-ncbi-genome-download py-querystring-parser -py-aiohttp py-fenics-dijitso py-ndg-httpsclient py-questionary -py-aiohttp-cors py-fenics-dolfinx py-ndindex py-qutip -py-aioitertools py-fenics-ffc py-neo py-qutip-qip -py-aiojobs py-fenics-ffcx py-neo4j py-rachis -py-aioredis py-fenics-fiat py-neobolt py-radiant-mlhub -py-aiosignal py-fenics-instant py-neotime py-radical-entk -py-aiosqlite py-fenics-ufl py-neovim-remote py-radical-gtod -py-aiowebdav2 py-fenics-ufl-legacy py-neptune-client py-radical-pilot -py-alabaster py-ffmpy py-nest-asyncio py-radical-saga -py-albucore py-fief-client py-nestle py-radical-utils -py-alembic py-file-magic py-netaddr py-ranger-fm -py-alive-progress py-filecheck py-netcdf4 py-rapidfuzz -py-alpaca-eval py-filelock py-netifaces py-rapidfuzz-capi -py-alpaca-farm py-filemagic py-netket py-rarfile -py-alphafold py-filetype py-netpyne py-rassumfrassum -py-altair py-filterpy py-networkit py-rasterio -py-altgraph py-find-libpython py-networkx py-rasterstats -py-amici py-findlibs py-neuralgcm py-ratelim -py-amityping py-fiona py-neurokit2 py-ratelimiter -py-amplpy py-fire py-neurolab py-raven -py-ampltools py-fireworks py-neurom py-ray -py-amqp py-fiscalyear py-neurora py-rbtools -py-amrex py-fisher py-neurotools py-rdflib -py-angel py-fits-tools py-nexus-sdk py-rdflib-jsonld -py-aniso8601 py-fitsio py-nexusforge py-rdt -py-anndata py-fitter py-nglview py-reacton -py-annexremote py-fixtures py-ngs-tools py-readchar -py-annotated-types py-flake8 py-nh3 py-readme-renderer -py-annoy py-flake8-import-order py-nibabel py-recommonmark -py-ansi2html py-flake8-polyfill py-nilearn py-redis -py-ansible py-flaky py-nipype py-referencing -py-ansimarkup py-flameprof py-nitransforms py-refgenconf -py-ansiwrap py-flash-attn py-niworkflows py-refgenie -py-antimeridian py-flask py-nltk py-regex -py-antipickle py-flask-babel py-node-semver py-regionmask -py-antlr4-python3-runtime py-flask-compress py-nodeenv py-regions -py-antspyx py-flask-cors py-non-regression-test-tools py-reindent -py-anuga py-flask-paginate py-nose py-relion -py-anvio py-flask-restful py-nose-cov py-relion-blush -py-anybadge py-flask-socketio py-nose2 py-relion-classranker -py-anyio py-flask-sqlalchemy py-nosexcover py-repligit -py-anytree py-flatbuffers py-notebook py-reportlab -py-anywidget py-flatten-dict py-notebook-shim py-reportseff -py-apache-libcloud py-flawfinder py-npe2 py-repoze-lru -py-apache-tvm-ffi py-flax py-nptyping py-reproject -py-apebench py-flexcache py-npx py-requests -py-apex py-flexmock py-ntlm-auth py-requests-cache -py-apeye py-flexparser py-ntplib py-requests-file -py-apeye-core py-flexx py-nugraph py-requests-ftp -py-apipkg py-flit py-nuitka py-requests-futures -py-apispec py-flit-core py-num2words py-requests-kerberos -py-app-model py-flit-scm py-numba py-requests-mock -py-appdirs py-flox py-numba4jax py-requests-ntlm -py-applicationinsights py-flufl-lock py-numbagg py-requests-oauthlib -py-appnope py-fluiddyn py-numcodecs py-requests-toolbelt -py-apprise py-fluidfft py-numdifftools py-requests-unixsocket -py-apptools py-fluidfft-builder py-numexpr py-requirements-parser -py-apscheduler py-fluidfft-fftw py-numexpr3 py-reretry -py-arcgis py-fluidfft-fftwmpi py-numkit py-resampy -py-arch py-fluidfft-mpi-with-fftw py-numl py-resize-right -py-archspec py-fluidfft-p3dfft py-numpy py-resolvelib -py-arcp py-fluidfft-pfft py-numpy-groupies py-responses -py-argcomplete py-fluidsim py-numpy-indexed py-resultsfile -py-argh py-fluidsim-core py-numpy-quaternion py-retry -py-argon2-cffi py-flye py-numpy-stl py-retry-decorator -py-argon2-cffi-bindings py-fn-py py-numpydoc py-retrying -py-argparse-dataclass py-folium py-nvidia-dali py-retworkx -py-argparse-manpage py-fonttools py-nvidia-ml-py py-rfc3339-validator -py-args py-ford py-nvidia-ml-py3 py-rfc3986 -py-arkouda py-formatizer py-nvidia-modulus py-rfc3986-validator -py-arm-pyart py-formulaic py-nvidia-nvcomp py-rfc3987-syntax -py-arpeggio py-fortls py-nvidia-nvimagecodec py-rich -py-arrow py-fortran-language-server py-nvidia-nvjpeg2k py-rich-argparse -py-art py-fortranformat py-nvidia-nvtiff py-rich-click -py-arviz py-fparser py-nvidia-physicsnemo py-rio-pmtiles -py-asciitree py-fprettify py-nvitop py-rios -py-asdf py-fqdn py-nvtx py-rioxarray -py-asdf-astropy py-fracridge py-oauth2client py-rise -py-asdf-coordinates-schemas py-fraction py-oauthlib py-river -py-asdf-standard py-freetype-py py-obspy py-rmm -py-asdf-transform-schemas py-freezegun py-ocnn py-rnc2rng -py-asdf-unit-schemas py-frozendict py-odc-geo py-robocrys -py-asdfghjkl py-frozenlist py-odfpy py-robotframework -py-ase py-fs py-ogb py-rocrate -py-asgi-lifespan py-fsspec py-okada-wrapper py-roifile -py-asgiref py-fsspec-xrootd py-olcf-velocity py-roman-numerals -py-asn1crypto py-ftfy py-olefile py-roman-numerals-py -py-aspy-yaml py-ftputil py-olmoearth-pretrain-minimal py-rope -py-asserts py-funcy py-omegaconf py-rosdep -py-ast-serialize py-furo py-onnx py-rosdistro -py-asteval py-fury py-onnx-opcounter py-rosinstall -py-astor py-fusepy py-onnxconverter-common py-rosinstall-generator -py-astpretty py-future py-onnxmltools py-rospkg -py-astroid py-fuzzywuzzy py-onnxruntime py-rotary-embedding-torch -py-astropy py-fypp py-ont-fast5-api py-rouge-score -py-astropy-healpix py-galaxy-containers py-opcodes py-routes -py-astropy-helpers py-galaxy-job-metrics py-open-clip-torch py-rpds-py -py-astropy-iers-data py-galaxy-objectstore py-openai py-rply -py-asttokens py-galaxy-sequence-utils py-openai-whisper py-rpy2 -py-astunparse py-galaxy-tool-util py-openapi-schema-pydantic py-rsa -py-async-generator py-galaxy-util py-opencensus py-rsatoolbox -py-async-lru py-galaxy2cwl py-opencensus-context py-rseqc -py-async-timeout py-gast py-opencv-python py-rst2pdf -py-asyncio py-gcovr py-opendatalab py-rtoml -py-asyncpg py-gcs-oauth2-boto-plugin py-openidc-client py-rtree -py-asynctest py-gcsfs py-openmc py-ruamel-ordereddict -py-atomicwrites py-gdc-client py-openmesh py-ruamel-yaml -py-atpublic py-gdown py-openmim py-ruamel-yaml-clib -py-atropos py-gee-asset-manager py-openpmd-validator py-ruamel-yaml-jinja2 -py-ats py-geeadd py-openpmd-viewer py-rucio-clients -py-attmap py-geemap py-openpyxl py-ruff -py-attrs py-geeup py-openslide-python py-rustworkx -py-audioread py-gemmforge py-opentelemetry-api py-rx -py-auditwheel py-gemmi py-opentelemetry-exporter-prometheus py-s3cmd -py-authlib py-genders py-opentelemetry-instrumentation py-s3fs -py-autocfg py-geneimpacts py-opentelemetry-sdk py-s3transfer -py-autodocsumm py-generateds py-opentelemetry-semantic-conventions py-sacrebleu -py-autograd py-genshi py-opentree py-sacremoses -py-autograd-gamma py-gensim py-opentuner py-safe-netrc -py-automat py-geoalchemy2 py-opppy py-safetensors -py-autopep8 py-geocoder py-ops py-salib -py-autoray py-geocube py-opt-einsum py-sarif-tools -py-autoreject py-geographiclib py-optax py-scandir -py-auxlib py-geojson py-optree py-scanpy -py-avro py-geomdl py-optuna py-schema -py-avro-json-serializer py-geopandas py-or-tools py-schema-salad -py-avro-python3 py-geoplot py-oracledb py-scientificpython -py-awesome-slugify py-geopmdpy py-orbax-checkpoint py-scifem -py-awkward py-geopmpy py-ordered-set py-scikit-build -py-awkward-cpp py-geopy py-orderly-set py-scikit-build-core -py-awkward0 py-geoviews py-orjson py-scikit-fmm -py-awscrt py-gest-api py-os-service-types py-scikit-fuzzy -py-ax-platform py-gevent py-oset py-scikit-image -py-azote py-gf256 py-oslo-config py-scikit-learn -py-azure-batch py-gfal2-python py-oslo-i18n py-scikit-learn-extra -py-azure-cli-command-modules-nspkg py-gffutils py-oslo-serialization py-scikit-matter -py-azure-cli-core py-ghp-import py-oslo-utils py-scikit-optimize -py-azure-cli-nspkg py-gidgethub py-osqp py-scikit-sparse -py-azure-cli-telemetry py-gidgetlab py-outdated py-scikits-odes -py-azure-common py-gimmik py-overpy py-scine-chemoton -py-azure-core py-gin-config py-overrides py-scine-puffin -py-azure-cosmos py-git-review py-owlrl py-scinum -py-azure-datalake-store py-gitdb py-owslib py-scipy -py-azure-functions-devops-build py-gitpython py-oyaml py-scitokens -py-azure-graphrbac py-glean-parser py-p2j py-scooby -py-azure-identity py-glean-sdk py-pacifica-downloader py-scoop -py-azure-keyvault py-glmnet py-pacifica-namespace py-scp -py-azure-keyvault-certificates py-glmnet-python py-pacifica-uploader py-screed -py-azure-keyvault-keys py-glmsingle py-packaging py-scs -py-azure-keyvault-nspkg py-glob2 py-pager py-sdmetrics -py-azure-keyvault-secrets py-globus-cli py-paho-mqtt py-sdnotify -py-azure-loganalytics py-globus-sdk py-palettable py-sdv -py-azure-mgmt-advisor py-gluoncv py-pamela py-seaborn -py-azure-mgmt-apimanagement py-glymur py-panaroo py-secretstorage -py-azure-mgmt-appconfiguration py-gmsh py-pandas py-seekpath -py-azure-mgmt-applicationinsights py-gmsh-interop py-pandas-datareader py-segmentation-models-pytorch -py-azure-mgmt-authorization py-gmxapi py-pandas-stubs py-selenium -py-azure-mgmt-batch py-gnuplot py-pandera py-semantic-version -py-azure-mgmt-batchai py-goatools py-pandocfilters py-semver -py-azure-mgmt-billing py-gooey py-panedr py-send2trash -py-azure-mgmt-botservice py-google py-panel py-sentencepiece -py-azure-mgmt-cdn py-google-api-core py-papermill py-sentry-sdk -py-azure-mgmt-cognitiveservices py-google-api-python-client py-paralleltask py-seqeval -py-azure-mgmt-compute py-google-apitools py-param py-sequence-models -py-azure-mgmt-consumption py-google-auth py-parameterized py-seriate -py-azure-mgmt-containerinstance py-google-auth-httplib2 py-paramiko py-serpent -py-azure-mgmt-containerregistry py-google-auth-oauthlib py-paramz py-session-info -py-azure-mgmt-containerservice py-google-cloud-appengine-logging py-parasail py-setproctitle -py-azure-mgmt-core py-google-cloud-audit-log py-parmed py-setupmeta -py-azure-mgmt-cosmosdb py-google-cloud-batch py-parse py-setuptools -py-azure-mgmt-datalake-analytics py-google-cloud-bigquery py-parse-type py-setuptools-cpp -py-azure-mgmt-datalake-store py-google-cloud-core py-parsedatetime py-setuptools-git -py-azure-mgmt-datamigration py-google-cloud-logging py-parsimonious py-setuptools-git-versioning -py-azure-mgmt-deploymentmanager py-google-cloud-storage py-parsl py-setuptools-reproducible -py-azure-mgmt-devtestlabs py-google-crc32c py-parsley py-setuptools-rust -py-azure-mgmt-dns py-google-pasta py-parso py-setuptools-scm -py-azure-mgmt-eventgrid py-google-reauth py-partd py-setuptools-scm-git-archive -py-azure-mgmt-eventhub py-google-resumable-media py-particle py-sfepy -py-azure-mgmt-hdinsight py-googleapis-common-protos py-paste py-sgp4 -py-azure-mgmt-imagebuilder py-googledrivedownloader py-pastedeploy py-sh -py-azure-mgmt-iotcentral py-gosam py-pastel py-shap -py-azure-mgmt-iothub py-gpaw py-pastml py-shapely -py-azure-mgmt-iothubprovisioningservices py-gpaw-data py-patch py-shellescape -py-azure-mgmt-keyvault py-gpustat py-patch-ng py-shellingham -py-azure-mgmt-kusto py-gputil py-path-py py-shiboken2 -py-azure-mgmt-loganalytics py-gpy py-pathlib-abc py-shippinglabel -py-azure-mgmt-managedservices py-gpyopt py-pathlib2 py-shortbred -py-azure-mgmt-managementgroups py-gpytorch py-pathml py-shortuuid -py-azure-mgmt-maps py-gql py-pathos py-shroud -py-azure-mgmt-marketplaceordering py-gradio py-pathsimanalysis py-shtab -py-azure-mgmt-media py-gradio-client py-pathspec py-simpervisor -py-azure-mgmt-monitor py-grandalf py-pathtools py-simple-slurm -py-azure-mgmt-msi py-graphcast py-pathvalidate py-simpleeval -py-azure-mgmt-netapp py-grapheme py-pathy py-simplegeneric -py-azure-mgmt-network py-graphene py-patool py-simplejson -py-azure-mgmt-nspkg py-graphlib-backport py-patsy py-simplekml -py-azure-mgmt-policyinsights py-graphql-core py-pauvre py-simpletraj -py-azure-mgmt-privatedns py-graphql-relay py-pbr py-simpy -py-azure-mgmt-rdbms py-graphql-ws py-pdb-tools py-simsimd -py-azure-mgmt-recoveryservices py-graphviz py-pdbfixer py-singledispatchmethod -py-azure-mgmt-recoveryservicesbackup py-gravity py-pdequinox py-sip -py-azure-mgmt-redhatopenshift py-grayskull py-pdf2image py-six -py-azure-mgmt-redis py-greenlet py-pdm-backend py-skl2onnx -py-azure-mgmt-relay py-grequests py-pdm-pep517 py-slepc4py -py-azure-mgmt-reservations py-griddataformats py-pdoc3 py-slicer -py-azure-mgmt-resource py-griffe py-peachpy py-slurm-pipeline -py-azure-mgmt-search py-gromacswrapper py-peakutils py-smac -py-azure-mgmt-security py-grpc-google-iam-v1 py-pebble py-smart-open -py-azure-mgmt-servicebus py-grpcio py-peft py-smartredis -py-azure-mgmt-servicefabric py-grpcio-status py-pelicanfs py-smartsim -py-azure-mgmt-signalr py-grpcio-tools py-pem py-smartypants -py-azure-mgmt-sql py-gsd py-pendulum py-smmap -py-azure-mgmt-sqlvirtualmachine py-gssapi py-pennylane py-smolagents -py-azure-mgmt-storage py-gsutil py-pennylane-lightning py-smote-variants -py-azure-mgmt-trafficmanager py-gtdbtk py-pennylane-lightning-kokkos py-snakemake-executor-plugin-azure-batch -py-azure-mgmt-web py-gunicorn py-pep517 py-snakemake-executor-plugin-cluster-generic -py-azure-multiapi-storage py-gxformat2 py-pep8 py-snakemake-executor-plugin-cluster-sync -py-azure-nspkg py-gym py-pep8-naming py-snakemake-executor-plugin-drmaa -py-azure-storage-blob py-h11 py-perfdump py-snakemake-executor-plugin-flux -py-azure-storage-common py-h2 py-performance py-snakemake-executor-plugin-googlebatch -py-azure-storage-nspkg py-h3 py-periodictable py-snakemake-executor-plugin-kubernetes -py-b2luigi py-h5glance py-petastorm py-snakemake-executor-plugin-slurm -py-babel py-h5io py-petname py-snakemake-executor-plugin-slurm-jobstep -py-backcall py-h5netcdf py-petsc4py py-snakemake-executor-plugin-tes -py-backoff py-h5py py-pexpect py-snakemake-interface-common -py-backpack-for-pytorch py-h5sh py-pfzy py-snakemake-interface-executor-plugins -py-backports-abc py-hacking py-pgzip py-snakemake-interface-logger-plugins -py-backports-cached-property py-hail py-phanotate py-snakemake-interface-report-plugins -py-backports-entry-points-selectable py-handy-archives py-phonenumbers py-snakemake-interface-scheduler-plugins -py-backports-lzma py-hatch py-phonopy py-snakemake-interface-storage-plugins -py-backports-os py-hatch-cython py-photutils py-snakemake-storage-plugin-azure -py-backports-ssl-match-hostname py-hatch-fancy-pypi-readme py-phydms py-snakemake-storage-plugin-fs -py-backports-tarfile py-hatch-jupyter-builder py-phylophlan py-snakemake-storage-plugin-ftp -py-backports-tempfile py-hatch-nodejs-version py-pickle5 py-snakemake-storage-plugin-gcs -py-backports-weakref py-hatch-requirements-txt py-pickleshare py-snakemake-storage-plugin-http -py-backports-zoneinfo py-hatch-vcs py-picmistandard py-snakemake-storage-plugin-pelican -py-bagit py-hatchet py-picrust2 py-snakemake-storage-plugin-rucio -py-bagit-profile py-hatchling py-pid py-snakemake-storage-plugin-s3 -py-bakta py-hclust2 py-pika py-snakemake-storage-plugin-sftp -py-bandit py-hdbscan py-pillow py-snakemake-storage-plugin-zenodo -py-barectf py-hdf5plugin py-pillow-simd py-snakeviz -py-basemap py-hdfs py-pint py-snappy -py-bash-kernel py-healpix py-pint-xarray py-sncosmo -py-basis-set-exchange py-healpy py-pip py-sniffio -py-batchspawner py-heapdict py-pipcl py-snoop -py-bayesian-optimization py-heat py-pipdeptree py-snowballstemmer -py-bcbio-gff py-heavyball py-piper py-snuggs -py-bcolz py-hep-ml py-pipits py-sobol-seq -py-bcrypt py-hepdata-converter py-pispino py-social-auth-core -py-bdbag py-hepdata-lib py-pivy py-sonlib -py-beaker py-hepdata-validator py-pkgconfig py-sortedcollections -py-beancount py-hepstats py-pkginfo py-sortedcontainers -py-beartype py-hepunits py-pkgutil-resolve-name py-soundfile -py-beautifulsoup4 py-heudiconv py-plac py-soupsieve -py-beniget py-hf-transfer py-plaid py-soyclustering -py-bibtexparser py-hf-xet py-planar py-spacy -py-bidict py-hieroglyph py-planet py-spacy-legacy -py-bids-validator py-highspy py-planetary-computer py-spacy-loggers -py-bids-validator-deno py-hiredis py-platformdirs py-spacy-models-en-core-web-sm -py-bidscoin py-hist py-plotext py-spacy-models-en-vectors-web-lg -py-bidskit py-histbook py-plotille py-sparse -py-bidsschematools py-histogrammar py-plotly py-spatialist -py-bigdft py-histoprint py-plotnine py-spatialite -py-bigfloat py-hjson py-pluggy py-spatialpandas -py-billiard py-hmmlearn py-plum-dispatch py-spdlog -py-binary py-holland-backup py-ply py-spectra -py-binaryornot py-holoviews py-pmtiles py-spectral -py-bintrees py-horovod py-pmw py-speech-recognition -py-binwalk py-hpack py-pmw-patched py-spefile -py-biobb-common py-hpbandster py-pockets py-spgl1 -py-biobb-gromacs py-hpccm py-poetry py-spglib -py-biobb-io py-hsluv py-poetry-core py-spherical -py-biobb-model py-hstspreload py-poetry-dynamic-versioning py-sphericart -py-biobb-structure-checking py-htgettoken py-poetry-plugin-export py-sphericart-torch -py-biobb-structure-utils py-html2text py-poetry-plugin-tweak-dependencies-version py-sphinx -py-bioblend py-html5lib py-polars py-sphinx-argparse -py-biom-format py-htmldate py-pomegranate py-sphinx-autodoc-typehints -py-biomine py-htmlgen py-pooch py-sphinx-basic-ng -py-biopandas py-htseq py-portalocker py-sphinx-book-theme -py-biopython py-httpbin py-portend py-sphinx-bootstrap-theme -py-biosppy py-httpcore py-portpicker py-sphinx-click -py-biotite py-httplib2 py-postcactus py-sphinx-copybutton -py-biotraj py-httpretty py-poster py-sphinx-design -py-bitarray py-httpstan py-pot py-sphinx-fortran -py-bitshuffle py-httptools py-pox py-sphinx-gallery -py-bitstring py-httpx py-poxy py-sphinx-github-changelog -py-bitstruct py-huggingface-hub py-poyo py-sphinx-immaterial -py-black py-humanfriendly py-ppft py-sphinx-jinja2-compat -py-blake3 py-humanize py-pprintpp py-sphinx-multiversion -py-bleach py-hvac py-pre-commit py-sphinx-prompt -py-blessed py-hvplot py-preshed py-sphinx-removed-in -py-blessings py-hydra-core py-pretrainedmodels py-sphinx-rtd-dark-mode -py-blight py-hypercorn py-pretty-errors py-sphinx-rtd-theme -py-blinker py-hyperframe py-prettytable py-sphinx-tabs -py-blis py-hyperlink py-priority py-sphinx-theme-builder -py-blosc py-hyperopt py-profilehooks py-sphinx-toolbox -py-blosc2 py-hypothesis py-proglog py-sphinxautomodapi -py-blosum py-ibm-cloud-sdk-core py-progress py-sphinxcontrib-applehelp -py-bluepyefe py-ibm-watson py-progressbar2 py-sphinxcontrib-bibtex -py-bluepyemodel py-ics py-progressbar33 py-sphinxcontrib-devhelp -py-bluepyopt py-id py-projectq py-sphinxcontrib-htmlhelp -py-bmap-tools py-identify py-prokaryote py-sphinxcontrib-issuetracker -py-bmtk py-idna py-prometheus-client py-sphinxcontrib-jquery -py-bokeh py-idna-ssl py-prometheus-flask-exporter py-sphinxcontrib-jsmath -py-boltons py-igor py-promise py-sphinxcontrib-mermaid -py-boom-boot-manager py-igor2 py-prompt-toolkit py-sphinxcontrib-moderncmakedomain -py-boost-histogram py-igraph py-propcache py-sphinxcontrib-napoleon -py-boto py-igv-notebook py-properscoring py-sphinxcontrib-plantuml -py-boto3 py-igwn-auth-utils py-proto-plus py-sphinxcontrib-programoutput -py-botocore py-ihm py-protobuf py-sphinxcontrib-qthelp -py-botorch py-illumina-utils py-protoc-gen-swagger py-sphinxcontrib-serializinghtml -py-bottle py-ilmbase py-prov py-sphinxcontrib-spelling -py-bottleneck py-imagecodecs py-proxystore py-sphinxcontrib-tikz -py-bqplot py-imagecorruptions-imaug py-prwlock py-sphinxcontrib-trio -py-braceexpand py-imagehash py-psalg py-sphinxcontrib-websupport -py-brain-indexer py-imageio py-psana py-sphinxemoji -py-branca py-imageio-ffmpeg py-psij-python py-sphobjinv -py-bravado py-imagesize py-psmon py-spykeutils -py-bravado-core py-imaug py-pspamm py-spython -py-breakseq2 py-imbalanced-learn py-psutil py-sqlalchemy -py-breathe py-imgaug py-psyclone py-sqlalchemy-migrate -py-brian py-iminuit py-psycopg2 py-sqlalchemy-stubs -py-brian2 py-immutabledict py-psygnal py-sqlalchemy-utils -py-brotli py-immutables py-ptyprocess py-sqlitedict -py-brotlipy py-importlib-metadata py-pubchempy py-sqlparse -py-bsddb3 py-importlib-resources py-pudb py-srsly -py-build py-imutils py-pulp py-sseclient -py-bx-python py-in-n-out py-pulsar-galaxy-lib py-sshtunnel -py-cachecontrol py-incremental py-pure-eval py-sspilib -py-cached-property py-inflect py-pure-sasl py-stack-data -py-cachetools py-inheritance py-puremagic py-starfile -py-cachey py-iniconfig py-py py-starlette -py-cachy py-iniparse py-py-cpuinfo py-starlette-context -py-cairocffi py-inquirer py-py-spy py-starsessions -py-cairosvg py-inquirerpy py-py-tes py-stashcp -py-caliper-reader py-inscriptis py-py2bit py-statmorph -py-callmonitor py-installer py-py2neo py-statsmodels -py-calver py-instrain py-py4j py-stdlib-list -py-cantoolz py-intake py-py6s py-stestr -py-carputils py-intake-esm py-pyabel py-stevedore -py-cartopy py-intbitset py-pyaestro py-stomp-py -py-casadi py-intel-openmp py-pyahocorasick py-stopit -py-catalogue py-intensity-normalization py-pyamg py-storm -py-catkin-pkg py-interface-meta py-pyaml py-stratify -py-cattrs py-interlap py-pyaml-env py-strawberryfields -py-cbor2 py-intervaltree py-pyani py-streamlit -py-cclib py-invoke py-pyarrow py-stringzilla -py-cdo py-iocapture py-pyasn1 py-striprtf -py-cdsapi py-iopath py-pyasn1-modules py-stsci-distutils -py-cekit py-ipaddress py-pyassimp py-stui -py-celery py-ipdb py-pyautogui py-submitit -py-cellprofiler py-ipycanvas py-pybedtools py-subrosa -py-cellprofiler-core py-ipyevents py-pybids py-subword-nmt -py-centrosome py-ipyfilechooser py-pybigwig py-supermercado -py-cerberus py-ipykernel py-pybind11 py-superqt -py-certifi py-ipyleaflet py-pybind11-stubgen py-supervisor -py-certipy py-ipympl py-pybktree py-svgpath -py-cf-units py-ipyparallel py-pybobyqa py-svgpathtools -py-cf-xarray py-ipyrad py-pybrain py-svgutils -py-cffconvert py-ipython py-pybtex py-svgwrite -py-cffi py-ipython-cluster-helper py-pybtex-docutils py-swagger-spec-validator -py-cfgrib py-ipython-genutils py-pybv py-symengine -py-cfgv py-ipython-pygments-lexers py-pycairo py-symfit -py-cftime py-ipytree py-pycares py-sympy -py-cgen py-ipyvtk-simple py-pycbc py-syned -py-chai py-ipyvue py-pycgns py-sysrsync -py-chai-lab py-ipyvuetify py-pychecker py-systemd-python -py-chainer py-ipywidgets py-pycifrw py-tabledata -py-chainforgecodegen py-irpf90 py-pyclibrary py-tables -py-chainmap py-isa-rwval py-pycm py-tabulate -py-chalice py-isal py-pycmd py-tatsu -py-chardet py-iso8601 py-pycocotools py-tblib -py-charm4py py-isodate py-pycodestyle py-tbparse -py-charset-normalizer py-isoduration py-pycollada py-tcolorpy -py-chart-studio py-isort py-pycompadre py-tempita -py-cheap-repr py-itables py-pyconify py-templateflow -py-checkm-genome py-iterative-stats py-pycorenlp py-tempora -py-cheetah3 py-itk py-pycortex py-tenacity -py-chemfiles py-itolapi py-pycosat py-tensorboard -py-chemiscope py-itsdangerous py-pycparser py-tensorboard-data-server -py-cheroot py-jacobi py-pycrypto py-tensorboard-plugin-wit -py-cherrypy py-jaconv py-pycryptodome py-tensorboardx -py-chex py-jamo py-pycryptodomex py-tensorflow -py-choreographer py-janus py-pyct py-tensorflow-datasets -py-chronyk py-jaraco-classes py-pycubexr py-tensorflow-estimator -py-ci-info py-jaraco-context py-pycuda py-tensorflow-hub -py-ci-sdr py-jaraco-functools py-pycurl py-tensorflow-metadata -py-cig-pythia py-jarowinkler py-pydantic py-tensorflow-probability -py-cinema-lib py-jarvis-util py-pydantic-compat py-tensorly -py-cinemasci py-javaproperties py-pydantic-core py-tensorstore -py-circus py-jax py-pydantic-extra-types py-termcolor -py-citeproc-py py-jaxlib py-pydantic-settings py-termgraph -py-clarabel py-jaxtyping py-pydantic-tes py-terminado -py-clean-text py-jcb py-pydap py-terminaltables -py-cleo py-jdatetime py-pydata-sphinx-theme py-tern -py-click py-jdcal py-pydatalog py-tesorter -py-click-didyoumean py-jedi py-pydeface py-testfixtures -py-click-option-group py-jeepney py-pydeprecate py-testinfra -py-click-plugins py-jellyfish py-pydeps py-testpath -py-click-repl py-jinja2 py-pydevtool py-testrepository -py-cligj py-jinja2-cli py-pydftracer py-testresources -py-clikit py-jinja2-humanize-extension py-pydicom py-testscenarios -py-climate py-jinja2-time py-pydispatcher py-testtools -py-climax py-jiter py-pydmd py-tetoolkit -py-clint py-jmespath py-pydocstyle py-text-unidecode -py-clip-anytorch py-jmp py-pydoe py-textblob -py-clipboard py-joblib py-pydoe2 py-texttable -py-cloudauthz py-jplephem py-pydot py-textual -py-cloudbridge py-jproperties py-pydot2 py-textual-fspicker -py-cloudpathlib py-jprops py-pydotplus py-textual-plotext -py-cloudpickle py-jpype1 py-pydub py-textwrap3 -py-clustershell py-jraph py-pyeda py-textx -py-cma py-jsmin py-pyedr py-tf-keras -py-cmaes py-json-get py-pyee py-tf2onnx -py-cmake-format py-json-tricks py-pyelftools py-tfdlpack -py-cmake-parser py-json2html py-pyem py-theano -py-cmocean py-json5 py-pyenchant py-thewalrus -py-cmseq py-jsonargparse py-pyepsg py-thinc -py-cmsml py-jsondiff py-pyerfa py-thop -py-cmyt py-jsonlines py-pyeventsystem py-threadpoolctl -py-coapthon3 py-jsonpatch py-pyface py-throttler -py-coca-pytorch py-jsonpath-ng py-pyfaidx py-tidynamics -py-coclust py-jsonpickle py-pyfasta py-tifffile -py-codebasin py-jsonpointer py-pyfastaq py-tiktoken -py-codecarbon py-jsonref py-pyfftw py-tilelang -py-codechecker py-jsonschema py-pyfiglet py-timezonefinder -py-codepy py-jsonschema-specifications py-pyfits py-timm -py-codespell py-junit-xml py-pyfive py-tinyarray -py-coherent-licensed py-junit2html py-pyflakes py-tinycss2 -py-coilmq py-jupyter py-pyfr py-tinydb -py-colabtools py-jupyter-client py-pygame py-tinyrecord -py-colorama py-jupyter-console py-pygdal py-tld -py-colorcet py-jupyter-core py-pygdbmi py-tldextract -py-colorclass py-jupyter-events py-pygelf py-tmtools -py-colored py-jupyter-leaflet py-pygeos py-tokenize-rt -py-colored-traceback py-jupyter-lsp py-pygetwindow py-tokenizers -py-coloredlogs py-jupyter-packaging py-pygit2 py-toml -py-colorful py-jupyter-server py-pygithub py-tomli -py-colorio py-jupyter-server-mathjax py-pyglet py-tomli-w -py-colorlog py-jupyter-server-proxy py-pygments py-tomlkit -py-colorlover py-jupyter-server-terminals py-pygments-pytest py-tomopy -py-colormath py-jupyter-telemetry py-pygmsh py-toolz -py-colorpy py-jupyterhub py-pygmt py-topiary-asr -py-colorspacious py-jupyterlab py-pygobject py-toposort -py-colossalai py-jupyterlab-pygments py-pygps py-torch -py-colour py-jupyterlab-server py-pygpu py-torch-c-dlpack-ext -py-comm py-jupyterlab-widgets py-pygraphviz py-torch-cluster -py-common py-jupytext py-pygresql py-torch-fidelity -py-commonmark py-justext py-pygrib py-torch-geometric -py-conan py-jwcrypto py-pygtrie py-torch-harmonics -py-conda-inject py-kaggle py-pyh5md py-torch-nvidia-apex -py-conda-souschef py-kaldiio py-pyhdf py-torch-scatter -py-confection py-kaleido py-pyheadtail py-torch-sparse -py-configargparse py-kb-python py-pyhmmer py-torch-spex -py-configobj py-keras py-pyhull py-torch-spline-conv -py-configparser py-keras-applications py-pyicu py-torchaudio -py-configspace py-keras-preprocessing py-pyinstrument py-torchbenchmark -py-confluent-kafka py-keras2onnx py-pyinstrument-cext py-torchdata -py-connectionpool py-kerberos py-pyisemail py-torchdiffeq -py-consolekit py-kerchunk py-pyjnius py-torchfile -py-constantly py-key-value-aio py-pyjwt py-torchgeo -py-contextily py-keyboard py-pyke py-torchmeta -py-contextlib2 py-keyring py-pykerberos py-torchmetrics -py-contexttimer py-keyrings-alt py-pykml py-torchseg -py-continuum py-keystoneauth1 py-pykokkos-base py-torchsummary -py-contourpy py-kitchen py-pykwalify py-torchtext -py-contrib py-kiwisolver py-pylab-sdk py-torchtoolbox -py-control py-kmodes py-pylatex py-torchvision -py-convertdate py-knack py-pyld py-tornado -py-convokit py-kneaddata py-pylev py-tox -py-cookiecutter py-kombu py-pylibjpeg-libjpeg py-toyplot -py-coolname py-kornia py-pylibjpeg-openjpeg py-toytree -py-copulas py-kornia-rs py-pylibjpeg-rle py-tpot -py-corner py-kosh py-pylibmagic py-tqdm -py-correctionlib py-krb5 py-pylikwid py-traceback2 -py-corrfunc py-kt-legacy py-pylint py-trafilatura -py-counter py-kubernetes py-pylint-gitlab py-trainax -py-courlan py-kymatio py-pylith py-traitlets -py-cov-core py-lagom py-pylops py-traits -py-coverage py-langcodes py-pymatgen py-traitsui -py-coveralls py-langsmith py-pymatreader py-traittypes -py-cppheaderparser py-language-data py-pymbolic py-trame -py-cppy py-lap py-pymc3 py-trame-client -py-cramjam py-laplace-torch py-pymdown-extensions py-trame-common -py-crashtest py-lark py-pymeeus py-trame-server -py-crc32c py-lark-parser py-pyminifier py-trame-vtk -py-crcmod py-laspy py-pymol py-trame-vuetify -py-croniter py-latexcodec py-pymongo py-transformer-engine -py-crossmap py-law py-pymoo py-transformers -py-cryolobm py-lazy py-pymorph py-transforms3d -py-cryptography py-lazy-loader py-pympler py-transonic -py-css-parser py-lazy-object-proxy py-pymsgbox py-tree -py-cssselect py-lazy-property py-pymummer py-tree-math -py-cssselect2 py-lazyarray py-pymumps py-tree-sitter -py-cssutils py-lcls-krtc py-pymupdf py-tree-sitter-c -py-csvkit py-ldap3 py-pymupdf-fonts py-treehash -py-ctgan py-leather py-pymysql py-treelib -py-cuda-bindings py-leidenalg py-pynacl py-triangle -py-cuda-core py-lerc py-pynio py-trieregex -py-cuda-pathfinder py-lfpykit py-pynisher py-trimesh -py-cudf py-lhsmdu py-pynn py-triton -py-cufflinks py-liac-arff py-pynndescent py-trl -py-cuml py-libclang py-pynpm py-trojanzoo-sphinx-theme -py-cupy py-libconf py-pynrrd py-trove-classifiers -py-current py-libcst py-pynucleus py-trx-python -py-currentscape py-libensemble py-pynumpress py-tuiview -py-curryreader py-liblas py-pynvim py-tuspy -py-curvlinops-for-pytorch py-librosa py-pynvml py-tuswsgi -py-custodian py-librt py-pynvtx py-tweedledum -py-custom-inherit py-libsonata py-pyodbc py-twine -py-cutadapt py-lifelines py-pyogrio py-twisted -py-cvxopt py-lightgbm py-pyomo py-ty -py-cvxpy py-lightly py-pyopencl py-typed-ast -py-cwl-upgrader py-lightly-utils py-pyopengl py-typeguard -py-cwl-utils py-lightning py-pyopenssl py-typepy -py-cwltool py-lightning-api-access py-pypar py-typer -py-cx-oracle py-lightning-cloud py-pyparsing py-types-dataclasses -py-cycler py-lightning-fabric py-pypdf py-types-geopandas -py-cykhash py-lightning-lite py-pypdf2 py-types-pkg-resources -py-cylc-flow py-lightning-uq-box py-pypeflow py-types-psutil -py-cylc-rose py-lightning-utilities py-pypeg2 py-types-python-dateutil -py-cylp py-lightpipes py-pyperclip py-types-pytz -py-cymem py-ligo-segments py-pyperf py-types-pyyaml -py-cyordereddict py-lil-aretomo py-pypinfo py-types-requests -py-cython py-line-profiler py-pypinyin py-types-setuptools -py-cython-bbox py-linear-operator py-pypistats py-types-shapely -py-cyvcf2 py-linear-tree py-pypng py-types-tqdm -py-d2to1 py-linecache2 py-pyppeteer py-types-typed-ast -py-dace py-lineenhancer py-pyprecice py-types-urllib3 -py-dacite py-linkchecker py-pyprof2html py-typesentry -py-dadi py-linkify-it-py py-pyproj py-typeshed-client -py-dalib py-lit py-pyproject-hooks py-typing-extensions -py-damask py-litdata py-pyproject-metadata py-typing-inspect -py-darshan py-littleutils py-pyproject-parser py-typing-inspection -py-dasbus py-lizard py-pypulse py-typish -py-dash py-llama-cpp-python py-pyqi py-tzdata -py-dash-bootstrap-components py-llnl-sina py-pyqt-builder py-tzlocal -py-dash-svg py-llvmlite py-pyqt4 py-ubiquerg -py-dask py-lmdb py-pyqt5 py-uc-micro-py -py-dask-awkward py-lmfit py-pyqt5-sip py-ucsf-pyem -py-dask-expr py-lmodule py-pyqt6 py-ucx-py -py-dask-glm py-localcider py-pyqt6-sip py-uhi -py-dask-histogram py-locket py-pyqtgraph py-ujson -py-dask-jobqueue py-lockfile py-pyquaternion py-ultralytics -py-dask-ml py-logilab-common py-pyreadline py-umalqurra -py-dask-mpi py-logistro py-pyrect py-umap-learn -py-dask-sphinx-theme py-logmuse py-pyrevolve py-umi-tools -py-databricks-cli py-logomaker py-pyrfr py-uncertainties -py-dataclasses py-loguru py-pyro-api py-uncertainty-toolbox -py-dataclasses-json py-loky py-pyro-ppl py-unfoldnd -py-datacube py-loompy py-pyro4 py-unicycler -py-datalad py-looseversion py-pyroaring py-unidecode -py-datalad-container py-louie py-pyrocko py-unittest2py3k -py-datalad-deprecated py-lpips py-pyrodigal py-universal-pathlib -py-datalad-hirni py-lru-dict py-pyrodigal-gv py-unshare -py-datalad-metadata-model py-lscsoft-glue py-pyrometheus py-unyt -py-datalad-metalad py-lsprotocol py-pyrr py-update-checker -py-datalad-neuroimaging py-luigi py-pyrsistent py-uproot -py-datalad-webapp py-lupa py-pysam py-uproot3 -py-dataproperty py-lvis py-pyscaf py-uproot3-methods -py-datasets py-lws py-pyscf py-uqinn -py-datashader py-lxml py-pyscipopt py-uri-template -py-datatrove py-lz4 py-pyscreeze py-uritemplate -py-dateparser py-lzstring py-pyseer py-url-normalize -py-dateutils py-m2r py-pyserial py-urllib3 -py-datrie py-macholib py-pysftp py-urllib3-secure-extra -py-dbf py-machotools py-pyshacl py-urwid -py-dbfread py-macs2 py-pyshp py-us -py-dcm2bids py-macs3 py-pyside2 py-userpath -py-dcmstack py-maestrowf py-pysimdjson py-usgs -py-deap py-magicgui py-pysindy py-utils -py-debtcollector py-mahotas py-pysmartdl py-uv -py-debugpy py-mailchecker py-pysmiles py-uv-build -py-decorator py-make py-pysocks py-uv-dynamic-versioning -py-deepdiff py-makefun py-pysolar py-uvicorn -py-deepecho py-mako py-pyspark py-uvloop -py-deephyper py-mapbox-earcut py-pyspellchecker py-uvw -py-deepmerge py-mapclassify py-pyspice py-uwsgi -py-deepsig-biocomp py-mariadb py-pyspnego py-uxarray -py-deepspeed py-marisa-trie py-pyspoa py-validate-pyproject -py-deeptools py-markdown py-pyspod py-validators -py-deeptoolsintervals py-markdown-include py-pysqlite3 py-vascpy -py-defusedxml py-markdown-it-py py-pystac py-vcf-kit -py-deisa py-markdown2 py-pystac-client py-vcrpy -py-deisa-core py-markov-clustering py-pystache py-vcstool -py-deisa-dask py-markovify py-pystan py-vcstools -py-demjson py-markupsafe py-pysurfer py-vcversioner -py-dendropy py-marshmallow py-pytablewriter py-vector -py-deprecat py-matminer py-pytailf py-vector-quantize-pytorch -py-deprecated py-matplotlib py-pytaridx py-vermin -py-deprecation py-matplotlib-inline py-pytecplot py-vermouth-martinize -py-deprecation-alias py-matplotlib-scalebar py-pytesseract py-versioneer -py-derivative py-maturin py-pytest py-versioneer-518 -py-descartes py-mayavi py-pytest-aiohttp py-versioningit -py-devito py-mbstrdecoder py-pytest-allclose py-verspec -py-devlib py-mccabe py-pytest-arraydiff py-vesin -py-dgl py-md-environ py-pytest-astropy py-vine -py-dh-scikit-optimize py-mda-xdrlib py-pytest-astropy-header py-virtualenv -py-diagnostic py-mdahole2 py-pytest-asyncio py-virtualenv-clone -py-dict2css py-mdanalysis py-pytest-benchmark py-virtualenvwrapper -py-dictdiffer py-mdanalysistests py-pytest-cache py-visdom -py-dictobj py-mdi py-pytest-check-links py-vispy -py-dill py-mdit-py-plugins py-pytest-cmake py-vl-convert-python -py-dinosaur py-mdocfile py-pytest-cov py-voluptuous -py-dipy py-mdurl py-pytest-cpp py-vsc-base -py-dirtyjson py-meautility py-pytest-datadir py-vsc-install -py-disbatch py-mechanize py-pytest-doctestplus py-vsts -py-discover py-medaka py-pytest-fail-slow py-vsts-cd-manager -py-diskcache py-meldmd py-pytest-filter-subpackage py-wadler-lindig -py-dist-meta py-melissa-core py-pytest-flake8 py-waitress -py-distance py-memelite py-pytest-flakes py-walinuxagent -py-distlib py-memory-profiler py-pytest-forked py-wand -py-distributed py-memprof py-pytest-html py-wandb -py-distro py-memray py-pytest-httpbin py-warcio -py-django py-mendeleev py-pytest-isort py-warlock -py-dlcpar py-mercantile py-pytest-lazy-fixture py-wasabi -py-dm-haiku py-mergedeep py-pytest-memray py-watchdog -py-dm-tree py-merlin py-pytest-metadata py-watchfiles -py-dnaio py-meshio py-pytest-mock py-waterdynamics -py-dnspython py-meshpy py-pytest-mpi py-waves -py-docker py-meson-python py-pytest-mypy py-wcsaxes -py-dockerpy-creds py-metaphlan py-pytest-openfiles py-wcwidth -py-docket py-metasv py-pytest-parallel py-webargs -py-docopt py-metatensor-core py-pytest-pep8 py-webcolors -py-docopt-ng py-metatensor-learn py-pytest-pylint py-webdataset -py-docstring-parser py-metatensor-operations py-pytest-qt py-webdavclient3 -py-docstring-to-markdown py-metatensor-torch py-pytest-random-order py-webencodings -py-docutils py-metatomic-torch py-pytest-regtest py-webkit-server -py-docutils-stubs py-metatrain py-pytest-remotedata py-weblogo -py-dogpile-cache py-metis py-pytest-reportlog py-webob -py-doit py-metomi-isodatetime py-pytest-retry py-websocket-client -py-dolfinx-mpc py-metomi-rose py-pytest-runner py-websockets -py-dom-toml py-metpy py-pytest-socket py-werkzeug -py-domdf-python-tools py-metric-learn py-pytest-subprocess py-wesanderson -py-dominate py-metrics py-pytest-timeout py-wget -py-donfig py-mffpy py-pytest-workflow py-whatshap -py-dotmap py-mg-rast-tools py-pytest-xdist py-wheel -py-dotnetcore2 py-mgmetis py-python-benedict py-whenever -py-downhill py-microsoft-aurora py-python-bioformats py-whey -py-doxypypy py-mido py-python-box py-whey-pth -py-dpath py-mikado py-python-calamine py-whichcraft -py-drep py-mike py-python-certifi-win32 py-whoosh -py-drmaa py-minio py-python-constraint py-widgetsnbextension -py-dryscrape py-minisom py-python-crfsuite py-wids -py-duecredit py-minkowskiengine py-python-daemon py-wigners -py-dulwich py-minrpc py-python-dateutil py-win-unicode-console -py-dunamai py-misk py-python-deprecated py-wincertstore -py-dvc py-misopy py-python-discovery py-word2number -py-dxchange py-mistletoe py-python-docs-theme py-wordcloud -py-dxfile py-mistune py-python-docx py-workload-automation -py-dynaconf py-mizani py-python-dotenv py-wradlib -py-dynim py-mkdocs py-python-editor py-wrapt -py-earth2mip py-mkdocs-autorefs py-python-engineio py-wsproto -py-earthengine-api py-mkdocs-jupyter py-python-fmask py-wstool -py-easybuild-easyblocks py-mkdocs-material py-python-fsutil py-wub -py-easybuild-easyconfigs py-mkdocs-material-extensions py-python-gitlab py-wurlitzer -py-easybuild-framework py-mkdocstrings py-python-hostlist py-ww -py-eccodes py-mkdocstrings-python py-python-igraph py-wxflow -py-ecdsa py-ml-collections py-python-javabridge py-wxmplot -py-ecmwf-opendata py-ml-dtypes py-python-jenkins py-wxpython -py-ecmwflibs py-mlflow py-python-jose py-x-clip -py-ecos py-mlperf-logging py-python-json-logger py-x21 -py-edam-ontology py-mlxtend py-python-keystoneclient py-xanadu-cloud-client -py-edffile py-mmcv py-python-ldap py-xarray -py-edfio py-mmengine py-python-levenshtein py-xarray-regrid -py-edflib-python py-mmtf-python py-python-libsbml py-xarray-tensorstore -py-editables py-mne py-python-logstash py-xattr -py-editdistance py-mne-bids py-python-louvain py-xcdat -py-edlib py-mo-pack py-python-lsp-jsonrpc py-xdot -py-eeglabio py-moarchiving py-python-lsp-ruff py-xenv -py-eerepr py-mock py-python-lsp-server py-xesmf -py-efel py-model-index py-python-lzo py-xgboost -py-efficientnet-pytorch py-modelcif py-python-magic py-xgcm -py-eg py-modepy py-python-mapnik py-xhistogram -py-eigenpy py-modin py-python-markdown-math py-xlrd -py-einconv py-modisco py-python-memcached py-xlsxwriter -py-einops py-modred py-python-multipart py-xlwt -py-elastic-transport py-modules-gui py-python-mumps py-xmlplain -py-elasticsearch py-moltemplate py-python-oauth2 py-xmlrunner -py-elasticsearch-dsl py-monai py-python-picard py-xmltodict +py-3to2 py-fabric3 py-mysql-connector-python py-pywcs +py-4suite-xml py-fair-esm py-mysqlclient py-pywin32 +py-a2wsgi py-fairscale py-myst-parser py-pywinpty +py-abcpy py-faker py-namex py-pyworld +py-abipy py-fakeredis py-nanobind py-pyxlsb +py-about-time py-falcon py-nanoget py-pyyaml +py-absl-py py-fallocate py-nanomath py-pyyaml-env-tag +py-accelerate py-fastai py-nanoplot py-pyzmq +py-accessible-pygments py-fastaindex py-nanostat py-qdldl +py-accimage py-fastapi py-nanotime py-qiskit-aer +py-acme-tiny py-fastapi-utils py-nanotron py-qiskit-ibm-provider +py-acres py-fastavro py-napari py-qiskit-nature +py-adal py-fastcache py-napari-console py-qiskit-terra +py-adb-enhanced py-fastcluster py-napari-plugin-engine py-qmtest +py-addict py-fastcore py-napari-plugin-manager py-qpsolvers +py-adios py-fastcov py-napari-svg py-qpth +py-adios4dolfinx py-fastdownload py-nara-wpe py-qrcode +py-advancedhtmlparser py-fastdtw py-narwhals py-qsymm +py-aenum py-fasteners py-natsort py-qtawesome +py-affine py-fastfold py-nbclassic py-qtconsole +py-agate py-fastjsonschema py-nbclient py-qtpy +py-agate-dbf py-fastobo py-nbconvert py-quantiphy +py-agate-excel py-fastpath py-nbdime py-quantities +py-agate-sql py-fastprogress py-nbformat py-quantum-blackbird +py-ahpy py-fastremap py-nbmake py-quantum-xir +py-aiobotocore py-fastrlock py-nbqa py-quart +py-aiocontextvars py-fasttext-numpy2 py-nbsphinx py-quast +py-aiodns py-fasttext-numpy2-wheel py-nbstripout py-quaternionic +py-aiofiles py-faust-cchardet py-nbval py-qudida +py-aiohappyeyeballs py-fava py-nc-time-axis py-queryablelist +py-aiohttp py-fenics-basix py-ncbi-genome-download py-querystring-parser +py-aiohttp-cors py-fenics-dijitso py-ndg-httpsclient py-questionary +py-aioitertools py-fenics-dolfinx py-ndindex py-qutip +py-aiojobs py-fenics-ffc py-neo py-qutip-qip +py-aioredis py-fenics-ffcx py-neo4j py-rachis +py-aiosignal py-fenics-fiat py-neobolt py-radiant-mlhub +py-aiosqlite py-fenics-instant py-neotime py-radical-entk +py-aiowebdav2 py-fenics-ufl py-neovim-remote py-radical-gtod +py-alabaster py-fenics-ufl-legacy py-neptune-client py-radical-pilot +py-albucore py-ffmpy py-nest-asyncio py-radical-saga +py-alembic py-fief-client py-nestle py-radical-utils +py-alive-progress py-file-magic py-netaddr py-ranger-fm +py-alpaca-eval py-filecheck py-netcdf4 py-rapidfuzz +py-alpaca-farm py-filelock py-netifaces py-rapidfuzz-capi +py-alphafold py-filemagic py-netket py-rarfile +py-altair py-filetype py-netpyne py-rassumfrassum +py-altgraph py-filterpy py-networkit py-rasterio +py-amici py-find-libpython py-networkx py-rasterstats +py-amityping py-findlibs py-neuralgcm py-ratelim +py-amplpy py-fiona py-neurokit2 py-ratelimiter +py-ampltools py-fire py-neurolab py-raven +py-amqp py-fireworks py-neurom py-ray +py-amrex py-fiscalyear py-neurora py-rbtools +py-angel py-fisher py-neurotools py-rdflib +py-aniso8601 py-fits-tools py-nexus-sdk py-rdflib-jsonld +py-anndata py-fitsio py-nexusforge py-rdt +py-annexremote py-fitter py-nglview py-reacton +py-annotated-types py-fixtures py-ngs-tools py-readchar +py-annoy py-flake8 py-nh3 py-readme-renderer +py-ansi2html py-flake8-import-order py-nibabel py-recommonmark +py-ansible py-flake8-polyfill py-nilearn py-redis +py-ansimarkup py-flaky py-nipype py-referencing +py-ansiwrap py-flameprof py-nitransforms py-refgenconf +py-antimeridian py-flash-attn py-niworkflows py-refgenie +py-antipickle py-flask py-nltk py-regex +py-antlr4-python3-runtime py-flask-babel py-node-semver py-regionmask +py-antspyx py-flask-compress py-nodeenv py-regions +py-anuga py-flask-cors py-non-regression-test-tools py-reindent +py-anvio py-flask-paginate py-nose py-relion +py-anybadge py-flask-restful py-nose-cov py-relion-blush +py-anyio py-flask-socketio py-nose2 py-relion-classranker +py-anytree py-flask-sqlalchemy py-nosexcover py-repligit +py-anywidget py-flatbuffers py-notebook py-reportlab +py-apache-libcloud py-flatten-dict py-notebook-shim py-reportseff +py-apache-tvm-ffi py-flawfinder py-npe2 py-repoze-lru +py-apebench py-flax py-nptyping py-reproject +py-apex py-flexcache py-npx py-requests +py-apeye py-flexmock py-ntlm-auth py-requests-cache +py-apeye-core py-flexparser py-ntplib py-requests-file +py-apipkg py-flexx py-nugraph py-requests-ftp +py-apispec py-flit py-nuitka py-requests-futures +py-app-model py-flit-core py-num2words py-requests-kerberos +py-appdirs py-flit-scm py-numba py-requests-mock +py-applicationinsights py-flox py-numba4jax py-requests-ntlm +py-appnope py-flufl-lock py-numbagg py-requests-oauthlib +py-apprise py-fluiddyn py-numcodecs py-requests-toolbelt +py-apptools py-fluidfft py-numdifftools py-requests-unixsocket +py-apscheduler py-fluidfft-builder py-numexpr py-requirements-parser +py-arcgis py-fluidfft-fftw py-numexpr3 py-reretry +py-arch py-fluidfft-fftwmpi py-numkit py-resampy +py-archspec py-fluidfft-mpi-with-fftw py-numl py-resize-right +py-arcp py-fluidfft-p3dfft py-numpy py-resolvelib +py-argcomplete py-fluidfft-pfft py-numpy-groupies py-responses +py-argh py-fluidsim py-numpy-indexed py-resultsfile +py-argon2-cffi py-fluidsim-core py-numpy-quaternion py-retry +py-argon2-cffi-bindings py-flye py-numpy-stl py-retry-decorator +py-argparse-dataclass py-fn-py py-numpydoc py-retrying +py-argparse-manpage py-folium py-nvidia-dali py-retworkx +py-args py-fonttools py-nvidia-ml-py py-rfc3339-validator +py-arkouda py-ford py-nvidia-ml-py3 py-rfc3986 +py-arm-pyart py-formatizer py-nvidia-modulus py-rfc3986-validator +py-arpeggio py-formulaic py-nvidia-nvcomp py-rfc3987-syntax +py-arrow py-fortls py-nvidia-nvimagecodec py-rich +py-art py-fortran-language-server py-nvidia-nvjpeg2k py-rich-argparse +py-arviz py-fortranformat py-nvidia-nvtiff py-rich-click +py-asciitree py-fparser py-nvidia-physicsnemo py-rio-pmtiles +py-asdf py-fprettify py-nvitop py-rios +py-asdf-astropy py-fqdn py-nvtx py-rioxarray +py-asdf-coordinates-schemas py-fracridge py-oauth2client py-rise +py-asdf-standard py-fraction py-oauthlib py-river +py-asdf-transform-schemas py-freetype-py py-obspy py-rmm +py-asdf-unit-schemas py-freezegun py-ocnn py-rnc2rng +py-asdfghjkl py-frozendict py-odc-geo py-robocrys +py-ase py-frozenlist py-odfpy py-robotframework +py-asgi-lifespan py-fs py-ogb py-rocrate +py-asgiref py-fsspec py-okada-wrapper py-roifile +py-asn1crypto py-fsspec-xrootd py-olcf-velocity py-roman-numerals +py-aspy-yaml py-ftfy py-olefile py-roman-numerals-py +py-asserts py-ftputil py-olmoearth-pretrain-minimal py-rope +py-ast-serialize py-funcy py-omegaconf py-rosdep +py-asteval py-furo py-onnx py-rosdistro +py-astor py-fury py-onnx-opcounter py-rosinstall +py-astpretty py-fusepy py-onnxconverter-common py-rosinstall-generator +py-astroid py-future py-onnxmltools py-rospkg +py-astropy py-fuzzywuzzy py-onnxruntime py-rotary-embedding-torch +py-astropy-healpix py-fypp py-ont-fast5-api py-rouge-score +py-astropy-helpers py-galaxy-containers py-opcodes py-routes +py-astropy-iers-data py-galaxy-job-metrics py-open-clip-torch py-rpds-py +py-asttokens py-galaxy-objectstore py-openai py-rply +py-astunparse py-galaxy-sequence-utils py-openai-whisper py-rpy2 +py-async-generator py-galaxy-tool-util py-openapi-schema-pydantic py-rsa +py-async-lru py-galaxy-util py-opencensus py-rsatoolbox +py-async-timeout py-galaxy2cwl py-opencensus-context py-rseqc +py-asyncio py-gast py-opencv-python py-rst2pdf +py-asyncpg py-gcovr py-opendatalab py-rtoml +py-asynctest py-gcs-oauth2-boto-plugin py-openidc-client py-rtree +py-atomicwrites py-gcsfs py-openmc py-ruamel-ordereddict +py-atpublic py-gdc-client py-openmesh py-ruamel-yaml +py-atropos py-gdown py-openmim py-ruamel-yaml-clib +py-ats py-gee-asset-manager py-openpmd-validator py-ruamel-yaml-jinja2 +py-attmap py-geeadd py-openpmd-viewer py-rucio-clients +py-attrs py-geemap py-openpyxl py-ruff +py-audioread py-geeup py-openslide-python py-rustworkx +py-auditwheel py-gemmforge py-opentelemetry-api py-rx +py-authlib py-gemmi py-opentelemetry-exporter-prometheus py-s3cmd +py-autocfg py-genders py-opentelemetry-instrumentation py-s3fs +py-autodocsumm py-geneimpacts py-opentelemetry-sdk py-s3transfer +py-autograd py-generateds py-opentelemetry-semantic-conventions py-sacrebleu +py-autograd-gamma py-genshi py-opentree py-sacremoses +py-automat py-gensim py-opentuner py-safe-netrc +py-autopep8 py-geoalchemy2 py-opppy py-safetensors +py-autoray py-geocoder py-ops py-salib +py-autoreject py-geocube py-opt-einsum py-sarif-tools +py-auxlib py-geographiclib py-optax py-scandir +py-avro py-geojson py-optree py-scanpy +py-avro-json-serializer py-geomdl py-optuna py-schema +py-avro-python3 py-geopandas py-or-tools py-schema-salad +py-awesome-slugify py-geoplot py-oracledb py-scientificpython +py-awkward py-geopmdpy py-orbax-checkpoint py-scifem +py-awkward-cpp py-geopmpy py-ordered-set py-scikit-build +py-awkward0 py-geopy py-orderly-set py-scikit-build-core +py-awscrt py-geoviews py-orjson py-scikit-fmm +py-ax-platform py-gest-api py-os-service-types py-scikit-fuzzy +py-azote py-gevent py-oset py-scikit-image +py-azure-batch py-gf256 py-oslo-config py-scikit-learn +py-azure-cli-command-modules-nspkg py-gfal2-python py-oslo-i18n py-scikit-learn-extra +py-azure-cli-core py-gffutils py-oslo-serialization py-scikit-matter +py-azure-cli-nspkg py-ghp-import py-oslo-utils py-scikit-optimize +py-azure-cli-telemetry py-gidgethub py-osqp py-scikit-sparse +py-azure-common py-gidgetlab py-outdated py-scikits-odes +py-azure-core py-gimmik py-overpy py-scine-chemoton +py-azure-cosmos py-gin-config py-overrides py-scine-puffin +py-azure-datalake-store py-git-review py-owlrl py-scinum +py-azure-functions-devops-build py-gitdb py-owslib py-scipy +py-azure-graphrbac py-gitpython py-oyaml py-scitokens +py-azure-identity py-glean-parser py-p2j py-scooby +py-azure-keyvault py-glean-sdk py-pacifica-downloader py-scoop +py-azure-keyvault-certificates py-glmnet py-pacifica-namespace py-scp +py-azure-keyvault-keys py-glmnet-python py-pacifica-uploader py-screed +py-azure-keyvault-nspkg py-glmsingle py-packaging py-scs +py-azure-keyvault-secrets py-glob2 py-pager py-sdmetrics +py-azure-loganalytics py-globus-cli py-paho-mqtt py-sdnotify +py-azure-mgmt-advisor py-globus-sdk py-palettable py-sdv +py-azure-mgmt-apimanagement py-gluoncv py-pamela py-seaborn +py-azure-mgmt-appconfiguration py-glymur py-panaroo py-secretstorage +py-azure-mgmt-applicationinsights py-gmsh py-pandas py-seekpath +py-azure-mgmt-authorization py-gmsh-interop py-pandas-datareader py-segmentation-models-pytorch +py-azure-mgmt-batch py-gmxapi py-pandas-stubs py-selenium +py-azure-mgmt-batchai py-gnuplot py-pandera py-semantic-version +py-azure-mgmt-billing py-goatools py-pandocfilters py-semver +py-azure-mgmt-botservice py-gooey py-panedr py-send2trash +py-azure-mgmt-cdn py-google py-panel py-sentencepiece +py-azure-mgmt-cognitiveservices py-google-api-core py-papermill py-sentry-sdk +py-azure-mgmt-compute py-google-api-python-client py-paralleltask py-seqeval +py-azure-mgmt-consumption py-google-apitools py-param py-sequence-models +py-azure-mgmt-containerinstance py-google-auth py-parameterized py-seriate +py-azure-mgmt-containerregistry py-google-auth-httplib2 py-paramiko py-serpent +py-azure-mgmt-containerservice py-google-auth-oauthlib py-paramz py-session-info +py-azure-mgmt-core py-google-cloud-appengine-logging py-parasail py-setproctitle +py-azure-mgmt-cosmosdb py-google-cloud-audit-log py-parmed py-setupmeta +py-azure-mgmt-datalake-analytics py-google-cloud-batch py-parse py-setuptools +py-azure-mgmt-datalake-store py-google-cloud-bigquery py-parse-type py-setuptools-cpp +py-azure-mgmt-datamigration py-google-cloud-core py-parsedatetime py-setuptools-git +py-azure-mgmt-deploymentmanager py-google-cloud-logging py-parsimonious py-setuptools-git-versioning +py-azure-mgmt-devtestlabs py-google-cloud-storage py-parsl py-setuptools-reproducible +py-azure-mgmt-dns py-google-crc32c py-parsley py-setuptools-rust +py-azure-mgmt-eventgrid py-google-pasta py-parso py-setuptools-scm +py-azure-mgmt-eventhub py-google-reauth py-partd py-setuptools-scm-git-archive +py-azure-mgmt-hdinsight py-google-resumable-media py-particle py-sfepy +py-azure-mgmt-imagebuilder py-googleapis-common-protos py-paste py-sgp4 +py-azure-mgmt-iotcentral py-googledrivedownloader py-pastedeploy py-sh +py-azure-mgmt-iothub py-gosam py-pastel py-shap +py-azure-mgmt-iothubprovisioningservices py-gpaw py-pastml py-shapely +py-azure-mgmt-keyvault py-gpaw-data py-patch py-shellescape +py-azure-mgmt-kusto py-gpustat py-patch-ng py-shellingham +py-azure-mgmt-loganalytics py-gputil py-path-py py-shiboken2 +py-azure-mgmt-managedservices py-gpy py-pathlib-abc py-shippinglabel +py-azure-mgmt-managementgroups py-gpyopt py-pathlib2 py-shortbred +py-azure-mgmt-maps py-gpytorch py-pathml py-shortuuid +py-azure-mgmt-marketplaceordering py-gql py-pathos py-shroud +py-azure-mgmt-media py-gradio py-pathsimanalysis py-shtab +py-azure-mgmt-monitor py-gradio-client py-pathspec py-simpervisor +py-azure-mgmt-msi py-grandalf py-pathtools py-simple-slurm +py-azure-mgmt-netapp py-graphcast py-pathvalidate py-simpleeval +py-azure-mgmt-network py-grapheme py-pathy py-simplegeneric +py-azure-mgmt-nspkg py-graphene py-patool py-simplejson +py-azure-mgmt-policyinsights py-graphlib-backport py-patsy py-simplekml +py-azure-mgmt-privatedns py-graphql-core py-pauvre py-simpletraj +py-azure-mgmt-rdbms py-graphql-relay py-pbr py-simpy +py-azure-mgmt-recoveryservices py-graphql-ws py-pdb-tools py-simsimd +py-azure-mgmt-recoveryservicesbackup py-graphviz py-pdbfixer py-singledispatchmethod +py-azure-mgmt-redhatopenshift py-gravity py-pdequinox py-sip +py-azure-mgmt-redis py-grayskull py-pdf2image py-six +py-azure-mgmt-relay py-greenlet py-pdm-backend py-skl2onnx +py-azure-mgmt-reservations py-grequests py-pdm-pep517 py-slepc4py +py-azure-mgmt-resource py-griddataformats py-pdoc3 py-slicer +py-azure-mgmt-search py-griffe py-peachpy py-slurm-pipeline +py-azure-mgmt-security py-gromacswrapper py-peakutils py-smac +py-azure-mgmt-servicebus py-grpc-google-iam-v1 py-pebble py-smart-open +py-azure-mgmt-servicefabric py-grpcio py-peft py-smartredis +py-azure-mgmt-signalr py-grpcio-status py-pelicanfs py-smartsim +py-azure-mgmt-sql py-grpcio-tools py-pem py-smartypants +py-azure-mgmt-sqlvirtualmachine py-gsd py-pendulum py-smmap +py-azure-mgmt-storage py-gssapi py-pennylane py-smolagents +py-azure-mgmt-trafficmanager py-gsutil py-pennylane-lightning py-smote-variants +py-azure-mgmt-web py-gtdbtk py-pennylane-lightning-kokkos py-snakemake-executor-plugin-azure-batch +py-azure-multiapi-storage py-gunicorn py-pep517 py-snakemake-executor-plugin-cluster-generic +py-azure-nspkg py-gxformat2 py-pep8 py-snakemake-executor-plugin-cluster-sync +py-azure-storage-blob py-gym py-pep8-naming py-snakemake-executor-plugin-drmaa +py-azure-storage-common py-h11 py-perfdump py-snakemake-executor-plugin-flux +py-azure-storage-nspkg py-h2 py-performance py-snakemake-executor-plugin-googlebatch +py-b2luigi py-h3 py-periodictable py-snakemake-executor-plugin-kubernetes +py-babel py-h5glance py-petastorm py-snakemake-executor-plugin-slurm +py-backcall py-h5io py-petname py-snakemake-executor-plugin-slurm-jobstep +py-backoff py-h5netcdf py-petsc4py py-snakemake-executor-plugin-tes +py-backpack-for-pytorch py-h5py py-pexpect py-snakemake-interface-common +py-backports-abc py-h5sh py-pfzy py-snakemake-interface-executor-plugins +py-backports-cached-property py-hacking py-pgzip py-snakemake-interface-logger-plugins +py-backports-entry-points-selectable py-hail py-phanotate py-snakemake-interface-report-plugins +py-backports-lzma py-handy-archives py-phonenumbers py-snakemake-interface-scheduler-plugins +py-backports-os py-hatch py-phonopy py-snakemake-interface-storage-plugins +py-backports-ssl-match-hostname py-hatch-cython py-photutils py-snakemake-storage-plugin-azure +py-backports-tarfile py-hatch-fancy-pypi-readme py-phydms py-snakemake-storage-plugin-fs +py-backports-tempfile py-hatch-jupyter-builder py-phylophlan py-snakemake-storage-plugin-ftp +py-backports-weakref py-hatch-nodejs-version py-pickle5 py-snakemake-storage-plugin-gcs +py-backports-zoneinfo py-hatch-requirements-txt py-pickleshare py-snakemake-storage-plugin-http +py-bagit py-hatch-vcs py-picmistandard py-snakemake-storage-plugin-pelican +py-bagit-profile py-hatchet py-picrust2 py-snakemake-storage-plugin-rucio +py-bakta py-hatchling py-pid py-snakemake-storage-plugin-s3 +py-bandit py-hclust2 py-pika py-snakemake-storage-plugin-sftp +py-barectf py-hdbscan py-pillow py-snakemake-storage-plugin-zenodo +py-basemap py-hdf5plugin py-pillow-simd py-snakeviz +py-bash-kernel py-hdfs py-pint py-snappy +py-basis-set-exchange py-healpix py-pint-xarray py-sncosmo +py-batchspawner py-healpy py-pip py-sniffio +py-bayesian-optimization py-heapdict py-pipcl py-snoop +py-bcbio-gff py-heat py-pipdeptree py-snowballstemmer +py-bcolz py-heavyball py-piper py-snuggs +py-bcrypt py-hep-ml py-pipits py-sobol-seq +py-bdbag py-hepdata-converter py-pispino py-social-auth-core +py-beaker py-hepdata-lib py-pivy py-sonlib +py-beancount py-hepdata-validator py-pkgconfig py-sortedcollections +py-beartype py-hepstats py-pkginfo py-sortedcontainers +py-beautifulsoup4 py-hepunits py-pkgutil-resolve-name py-soundfile +py-beniget py-heudiconv py-plac py-soupsieve +py-bibtexparser py-hf-transfer py-plaid py-soyclustering +py-bidict py-hf-xet py-planar py-spacy +py-bids-validator py-hieroglyph py-planet py-spacy-legacy +py-bids-validator-deno py-highspy py-planetary-computer py-spacy-loggers +py-bidscoin py-hiredis py-platformdirs py-spacy-models-en-core-web-sm +py-bidskit py-hist py-plotext py-spacy-models-en-vectors-web-lg +py-bidsschematools py-histbook py-plotille py-sparse +py-bigdft py-histogrammar py-plotly py-spatialist +py-bigfloat py-histoprint py-plotnine py-spatialite +py-billiard py-hjson py-pluggy py-spatialpandas +py-binary py-hmmlearn py-plum-dispatch py-spdlog +py-binaryornot py-holland-backup py-ply py-spectra +py-bintrees py-holoviews py-pmtiles py-spectral +py-binwalk py-horovod py-pmw py-speech-recognition +py-biobb-common py-hpack py-pmw-patched py-spefile +py-biobb-gromacs py-hpbandster py-pockets py-spgl1 +py-biobb-io py-hpccm py-poetry py-spglib +py-biobb-model py-hsluv py-poetry-core py-spherical +py-biobb-structure-checking py-hstspreload py-poetry-dynamic-versioning py-sphericart +py-biobb-structure-utils py-htgettoken py-poetry-plugin-export py-sphericart-torch +py-bioblend py-html2text py-poetry-plugin-tweak-dependencies-version py-sphinx +py-biom-format py-html5lib py-polars py-sphinx-argparse +py-biomine py-htmldate py-pomegranate py-sphinx-autodoc-typehints +py-biopandas py-htmlgen py-pooch py-sphinx-basic-ng +py-biopython py-htseq py-portalocker py-sphinx-book-theme +py-biosppy py-httpbin py-portend py-sphinx-bootstrap-theme +py-biotite py-httpcore py-portpicker py-sphinx-click +py-biotraj py-httplib2 py-postcactus py-sphinx-copybutton +py-bitarray py-httpretty py-poster py-sphinx-design +py-bitshuffle py-httpstan py-pot py-sphinx-fortran +py-bitstring py-httptools py-pox py-sphinx-gallery +py-bitstruct py-httpx py-poxy py-sphinx-github-changelog +py-black py-huggingface-hub py-poyo py-sphinx-immaterial +py-blake3 py-humanfriendly py-ppft py-sphinx-jinja2-compat +py-bleach py-humanize py-pprintpp py-sphinx-multiversion +py-blessed py-hvac py-pre-commit py-sphinx-prompt +py-blessings py-hvplot py-preshed py-sphinx-removed-in +py-blight py-hydra-core py-pretrainedmodels py-sphinx-rtd-dark-mode +py-blinker py-hypercorn py-pretty-errors py-sphinx-rtd-theme +py-blis py-hyperframe py-prettytable py-sphinx-tabs +py-blosc py-hyperlink py-priority py-sphinx-theme-builder +py-blosc2 py-hyperopt py-profilehooks py-sphinx-toolbox +py-blosum py-hypothesis py-proglog py-sphinxautomodapi +py-bluepyefe py-ibm-cloud-sdk-core py-progress py-sphinxcontrib-applehelp +py-bluepyemodel py-ibm-watson py-progressbar2 py-sphinxcontrib-bibtex +py-bluepyopt py-ics py-progressbar33 py-sphinxcontrib-devhelp +py-bmap-tools py-id py-projectq py-sphinxcontrib-htmlhelp +py-bmtk py-identify py-prokaryote py-sphinxcontrib-issuetracker +py-bokeh py-idna py-prometheus-client py-sphinxcontrib-jquery +py-boltons py-idna-ssl py-prometheus-flask-exporter py-sphinxcontrib-jsmath +py-boom-boot-manager py-igor py-promise py-sphinxcontrib-mermaid +py-boost-histogram py-igor2 py-prompt-toolkit py-sphinxcontrib-moderncmakedomain +py-boto py-igraph py-propcache py-sphinxcontrib-napoleon +py-boto3 py-igv-notebook py-properscoring py-sphinxcontrib-plantuml +py-botocore py-igwn-auth-utils py-proto-plus py-sphinxcontrib-programoutput +py-botorch py-ihm py-protobuf py-sphinxcontrib-qthelp +py-bottle py-illumina-utils py-protoc-gen-swagger py-sphinxcontrib-serializinghtml +py-bottleneck py-ilmbase py-prov py-sphinxcontrib-spelling +py-bqplot py-imagecodecs py-proxystore py-sphinxcontrib-tikz +py-braceexpand py-imagecorruptions-imaug py-prwlock py-sphinxcontrib-trio +py-brain-indexer py-imagehash py-psalg py-sphinxcontrib-websupport +py-branca py-imageio py-psana py-sphinxemoji +py-bravado py-imageio-ffmpeg py-psij-python py-sphobjinv +py-bravado-core py-imagesize py-psmon py-spykeutils +py-breakseq2 py-imaug py-pspamm py-spython +py-breathe py-imbalanced-learn py-psutil py-sqlalchemy +py-brian py-imgaug py-psyclone py-sqlalchemy-migrate +py-brian2 py-iminuit py-psycopg2 py-sqlalchemy-stubs +py-brotli py-immutabledict py-psygnal py-sqlalchemy-utils +py-brotlipy py-immutables py-ptyprocess py-sqlitedict +py-bsddb3 py-importlib-metadata py-pubchempy py-sqlparse +py-build py-importlib-resources py-pudb py-srsly +py-bx-python py-imutils py-pulp py-sseclient +py-cachecontrol py-in-n-out py-pulsar-galaxy-lib py-sshtunnel +py-cached-property py-incremental py-pure-eval py-sspilib +py-cachetools py-inflect py-pure-sasl py-stack-data +py-cachey py-inheritance py-puremagic py-starfile +py-cachy py-iniconfig py-py py-starlette +py-cairocffi py-iniparse py-py-cpuinfo py-starlette-context +py-cairosvg py-inquirer py-py-spy py-starsessions +py-caliper-reader py-inquirerpy py-py-tes py-stashcp +py-callmonitor py-inscriptis py-py2bit py-statmorph +py-calver py-installer py-py2neo py-statsmodels +py-cantoolz py-instrain py-py4j py-stdlib-list +py-carputils py-intake py-py6s py-stestr +py-cartopy py-intake-esm py-pyabel py-stevedore +py-casadi py-intbitset py-pyaestro py-stomp-py +py-catalogue py-intel-openmp py-pyahocorasick py-stopit +py-catkin-pkg py-intensity-normalization py-pyamg py-storm +py-cattrs py-interface-meta py-pyaml py-stratify +py-cbor2 py-interlap py-pyaml-env py-strawberryfields +py-cclib py-intervaltree py-pyani py-streamlit +py-cdo py-invoke py-pyarrow py-stringzilla +py-cdsapi py-iocapture py-pyasn1 py-striprtf +py-cekit py-iopath py-pyasn1-modules py-stsci-distutils +py-celery py-ipaddress py-pyassimp py-stui +py-cellprofiler py-ipdb py-pyautogui py-submitit +py-cellprofiler-core py-ipycanvas py-pybedtools py-subrosa +py-centrosome py-ipyevents py-pybids py-subword-nmt +py-cerberus py-ipyfilechooser py-pybigwig py-supermercado +py-certifi py-ipykernel py-pybind11 py-superqt +py-certipy py-ipyleaflet py-pybind11-stubgen py-supervisor +py-cf-units py-ipympl py-pybktree py-svgpath +py-cf-xarray py-ipyparallel py-pybobyqa py-svgpathtools +py-cffconvert py-ipyrad py-pybrain py-svgutils +py-cffi py-ipython py-pybtex py-svgwrite +py-cfgrib py-ipython-cluster-helper py-pybtex-docutils py-swagger-spec-validator +py-cfgv py-ipython-genutils py-pybv py-symengine +py-cftime py-ipython-pygments-lexers py-pycairo py-symfit +py-cgen py-ipytree py-pycares py-sympy +py-chai py-ipyvtk-simple py-pycbc py-syned +py-chai-lab py-ipyvue py-pycgns py-sysrsync +py-chainer py-ipyvuetify py-pychecker py-systemd-python +py-chainforgecodegen py-ipywidgets py-pycifrw py-tabledata +py-chainmap py-irpf90 py-pyclibrary py-tables +py-chalice py-isa-rwval py-pycm py-tabulate +py-chardet py-isal py-pycmd py-tatsu +py-charm4py py-iso8601 py-pycocotools py-tblib +py-charset-normalizer py-isodate py-pycodestyle py-tbparse +py-chart-studio py-isoduration py-pycollada py-tcolorpy +py-cheap-repr py-isort py-pycompadre py-tempita +py-checkm-genome py-itables py-pyconify py-templateflow +py-cheetah3 py-iterative-stats py-pycorenlp py-tempora +py-chemfiles py-itk py-pycortex py-tenacity +py-chemiscope py-itolapi py-pycosat py-tensorboard +py-cheroot py-itsdangerous py-pycparser py-tensorboard-data-server +py-cherrypy py-jacobi py-pycrypto py-tensorboard-plugin-wit +py-chex py-jaconv py-pycryptodome py-tensorboardx +py-choreographer py-jamo py-pycryptodomex py-tensorflow +py-chronyk py-janus py-pyct py-tensorflow-datasets +py-ci-info py-jaraco-classes py-pycubexr py-tensorflow-estimator +py-ci-sdr py-jaraco-context py-pycuda py-tensorflow-hub +py-cig-pythia py-jaraco-functools py-pycurl py-tensorflow-metadata +py-cinema-lib py-jarowinkler py-pydantic py-tensorflow-probability +py-cinemasci py-jarvis-util py-pydantic-compat py-tensorly +py-circus py-javaproperties py-pydantic-core py-tensorstore +py-citeproc-py py-jax py-pydantic-extra-types py-termcolor +py-clarabel py-jaxlib py-pydantic-settings py-termgraph +py-clean-text py-jaxtyping py-pydantic-tes py-terminado +py-cleo py-jcb py-pydap py-terminaltables +py-click py-jdatetime py-pydata-sphinx-theme py-tern +py-click-didyoumean py-jdcal py-pydatalog py-tesorter +py-click-option-group py-jedi py-pydeface py-testfixtures +py-click-plugins py-jeepney py-pydeprecate py-testinfra +py-click-repl py-jellyfish py-pydeps py-testpath +py-cligj py-jinja2 py-pydevtool py-testrepository +py-clikit py-jinja2-cli py-pydftracer py-testresources +py-climate py-jinja2-humanize-extension py-pydicom py-testscenarios +py-climax py-jinja2-time py-pydispatcher py-testtools +py-clint py-jiter py-pydmd py-tetoolkit +py-clip-anytorch py-jmespath py-pydocstyle py-text-unidecode +py-clipboard py-jmp py-pydoe py-textblob +py-cloudauthz py-joblib py-pydoe2 py-texttable +py-cloudbridge py-jplephem py-pydot py-textual +py-cloudpathlib py-jproperties py-pydot2 py-textual-fspicker +py-cloudpickle py-jprops py-pydotplus py-textual-plotext +py-clustershell py-jpype1 py-pydub py-textwrap3 +py-cma py-jraph py-pyeda py-textx +py-cmaes py-jsmin py-pyedr py-tf-keras +py-cmake-format py-json-get py-pyee py-tf2onnx +py-cmake-parser py-json-tricks py-pyelftools py-tfdlpack +py-cmocean py-json2html py-pyem py-theano +py-cmseq py-json5 py-pyenchant py-thewalrus +py-cmsml py-jsonargparse py-pyepsg py-thinc +py-cmyt py-jsondiff py-pyerfa py-thop +py-coapthon3 py-jsonlines py-pyeventsystem py-threadpoolctl +py-coca-pytorch py-jsonpatch py-pyface py-throttler +py-coclust py-jsonpath-ng py-pyfaidx py-tidynamics +py-codebasin py-jsonpickle py-pyfasta py-tifffile +py-codecarbon py-jsonpointer py-pyfastaq py-tiktoken +py-codechecker py-jsonref py-pyfftw py-tilelang +py-codepy py-jsonschema py-pyfiglet py-timezonefinder +py-codespell py-jsonschema-specifications py-pyfits py-timm +py-coherent-licensed py-junit-xml py-pyfive py-tinyarray +py-coilmq py-junit2html py-pyflakes py-tinycss2 +py-colabtools py-jupyter py-pyfr py-tinydb +py-colorama py-jupyter-client py-pygame py-tinyrecord +py-colorcet py-jupyter-console py-pygdal py-tld +py-colorclass py-jupyter-core py-pygdbmi py-tldextract +py-colored py-jupyter-events py-pygelf py-tmtools +py-colored-traceback py-jupyter-leaflet py-pygeos py-tokenize-rt +py-coloredlogs py-jupyter-lsp py-pygetwindow py-tokenizers +py-colorful py-jupyter-packaging py-pygit2 py-toml +py-colorio py-jupyter-server py-pygithub py-tomli +py-colorlog py-jupyter-server-mathjax py-pyglet py-tomli-w +py-colorlover py-jupyter-server-proxy py-pygments py-tomlkit +py-colormath py-jupyter-server-terminals py-pygments-pytest py-tomopy +py-colorpy py-jupyter-telemetry py-pygmsh py-toolz +py-colorspacious py-jupyterhub py-pygmt py-topiary-asr +py-colossalai py-jupyterlab py-pygobject py-toposort +py-colour py-jupyterlab-pygments py-pygps py-torch +py-comm py-jupyterlab-server py-pygpu py-torch-c-dlpack-ext +py-common py-jupyterlab-widgets py-pygraphviz py-torch-cluster +py-commonmark py-jupytext py-pygresql py-torch-fidelity +py-conan py-justext py-pygrib py-torch-geometric +py-conda-inject py-jwcrypto py-pygtrie py-torch-harmonics +py-conda-souschef py-kaggle py-pyh5md py-torch-nvidia-apex +py-confection py-kaldiio py-pyhdf py-torch-scatter +py-configargparse py-kaleido py-pyheadtail py-torch-sparse +py-configobj py-kb-python py-pyhmmer py-torch-spex +py-configparser py-keras py-pyhull py-torch-spline-conv +py-configspace py-keras-applications py-pyicu py-torchaudio +py-confluent-kafka py-keras-preprocessing py-pyinstrument py-torchbenchmark +py-connectionpool py-keras2onnx py-pyinstrument-cext py-torchdata +py-consolekit py-kerberos py-pyisemail py-torchdiffeq +py-constantly py-kerchunk py-pyjnius py-torchfile +py-contextily py-key-value-aio py-pyjwt py-torchgeo +py-contextlib2 py-keyboard py-pyke py-torchmeta +py-contexttimer py-keyring py-pykerberos py-torchmetrics +py-continuum py-keyrings-alt py-pykml py-torchseg +py-contourpy py-keystoneauth1 py-pykokkos-base py-torchsummary +py-contrib py-kitchen py-pykwalify py-torchtext +py-control py-kiwisolver py-pylab-sdk py-torchtoolbox +py-convertdate py-kmodes py-pylatex py-torchvision +py-convokit py-knack py-pyld py-tornado +py-cookiecutter py-kneaddata py-pylev py-tox +py-coolname py-kombu py-pylibjpeg-libjpeg py-toyplot +py-copulas py-kornia py-pylibjpeg-openjpeg py-toytree +py-corner py-kornia-rs py-pylibjpeg-rle py-tpot +py-correctionlib py-kosh py-pylibmagic py-tqdm +py-corrfunc py-krb5 py-pylikwid py-traceback2 +py-counter py-kt-legacy py-pylint py-trafilatura +py-courlan py-kubernetes py-pylint-gitlab py-trainax +py-cov-core py-kymatio py-pylith py-traitlets +py-coverage py-lagom py-pylops py-traits +py-coveralls py-langcodes py-pymatgen py-traitsui +py-cppheaderparser py-langsmith py-pymatreader py-traittypes +py-cppy py-language-data py-pymbolic py-trame +py-cramjam py-lap py-pymc3 py-trame-client +py-crashtest py-laplace-torch py-pymdown-extensions py-trame-common +py-crc32c py-lark py-pymeeus py-trame-server +py-crcmod py-lark-parser py-pyminifier py-trame-vtk +py-croniter py-laspy py-pymol py-trame-vuetify +py-crossmap py-latexcodec py-pymongo py-transformer-engine +py-cryolobm py-law py-pymoo py-transformers +py-cryptography py-lazy py-pymorph py-transforms3d +py-css-parser py-lazy-loader py-pympler py-transonic +py-cssselect py-lazy-object-proxy py-pymsgbox py-tree +py-cssselect2 py-lazy-property py-pymummer py-tree-math +py-cssutils py-lazyarray py-pymumps py-tree-sitter +py-csvkit py-lcls-krtc py-pymupdf py-tree-sitter-c +py-ctgan py-ldap3 py-pymupdf-fonts py-treehash +py-cuda-bindings py-leather py-pymysql py-treelib +py-cuda-core py-leidenalg py-pynacl py-triangle +py-cuda-pathfinder py-lerc py-pynio py-trieregex +py-cudf py-lfpykit py-pynisher py-trimesh +py-cufflinks py-lhsmdu py-pynn py-triton +py-cuml py-liac-arff py-pynndescent py-trl +py-cupy py-libclang py-pynpm py-trojanzoo-sphinx-theme +py-current py-libconf py-pynrrd py-trove-classifiers +py-currentscape py-libcst py-pynucleus py-trx-python +py-curryreader py-libensemble py-pynumpress py-tuiview +py-curvlinops-for-pytorch py-liblas py-pynvim py-tuspy +py-custodian py-librosa py-pynvml py-tuswsgi +py-custom-inherit py-librt py-pynvtx py-tweedledum +py-cutadapt py-libsonata py-pyodbc py-twine +py-cvxopt py-lifelines py-pyogrio py-twisted +py-cvxpy py-lightgbm py-pyomo py-ty +py-cwl-upgrader py-lightly py-pyopencl py-typed-ast +py-cwl-utils py-lightly-utils py-pyopengl py-typeguard +py-cwltool py-lightning py-pyopenssl py-typepy +py-cx-oracle py-lightning-api-access py-pypar py-typer +py-cycler py-lightning-cloud py-pyparsing py-types-dataclasses +py-cykhash py-lightning-fabric py-pypdf py-types-geopandas +py-cylc-flow py-lightning-lite py-pypdf2 py-types-pkg-resources +py-cylc-rose py-lightning-uq-box py-pypeflow py-types-psutil +py-cylp py-lightning-utilities py-pypeg2 py-types-python-dateutil +py-cymem py-lightpipes py-pyperclip py-types-pytz +py-cyordereddict py-ligo-segments py-pyperf py-types-pyyaml +py-cython py-lil-aretomo py-pypinfo py-types-requests +py-cython-bbox py-line-profiler py-pypinyin py-types-setuptools +py-cyvcf2 py-linear-operator py-pypistats py-types-shapely +py-d2to1 py-linear-tree py-pypng py-types-tqdm +py-dace py-linecache2 py-pyppeteer py-types-typed-ast +py-dacite py-lineenhancer py-pyprecice py-types-urllib3 +py-dadi py-linkchecker py-pyprof2html py-typesentry +py-dalib py-linkify-it-py py-pyproj py-typeshed-client +py-damask py-lit py-pyproject-hooks py-typing-extensions +py-darshan py-litdata py-pyproject-metadata py-typing-inspect +py-dasbus py-littleutils py-pyproject-parser py-typing-inspection +py-dash py-lizard py-pypulse py-typish +py-dash-bootstrap-components py-llama-cpp-python py-pyqi py-tzdata +py-dash-svg py-llnl-sina py-pyqt-builder py-tzlocal +py-dask py-llvmlite py-pyqt4 py-ubiquerg +py-dask-awkward py-lmdb py-pyqt5 py-uc-micro-py +py-dask-expr py-lmfit py-pyqt5-sip py-ucsf-pyem +py-dask-glm py-lmodule py-pyqt6 py-ucx-py +py-dask-histogram py-localcider py-pyqt6-sip py-uhi +py-dask-jobqueue py-locket py-pyqtgraph py-ujson +py-dask-ml py-lockfile py-pyquaternion py-ultralytics +py-dask-mpi py-logilab-common py-pyreadline py-umalqurra +py-dask-sphinx-theme py-logistro py-pyrect py-umap-learn +py-databricks-cli py-logmuse py-pyrevolve py-umi-tools +py-dataclasses py-logomaker py-pyrfr py-uncertainties +py-dataclasses-json py-loguru py-pyro-api py-uncertainty-toolbox +py-datacube py-loky py-pyro-ppl py-unfoldnd +py-datalad py-loompy py-pyro4 py-unicycler +py-datalad-container py-looseversion py-pyroaring py-unidecode +py-datalad-deprecated py-louie py-pyrocko py-unittest2py3k +py-datalad-hirni py-lpips py-pyrodigal py-universal-pathlib +py-datalad-metadata-model py-lru-dict py-pyrodigal-gv py-unshare +py-datalad-metalad py-lscsoft-glue py-pyrometheus py-unyt +py-datalad-neuroimaging py-lsprotocol py-pyrr py-update-checker +py-datalad-webapp py-luigi py-pyrsistent py-uproot +py-dataproperty py-lupa py-pysam py-uproot3 +py-datasets py-lvis py-pyscaf py-uproot3-methods +py-datashader py-lws py-pyscf py-uqinn +py-datatrove py-lxml py-pyscipopt py-uri-template +py-dateparser py-lz4 py-pyscreeze py-uritemplate +py-dateutils py-lzstring py-pyseer py-url-normalize +py-datrie py-m2r py-pyserial py-urllib3 +py-dbf py-macholib py-pysftp py-urllib3-secure-extra +py-dbfread py-machotools py-pyshacl py-urwid +py-dcm2bids py-macs2 py-pyshp py-us +py-dcmstack py-macs3 py-pyside2 py-userpath +py-deap py-maestrowf py-pysimdjson py-usgs +py-debtcollector py-magicgui py-pysindy py-utils +py-debugpy py-mahotas py-pysmartdl py-uv +py-decorator py-mailchecker py-pysmiles py-uv-build +py-deepdiff py-make py-pysocks py-uv-dynamic-versioning +py-deepecho py-makefun py-pysolar py-uvicorn +py-deephyper py-mako py-pyspark py-uvloop +py-deepmerge py-mapbox-earcut py-pyspellchecker py-uvw +py-deepsig-biocomp py-mapclassify py-pyspice py-uwsgi +py-deepspeed py-mariadb py-pyspnego py-uxarray +py-deeptools py-marisa-trie py-pyspoa py-validate-pyproject +py-deeptoolsintervals py-markdown py-pyspod py-validators +py-defusedxml py-markdown-include py-pysqlite3 py-vascpy +py-deisa py-markdown-it-py py-pystac py-vcf-kit +py-deisa-core py-markdown2 py-pystac-client py-vcrpy +py-deisa-dask py-markov-clustering py-pystache py-vcstool +py-demjson py-markovify py-pystan py-vcstools +py-dendropy py-markupsafe py-pysurfer py-vcversioner +py-deprecat py-marshmallow py-pytablewriter py-vector +py-deprecated py-matminer py-pytailf py-vector-quantize-pytorch +py-deprecation py-matplotlib py-pytaridx py-vermin +py-deprecation-alias py-matplotlib-inline py-pytecplot py-vermouth-martinize +py-derivative py-matplotlib-scalebar py-pytesseract py-versioneer +py-descartes py-maturin py-pytest py-versioneer-518 +py-devito py-mayavi py-pytest-aiohttp py-versioningit +py-devlib py-mbstrdecoder py-pytest-allclose py-verspec +py-dgl py-mccabe py-pytest-arraydiff py-vesin +py-dh-scikit-optimize py-md-environ py-pytest-astropy py-vine +py-diagnostic py-mda-xdrlib py-pytest-astropy-header py-virtualenv +py-dict2css py-mdahole2 py-pytest-asyncio py-virtualenv-clone +py-dictdiffer py-mdanalysis py-pytest-benchmark py-virtualenvwrapper +py-dictobj py-mdanalysistests py-pytest-cache py-visdom +py-dill py-mdi py-pytest-check-links py-vispy +py-dinosaur py-mdit-py-plugins py-pytest-cmake py-vl-convert-python +py-dipy py-mdocfile py-pytest-cov py-voluptuous +py-dirtyjson py-mdurl py-pytest-cpp py-vsc-base +py-disbatch py-meautility py-pytest-datadir py-vsc-install +py-discover py-mechanize py-pytest-doctestplus py-vsts +py-diskcache py-medaka py-pytest-fail-slow py-vsts-cd-manager +py-dist-meta py-meldmd py-pytest-filter-subpackage py-wadler-lindig +py-distance py-melissa-core py-pytest-flake8 py-waitress +py-distlib py-memelite py-pytest-flakes py-walinuxagent +py-distributed py-memory-profiler py-pytest-forked py-wand +py-distro py-memprof py-pytest-html py-wandb +py-django py-memray py-pytest-httpbin py-warcio +py-dlcpar py-mendeleev py-pytest-isort py-warlock +py-dm-haiku py-mercantile py-pytest-lazy-fixture py-wasabi +py-dm-tree py-mergedeep py-pytest-memray py-watchdog +py-dnaio py-merlin py-pytest-metadata py-watchfiles +py-dnspython py-meshio py-pytest-mock py-waterdynamics +py-docker py-meshpy py-pytest-mpi py-waves +py-dockerpy-creds py-meson-python py-pytest-mypy py-wcsaxes +py-docket py-metaphlan py-pytest-openfiles py-wcwidth +py-docopt py-metasv py-pytest-parallel py-webargs +py-docopt-ng py-metatensor-core py-pytest-pep8 py-webcolors +py-docstring-parser py-metatensor-learn py-pytest-pylint py-webdataset +py-docstring-to-markdown py-metatensor-operations py-pytest-qt py-webdavclient3 +py-docutils py-metatensor-torch py-pytest-random-order py-webencodings +py-docutils-stubs py-metatomic-torch py-pytest-regtest py-webkit-server +py-dogpile-cache py-metatrain py-pytest-remotedata py-weblogo +py-doit py-metis py-pytest-reportlog py-webob +py-dolfinx-mpc py-metomi-isodatetime py-pytest-retry py-websocket-client +py-dom-toml py-metomi-rose py-pytest-runner py-websockets +py-domdf-python-tools py-metpy py-pytest-socket py-werkzeug +py-dominate py-metric-learn py-pytest-subprocess py-wesanderson +py-donfig py-metrics py-pytest-timeout py-wget +py-dotmap py-mffpy py-pytest-workflow py-whatshap +py-dotnetcore2 py-mg-rast-tools py-pytest-xdist py-wheel +py-downhill py-mgmetis py-python-benedict py-whenever +py-doxypypy py-microsoft-aurora py-python-bioformats py-whey +py-dpath py-mido py-python-box py-whey-pth +py-drep py-mikado py-python-calamine py-whichcraft +py-drmaa py-mike py-python-certifi-win32 py-whoosh +py-dryscrape py-minio py-python-constraint py-widgetsnbextension +py-duecredit py-minisom py-python-crfsuite py-wids +py-dulwich py-minkowskiengine py-python-daemon py-wigners +py-dunamai py-minrpc py-python-dateutil py-win-unicode-console +py-dvc py-misk py-python-deprecated py-wincertstore +py-dxchange py-misopy py-python-discovery py-word2number +py-dxfile py-mistletoe py-python-docs-theme py-wordcloud +py-dynaconf py-mistune py-python-docx py-workload-automation +py-dynim py-mizani py-python-dotenv py-wradlib +py-earth2mip py-mkdocs py-python-editor py-wrapt +py-earthengine-api py-mkdocs-autorefs py-python-engineio py-wsproto +py-easybuild-easyblocks py-mkdocs-jupyter py-python-fmask py-wstool +py-easybuild-easyconfigs py-mkdocs-material py-python-fsutil py-wub +py-easybuild-framework py-mkdocs-material-extensions py-python-gitlab py-wurlitzer +py-eccodes py-mkdocstrings py-python-hostlist py-ww +py-ecdsa py-mkdocstrings-python py-python-igraph py-wxflow +py-ecmwf-opendata py-ml-collections py-python-javabridge py-wxmplot +py-ecmwflibs py-ml-dtypes py-python-jenkins py-wxpython +py-ecos py-mlflow py-python-jose py-x-clip +py-edam-ontology py-mlperf-logging py-python-json-logger py-x21 +py-edffile py-mlxtend py-python-keystoneclient py-xanadu-cloud-client +py-edfio py-mmcv py-python-ldap py-xarray +py-edflib-python py-mmengine py-python-levenshtein py-xarray-regrid +py-editables py-mmtf-python py-python-libsbml py-xarray-tensorstore +py-editdistance py-mne py-python-logstash py-xattr +py-edlib py-mne-bids py-python-louvain py-xcdat +py-eeglabio py-mo-pack py-python-lsp-jsonrpc py-xdot +py-eerepr py-moarchiving py-python-lsp-ruff py-xenv +py-efel py-mock py-python-lsp-server py-xesmf +py-efficientnet-pytorch py-model-index py-python-lzo py-xgboost +py-eg py-modelcif py-python-magic py-xgcm +py-eigenpy py-modepy py-python-mapnik py-xhistogram +py-einconv py-modin py-python-markdown-math py-xlrd +py-einops py-modisco py-python-memcached py-xlsxwriter +py-elastic-transport py-modred py-python-multipart py-xlwt +py-elasticsearch py-modules-gui py-python-mumps py-xmlplain +py-elasticsearch-dsl py-moltemplate py-python-oauth2 py-xmlrunner +py-elecsolver py-monai py-python-picard py-xmltodict py-elephant py-monkeytype py-python-pptx py-xonsh py-elevation py-monotonic py-python-ptrace py-xopen py-ema-pytorch py-monty py-python-rapidjson py-xpyb @@ -752,5 +753,4 @@ py-ez-setup py-mxfold2 py-pyvistaqt py-zope-interface py-f90nml py-myhdl py-pyviz-comms py-zstandard py-f90wrap py-mypy py-pyvolve py-zxcvbn py-fabric py-mypy-extensions py-pywavelets -py-fabric3 py-mysql-connector-python py-pywcs -==> 3014 packages +==> 3015 packages diff --git a/outputs/basics/list.out b/outputs/basics/list.out index 01d0c8b23..900b93229 100644 --- a/outputs/basics/list.out +++ b/outputs/basics/list.out @@ -1,2227 +1,2227 @@ $ spack list -3dtk lua-mpack py-freezegun r-adabag -3proxy lua-sol2 py-frozendict r-ade4 -4ti2 lucene py-frozenlist r-adegenet -7zip luit py-fs r-adegraphics -abacus lulesh py-fsspec r-adephylo -abduco lumpy-sv py-fsspec-xrootd r-adespatial -abi-compliance-checker lustre py-ftfy r-adgoftest -abi-dumper lvarray py-ftputil r-adsplit -abinit lvm2 py-funcy r-aer -abseil-cpp lwgrp py-furo r-afex -abyss lwm2 py-fury r-affxparser -accfft lwtnn py-fusepy r-affy -acct lxc py-future r-affycomp -accumulo lynx py-fuzzywuzzy r-affycompatible -ace lz4 py-fypp r-affycontam -acfl lzma py-galaxy-containers r-affycoretools -ack lzo py-galaxy-job-metrics r-affydata -acl lzop py-galaxy-objectstore r-affyexpress -acpica-tools m4 py-galaxy-sequence-utils r-affyilm -acpid macfuse py-galaxy-tool-util r-affyio -activeharmony macsio py-galaxy-util r-affypdnn -activemq mad-numdiff py-galaxy2cwl r-affyplm -acts madgraph5amc py-gast r-affyqcreport -acts-algebra-plugins madis py-gcovr r-affyrnadegradation -acts-dd4hep madx py-gcs-oauth2-boto-plugin r-agdex -actsvg maeparser py-gcsfs r-agilp -additivefoam mafft py-gdc-client r-agimicrorna -addrwatch magic-enum py-gdown r-aims -adept magics py-gee-asset-manager r-aldex2 -adept-utils magma py-geeadd r-allelicimbalance -adf mahout py-geemap r-alpine -adiak makedepend py-geeup r-als -adios makedepf90 py-gemmforge r-alsace -adios-catalyst maker py-gemmi r-altcdfenvs -adios2 mallocmc py-genders r-amap -adlbx maloc py-geneimpacts r-amelia -admixtools malt py-generateds r-ampliqueso -adms mamba py-genshi r-analysispageserver -adol-c man-db py-gensim r-anaquin -advancecomp mapl py-geoalchemy2 r-aneufinder -adwaita-icon-theme mapnik py-geocoder r-aneufinderdata -aegean mapserver py-geocube r-animation -aeskeyfind mapsplice2 py-geographiclib r-annaffy -aespipe maq py-geojson r-annotate -affinity maqao py-geomdl r-annotationdbi -agile mariadb py-geopandas r-annotationfilter -agrep mariadb-c-client py-geoplot r-annotationforge -aida mark py-geopmdpy r-annotationhub -akantu masa py-geopmpy r-anytime -alan mash py-geopy r-aod -albany masurca py-geoviews r-ape -albert mathematica py-gest-api r-aplot -alembic mathic py-gevent r-argparse -alglib mathicgb py-gf256 r-arm -all-library matio py-gfal2-python r-aroma-light -allpaths-lg matlab py-gffutils r-arrangements -alluxio matrix-switch py-ghp-import r-ash -alpaka maven py-gidgethub r-askpass -alpgen maverick py-gidgetlab r-asreml -alps mawk py-gimmik r-assertive -alpscore mbdyn py-gin-config r-assertive-base -alquimia mbedtls py-git-review r-assertive-code -alsa-lib mc py-gitdb r-assertive-data -alsa-plugins mcl py-gitpython r-assertive-data-uk -aluminum mcpp py-glean-parser r-assertive-data-us -amber mct py-glean-sdk r-assertive-datetimes -ambertools mctc-lib py-glmnet r-assertive-files -amd-aocl mcutils py-glmnet-python r-assertive-matrices -amdblis mdb py-glmsingle r-assertive-models -amdfftw mdspan py-glob2 r-assertive-numbers -amdlibflame mdsplus py-globus-cli r-assertive-properties -amdlibm mdtest py-globus-sdk r-assertive-reflection -amdscalapack med py-gluoncv r-assertive-sets -amdsmi medipack py-glymur r-assertive-strings -amduprof meep py-gmsh r-assertive-types -amg2013 mefit py-gmsh-interop r-assertthat -amg2023 megadock py-gmxapi r-automap -amg4psblas megahit py-gnuplot r-backports -amgx melissa py-goatools r-bamsignals -aml memaxes py-gooey r-base64 -amp memcached py-google r-base64enc -ampl meme py-google-api-core r-basilisk -ampliconnoise memkind py-google-api-python-client r-basilisk-utils -ampt memtailor py-google-apitools r-bayesfactor -amqp-cpp memtester py-google-auth r-bayesm -amr-wind mepo py-google-auth-httplib2 r-bayesplot -amrex meraculous py-google-auth-oauthlib r-bbmisc -amrfinder mercurial py-google-cloud-appengine-logging r-beachmat -amrvis mercury py-google-cloud-audit-log r-beanplot -ams mergiraf py-google-cloud-batch r-beeswarm -anaconda3 mesa py-google-cloud-bigquery r-bench -andi mesa-demos py-google-cloud-core r-bfast -angsd mesa-glu py-google-cloud-logging r-bfastspatial -anicalculator meshkit py-google-cloud-storage r-bglr -ant meshlab py-google-crc32c r-bh -antimony meshoptimizer py-google-pasta r-biasedurn -antlr meshtool py-google-reauth r-bibtex -antlr4-complete meson py-google-resumable-media r-bigalgebra -antlr4-cpp-runtime mesquite py-googleapis-common-protos r-biglm -ants met py-googledrivedownloader r-bigmemory -any2fasta metabat py-gosam r-bigmemory-sri -aocc metacarpa py-gpaw r-bindr -aocl-compression metaeuk py-gpaw-data r-bindrcpp -aocl-crypto metal py-gpustat r-bio3d -aocl-da metall py-gputil r-biobase -aocl-dlp metaphysicl py-gpy r-biocfilecache -aocl-libmem methyldackel py-gpyopt r-biocgenerics -aocl-sparse metis py-gpytorch r-biocinstaller -aocl-utils metkit py-gql r-biocio -aoflagger metplus py-gradio r-biocmanager -aom mfem py-gradio-client r-biocneighbors -aotriton mg py-grandalf r-biocparallel -aotriton-llvm mgard py-graphcast r-biocsingular -apache-tvm mgardx py-grapheme r-biocstyle -apachetop mgcfd-op2 py-graphene r-biocversion -ape mgis py-graphlib-backport r-biom-utils -aperture-photometry microbiomeutil py-graphql-core r-biomart -apex microsocks py-graphql-relay r-biomartr -apfel migraphx py-graphql-ws r-biomformat -apfelxx migrate py-graphviz r-biostrings -apktool migrate-package-prs py-gravity r-biovizbase -apple-clang mii py-grayskull r-bit -apple-gl mille py-greenlet r-bit64 -apple-glu millepede py-grequests r-bitops -apple-libunwind mimalloc py-griddataformats r-blavaan -apple-libuuid mimic-mcl py-griffe r-blob -applewmproto minc-toolkit py-gromacswrapper r-blockmodeling -appres minced py-grpc-google-iam-v1 r-bluster -apptainer mindthegap py-grpcio r-bmp -apr miniamr py-grpcio-status r-bookdown -apr-util miniapp-ascent py-grpcio-tools r-boot -aqlprofile miniasm py-gsd r-boruta -aragorn miniconda3 py-gssapi r-brew -arbor minife py-gsutil r-bridgesampling -arborx miniforge3 py-gtdbtk r-brio -arc minigan py-gunicorn r-brms -archer minighost py-gxformat2 r-brobdingnag -aretomo minigmg py-gym r-broom -aretomo2 minimap2 py-h11 r-broom-helpers -aretomo3 minimd py-h2 r-bsgenome -argobots minio py-h3 r-bsgenome-hsapiens-ucsc-hg19 -argon2 miniocli py-h5glance r-bslib -argp-standalone miniqmc py-h5io r-bsseq -args minisign py-h5netcdf r-bumphunter -argtable minismac2d py-h5py r-bwstest -aria2 minitri py-h5sh r-c50 -arkouda minivite py-hacking r-ca -arm-forge minixyce py-hail r-cachem -arm-kernels minizip py-handy-archives r-cairo -armadillo minuit py-hatch r-callr -armcimpi miopen-hip py-hatch-cython r-car -armcomputelibrary mira py-hatch-fancy-pypi-readme r-caracas -armpl-gcc miranda py-hatch-jupyter-builder r-cardata -arpack-ng mirdeep2 py-hatch-nodejs-version r-caret -arrayfire mitofates py-hatch-requirements-txt r-caretensemble -arrow mitos py-hatch-vcs r-caroline -asagi mivisionx py-hatchet r-category -ascent mixcr py-hatchling r-catools -asciidoc mkfontdir py-hclust2 r-cca -asciidoc-py3 mkfontscale py-hdbscan r-ccp -asdcplib mlc-llm py-hdf5plugin r-cdcfluview -asdf-cxx mlhka py-hdfs r-cellranger -asio mlocate py-healpix r-champ -aspa mlpack py-healpy r-champdata -aspcud mlperf-deepcam py-heapdict r-checkmate -aspect mlst py-heat r-checkpoint -aspell mmg py-heavyball r-chemometrics -aspell6-de mmseqs2 py-hep-ml r-chipseq -aspell6-en mmv py-hepdata-converter r-chron -aspell6-es moab py-hepdata-lib r-circlize -aspera-cli mochi-margo py-hepdata-validator r-circstats -assimp mochi-thallium py-hepstats r-clarabel -astra model-angelo py-hepunits r-class -astral model-traits py-heudiconv r-classint -astyle modeltest-ng py-hf-transfer r-cli -at-spi2-atk modern-wheel py-hf-xet r-clipr -at-spi2-core modylas py-hieroglyph r-clisymbols -atf mojitos py-highspy r-clock -atfl mokutil py-hiredis r-clue -athena molcas py-hist r-cluster -atk mold py-histbook r-clustergeneration -atlas molden py-histogrammar r-clusterprofiler -atom-dft molgw py-histoprint r-cmdstanr -atompaw mongo-c-driver py-hjson r-cner -atop mongo-cxx-driver py-hmmlearn r-coda -attr mongodb-async-driver py-holland-backup r-codetools -audacious mono py-holoviews r-codex -audacity montage py-horovod r-coin -audit-userspace moosefs py-hpack r-colorspace -augustus moreutils py-hpbandster r-colourpicker -authd mosesdecoder py-hpccm r-combinat -authselect mosh py-hsluv r-commonmark -autoconf mosquitto py-hstspreload r-complexheatmap -autoconf-archive mothur py-htgettoken r-compositions -autodiff motif py-html2text r-compquadform -autodock-gpu motioncor2 py-html5lib r-condop -autodock-vina mount-point-attributes py-htmldate r-conflicted -autogen mozjpeg py-htmlgen r-conquer -automaded mozjs py-htseq r-consrank -automake mpark-variant py-httpbin r-construct -autossh mpas-model py-httpcore r-contfrac -avizo mpb py-httplib2 r-convevol -aws-ofi-nccl mpc py-httpretty r-copula -aws-ofi-rccl mpdecimal py-httpstan r-corhmm -aws-parallelcluster mpe2 py-httptools r-corpcor -aws-sdk-cpp mpest py-httpx r-corrplot -awscli mpfi py-huggingface-hub r-countrycode -awscli-v2 mpfr py-humanfriendly r-covr -axel mpi-bash py-humanize r-cowplot -axl mpi-rockstar py-hvac r-cpp11 -axom mpi-serial py-hvplot r-crayon -azcopy mpi-sync-clocks py-hydra-core r-credentials -babelflow mpi-test-suite py-hypercorn r-crosstalk -babelstream mpibenchmark py-hyperframe r-crul -babeltrace mpibind py-hyperlink r-ctc -babeltrace2 mpich py-hyperopt r-cubature -babl mpidiff py-hypothesis r-cubist -bacio mpifileutils py-ibm-cloud-sdk-core r-curl -backupninja mpigraph py-ibm-watson r-cvxr -backward-cpp mpilander py-ics r-d3r -bam-readcount mpileaks py-id r-dada2 -bamaddrg mpip py-identify r-data-table -bamdst mpir py-idna r-dbi -bamtools mpitrampoline py-idna-ssl r-dbplyr -bamutil mpiwrapper py-igor r-debugme -banner mpix-launch-swift py-igor2 r-decipher -bannergrab mpl py-igraph r-delayedarray -barrnap mppp py-igv-notebook r-delayedmatrixstats -bart mpsolve py-igwn-auth-utils r-deldir -barvinok mpt py-ihm r-dendextend -bash mptensor py-illumina-utils r-densvis -bash-completion mrbayes py-ilmbase r-deoptim -bashtop mrbench py-imagecodecs r-deoptimr -bat mrchem py-imagecorruptions-imaug r-deriv -batchedblas mrcpp py-imagehash r-desc -batctl mrnet py-imageio r-deseq -bats mrtrix3 py-imageio-ffmpeg r-deseq2 -baurmc mruby py-imagesize r-desolve -bazel mscclpp py-imaug r-devtools -bbcp mscgen py-imbalanced-learn r-dexseq -bbmap msgpack-c py-imgaug r-diagram -bc mshadow py-iminuit r-diagrammer -bcache msmc py-immutabledict r-dicekriging -bcftools msmc2 py-immutables r-dichromat -bdftopcf msmpi py-importlib-metadata r-diffobj -bdii msolve py-importlib-resources r-diffusionmap -bdsim msr-safe py-imutils r-digest -bdw-gc mstk py-in-n-out r-diptest -beagle mstore py-incremental r-dir-expiry -beakerlib msvc py-inflect r-dirichletmultinomial -bear mt-metis py-inheritance r-dismo -beast-tracer mtn py-iniconfig r-distributional -beast1 mui py-iniparse r-diversitree -beast2 mujoco py-inquirer r-dmrcate -beatnik multicharge py-inquirerpy r-dnacopy -bedops multitail py-inscriptis r-do-db -bedtools2 multitime py-installer r-doby -beforelight multiverso py-instrain r-domc -benchmark mumax py-intake r-doparallel -berkeley-db mummer py-intake-esm r-dorng -berkeleygw mummer4 py-intbitset r-dose -bertini mumps py-intel-openmp r-dosnow -bfs munge py-intensity-normalization r-dotcall64 -bgen muparser py-interface-meta r-downlit -bgpdump muparserx py-interlap r-downloader -bib2xhtml muscle py-intervaltree r-dplyr -bigdft-atlab muscle5 py-invoke r-dqrng -bigdft-chess muse py-iocapture r-dss -bigdft-core music py-iopath r-dt -bigdft-futile musica py-ipaddress r-dtplyr -bigdft-libabinit musl py-ipdb r-dtw -bigdft-liborbs must py-ipycanvas r-dupradar -bigdft-psolver muster py-ipyevents r-dygraphs -bigdft-spred mutationpp py-ipyfilechooser r-dynamictreecut -bigdft-suite mvapich py-ipykernel r-e1071 -bigreqsproto mvapich-plus py-ipyleaflet r-earth -bigwhoop mvapich2 py-ipympl r-ebseq -bind9 mxm py-ipyparallel r-ecosolver -binder mxml py-ipyrad r-ecp -binutils mxnet py-ipython r-edger -bioawk mypaint-brushes py-ipython-cluster-helper r-effects -biobambam2 mysql py-ipython-genutils r-elemstatlearn -biobloom mysql-connector-c py-ipython-pygments-lexers r-ellipse -biopieces mysqlpp py-ipytree r-ellipsis -bird n2p2 py-ipyvtk-simple r-elliptic -bismark nacos py-ipyvue r-emmeans -bison nag py-ipyvuetify r-emmli -bitgroomingz nalu py-ipywidgets r-energy -bitlbee nalu-wind py-irpf90 r-enrichplot -bitmap namd py-isa-rwval r-ensembldb -bitsery nano py-isal r-envstats -blackhat nanoflann py-iso8601 r-ergm -blake3 nanomsg py-isodate r-estimability -blaspp nanopb py-isoduration r-europepmc -blast-plus nasm py-isort r-evaluate -blast2go nauty py-itables r-evd -blat navi py-iterative-stats r-exactextractr -blaze nb py-itk r-exomecopy -blis nbdkit py-itolapi r-exomedepth -bliss ncbi-magicblast py-itsdangerous r-experimenthub -blitz ncbi-rmblastn py-jacobi r-expint -blktrace ncbi-toolkit py-jaconv r-expm -bloaty ncbi-vdb py-jamo r-factoextra -blogbench nccl py-janus r-factominer -blt nccl-fastsocket py-jaraco-classes r-fansi -bmake nccl-tests py-jaraco-context r-farver -bmi nccmp py-jaraco-functools r-fastcluster -bml ncdu py-jarowinkler r-fastdigest -bohrium ncftp py-jarvis-util r-fastdummies -boinc-client ncio py-javaproperties r-fastica -bolt ncl py-jax r-fastmap -bonniepp nco py-jaxlib r-fastmatch -bookleaf-cpp ncompress py-jaxtyping r-fastmatrix -boost ncurses py-jcb r-fda -boostmplcartesianproduct ncview py-jdatetime r-fdb-infiniummethylation-hg18 -boringssl ncvis py-jdcal r-fdb-infiniummethylation-hg19 -botan ndiff py-jedi r-fds -bowtie ndzip py-jeepney r-ff -bowtie2 neartree py-jellyfish r-fftwtools -boxlib neic-finitefault py-jinja2 r-fgsea -bpp-core nek5000 py-jinja2-cli r-fields -bpp-phyl nekbone py-jinja2-humanize-extension r-filehash -bpp-phyl-omics nekcem py-jinja2-time r-filelock -bpp-popgen neko py-jiter r-findpython -bpp-seq nekrs py-jmespath r-fit-models -bpp-seq-omics nektar py-jmp r-fitdistrplus -bpp-suite nektools py-joblib r-flashclust -bracken nemsio py-jplephem r-flexclust -brahma nemsiogfs py-jproperties r-flexmix -braker neo4j py-jprops r-fnn -branson neocmakelsp py-jpype1 r-fontawesome -breakdancer neofoam py-jraph r-forcats -bref3 neon py-jsmin r-foreach -breseq neovim py-json-get r-forecast -bricks nep py-json-tricks r-foreign -bridger neper py-json2html r-formatr -brigand nest py-json5 r-formula -brltty net-snmp py-jsonargparse r-fpc -brotli netcdf-c py-jsondiff r-fpcompare -brpc netcdf-cxx py-jsonlines r-fracdiff -brunsli netcdf-cxx4 py-jsonpatch r-fs -brynet netcdf-fortran py-jsonpath-ng r-functional -bsseeker2 netcdf95 py-jsonpickle r-furrr -btllib netdata py-jsonpointer r-futile-logger -btop netgauge py-jsonref r-futile-options -bubblewrap netgen py-jsonschema r-future -bucky netkit-ftp py-jsonschema-specifications r-future-apply -buddy netlib-lapack py-junit-xml r-gamlss -bueno netlib-scalapack py-junit2html r-gamlss-data -bufr netlib-xblas py-jupyter r-gamlss-dist -bufr-query netpbm py-jupyter-client r-gamm4 -bulker netperf py-jupyter-console r-gargle -bump2version nettle py-jupyter-core r-gbm -bumpversion networkdirect py-jupyter-events r-gbrd -busco neuron py-jupyter-leaflet r-gcrma -busybox neve py-jupyter-lsp r-gdalutilities -butter newt py-jupyter-packaging r-gdalutils -butterflypack nextdenovo py-jupyter-server r-gdata -bwa nextflow py-jupyter-server-mathjax r-gdsfmt -bwtool nf-core-tools py-jupyter-server-proxy r-geiger -byacc nf-seqerakit py-jupyter-server-terminals r-genefilter -byfl nf-tower-agent py-jupyter-telemetry r-genelendatabase -byobu nf-tower-cli py-jupyterhub r-genemeta -byte-lite nf-wave-cli py-jupyterlab r-geneplotter -byte-unixbench nfft py-jupyterlab-pygments r-generics -byteman nfs-ganesha py-jupyterlab-server r-genetics -bzip2 nfs-utils py-jupyterlab-widgets r-genie3 -c-ares nghttp2 py-jupytext r-genomeinfodb -c-blosc nginx py-justext r-genomeinfodbdata -c-blosc2 ngmerge py-jwcrypto r-genomicalignments -c-lime ngmlr py-kaggle r-genomicfeatures -c-raft ngspice py-kaldiio r-genomicranges -c3d nicstat py-kaleido r-gensa -ca-certificates-mozilla nim py-kb-python r-geojsonsf -cabana nimrod-aai py-keras r-geometries -cabana-pd ninja py-keras-applications r-geometry -cachefilesd ninja-fortran py-keras-preprocessing r-geomorph -caffe ninja-phylogeny py-keras2onnx r-geonames -cairo nix py-kerberos r-geoquery -cairomm njet py-kerchunk r-geor -caliper nlcglib py-key-value-aio r-geosphere -callflow nlohmann-json py-keyboard r-gert -callpath nlohmann-json-schema-validator py-keyring r-getopt -camellia nlopt py-keyrings-alt r-getoptlong -camp nmad py-keystoneauth1 r-ggally -camx nn-c py-kitchen r-ggbeeswarm -canal nnn py-kiwisolver r-ggbio -cans nnpack py-kmodes r-ggdendro -cantera nnvm py-knack r-ggforce -canu node-js py-kneaddata r-ggfun -cap3 nopayloadclient py-kombu r-ggjoy -capnproto normaliz py-kornia r-ggmap -capstone notmuch py-kornia-rs r-ggnewscale -cardioid npb py-kosh r-ggpattern -care npm py-krb5 r-ggplot2 -cargo-c npth py-kt-legacy r-ggplotify -cargs nq py-kubernetes r-ggpubr -casacore nrm py-kymatio r-ggraph -casacore-measures ns-3-dev py-lagom r-ggrastr -cask nseg py-langcodes r-ggrepel -casper nsimd py-langsmith r-ggridges -cassandra nsjail py-language-data r-ggsci -cassini-headers nspr py-lap r-ggsignif -castep nss py-laplace-torch r-ggstats -catch2 ntirpc py-lark r-ggthemes -cbc ntl py-lark-parser r-ggtree -cbench ntpoly py-laspy r-ggvis -cbflib numactl py-latexcodec r-gh -cbindgen numamma py-law r-gistr -cblas numap py-lazy r-git2r -cbqn numaprof py-lazy-loader r-gitcreds -cbtf numdiff py-lazy-object-proxy r-glimma -cbtf-argonavis nut py-lazy-property r-glmgampoi -cbtf-argonavis-gui nvbandwidth py-lazyarray r-glmnet -cbtf-krell nvcomp py-lcls-krtc r-globaloptions -cbtf-lanl nvdimmsim py-ldap3 r-globals -cc65 nvhpc py-leather r-globaltest -ccache nvidia-container-toolkit py-leidenalg r-glue -cce nvidia-nsight-systems py-lerc r-gmodels -ccfits nvpl-blas py-lfpykit r-gmp -ccls nvpl-common py-lhsmdu r-go-db -ccs-qcd nvpl-fft py-liac-arff r-goftest -cctools nvpl-lapack py-libclang r-gofuncr -cdbfasta nvpl-scalapack py-libconf r-googleauthr -cdd nvptx-tools py-libcst r-googledrive -cddlib nvshmem py-libensemble r-googlesheets4 -cdecimal nvtop py-liblas r-googlevis -cdhit nvtx py-librosa r-goplot -cdi nwchem py-librt r-gosemsim -cdo nyancat py-libsonata r-goseq -cdt oc py-lifelines r-gostats -ceed ocaml py-lightgbm r-gower -celeritas ocamlbuild py-lightly r-gparotation -cellpose occa py-lightly-utils r-gplots -cellranger oci-systemd-hook py-lightning r-graph -centrifuge ocl-icd py-lightning-api-access r-graphlayouts -cepgen oclgrind py-lightning-cloud r-grbase -cereal oclint py-lightning-fabric r-gridbase -ceres-solver oclock py-lightning-lite r-gridextra -cernlib octa py-lightning-uq-box r-gridgraphics -cfitsio octave py-lightning-utilities r-gridpattern -cgal octave-arduino py-lightpipes r-gsa -cgdb octave-control py-ligo-segments r-gsalib -cgdcbxd octave-gsl py-lil-aretomo r-gseabase -cget octave-instrctl py-line-profiler r-gsl -cgl octave-io py-linear-operator r-gsodr -cgm octave-optim py-linear-tree r-gson -cgns octave-quaternion py-linecache2 r-gss -cgsi-gsoap octave-signal py-lineenhancer r-gstat -chaco octave-splines py-linkchecker r-gsubfn -chafa octave-statistics py-linkify-it-py r-gtable -chai octave-struct py-lit r-gtools -chameleon octave-symbolic py-litdata r-gtrellis -changa octopus py-littleutils r-gviz -channelflow odc py-lizard r-gwmodel -chaparral odgi py-llama-cpp-python r-hardhat -chapel of-catalyst py-llnl-sina r-haven -chaplin of-precice py-llvmlite r-hdf5array -charliecloud ollama py-lmdb r-hdf5r -charmpp ome-common-cpp py-lmfit r-hdo-db -chatterbug ome-files-cpp py-lmodule r-hdrcde -check ome-model py-localcider r-here -chemfiles omega-h py-locket r-hexbin -chexmix omm py-lockfile r-hh -chez-scheme omm-bundle py-logilab-common r-highr -chgcentre omnictl py-logistro r-hmisc -chlorop omniperf py-logmuse r-hms -chombo omnitrace py-logomaker r-hoardr -chrony ompss py-loguru r-htmltable -chrpath ompss-2 py-loky r-htmltools -cimfomfa ompt-openmp py-loompy r-htmlwidgets -cinch oneapi-igc py-looseversion r-httpcode -circe2 oneapi-level-zero py-louie r-httpuv -circos onednn py-lpips r-httr -cistem oniguruma py-lru-dict r-httr2 -citcoms onnx py-lscsoft-glue r-humaniformat -cityhash ont-guppy py-lsprotocol r-hwriter -civetweb oommf py-luigi r-hydrogof -cjson oomph py-lupa r-hydrotsm -ck op2-dsl py-lvis r-hypergeo -clamav opa-psm2 py-lws r-hypergraph -clamr opam py-lxml r-ica -clapack opari2 py-lz4 r-ids -clara opdilib py-lzstring r-ieugwasr -claude-code open-iscsi py-m2r r-igraph -claw open-isns py-macholib r-illumina450probevariants-db -clblast open3d py-machotools r-illuminahumanmethylation450kanno-ilmn12-hg19 -cleaveland4 openal-soft py-macs2 r-illuminahumanmethylation450kmanifest -cleverleaf openbabel py-macs3 r-illuminahumanmethylationepicanno-ilm10b4-hg19 -clfft openblas py-maestrowf r-illuminahumanmethylationepicmanifest -clhep opencarp py-magicgui r-illuminaio -cli11 opencascade py-mahotas r-imager -clinfo opencl-c-headers py-mailchecker r-impute -clingo opencl-clhpp py-make r-influencer -clingo-bootstrap opencl-headers py-makefun r-ini -clingo-bootstrap-pgo opencl-icd-loader py-mako r-inline -cln opencoarrays py-mapbox-earcut r-insight -cloc opencolorio py-mapclassify r-interactivedisplaybase -cloog opencv py-mariadb r-interp -cloverleaf opendatadetector py-marisa-trie r-intervals -cloverleaf-ref opendx py-markdown r-inum -cloverleaf3d openexr py-markdown-include r-ipred -clp openfast py-markdown-it-py r-iranges -clustal-omega openfdtd py-markdown2 r-irdisplay -clustalw openfoam py-markov-clustering r-irkernel -cmake openfoam-org py-markovify r-irlba -cmaq openfpgaloader py-markupsafe r-isdparser -cmark openfst py-marshmallow r-islr -cmdlime opengl py-matminer r-iso -cmdstan openglu py-matplotlib r-isoband -cminpack openimagedenoise py-matplotlib-inline r-isva -cmocka openimageio py-matplotlib-scalebar r-iterators -cmockery openipmi py-maturin r-iterpc -cmor openjdk py-mayavi r-jade -cni-plugins openjpeg py-mbstrdecoder r-janitor -cnmem openkim-models py-mccabe r-jaspar2018 -cnpy openldap py-md-environ r-jomo -cntk openlibm py-mda-xdrlib r-jpeg -cntk1bitsgd openloops py-mdahole2 r-jquerylib -cnvnator openmc py-mdanalysis r-jsonify -codar-cheetah openmm py-mdanalysistests r-jsonlite -code-server openmolcas py-mdi r-kableextra -codec2 openmpi py-mdit-py-plugins r-kegggraph -codecov openmx py-mdocfile r-keggrest -codee opennurbs py-mdurl r-kernlab -codes openpa py-meautility r-kernsmooth -codipack openpbs py-mechanize r-kknn -coevp openpmd-api py-medaka r-klar -cohmm openradioss-engine py-meldmd r-knitr -cohomcalg openradioss-starter py-melissa-core r-kpmt -coin3d openrasmol py-memelite r-ks -coinhsl openresty py-memory-profiler r-ksamples -coinmp openscenegraph py-memprof r-labeling -coinutils openslide py-memray r-labelled -collectd openslp py-mendeleev r-lambda-r -collier openspeedshop py-mercantile r-laplacesdemon -colm openspeedshop-utils py-mergedeep r-lars -colordiff openssh py-merlin r-later -comd openssl py-meshio r-lattice -comet opensta py-meshpy r-latticeextra -comgr openstf py-meson-python r-lava -commons-lang opensubdiv py-metaphlan r-lavaan -commons-lang3 opentsdb py-metasv r-lazyeval -commons-logging openturns py-metatensor-core r-ldheatmap -compadre openvdb py-metatensor-learn r-leafem -compiler-wrapper openvkl py-metatensor-operations r-leaflet -composable-kernel openwsman py-metatensor-torch r-leaflet-providers -compose ophidia-analytics-framework py-metatomic-torch r-leafpop -compositeproto ophidia-io-server py-metatrain r-leaps -composyx ophidia-primitives py-metis r-learnbayes -conda4aarch64 ophidia-server py-metomi-isodatetime r-leiden -conduit opium py-metomi-rose r-lfe -conmon optional-lite py-metpy r-lhs -connect-proxy optipng py-metric-learn r-libcoin -conquest optix-dev py-metrics r-libpressio -conserver opus py-mffpy r-lidr -console-bridge or-tools py-mg-rast-tools r-lifecycle -constype oracle-instant-client py-mgmetis r-limma -consul oras py-microsoft-aurora r-limsolve -cool orbit2 py-mido r-linprog -coordgen orc py-mikado r-list -coral orca py-mike r-listenv -corenlp orca-faccts py-minio r-lme4 -coreutils orfm py-minisom r-lmertest -corset orientdb py-minkowskiengine r-lmtest -cosbench orthofiller py-minrpc r-lobstr -cosign orthofinder py-misk r-locfit -cosimio orthomcl py-misopy r-log4r -cosma osg-ca-certs py-mistletoe r-loo -cosmoflow-benchmark osi py-mistune r-lpsolve -cosmomc osmctools py-mizani r-lpsolveapi -cosp2 osmesa py-mkdocs r-lsei -costa osmosis py-mkdocs-autorefs r-lubridate -costo ospray py-mkdocs-jupyter r-lumi -cotter osqp py-mkdocs-material r-lwgeom -countdown ossp-uuid py-mkdocs-material-extensions r-magic -covfie osu-micro-benchmarks py-mkdocstrings r-magick -cowsay otf py-mkdocstrings-python r-magrittr -cp2k otf-cpt py-ml-collections r-makecdfenv -cpat otf2 py-ml-dtypes r-maldiquant -cpio ovito py-mlflow r-manipulatewidget -cplex oxide-rs py-mlperf-logging r-mapplots -cpmd p11-kit py-mlxtend r-mapproj -cpp-argparse p3dfft3 py-mmcv r-maps -cpp-httplib p4est py-mmengine r-maptools -cpp-logger p7zip py-mmtf-python r-mapview -cpp-termcolor pacbio-daligner py-mne r-markdown -cppad pacbio-damasker py-mne-bids r-marray -cppcheck pacbio-dazz-db py-mo-pack r-mass -cppcodec pacbio-dextractor py-moarchiving r-mathjaxr -cppcoro pace py-mock r-matlab -cppgsl pacifica-cli py-model-index r-matr -cpprestsdk packmol py-modelcif r-matrix -cpptrace pacparser py-modepy r-matrixgenerics -cppunit pacvim py-modin r-matrixmodels -cppzmq paddle py-modisco r-matrixstats -cpr padicotm py-modred r-mclogit -cprnc pagit py-modules-gui r-mclust -cpu-features pagmo py-moltemplate r-mcmc -cpuinfo pagmo2 py-monai r-mcmcglmm -cqrlib paintor py-monkeytype r-mcmcpack -cquery pajeng py-monotonic r-mco -cracklib pal py-monty r-mda -cradl palace py-more-itertools r-memisc -cram palisade-development py-morph-tool r-memoise -cray-fftw paml py-morphio r-memuse -cray-libsci panda py-morphosamplers r-mendelianrandomization -cray-mpich pandaseq py-motmetrics r-mergemaid -cray-mvapich2 pandoc py-mouseinfo r-meta -cray-pmi pandoramonitoring py-moviepy r-metadat -creduce pandorapfa py-mpi4jax r-metafor -crmc pandorasdk py-mpi4py r-metap -croc pango py-mpld3 r-metapod -cromwell pangolin py-mpldock r-methylumi -cromwell-womtool pangomm py-mplhep r-mgcv -cronie papi py-mplhep-data r-mgraster -crosstool-ng papyrus py-mpmath r-mice -crow paraconf py-mrcfile r-microbenchmark -crtm paradiseo py-msal r-mime -crtm-fix parafeed py-msal-extensions r-minfi -crunch parallel py-msgpack r-miniui -crux-toolkit parallel-hashmap py-msgpack-numpy r-minqa -cry parallel-netcdf py-msrest r-misc3d -cryodrgn parallelio py-msrestazure r-missmethyl -cryoef parallelmergetree py-mui4py r-mitml -cryptopp paraview py-multi-imbalance r-mitools -cryptsetup pareval py-multi-key-dict r-mixtools -csa-c parflow py-multidict r-mlbench -cscope parmetis py-multiecho r-mlinterfaces -csdp parmgridgen py-multipledispatch r-mlr -csvtk parmmg py-multiprocess r-mlrmbo -ctffind parquet-format py-multiqc r-mmwrweek -ctpl parsec py-multiurl r-mnormt -ctre parsimonator py-mumps4py r-mockery -cub parsplice py-munch r-modelmetrics -cuba parthenon py-munkres r-modelr -cubature partons py-murmurhash r-modeltools -cube partons-elementary-utils py-mutagen r-mpm -cube-blade partons-numa py-mx r-mr-raps -cubelib pass py-mxfold2 r-mrinstruments -cubew passt py-myhdl r-mrmix -cubist pasta py-mypy r-mrpresso -cublasmp pastix py-mypy-extensions r-mscoreutils -cuda patch py-mysql-connector-python r-msnbase -cuda-memtest patchelf py-mysqlclient r-multcomp -cudd patchutils py-myst-parser r-multcompview -cudnn pathfinder py-namex r-multicool -cudss pax-utils py-nanobind r-multitaper -cufflinks pbbam py-nanoget r-multtest -cufftmp pblat py-nanomath r-munsell -cunit pbmpi py-nanoplot r-mutoss -cups pbwt py-nanostat r-mvtnorm -curl pbzip2 py-nanotime r-mzid -cusolvermp pciutils py-nanotron r-mzr -cusparselt pcl py-napari r-nada -cusz pcma py-napari-console r-nanotime -cutensor pcre py-napari-plugin-engine r-ncbit -cutlass pcre2 py-napari-plugin-manager r-ncdf4 -cvector pcsclite py-napari-svg r-network -cvise pdal py-nara-wpe r-networkd3 -cvs pdc py-narwhals r-neuralnet -cxi-driver pdf2svg py-natsort r-nfactors -cxxopts pdftk py-nbclassic r-nimble -cxxtest pdi py-nbclient r-nleqslv -cyrus-sasl pdiplugin-decl-hdf5 py-nbconvert r-nlme -czmq pdiplugin-decl-netcdf py-nbdime r-nloptr -daemonize pdiplugin-mpi py-nbformat r-nmf -dakota pdiplugin-pycall py-nbmake r-nmof -daligner pdiplugin-serialize py-nbqa r-nnet -dalton pdiplugin-set-value py-nbsphinx r-nnls -damageproto pdiplugin-trace py-nbstripout r-nonnest2 -damaris pdiplugin-user-code py-nbval r-nor1mix -damask pdsh py-nc-time-axis r-nortest -damask-grid pdt py-ncbi-genome-download r-np -damask-mesh pegtl py-ndg-httpsclient r-npsurv -damselfly pelican py-ndindex r-numderiv -daos pennant py-neo r-oligoclasses -darshan-runtime percept py-neo4j r-openssl -darshan-util percolator py-neobolt r-openxlsx -dash percona-server py-neotime r-optimparallel -datamash perfstubs py-neovim-remote r-optimx -dataspaces perl py-neptune-client r-optparse -datatransferkit perl-acme-damn py-nest-asyncio r-ordinal -date perl-algorithm-c3 py-nestle r-org-hs-eg-db -dateutils perl-algorithm-diff py-netaddr r-organismdbi -dav-sdk perl-alien-build py-netcdf4 r-osqp -davix perl-alien-build-plugin-download-gitlab py-netifaces r-packrat -dbcsr perl-alien-libxml2 py-netket r-pacman -dbow2 perl-any-uri-escape py-netpyne r-paleotree -dbus perl-apache-logformat-compiler py-networkit r-pamr -dbus-glib perl-app-cmd py-networkx r-pan -dbxtool perl-appconfig py-neuralgcm r-parallelly -dcap perl-archive-zip py-neurokit2 r-parallelmap -dcm2niix perl-array-utils py-neurolab r-paramhelpers -dcmtk perl-b-cow py-neurom r-party -dctz perl-b-hooks-endofscope py-neurora r-partykit -dd4hep perl-b-keywords py-neurotools r-patchwork -ddc perl-bignum py-nexus-sdk r-pathview -ddd perl-bio-asn1-entrezgene py-nexusforge r-pbapply -dealii perl-bio-bigfile py-nglview r-pbdzmq -dealii-parameter-gui perl-bio-cluster py-ngs-tools r-pbivnorm -debbuild perl-bio-db-hts py-nh3 r-pbkrtest -debugedit perl-bio-ensembl py-nibabel r-pcamethods -decentralized-internet perl-bio-ensembl-funcgen py-nilearn r-pcapp -deconseq-standalone perl-bio-ensembl-io py-nipype r-pegas -deconwolf perl-bio-ensembl-variation py-nitransforms r-pepxmltab -dedisp perl-bio-eutilities py-niworkflows r-permute -deepmdkit perl-bio-searchio-hmmer py-nltk r-pfam-db -dejagnu perl-bio-variation py-node-semver r-phangorn -delly2 perl-bioperl py-nodeenv r-phantompeakqualtools -delphes perl-bit-vector py-non-regression-test-tools r-pheatmap -delta perl-bsd-resource py-nose r-philentropy -demuxlet perl-cache-cache py-nose-cov r-phylobase -deno perl-cache-memcached py-nose2 r-phyloseq -denovogear perl-cairo py-nosexcover r-phylostratr -detray perl-canary-stability py-notebook r-phytools -dfelibs perl-capture-tiny py-notebook-shim r-picante -dftbplus perl-carp py-npe2 r-piggyback -dftd3-lib perl-carp-assert py-nptyping r-pillar -dftd4 perl-carp-clan py-npx r-pinfsc50 -dftfe perl-catalyst-action-renderview py-ntlm-auth r-pixmap -dhpmm-f perl-catalyst-action-rest py-ntplib r-pkgbuild -dhtest perl-catalyst-component-instancepercontext py-nugraph r-pkgcache -dia perl-catalyst-devel py-nuitka r-pkgconfig -dia-umpire-se perl-catalyst-plugin-cache py-num2words r-pkgdepends -dialign perl-catalyst-plugin-configloader py-numba r-pkgdown -dialign-tx perl-catalyst-plugin-static-simple py-numba4jax r-pkgload -diamond perl-catalyst-runtime py-numbagg r-pkgmaker -dicom3tools perl-catalyst-view-json py-numcodecs r-pki -diffmark perl-cgi py-numdifftools r-pl94171 -diffsplice perl-cgi-simple py-numexpr r-plogr -difftastic perl-cgi-struct py-numexpr3 r-plot3d -diffutils perl-chart-gnuplot py-numkit r-plotly -digitrounding perl-chi py-numl r-plotmo -dihydrogen perl-chi-driver-memcached py-numpy r-plotrix -dimemas perl-class-accessor py-numpy-groupies r-pls -dineof perl-class-accessor-grouped py-numpy-indexed r-plyr -ding-libs perl-class-accessor-lvalue py-numpy-quaternion r-pmcmr -dire perl-class-c3 py-numpy-stl r-pmcmrplus -direnv perl-class-c3-adopt-next py-numpydoc r-png -discotec perl-class-c3-componentised py-nvidia-dali r-polspline -discovar perl-class-data-inheritable py-nvidia-ml-py r-polyclip -discovardenovo perl-class-inspector py-nvidia-ml-py3 r-polynom -disktype perl-class-load py-nvidia-modulus r-pool -dislin perl-class-load-xs py-nvidia-nvcomp r-poorman -distbench perl-class-method-modifiers py-nvidia-nvimagecodec r-popgenome -distcc perl-class-singleton py-nvidia-nvjpeg2k r-popvar -diy perl-class-tiny py-nvidia-nvtiff r-posterior -dla-future perl-clone py-nvidia-physicsnemo r-powerlaw -dla-future-fortran perl-clone-choose py-nvitop r-prabclus -dlb perl-clone-pp py-nvtx r-pracma -dlib perl-common-sense py-oauth2client r-praise -dlpack perl-compress-bzip2 py-oauthlib r-preprocesscore -dmd perl-compress-lzo py-obspy r-prettydoc -dmidecode perl-compress-raw-bzip2 py-ocnn r-prettyunits -dmlc-core perl-compress-raw-zlib py-odc-geo r-proc -dmtcp perl-config-any py-odfpy r-processx -dmxproto perl-config-general py-ogb r-prodlim -dnsmap perl-config-inifiles py-okada-wrapper r-profmem -dnsmasq perl-config-simple py-olcf-velocity r-profvis -dnstop perl-config-tiny py-olefile r-progress -dnstracer perl-context-preserve py-olmoearth-pretrain-minimal r-progressr -docbook-xml perl-contextual-return py-omegaconf r-proj -docbook-xsl perl-convert-nls-date-format py-onnx r-proj4 -dock perl-cookie-baker py-onnx-opcounter r-projpred -doctest perl-cpan-meta-check py-onnxconverter-common r-promises -dolfinx-mpc perl-cpanel-json-xs py-onnxmltools r-protgenerics -dorado perl-css-minifier-xs py-onnxruntime r-proto -dorian3d-dlib perl-data-dump py-ont-fast5-api r-proxy -dos2unix perl-data-dumper py-opcodes r-pryr -dosfstools perl-data-dumper-concise py-open-clip-torch r-ps -dotconf perl-data-optlist py-openai r-pscbs -dotnet-core-sdk perl-data-predicate py-openai-whisper r-pspline -double-batched-fft-library perl-data-stag py-openapi-schema-pydantic r-psych -double-conversion perl-data-uuid py-opencensus r-ptw -doxygen perl-data-visitor py-opencensus-context r-purrr -dpdk perl-date-exception py-opencv-python r-pvclust -dplasma perl-date-manip py-opendatalab r-qqconf -dpmjet perl-date-utils py-openidc-client r-qs -draco perl-datetime py-openmc r-qtl -dracut perl-datetime-format-builder py-openmesh r-quadprog -dramsim2 perl-datetime-format-iso8601 py-openmim r-quantmod -dramsim3 perl-datetime-format-mysql py-openpmd-validator r-quantreg -dri2proto perl-datetime-format-oracle py-openpmd-viewer r-quantro -dri3proto perl-datetime-format-pg py-openpyxl r-questionr -drill perl-datetime-format-strptime py-openslide-python r-quickjsr -drishti perl-datetime-locale py-opentelemetry-api r-quickplot -dropwatch perl-datetime-timezone py-opentelemetry-exporter-prometheus r-qvalue -druid perl-db-file py-opentelemetry-instrumentation r-r-cache -ds perl-dbd-mysql py-opentelemetry-sdk r-r-methodss3 -dsdp perl-dbd-oracle py-opentelemetry-semantic-conventions r-r-oo -dsfmt perl-dbd-pg py-opentree r-r-utils -dsqss perl-dbd-sqlite py-opentuner r-r6 -dsrc perl-dbi py-opppy r-radialmr -dssp perl-dbix-class py-ops r-ragg -dtc perl-devel-checklib py-opt-einsum r-rainbow -dtcmp perl-devel-cover py-optax r-randomfields -dtf perl-devel-cycle py-optree r-randomfieldsutils -duckdb perl-devel-globaldestruction py-optuna r-randomforest -duperemove perl-devel-overloadinfo py-or-tools r-randomglm -dust perl-devel-size py-oracledb r-ranger -dwz perl-devel-stacktrace py-orbax-checkpoint r-rann -dxt-explorer perl-devel-stacktrace-ashtml py-ordered-set r-rapidjsonr -dyninst perl-devel-symdump py-orderly-set r-rapiserialize -dysco perl-digest-jhash py-orjson r-rappdirs -e2fsprogs perl-digest-md5 py-os-service-types r-raster -e3sm-kernels perl-digest-md5-file py-oset r-rbgl -e3sm-scorpio perl-digest-sha1 py-oslo-config r-rbibutils -e4s-alc perl-dist-checkconflicts py-oslo-i18n r-rbokeh -e4s-cl perl-email-abstract py-oslo-serialization r-rcmdcheck -ea-utils perl-email-address-xs py-oslo-utils r-rcolorbrewer -eagle perl-email-date-format py-osqp r-rcpp -earlyoom perl-email-messageid py-outdated r-rcppannoy -easi perl-email-mime py-overpy r-rcpparmadillo -easybuild perl-email-mime-contenttype py-overrides r-rcppblaze -easyloggingpp perl-email-mime-encodings py-owlrl r-rcppcctz -ebms perl-email-sender py-owslib r-rcppcnpy -ecbuild perl-email-simple py-oyaml r-rcppdate -eccodes perl-email-stuffer py-p2j r-rcppde -eccodes-cosmo-resources perl-encode-locale py-pacifica-downloader r-rcppeigen -ecdsautils perl-error py-pacifica-namespace r-rcppensmallen -ecflow perl-eval-closure py-pacifica-uploader r-rcppgsl -eckit perl-exception-class py-packaging r-rcpphnsw -eclipse-gcj-parser perl-exporter-auto py-pager r-rcppml -ecmwf-atlas perl-exporter-lite py-paho-mqtt r-rcppparallel -ecos perl-exporter-tiny py-palettable r-rcppprogress -ecoslim perl-extutils-config py-pamela r-rcpproll -ecp-data-vis-sdk perl-extutils-depends py-panaroo r-rcpptoml -ecp-proxy-apps perl-extutils-helpers py-pandas r-rcppziggurat -ectrans perl-extutils-installpaths py-pandas-datareader r-rcurl -ed perl-extutils-makemaker py-pandas-stubs r-rda -editline perl-extutils-pkgconfig py-pandera r-rdpack -editorconfig perl-ffi-checklib py-pandocfilters r-readbitmap -editres perl-file-changenotify py-panedr r-readr -edm4hep perl-file-chdir py-panel r-readxl -eem perl-file-copy-recursive py-papermill r-reams -efivar perl-file-find-rule py-paralleltask r-recipes -egl perl-file-grep py-param r-reformulas -eigen perl-file-homedir py-parameterized r-registry -eigenexa perl-file-listing py-paramiko r-rematch -elasticsearch perl-file-pushd py-paramz r-rematch2 -elastix perl-file-remove py-parasail r-remotes -elbencho perl-file-sharedir py-parmed r-renv -elfio perl-file-sharedir-install py-parse r-reordercluster -elfutils perl-file-slurp py-parse-type r-reportingtools -elk perl-file-slurp-tiny py-parsedatetime r-repr -elmerfem perl-file-slurper py-parsimonious r-reprex -elpa perl-file-spec py-parsl r-reproducible -elsd perl-file-temp py-parsley r-require -elsdc perl-file-which py-parso r-reshape -elsi perl-filesys-notify-simple py-partd r-reshape2 -emacs perl-font-ttf py-particle r-restfulr -ember perl-forks py-paste r-reticulate -emblmygff3 perl-fth py-pastedeploy r-rex -emboss perl-gd py-pastel r-rfast -embree perl-gdgraph py-pastml r-rferns -enca perl-gdgraph-histogram py-patch r-rgdal -enchant perl-gdtextutil py-patch-ng r-rgenoud -energyplus perl-getopt-argvfile py-path-py r-rgeos -ensmallen perl-getopt-long-descriptive py-pathlib-abc r-rgexf -entrezdirect perl-getopt-tabular py-pathlib2 r-rgl -entt perl-graph py-pathml r-rgooglemaps -environment-modules perl-graph-readwrite py-pathos r-rgraphviz -enzo perl-graphviz py-pathsimanalysis r-rhdf5 -enzyme perl-gzip-faster py-pathspec r-rhdf5filters -eospac perl-hash-merge py-pathtools r-rhdf5lib -epic perl-hash-moreutils py-pathvalidate r-rhmmer -epics-base perl-hash-multivalue py-pathy r-rhtslib -epics-ca-gateway perl-heap py-patool r-rinside -epics-pcas perl-hook-lexwrap py-patsy r-rio -epics-snmp perl-html-parser py-pauvre r-rjags -eprosima-fastcdr perl-html-tagset py-pbr r-rjava -eprosima-fastdds perl-html-template py-pdb-tools r-rjson -epsic perl-http-body py-pdbfixer r-rjsonio -eq-r perl-http-cookiejar py-pdequinox r-rlang -er perl-http-cookies py-pdf2image r-rlas -erf perl-http-daemon py-pdm-backend r-rle -erfa perl-http-date py-pdm-pep517 r-rlist -erlang perl-http-entity-parser py-pdoc3 r-rmariadb -ermod perl-http-headers-fast py-peachpy r-rmarkdown -erne perl-http-message py-peakutils r-rminer -es-shell perl-http-multipartparser py-pebble r-rmpfr -esmf perl-http-negotiate py-peft r-rmpi -espanso perl-http-parser-xs py-pelicanfs r-rms -essl perl-http-request-ascgi py-pem r-rmutil -estarlight perl-http-server-simple py-pendulum r-rmysql -esys-particle perl-http-tiny py-pennylane r-rnaseqmap -etcd perl-import-into py-pennylane-lightning r-rncl -ethminer perl-inline py-pennylane-lightning-kokkos r-rnexml -ethtool perl-inline-c py-pep517 r-rngtools -etsf-io perl-io-all py-pep8 r-rnoaa -eve perl-io-compress py-pep8-naming r-robust -evemu perl-io-html py-perfdump r-robustbase -everytrace perl-io-prompt py-performance r-roc -everytrace-example perl-io-sessiondata py-periodictable r-rocr -evieext perl-io-socket-ssl py-petastorm r-rodbc -evtgen perl-io-string py-petname r-rook -exabayes perl-io-stringy py-petsc4py r-rots -exaca perl-io-tty py-pexpect r-roxygen2 -exactextract perl-ipc-run py-pfzy r-rpart -exago perl-ipc-run3 py-pgzip r-rpart-plot -examl perl-ipc-sharelite py-phanotate r-rpmm -exampm perl-ipc-system-simple py-phonenumbers r-rpostgres -exasp2 perl-javascript-minifier-xs py-phonopy r-rpostgresql -exawind perl-json py-photutils r-rprojroot -exaworks perl-json-any py-phydms r-rpsychi -exchcxx perl-json-maybexs py-phylophlan r-rrblup -exciting perl-json-xs py-pickle5 r-rrcov -exempi perl-kyotocabinet py-pickleshare r-rrpp -exiv2 perl-libwww-perl py-picmistandard r-rsamtools -exmcutils perl-libxml-perl py-picrust2 r-rsconnect -exo perl-lingua-en-inflect py-pid r-rsnns -exodusii perl-list-compare py-pika r-rsolnp -exonerate perl-list-moreutils py-pillow r-rspectra -exonerate-gff3 perl-list-moreutils-xs py-pillow-simd r-rsqlite -expat perl-list-someutils py-pint r-rstan -expect perl-log-any py-pint-xarray r-rstantools -express perl-log-any-adapter-callback py-pip r-rstatix -exprtk perl-log-dispatch py-pipcl r-rstudioapi -extrae perl-log-dispatch-filerotate py-pipdeptree r-rsubread -exuberant-ctags perl-log-log4perl py-piper r-rsvd -eza perl-logger-simple py-pipits r-rtracklayer -eztrace perl-lwp-mediatypes py-pispino r-rtsne -f2c perl-lwp-protocol-https py-pivy r-runit -f3d perl-mailtools py-pkgconfig r-runjags -f77-zmq perl-math-bezier py-pkginfo r-ruv -f90cache perl-math-bigint py-pkgutil-resolve-name r-rvcheck -fabtests perl-math-bigrat py-plac r-rversions -fabulous perl-math-cdf py-plaid r-rvest -faircmakemodules perl-math-cephes py-planar r-rviennacl -fairlogger perl-math-matrixreal py-planet r-rzmq -fairmq perl-math-round py-planetary-computer r-s2 -fairroot perl-math-symbolic py-platformdirs r-s4vectors -fairsoft-bundle perl-math-vecstat py-plotext r-s7 -fairsoft-config perl-mce py-plotille r-samr -faiss perl-memory-process py-plotly r-sandwich -fakechroot perl-metacpan-client py-plotnine r-sass -faketime perl-mime-types py-pluggy r-satellite -fakexrandr perl-mni-perllib py-plum-dispatch r-scaledmatrix -falco perl-mock-config py-ply r-scales -falcon perl-module-build py-pmtiles r-scater -fann perl-module-build-tiny py-pmw r-scattermore -faodel perl-module-corelist py-pmw-patched r-scatterpie -fargparse perl-module-find py-pockets r-scatterplot3d -fasd perl-module-implementation py-poetry r-scdblfinder -fast-float perl-module-install py-poetry-core r-scran -fast-global-file-status perl-module-mask py-poetry-dynamic-versioning r-scrime -fasta perl-module-pluggable py-poetry-plugin-export r-scs -fastani perl-module-runtime py-poetry-plugin-tweak-dependencies-version r-sctransform -fastdb perl-module-runtime-conflicts py-polars r-scuttle -fastdfs perl-module-scandeps py-pomegranate r-sdmtools -fastjar perl-module-util py-pooch r-segmented -fastjet perl-mojolicious py-portalocker r-selectr -fastjson perl-moo py-portend r-seqinr -fastmath perl-moose py-portpicker r-seqlogo -fastme perl-moosex-emulate-class-accessor-fast py-postcactus r-servr -fastor perl-moosex-getopt py-poster r-sessioninfo -fastp perl-moosex-methodattributes py-pot r-sets -fastphase perl-moosex-role-parameterized py-pox r-seurat -fastplong perl-moox-types-mooselike py-poxy r-seuratobject -fastq-scan perl-moox-types-mooselike-numeric py-poyo r-sf -fastq-screen perl-mozilla-ca py-ppft r-sfheaders -fastqc perl-mro-compat py-pprintpp r-sfsmisc -fastqvalidator perl-namespace-autoclean py-pre-commit r-sftime -fasttext perl-namespace-clean py-preshed r-shadowtext -fasttransforms perl-net-cidr-lite py-pretrainedmodels r-shape -fasttree perl-net-http py-pretty-errors r-shiny -fastx-toolkit perl-net-ip py-prettytable r-shinydashboard -faust perl-net-scp-expect py-priority r-shinyfiles -fbgemm perl-net-server py-profilehooks r-shinyfiletree -fca perl-net-server-ss-prefork py-proglog r-shinyjs -fcgi perl-net-ssleay py-progress r-shinystan -fckit perl-number-compare py-progressbar2 r-shinythemes -fd perl-number-format py-progressbar33 r-shinywidgets -fdb perl-object-insideout py-projectq r-shortread -fds perl-package-deprecationmanager py-prokaryote r-siggenes -fdupes perl-package-stash py-prometheus-client r-signac -feh perl-package-stash-xs py-prometheus-flask-exporter r-simpleaffy -fenics perl-package-variant py-promise r-singlecellexperiment -fenics-basix perl-padwalker py-prompt-toolkit r-sitmo -fenics-dolfinx perl-parallel-forkmanager py-propcache r-sm -fenics-ufcx perl-params-util py-properscoring r-smoof -feq-parse perl-params-validate py-proto-plus r-sn -fermi perl-params-validationcompiler py-protobuf r-snakecase -fermikit perl-parse-recdescent py-protoc-gen-swagger r-snow -fermisciencetools perl-parse-yapp py-prov r-snowfall -ferret perl-parselex py-proxystore r-snprelate -feynhiggs perl-parsetemplate py-prwlock r-snpstats -ffb perl-path-class py-psalg r-som -fflas-ffpack perl-path-tiny py-psana r-somaticsignatures -ffmpeg perl-pathtools py-psij-python r-sourcetools -ffr perl-pdf-api2 py-psmon r-sp -ffsb perl-pegex py-pspamm r-spacetime -ffte perl-perl-critic py-psutil r-spades -fftw perl-perl-critic-moose py-psyclone r-spades-addins -fftx perl-perl-tidy py-psycopg2 r-spades-core -fgsl perl-perl-unsafe-signals py-psygnal r-spades-tools -fiat perl-perl-version py-ptyprocess r-spam -fides perl-perl4-corelibs py-pubchempy r-sparsem -figcone perl-perl6-slurp py-pudb r-sparsematrixstats -figlet perl-perlio-gzip py-pulp r-spatial -figtree perl-perlio-utf8-strict py-pulsar-galaxy-lib r-spatialeco -file perl-plack py-pure-eval r-spatialpack -filebench perl-plack-middleware-assets py-pure-sasl r-spatialreg -filo perl-plack-middleware-crossorigin py-puremagic r-spatstat -filtlong perl-plack-middleware-deflater py-py r-spatstat-core -fimpute perl-plack-middleware-fixmissingbodyinredirect py-py-cpuinfo r-spatstat-data -finch perl-plack-middleware-methodoverride py-py-spy r-spatstat-explore -findbugs perl-plack-middleware-removeredundantbody py-py-tes r-spatstat-geom -findutils perl-plack-middleware-reverseproxy py-py2bit r-spatstat-linnet -fio perl-plack-test-externalserver py-py2neo r-spatstat-model -fipscheck perl-pod-coverage py-py4j r-spatstat-random -fish perl-pod-parser py-py6s r-spatstat-sparse -fixesproto perl-pod-spell py-pyabel r-spatstat-univar -fj perl-posix-strftime-compiler py-pyaestro r-spatstat-utils -fjcontrib perl-ppi py-pyahocorasick r-spdata -fl perl-ppix-quotelike py-pyamg r-spdep -flac perl-ppix-regexp py-pyaml r-speedglm -flamegraph perl-ppix-utils py-pyaml-env r-spem -flamemaster perl-proc-daemon py-pyani r-splancs -flann perl-proc-processtable py-pyarrow r-splines2 -flap perl-readonly py-pyasn1 r-splitstackshape -flash perl-readonly-xs py-pyasn1-modules r-sqldf -flashdimmsim perl-ref-util py-pyassimp r-squarem -flatbuffers perl-regexp-common py-pyautogui r-squash -flatcc perl-role-tiny py-pybedtools r-sseq -flcl perl-rose-datetime py-pybids r-stabledist -flecsi perl-rose-db py-pybigwig r-stanheaders -flecsph perl-rose-db-object py-pybind11 r-stargazer -fleur perl-rose-object py-pybind11-stubgen r-stars -flex perl-safe-isa py-pybktree r-statmod -flexi perl-scalar-list-utils py-pybobyqa r-statnet-common -flexiblas perl-scalar-util-numeric py-pybrain r-stringfish -flibcpp perl-scope-guard py-pybtex r-stringi -flink perl-search-elasticsearch py-pybtex-docutils r-stringr -flint perl-sereal py-pybv r-strucchange -flit perl-sereal-decoder py-pycairo r-strucchangercpp -fltk perl-sereal-encoder py-pycares r-styler -fluidnumerics-self perl-server-starter py-pycbc r-subplex -flume perl-set-intervaltree py-pycgns r-summarizedexperiment -flux perl-set-intspan py-pychecker r-suppdists -flux-core perl-set-object py-pycifrw r-survey -flux-pmix perl-set-scalar py-pyclibrary r-survival -flux-python perl-soap-lite py-pycm r-sva -flux-sched perl-sort-naturally py-pycmd r-svglite -flux-security perl-specio py-pycocotools r-sys -fluxbox perl-spiffy py-pycodestyle r-systemfonts -fmi4cpp perl-sql-abstract py-pycollada r-tarifx -fms perl-sql-abstract-classic py-pycompadre r-taxizedb -fmt perl-sql-reservedwords py-pyconify r-tclust -foam-extend perl-sql-translator py-pycorenlp r-teachingdemos -foldseek perl-star-fusion py-pycortex r-tensor -folly perl-starman py-pycosat r-tensora -font-util perl-statistics-basic py-pycparser r-terra -fontcacheproto perl-statistics-descriptive py-pycrypto r-tester -fontconfig perl-statistics-pca py-pycryptodome r-testit -fontsproto perl-stream-buffered py-pycryptodomex r-testthat -fonttosfnt perl-strictures py-pyct r-textshaping -foonathan-memory perl-string-approx py-pycubexr r-tfbstools -form perl-string-crc32 py-pycuda r-tfisher -formetis perl-string-format py-pycurl r-tfmpvalue -fortrilinos perl-string-numeric py-pydantic r-th-data -fortuno perl-string-rewriteprefix py-pydantic-compat r-threejs -fossil perl-sub-exporter py-pydantic-core r-tibble -foundationdb perl-sub-exporter-progressive py-pydantic-extra-types r-tictoc -fox perl-sub-identify py-pydantic-settings r-tidycensus -fp16 perl-sub-install py-pydantic-tes r-tidygraph -fpart perl-sub-name py-pydap r-tidyr -fpc perl-sub-quote py-pydata-sphinx-theme r-tidyselect -fpchecker perl-sub-uplevel py-pydatalog r-tidytree -fping perl-svg py-pydeface r-tidyverse -fplll perl-swissknife py-pydeprecate r-tiff -fplo perl-sys-sigaction py-pydeps r-tigris -fpm perl-task-weaken py-pydevtool r-timechange -fpocket perl-template-toolkit py-pydftracer r-timedate -fpzip perl-term-ansicolor-markup py-pydicom r-tinytex -fq perl-term-readline-gnu py-pydispatcher r-tinytiger -fqtrim perl-term-table py-pydmd r-tmixclust -fr-hit perl-termreadkey py-pydocstyle r-tmvnsim -fraggenescan perl-test-base py-pydoe r-topgo -freebayes perl-test-class py-pydoe2 r-treeio -freecad perl-test-cleannamespaces py-pydot r-triebeard -freefem perl-test-deep py-pydot2 r-trimcluster -freeglut perl-test-diaginc py-pydotplus r-truncdist -freeimage perl-test-differences py-pydub r-truncnorm -freeipmi perl-test-exception py-pyeda r-trust -freesasa perl-test-fatal py-pyedr r-tseries -freesurfer perl-test-file py-pyee r-tsne -freetype perl-test-file-contents py-pyelftools r-ttr -freexl perl-test-file-sharedir py-pyem r-tweenr -fribidi perl-test-json py-pyenchant r-twosamplemr -frobby perl-test-leaktrace py-pyepsg r-txdb-hsapiens-ucsc-hg18-knowngene -frontier-client perl-test-longstring py-pyerfa r-txdb-hsapiens-ucsc-hg19-knowngene -frontistr perl-test-memory-cycle py-pyeventsystem r-tximeta -frugally-deep perl-test-mockobject py-pyface r-tximport -fseq perl-test-mocktime py-pyfaidx r-tximportdata -fsl perl-test-more py-pyfasta r-tzdb -fslsfonts perl-test-most py-pyfastaq r-ucminf -fstobdf perl-test-needs py-pyfftw r-udunits2 -fstrack perl-test-nowarnings py-pyfiglet r-units -ftgl perl-test-object py-pyfits r-upsetr -ftjam perl-test-output py-pyfive r-urca -ftk perl-test-perl-critic py-pyflakes r-urlchecker -ftobjectlibrary perl-test-pod py-pyfr r-urltools -ftxui perl-test-pod-coverage py-pygame r-usethis -fujitsu-fftw perl-test-requires py-pygdal r-utf8 -fujitsu-frontistr perl-test-requiresinternet py-pygdbmi r-uuid -fujitsu-mpi perl-test-sharedfork py-pygelf r-uwot -fujitsu-ssl2 perl-test-subcalls py-pygeos r-v8 -fullock perl-test-tcp py-pygetwindow r-variantannotation -func perl-test-time py-pygit2 r-varselrf -functionalplus perl-test-time-hires py-pygithub r-vcd -funhpc perl-test-trap py-pyglet r-vcfr -funwave perl-test-warn py-pygments r-vctrs -fuse-overlayfs perl-test-warnings py-pygments-pytest r-vegan -fusion-io perl-test-weaken py-pygmsh r-vfs -fvtkhdf perl-test-without-module py-pygmt r-vgam -fwq perl-test-xml py-pygobject r-vioplot -fxdiv perl-test-xml-simple py-pygps r-vipor -fxt perl-test-xpath py-pygpu r-viridis -fyba perl-test-yaml py-pygraphviz r-viridislite -fzf perl-test2-plugin-nowarnings py-pygresql r-visnetwork -g2 perl-test2-suite py-pygrib r-vroom -g2c perl-text-csv py-pygtrie r-vsn -g2o perl-text-csv-xs py-pyh5md r-waldo -g2tmpl perl-text-diff py-pyhdf r-watermelon -g4abla perl-text-format py-pyheadtail r-webshot -g4adept perl-text-glob py-pyhmmer r-wgcna -g4channeling perl-text-nsp py-pyhull r-whisker -g4emlow perl-text-simpletable py-pyicu r-withr -g4ensdfstate perl-text-soundex py-pyinstrument r-wk -g4hepem perl-text-unidecode py-pyinstrument-cext r-writexl -g4incl perl-thread-queue py-pyisemail r-wru -g4ndl perl-threads py-pyjnius r-xde -g4neutronxs perl-throwable py-pyjwt r-xfun -g4nudexlib perl-tie-ixhash py-pyke r-xgboost -g4particlexs perl-tie-toobject py-pykerberos r-xlconnect -g4photonevaporation perl-time-clock py-pykml r-xlconnectjars -g4pii perl-time-duration py-pykokkos-base r-xlsx -g4radioactivedecay perl-time-duration-parse py-pykwalify r-xlsxjars -g4realsurface perl-time-hires py-pylab-sdk r-xmapbridge -g4saiddata perl-time-piece py-pylatex r-xml -g4tendl perl-timedate py-pyld r-xml2 -g4urrpt perl-tk py-pylev r-xnomial -g4vg perl-tree-simple py-pylibjpeg-libjpeg r-xopen -gadap perl-tree-simple-visitorfactory py-pylibjpeg-openjpeg r-xtable -gamess-ri-mp2-miniapp perl-try-tiny py-pylibjpeg-rle r-xts -gams perl-type-tiny py-pylibmagic r-xvector -gapbs perl-types-serialiser py-pylikwid r-yaimpute -gapcloser perl-universal-can py-pylint r-yaml -gapfiller perl-universal-isa py-pylint-gitlab r-yapsa -garcon perl-uri py-pylith r-yaqcaffy -garfieldpp perl-uri-encode py-pylops r-yarn -gasnet perl-uri-find py-pymatgen r-yulab-utils -gatb-core perl-uri-ws py-pymatreader r-zcompositions -gate perl-want py-pymbolic r-zeallot -gatepet2stir perl-www-form-urlencoded py-pymc3 r-zip -gatetools perl-www-robotrules py-pymdown-extensions r-zlibbioc -gatk perl-xml-dom py-pymeeus r-zoo -gau2grid perl-xml-dom-xpath py-pyminifier r3d -gaudi perl-xml-filter-buffertext py-pymol rabbitmq -gaussian perl-xml-hash-xs py-pymongo rabbitmq-c -gaussian-view perl-xml-libxml py-pymoo racket -gauxc perl-xml-libxslt py-pymorph racon -gawk perl-xml-namespacesupport py-pympler raft -gbl perl-xml-parser py-pymsgbox ragel -gblocks perl-xml-parser-lite py-pymummer raja -gcc perl-xml-quote py-pymumps raja-perf -gcc-runtime perl-xml-regexp py-pymupdf ramulator -gccmakedep perl-xml-sax py-pymupdf-fonts randfold -gccxml perl-xml-sax-base py-pymysql random123 -gchp perl-xml-sax-writer py-pynacl randrproto -gcta perl-xml-semanticdiff py-pynio range-v3 -gdal perl-xml-simple py-pynisher rank-run -gdb perl-xml-twig py-pynn rankstr -gdbm perl-xml-writer py-pynndescent rapidjson -gdk-pixbuf perl-xml-xpath py-pynpm raptor2 -gdl perl-xml-xpathengine py-pynrrd rarpd -gdrcopy perl-yaml py-pynucleus rasdaemon -geant3 perl-yaml-libyaml py-pynumpress rasqal -geant4 perl-yaml-syck py-pynvim ratel -geant4-data perl-yaml-tiny py-pynvml ravel -geant4-vmc pestpp py-pynvtx raxml -geany petaca py-pyodbc raxml-ng -gearshifft petsc py-pyogrio ray -gegelati pexsi py-pyomo rayleigh -gegl pfapack py-pyopencl raylib -gem5 pfft py-pyopengl rccl -gemma pfind py-pyopenssl rccl-tests -gemmlowp pflare py-pypar rclone -genemark-et pflask py-pyparsing rdc -generalbrokenlines pflogger py-pypdf rdkit -generate-ninja pflotran py-pypdf2 rdma-core -generax pfunit py-pypeflow rdp-classifier -genesis pgdspider py-pypeg2 rdptools -genfit pgplot py-pyperclip re2 -gengeo ph5concat py-pyperf re2c -gengetopt phantompeakqualtools py-pypinfo readfq -genie pharokka py-pypinyin readline -genomefinisher phast py-pypistats realm -genometools phasta py-pypng recola -genomeworks phist py-pyppeteer recola-sm -genrich phoenix py-pyprecice recon -geode photos py-pyprof2html recorder -geoip-api-c photos-f py-pyproj recordproto -geomodel photospline py-pyproject-hooks redis -geos php py-pyproject-metadata redis-ai -getorganelle phrap-crossmatch-swat py-pyproject-parser redis-plus-plus -gettext phred py-pypulse reditools -gexiv2 phylip py-pyqi redland -gfal2 phylobayesmpi py-pyqt-builder redland-bindings -gfal2-util phyluce py-pyqt4 redset -gfan picard py-pyqt5 redundans -gffcompare picsar py-pyqt5-sip reframe -gffread picsarlite py-pyqt6 regale -gflags pidx py-pyqt6-sip regcm -gfsio pig py-pyqtgraph regenie -gftl pigz py-pyquaternion regtools -gftl-shared pika py-pyreadline relax -ggml pika-algorithms py-pyrect relion -gh pilercr py-pyrevolve remhos -ghex pilon py-pyrfr rempi -ghost pindel py-pyro-api rename -ghostscript pinentry py-pyro-ppl rendercheck -ghostscript-fonts pinfo py-pyro4 renderproto -giblib pioman py-pyroaring repeatafterme -giflib pipework py-pyrocko repeatmasker -gimp pipx py-pyrodigal repeatmodeler -ginac piranha py-pyrodigal-gv repeatscout -ginkgo pism py-pyrometheus reprimand -giraph pixman py-pyrr resolve -git pixz py-pyrsistent resourceproto -git-annex pkg-config py-pysam restic -git-fat-git pkgconf py-pyscaf revbayes -git-filter-repo pktools py-pyscf revocap-coupler -git-imerge planck-likelihood py-pyscipopt revocap-refiner -git-lfs plantuml py-pyscreeze rgb -gitconddb plasma py-pyseer rhash -givaro plink py-pyserial rinetd -gl2ps plink-ng py-pysftp ripgrep -glab plink2 py-pyshacl riscv-gnu-toolchain -glew plog py-pyshp rivet -glfmultiples ploticus py-pyside2 rkcommon -glfw plplot py-pysimdjson rkt-base -glib plsm py-pysindy rkt-cext-lib -glib-bootstrap plumed py-pysmartdl rkt-compiler-lib -glib-networking ply py-pysmiles rkt-dynext-lib -glibc pmdk py-pysocks rkt-racket-lib -glibmm pmemkv py-pysolar rkt-rackunit-lib -glimmer pmerge py-pyspark rkt-scheme-lib -glm pmgr-collective py-pyspellchecker rkt-testing-util-lib -global pmix py-pyspice rkt-zo-lib -globalarrays pmlib py-pyspnego rlwrap -globus-callout pnfft py-pyspoa rmats -globus-common pngquant py-pyspod rmgdft -globus-ftp-client pngwriter py-pysqlite3 rmlab -globus-ftp-control pnmpi py-pystac rna-seqc -globus-gass-copy poamsa py-pystac-client rnaquast -globus-gass-transfer pocl py-pystache rnaz -globus-gsi-callback podio py-pystan rng-tools -globus-gsi-cert-utils podman py-pysurfer rngstreams -globus-gsi-credential podman-compose py-pytablewriter rnpletal -globus-gsi-openssl-error poke py-pytailf roary -globus-gsi-proxy-core polymake py-pytaridx rocal -globus-gsi-proxy-ssl polyml py-pytecplot rocalution -globus-gsi-sysconfig polypolish py-pytesseract rocblas -globus-gss-assist poorjit py-pytest rocdecode -globus-gssapi-error poplddecay py-pytest-aiohttp rocfft -globus-gssapi-gsi poppler py-pytest-allclose rocjpeg -globus-io poppler-data py-pytest-arraydiff rocketmq -globus-openssl-module popt py-pytest-astropy rocksdb -globus-xio porta py-pytest-astropy-header rockstar -globus-xio-gsi-driver portage py-pytest-asyncio rocm-bandwidth-test -globus-xio-pipe-driver portcullis py-pytest-benchmark rocm-clang-ocl -globus-xio-popen-driver ports-of-call py-pytest-cache rocm-cmake -glog possvm py-pytest-check-links rocm-core -gloo postgis py-pytest-cmake rocm-dbgapi -glow postgresql py-pytest-cov rocm-debug-agent -glpk povray py-pytest-cpp rocm-device-libs -glproto powerapi py-pytest-datadir rocm-examples -gluegen powertop py-pytest-doctestplus rocm-gdb -glusterfs ppl py-pytest-fail-slow rocm-opencl -glvis pplacer py-pytest-filter-subpackage rocm-openmp-extras -glx ppopen-appl-amr-fdm py-pytest-flake8 rocm-smi-lib -gmake ppopen-appl-bem py-pytest-flakes rocm-tensile -gmap-gsnap ppopen-appl-bem-at py-pytest-forked rocm-validation-suite -gmic ppopen-appl-dem-util py-pytest-html rocminfo -gmime ppopen-appl-fdm py-pytest-httpbin rocmlir -gmodel ppopen-appl-fdm-at py-pytest-isort rocprim -gmp ppopen-appl-fem py-pytest-lazy-fixture rocprofiler-compute -gmsh ppopen-appl-fvm py-pytest-memray rocprofiler-compute-viewer -gmt ppopen-at py-pytest-metadata rocprofiler-dev -gmtsar ppopen-math-mp py-pytest-mock rocprofiler-register -gnat ppopen-math-vis py-pytest-mpi rocprofiler-sdk -gnds pprof py-pytest-mypy rocprofiler-systems -gnina prank py-pytest-openfiles rocpydecode -gnome-common precice py-pytest-parallel rocrand -gnuconfig predixy py-pytest-pep8 rocshmem -gnupg premake-core py-pytest-pylint rocsolver -gnuplot presentproto py-pytest-qt rocsparse -gnuradio preseq py-pytest-random-order rocthrust -gnutls pressio-log py-pytest-regtest roctracer-dev -go pressio-ops py-pytest-remotedata roctracer-dev-api -go-bootstrap pressio-rom py-pytest-reportlog rocwmma -go-md2man presto py-pytest-retry rodinia -go-sh prettier py-pytest-runner roms -goaccess price py-pytest-socket root -gobject-introspection prime95 py-pytest-subprocess roounfold -goblin-hmc-sim primer3 py-pytest-timeout rosco -gocryptfs prinseq-lite py-pytest-workflow rose -goimports printproto py-pytest-xdist ross -goma prism py-python-benedict routinator -gomplate prmon py-python-bioformats routino -google-cloud-cli prng py-python-box rpcsvc-proto -google-cloud-cpp probconsrna py-python-calamine rpm -google-crc32c procenv py-python-certifi-win32 rpp -googletest process-in-process py-python-constraint rr -gopls procps py-python-crfsuite rrdtool -gosam-contrib procps-ng py-python-daemon rsbench -goshimmer prod-util py-python-dateutil rsem -gotcha prodigal py-python-deprecated rsl -gource professor py-python-discovery rstart -gpcnet profugusmc py-python-docs-theme rstudio -gperf proj py-python-docx rsync -gperftools prokka py-python-dotenv rsyslog -gpgme prometheus py-python-editor rt-tests -gpi-2 prometheus-cpp py-python-engineio rtags -gpi-space prophecy4f py-python-fmask rtax -gplates proteowizard py-python-fsutil rtmpdump -gprofng-gui protobuf py-python-gitlab ruby -gprolog protobuf-c py-python-hostlist ruby-asciidoctor -gptl proxymngr py-python-igraph ruby-charlock-holmes -gptune prrte py-python-javabridge ruby-erubis -gpu-burn pruners-ninja py-python-jenkins ruby-gist -gpuscout ps-lite py-python-jose ruby-gnuplot -gqrx psalg py-python-json-logger ruby-hpricot -gr-osmosdr psblas py-python-keystoneclient ruby-mustache -grabix pscmc py-python-ldap ruby-narray -grace psi4 py-python-levenshtein ruby-rake -grackle psimd py-python-libsbml ruby-rdiscount -gradle psipred py-python-logstash ruby-ronn -grads pslib py-python-louvain ruby-rubyinline -grafana psm py-python-lsp-jsonrpc ruby-svn2git -graph500 psmc py-python-lsp-ruff ruby-terminal-table -graphblast psrcat py-python-lsp-server ruby-thor -graphicsmagick psrchive py-python-lzo ruby-tmuxinator -graphite2 psrdada py-python-magic ruby-unicode-display-width -graphlib pstreams py-python-mapnik ruby-xdg -graphmap pthreadpool py-python-markdown-math ruby-zentest -graphviz pueue py-python-memcached runc -grass pugixml py-python-multipart rust -graylog2-server puk py-python-mumps rust-bindgen -green-mbpt pukabi py-python-oauth2 rust-bootstrap -green-seet pulseaudio py-python-picard rust-clap -greenx pumgen py-python-pptx s4pred -grep pumi py-python-ptrace s5cmd -grib-util purify py-python-rapidjson sabre -gribjump pv py-python-slugify saga-gis -grid pvm py-python-socketio sage -gridlab-d pwgen py-python-sotools sailfish -gridtools pxz py-python-subunit salmon -grnboost py-3to2 py-python-swiftclient salmon-tddft -groff py-4suite-xml py-python-utils salome-configuration -gromacs py-a2wsgi py-python-xlib salome-medcoupling -gromacs-chain-coordinate py-abcpy py-python-xmp-toolkit saltfm -gromacs-swaxs py-abipy py-python3-openid sam2p -grpc py-about-time py-python3-xlib sambamba -gsettings-desktop-schemas py-absl-py py-pythonqwt samblaster -gsi-ncdiag py-accelerate py-pythonsollya samrai -gsibec py-accessible-pygments py-pythran samtools -gsl py-accimage py-pytimeparse samurai -gsl-lite py-acme-tiny py-pytng sandbox -gslib py-acres py-pytokens sandia-micro-benchmarks -gsoap py-adal py-pytoml sartre -gspell py-adb-enhanced py-pytools sarus -gtfsort py-addict py-pytorch-gradual-warmup-lr satsuma2 -gtk-doc py-adios py-pytorch-lightning savanna -gtkmm py-adios4dolfinx py-pytorch-sphinx-theme saws -gtkorvo-atl py-advancedhtmlparser py-pytorch-warmup sbcl -gtkorvo-cercs-env py-aenum py-pyts sbcl-bootstrap -gtkorvo-dill py-affine py-pytuq sblim-sfcc -gtkorvo-enet py-agate py-pytweening sbml -gtkplus py-agate-dbf py-pytz sbp -gtksourceview py-agate-excel py-pyu2f sbt -gts py-agate-sql py-pyudev scafacos -guacamole-client py-ahpy py-pyugrid scala -guacamole-server py-aiobotocore py-pyupgrade scalasca -guidance py-aiocontextvars py-pyusb scale -guile py-aiodns py-pyutilib scallop -gunrock py-aiofiles py-pyuwsgi scalpel -gurobi py-aiohappyeyeballs py-pyvcf scan-for-matches -gvproxy py-aiohttp py-pyvips scantailor -gxsview py-aiohttp-cors py-pyvista scc -gzip py-aioitertools py-pyvistaqt sccache -h2database py-aiojobs py-pyviz-comms scine-core -h5bench py-aioredis py-pyvolve scine-database -h5cpp py-aiosignal py-pywavelets scine-molassembler -h5hut py-aiosqlite py-pywcs scine-qcmaquis -h5part py-aiowebdav2 py-pywin32 scine-readuct -h5utils py-alabaster py-pywinpty scine-serenity -h5z-zfp py-albucore py-pyworld scine-sparrow -haccabana py-alembic py-pyxlsb scine-utilities -hacckernels py-alive-progress py-pyyaml scine-xtb -hackrf-host py-alpaca-eval py-pyyaml-env-tag scipoptsuite -hadoop py-alpaca-farm py-pyzmq scitokens-cpp -hadoop-xrootd py-alphafold py-qdldl scnlib -hal py-altair py-qiskit-aer scons -half py-altgraph py-qiskit-ibm-provider scorecard -halide py-amici py-qiskit-nature scorep -hama py-amityping py-qiskit-terra scorpio -hammer py-amplpy py-qmtest scotch -hapcut2 py-ampltools py-qpsolvers scr -hapdip py-amqp py-qpth screen -haploview py-amrex py-qrcode scripts -haproxy py-angel py-qsymm scrnsaverproto -hard py-aniso8601 py-qtawesome scrot -hardlink py-anndata py-qtconsole scs -harfbuzz py-annexremote py-qtpy sctk -harminv py-annotated-types py-quantiphy sdl2 -hashcat py-annoy py-quantities sdl2-image -haveged py-ansi2html py-quantum-blackbird sdl2-ttf -hazelcast py-ansible py-quantum-xir sdsl-lite -hbase py-ansimarkup py-quart seacas -hbm-dramsim2 py-ansiwrap py-quast seacr -hc py-antimeridian py-quaternionic seal -hcoll py-antipickle py-qudida sed -hdf py-antlr4-python3-runtime py-queryablelist sedacs -hdf-eos2 py-antspyx py-querystring-parser seissol -hdf-eos5 py-anuga py-questionary selalib -hdf5 py-anvio py-qutip semiprof -hdf5-blosc py-anybadge py-qutip-qip sendme -hdf5-vfd-gds py-anyio py-rachis sensei -hdf5-vol-async py-anytree py-radiant-mlhub sentencepiece -hdf5-vol-cache py-anywidget py-radical-entk sentieon-genomics -hdf5-vol-daos py-apache-libcloud py-radical-gtod sepp -hdf5-vol-external-passthrough py-apache-tvm-ffi py-radical-pilot seq-gen -hdf5-vol-log py-apebench py-radical-saga seqan -hdfview py-apex py-radical-utils seqfu -healpix-cxx py-apeye py-ranger-fm seqkit -heaptrack py-apeye-core py-rapidfuzz seqprep -heasoft py-apipkg py-rapidfuzz-capi seqtk -heffte py-apispec py-rarfile serenity -heimdall py-app-model py-rassumfrassum serenity-libint -helib py-appdirs py-rasterio serf -helics py-applicationinsights py-rasterstats serialbox -helm py-appnope py-ratelim sessreg -help2man py-apprise py-ratelimiter setserial -henson py-apptools py-raven setxkbmap -hepmc py-apscheduler py-ray sfcgal -hepmc3 py-arcgis py-rbtools sfcio -hepmcanalysis py-arch py-rdflib sfml -heppdt py-archspec py-rdflib-jsonld sga -heputils py-arcp py-rdt sgpp -hermes py-argcomplete py-reacton shadow -hermes-shm py-argh py-readchar shadowenv -herwig3 py-argon2-cffi py-readme-renderer shamrock -herwigpp py-argon2-cffi-bindings py-recommonmark shapeit -hevea py-argparse-dataclass py-redis shapeit4 -heyoka py-argparse-manpage py-referencing shapelib -hh-suite py-args py-refgenconf shapemapper -hibench py-arkouda py-refgenie shared-mime-info -hicolor-icon-theme py-arm-pyart py-regex shark -hicops py-arpeggio py-regionmask shc -hicup py-arrow py-regions sheenbidi -highfive py-art py-reindent shellcheck -highway py-arviz py-relion shengbte -highwayhash py-asciitree py-relion-blush sherpa -hiop py-asdf py-relion-classranker shiro -hip py-asdf-astropy py-repligit shocklibs -hip-tensor py-asdf-coordinates-schemas py-reportlab shoremap -hip-tests py-asdf-standard py-reportseff shortstack -hipace py-asdf-transform-schemas py-repoze-lru showfont -hipblas py-asdf-unit-schemas py-reproject shred -hipblas-common py-asdfghjkl py-requests shtns -hipblaslt py-ase py-requests-cache shtools -hipcc py-asgi-lifespan py-requests-file shuffile -hipcub py-asgiref py-requests-ftp sicer2 -hipdnn py-asn1crypto py-requests-futures sickle -hipfft py-aspy-yaml py-requests-kerberos sicm -hipfort py-asserts py-requests-mock siesta -hipify-clang py-ast-serialize py-requests-ntlm sigcpp -hiprand py-asteval py-requests-oauthlib sigio -hipsolver py-astor py-requests-toolbelt signalp -hipsparse py-astpretty py-requests-unixsocket signify -hipsparselt py-astroid py-requirements-parser silo -hipsycl py-astropy py-reretry simde -hiptt py-astropy-healpix py-resampy simdjson -hiredis py-astropy-helpers py-resize-right simgrid -hisat2 py-astropy-iers-data py-resolvelib simmetrix-simmodsuite -hisea py-asttokens py-responses simple-dftd3 -hive py-astunparse py-resultsfile simplemoc -hivex py-async-generator py-retry simsipm -hmmer py-async-lru py-retry-decorator simul -hohqmesh py-async-timeout py-retrying simulationio -homer py-asyncio py-retworkx sina -hoomd-blue py-asyncpg py-rfc3339-validator singular-factory -hoppet py-asynctest py-rfc3986 singularity-eos -hotspot py-atomicwrites py-rfc3986-validator singularity-hpc -hp2p py-atpublic py-rfc3987-syntax singularityce -hpc-beeflow py-atropos py-rich sio -hpcc py-ats py-rich-argparse sionlib -hpccg py-attmap py-rich-click sirius -hpcg py-attrs py-rio-pmtiles sjpeg -hpckit py-audioread py-rios skilion-onedrive -hpctoolkit py-auditwheel py-rioxarray skopeo -hpcviewer py-authlib py-rise sl -hpcx-mpi py-autocfg py-river slang -hpddm py-autodocsumm py-rmm slate -hpgmg py-autograd py-rnc2rng sleef -hping py-autograd-gamma py-robocrys slepc -hpl py-automat py-robotframework slf4j -hpx py-autopep8 py-rocrate slirp4netns -hpx-kokkos py-autoray py-roifile sloccount -hpx5 py-autoreject py-roman-numerals slurm -hsa-amd-aqlprofile py-auxlib py-roman-numerals-py slurm-drmaa -hsa-rocr-dev py-avro py-rope smalt -hsakmt py-avro-json-serializer py-rosdep smartdenovo -hsakmt-roct py-avro-python3 py-rosdistro smartmontools -hsf-cmaketools py-awesome-slugify py-rosinstall smee-client -hssp py-awkward py-rosinstall-generator smof -hstr py-awkward-cpp py-rospkg smproxy -hto4l py-awkward0 py-rotary-embedding-torch snakemake -htop py-awscrt py-rouge-score snap -htslib py-ax-platform py-routes snap-berkeley -http-get py-azote py-rpds-py snap-korf -http-load py-azure-batch py-rply snappy -http-parser py-azure-cli-command-modules-nspkg py-rpy2 snbone -http-ping py-azure-cli-core py-rsa sniffles -http-post py-azure-cli-nspkg py-rsatoolbox snpeff -httpd py-azure-cli-telemetry py-rseqc snphylo -httperf py-azure-common py-rst2pdf snptest -httpie py-azure-core py-rtoml soapdenovo-trans -httping py-azure-cosmos py-rtree soapdenovo2 -httpress py-azure-datalake-store py-ruamel-ordereddict socat -hub py-azure-functions-devops-build py-ruamel-yaml soci -hudi py-azure-graphrbac py-ruamel-yaml-clib sofa-c -hugo py-azure-identity py-ruamel-yaml-jinja2 sollya -hunspell py-azure-keyvault py-rucio-clients solr -hw-probe py-azure-keyvault-certificates py-ruff somatic-sniper -hwdata py-azure-keyvault-keys py-rustworkx sombrero -hwloc py-azure-keyvault-nspkg py-rx sonlib -hwmalloc py-azure-keyvault-secrets py-s3cmd sopt -hybpiper py-azure-loganalytics py-s3fs soqt -hybrid-lambda py-azure-mgmt-advisor py-s3transfer sortmerna -hybridsim py-azure-mgmt-apimanagement py-sacrebleu sos -hycom py-azure-mgmt-appconfiguration py-sacremoses sosflow -hydra py-azure-mgmt-applicationinsights py-safe-netrc source-highlight -hydrogen py-azure-mgmt-authorization py-safetensors sourmash -hypar py-azure-mgmt-batch py-salib sowing -hyperfine py-azure-mgmt-batchai py-sarif-tools sox -hyperqueue py-azure-mgmt-billing py-scandir sp -hyperscan py-azure-mgmt-botservice py-scanpy spaceranger -hyphen py-azure-mgmt-cdn py-schema spack -hyphy py-azure-mgmt-cognitiveservices py-schema-salad spack-configs-dav-sdk -hypre py-azure-mgmt-compute py-scientificpython spack-configs-facilities -hypre-cmake py-azure-mgmt-consumption py-scifem spack-configs-tools-sdk -hypredrive py-azure-mgmt-containerinstance py-scikit-build spades -hztool py-azure-mgmt-containerregistry py-scikit-build-core span-lite -i3 py-azure-mgmt-containerservice py-scikit-fmm spark -ibm-databroker py-azure-mgmt-core py-scikit-fuzzy sparse -ibmisc py-azure-mgmt-cosmosdb py-scikit-image sparsehash -icarus py-azure-mgmt-datalake-analytics py-scikit-learn sparskit -iceauth py-azure-mgmt-datalake-store py-scikit-learn-extra sparta -icedtea py-azure-mgmt-datamigration py-scikit-matter spath -icet py-azure-mgmt-deploymentmanager py-scikit-optimize spatialdata -icey py-azure-mgmt-devtestlabs py-scikit-sparse spatter -ico py-azure-mgmt-dns py-scikits-odes spdk -icon py-azure-mgmt-eventgrid py-scine-chemoton spdlog -icu4c py-azure-mgmt-eventhub py-scine-puffin specfem3d-globe -id3lib py-azure-mgmt-hdinsight py-scinum spectra -idba py-azure-mgmt-imagebuilder py-scipy spectre -idg py-azure-mgmt-iotcentral py-scitokens spectrum-mpi -idl py-azure-mgmt-iothub py-scooby speex -iegenlib py-azure-mgmt-iothubprovisioningservices py-scoop speexdsp -ignite py-azure-mgmt-keyvault py-scp sperr -igprof py-azure-mgmt-kusto py-screed spfft -igraph py-azure-mgmt-loganalytics py-scs spglib -igv py-azure-mgmt-managedservices py-sdmetrics sph2pipe -igvtools py-azure-mgmt-managementgroups py-sdnotify spherepack -ike-scan py-azure-mgmt-maps py-sdv sphexa -ilmbase py-azure-mgmt-marketplaceordering py-seaborn spindle -ima-evm-utils py-azure-mgmt-media py-secretstorage spiner -imagemagick py-azure-mgmt-monitor py-seekpath spiral-package-fftx -imake py-azure-mgmt-msi py-segmentation-models-pytorch spiral-package-hcol -imath py-azure-mgmt-netapp py-selenium spiral-package-jit -imgui py-azure-mgmt-network py-semantic-version spiral-package-mpi -imlib2 py-azure-mgmt-nspkg py-semver spiral-package-simt -imod py-azure-mgmt-policyinsights py-send2trash spiral-software -imp py-azure-mgmt-privatedns py-sentencepiece spla -impalajit py-azure-mgmt-rdbms py-sentry-sdk spm -improved-rdock py-azure-mgmt-recoveryservices py-seqeval spot -impute2 py-azure-mgmt-recoveryservicesbackup py-sequence-models sprng -indicators py-azure-mgmt-redhatopenshift py-seriate sqlcipher -infernal py-azure-mgmt-redis py-serpent sqlite -influxdb py-azure-mgmt-relay py-session-info sqlite-jdbc -iniparser py-azure-mgmt-reservations py-setproctitle sqlitebrowser -inputproto py-azure-mgmt-resource py-setupmeta sqoop -integratorxx py-azure-mgmt-search py-setuptools squashfs -intel-gpu-tools py-azure-mgmt-security py-setuptools-cpp squashfs-mount -intel-gtpin py-azure-mgmt-servicebus py-setuptools-git squashfuse -intel-llvm py-azure-mgmt-servicefabric py-setuptools-git-versioning squid -intel-mlc py-azure-mgmt-signalr py-setuptools-reproducible sra-tools -intel-mpi-benchmarks py-azure-mgmt-sql py-setuptools-rust sratoolkit -intel-oneapi-advisor py-azure-mgmt-sqlvirtualmachine py-setuptools-scm srcml -intel-oneapi-ccl py-azure-mgmt-storage py-setuptools-scm-git-archive srcml-identifier-getter-tool -intel-oneapi-compilers py-azure-mgmt-trafficmanager py-sfepy srilm -intel-oneapi-compilers-classic py-azure-mgmt-web py-sgp4 srm-ifce -intel-oneapi-dal py-azure-multiapi-storage py-sh sse2neon -intel-oneapi-dnn py-azure-nspkg py-shap sshfs -intel-oneapi-dpct py-azure-storage-blob py-shapely sshpass -intel-oneapi-dpl py-azure-storage-common py-shellescape ssht -intel-oneapi-inspector py-azure-storage-nspkg py-shellingham ssmtp -intel-oneapi-ipp py-b2luigi py-shiboken2 sspace-longread -intel-oneapi-ippcp py-babel py-shippinglabel sspace-standard -intel-oneapi-itac py-backcall py-shortbred sst-core -intel-oneapi-mkl py-backoff py-shortuuid sst-dumpi -intel-oneapi-mpi py-backpack-for-pytorch py-shroud sst-elements -intel-oneapi-runtime py-backports-abc py-shtab sst-macro -intel-oneapi-tbb py-backports-cached-property py-simpervisor sst-transports -intel-oneapi-vpl py-backports-entry-points-selectable py-simple-slurm stacks -intel-oneapi-vtune py-backports-lzma py-simpleeval staden-io-lib -intel-pin py-backports-os py-simplegeneric star -intel-tbb py-backports-ssl-match-hostname py-simplejson star-ccm-plus -intel-xed py-backports-tarfile py-simplekml starlight -interproscan py-backports-tempfile py-simpletraj starpu -intltool py-backports-weakref py-simpy starship -ioapi py-backports-zoneinfo py-simsimd startup-notification -ior py-bagit py-singledispatchmethod stat -iotaa py-bagit-profile py-sip stata -iozone py-bakta py-six stc -ip py-bandit py-skl2onnx stdexec -ipcalc py-barectf py-slepc4py steps -iperf2 py-basemap py-slicer stinger -iperf3 py-bash-kernel py-slurm-pipeline storm -ipm py-basis-set-exchange py-smac stow -ipopt py-batchspawner py-smart-open strace -iproute2 py-bayesian-optimization py-smartredis stream -iptraf-ng py-bcbio-gff py-smartsim stress -iq-tree py-bcolz py-smartypants stress-ng -irep py-bcrypt py-smmap stressapptest -isa-l py-bdbag py-smolagents string-view-lite -isa-l-crypto py-beaker py-smote-variants stringtie -isaac py-beancount py-snakemake-executor-plugin-azure-batch stripack -isaac-server py-beartype py-snakemake-executor-plugin-cluster-generic structure -isc-dhcp py-beautifulsoup4 py-snakemake-executor-plugin-cluster-sync strumpack -iscdtoolbox-commons py-beniget py-snakemake-executor-plugin-drmaa su2 -iscdtoolbox-elasticity py-bibtexparser py-snakemake-executor-plugin-flux sublime-text -isescan py-bidict py-snakemake-executor-plugin-googlebatch subread -isl py-bids-validator py-snakemake-executor-plugin-kubernetes subversion -iso-codes py-bids-validator-deno py-snakemake-executor-plugin-slurm suite-sparse -isoquant py-bidscoin py-snakemake-executor-plugin-slurm-jobstep sumaclust -ispc py-bidskit py-snakemake-executor-plugin-tes sumo -istio py-bidsschematools py-snakemake-interface-common sundials -itensor py-bigdft py-snakemake-interface-executor-plugins suntans -itk py-bigfloat py-snakemake-interface-logger-plugins superchic -itstool py-billiard py-snakemake-interface-report-plugins superlu -itsx py-binary py-snakemake-interface-scheduler-plugins superlu-dist -iwyu py-binaryornot py-snakemake-interface-storage-plugins superlu-mt -jacamar-ci py-bintrees py-snakemake-storage-plugin-azure supermagic -jackcess py-binwalk py-snakemake-storage-plugin-fs surfer -jafka py-biobb-common py-snakemake-storage-plugin-ftp survey -jags py-biobb-gromacs py-snakemake-storage-plugin-gcs sw4 -jali py-biobb-io py-snakemake-storage-plugin-http sw4lite -jansi py-biobb-model py-snakemake-storage-plugin-pelican swan -jansi-native py-biobb-structure-checking py-snakemake-storage-plugin-rucio swap-assembler -jansson py-biobb-structure-utils py-snakemake-storage-plugin-s3 swarm -jasper py-bioblend py-snakemake-storage-plugin-sftp swfft -javafx py-biom-format py-snakemake-storage-plugin-zenodo swftools -jbigkit py-biomine py-snakeviz swiftsim -jblob py-biopandas py-snappy swig -jchronoss py-biopython py-sncosmo swipl -jdk py-biosppy py-sniffio syclomatic -jedi-cmake py-biotite py-snoop symengine -jellyfish py-biotraj py-snowballstemmer symlinks -jemalloc py-bitarray py-snuggs sympack -jetty-project py-bitshuffle py-sobol-seq sympol -jhpcn-df py-bitstring py-social-auth-core sys-sage -jimtcl py-bitstruct py-sonlib sysbench -jline3 py-black py-sortedcollections syscalc -jmol py-blake3 py-sortedcontainers sysfsutils -jogl py-bleach py-soundfile sysget -jonquil py-blessed py-soupsieve sysstat -jose py-blessings py-soyclustering systemc -jpegoptim py-blight py-spacy systemd -jq py-blinker py-spacy-legacy systemtap -json-c py-blis py-spacy-loggers sz -json-cwx py-blosc py-spacy-models-en-core-web-sm sz-cpp -json-fortran py-blosc2 py-spacy-models-en-vectors-web-lg sz3 -json-glib py-blosum py-sparse szauto -jsoncons py-bluepyefe py-spatialist szx -jsoncpp py-bluepyemodel py-spatialite t8code -jsonnet py-bluepyopt py-spatialpandas tabix -jstorm py-bmap-tools py-spdlog tajo -jube py-bmtk py-spectra talass -judy py-bokeh py-spectral talloc -jujutsu py-boltons py-speech-recognition talosctl -julea py-boom-boot-manager py-spefile tamaas -julia py-boost-histogram py-spgl1 tandem -jump py-boto py-spglib tangram -junit4 py-boto3 py-spherical tantan -just py-botocore py-sphericart tar -justbuild py-botorch py-sphericart-torch targetp -jwt-cpp py-bottle py-sphinx task -jxrlib-debian py-bottleneck py-sphinx-argparse taskd -k8 py-bqplot py-sphinx-autodoc-typehints taskflow -kadath py-braceexpand py-sphinx-basic-ng tasmanian -kafka py-brain-indexer py-sphinx-book-theme tassel -kagen py-branca py-sphinx-bootstrap-theme tau -kahip py-bravado py-sphinx-click tauola -kaiju py-bravado-core py-sphinx-copybutton tb-lmto -kakoune py-breakseq2 py-sphinx-design tbl2asn -kakoune-lsp py-breathe py-sphinx-fortran tblite -kaks-calculator py-brian py-sphinx-gallery tcl -kaldi py-brian2 py-sphinx-github-changelog tcl-bwidget -kalign py-brotli py-sphinx-immaterial tcl-itcl -kallisto py-brotlipy py-sphinx-jinja2-compat tcl-tcllib -karma py-bsddb3 py-sphinx-multiversion tcl-tclxml -kassiopeia py-build py-sphinx-prompt tcl-togl -kbd py-bx-python py-sphinx-removed-in tclap -kbproto py-cachecontrol py-sphinx-rtd-dark-mode tcoffee -kcov py-cached-property py-sphinx-rtd-theme tcpdump -kdiff3 py-cachetools py-sphinx-tabs tcptrace -kea py-cachey py-sphinx-theme-builder tcsh -kealib py-cachy py-sphinx-toolbox tdengine -keepalived py-cairocffi py-sphinxautomodapi tealeaf -keepassxc py-cairosvg py-sphinxcontrib-applehelp tecio -kenlm py-caliper-reader py-sphinxcontrib-bibtex teckit -kentutils py-callmonitor py-sphinxcontrib-devhelp tecplot -keyutils py-calver py-sphinxcontrib-htmlhelp telegraf -khmer py-cantoolz py-sphinxcontrib-issuetracker telocal -kibana py-carputils py-sphinxcontrib-jquery tempestextremes -kicad py-cartopy py-sphinxcontrib-jsmath tempestremap -kim-api py-casadi py-sphinxcontrib-mermaid templight -kinesis py-catalogue py-sphinxcontrib-moderncmakedomain templight-tools -kineto py-catkin-pkg py-sphinxcontrib-napoleon tempo -kitty py-cattrs py-sphinxcontrib-plantuml tengine -kmergenie py-cbor2 py-sphinxcontrib-programoutput tensorflow-serving-client -kmod py-cclib py-sphinxcontrib-qthelp tensorpipe -knem py-cdo py-sphinxcontrib-serializinghtml termcap -kokkos py-cdsapi py-sphinxcontrib-spelling terminalimageviewer -kokkos-fft py-cekit py-sphinxcontrib-tikz tesseract -kokkos-kernels py-celery py-sphinxcontrib-trio test-drive -kokkos-nvcc-wrapper py-cellprofiler py-sphinxcontrib-websupport tests-sos -kokkos-tools py-cellprofiler-core py-sphinxemoji testu01 -koliop py-centrosome py-sphobjinv tetgen -kraken py-cerberus py-spykeutils tethex -kraken2 py-certifi py-spython tetranscripts -krakenuniq py-certipy py-sqlalchemy texi2html -krb5 py-cf-units py-sqlalchemy-migrate texinfo -krims py-cf-xarray py-sqlalchemy-stubs texlive -kripke py-cffconvert py-sqlalchemy-utils texstudio -kubectl py-cffi py-sqlitedict textparser -kubernetes py-cfgrib py-sqlparse tfel -kumi py-cfgv py-srsly the-platinum-searcher -kvasir-mpl py-cftime py-sseclient the-silver-searcher -kvtree py-cgen py-sshtunnel theia-ide -kylin py-chai py-sspilib thepeg -kynema py-chai-lab py-stack-data thermo4pfm -kynema-driver py-chainer py-starfile thesis -kynema-fmb py-chainforgecodegen py-starlette thornado-mini -kynema-sgf py-chainmap py-starlette-context thrift -kynema-ugf py-chalice py-starsessions thrust -kyotocabinet py-chardet py-stashcp thunar -ladot py-charm4py py-statmorph thunar-volman -laghos py-charset-normalizer py-statsmodels tidy-html5 -lame py-chart-studio py-stdlib-list tig -lammps py-cheap-repr py-stestr tiled-mm -lammps-example-plugin py-checkm-genome py-stevedore time -landsfcutil py-cheetah3 py-stomp-py timedatex -lanl-cmake-modules py-chemfiles py-stopit timemory -lapackpp py-chemiscope py-storm timew -last py-cheroot py-stratify tini -lastz py-cherrypy py-strawberryfields tinker -laszip py-chex py-streamlit tiny-tensor-compiler -latex2html py-choreographer py-stringzilla tinycbor -latte py-chronyk py-striprtf tinygltf -launchmon py-ci-info py-stsci-distutils tinyobjloader -laynii py-ci-sdr py-stui tinyxml -lazygit py-cig-pythia py-submitit tinyxml2 -lazyten py-cinema-lib py-subrosa tioga -lbann py-cinemasci py-subword-nmt tippecanoe -lbfgspp py-circus py-supermercado tiptop -lbxproxy py-citeproc-py py-superqt tiramisu -lc-framework py-clarabel py-supervisor tix -lcals py-clean-text py-svgpath tixi -lcc py-cleo py-svgpathtools tk -lcgenv py-click py-svgutils tkrzw -lci py-click-didyoumean py-svgwrite tl-expected -lcio py-click-option-group py-swagger-spec-validator tldd -lcms py-click-plugins py-symengine tmalign -lcov py-click-repl py-symfit tmhmm -ldak py-cligj py-sympy tmscore -ldc py-clikit py-syned tmux -ldc-bootstrap py-climate py-sysrsync tnftp -ldsc py-climax py-systemd-python tofu-ls -lean4 py-clint py-tabledata tomcat -legion py-clip-anytorch py-tables toml-f -lemon py-clipboard py-tabulate toml11 -leptonica py-cloudauthz py-tatsu tomlplusplus -lerc py-cloudbridge py-tblib topaz -less py-cloudpathlib py-tbparse topaz-3dem -lesstif py-cloudpickle py-tcolorpy topcom -leveldb py-clustershell py-tempita tophat -lfortran py-cma py-templateflow torch-scatter -lftp py-cmaes py-tempora torque -lhapdf py-cmake-format py-tenacity totalview -lhapdf5 py-cmake-parser py-tensorboard toybox -lhapdfsets py-cmocean py-tensorboard-data-server tpm2-tss -libabigail py-cmseq py-tensorboard-plugin-wit tracer -libaec py-cmsml py-tensorboardx tracy -libaio py-cmyt py-tensorflow tracy-client -libao py-coapthon3 py-tensorflow-datasets tramonto -libapplewm py-coca-pytorch py-tensorflow-estimator transabyss -libapreq2 py-coclust py-tensorflow-hub transdecoder -libarchive py-codebasin py-tensorflow-metadata transferbench -libasr py-codecarbon py-tensorflow-probability transposome -libassuan py-codechecker py-tensorly transrate -libatasmart py-codepy py-tensorstore transset -libatomic-ops py-codespell py-termcolor trapproto -libavif py-coherent-licensed py-termgraph tree -libbacktrace py-coilmq py-terminado tree-sitter -libbeagle py-colabtools py-terminaltables treelite -libbeato py-colorama py-tern treesub -libbeef py-colorcet py-tesorter trexio -libbigwig py-colorclass py-testfixtures trf -libbinio py-colored py-testinfra triangle -libblastrampoline py-colored-traceback py-testpath trident -libbsd py-coloredlogs py-testrepository trilinos -libbson py-colorful py-testresources trilinos-catalyst-ioss-adapter -libbytesize py-colorio py-testscenarios trimal -libcanberra py-colorlog py-testtools trimgalore -libcap py-colorlover py-tetoolkit trimmomatic -libcap-ng py-colormath py-text-unidecode trinity -libcatalyst py-colorpy py-textblob trinotate -libceed py-colorspacious py-texttable trivy -libcerf py-colossalai py-textual trnascan-se -libcgroup py-colour py-textual-fspicker trng -libcifpp py-comm py-textual-plotext trompeloeil -libcint py-common py-textwrap3 truchas -libcircle py-commonmark py-textx tskit -libconfig py-conan py-tf-keras tsne-cuda -libconfuse py-conda-inject py-tf2onnx tulip -libcroco py-conda-souschef py-tfdlpack tumbler -libctl py-confection py-theano turbine -libcudf py-configargparse py-thewalrus turbomole -libcuml py-configobj py-thinc turbovnc -libcumlprims py-configparser py-thop turnserver -libcxi py-configspace py-threadpoolctl twm -libcxxwrap-julia py-confluent-kafka py-throttler tycho2 -libcyaml py-connectionpool py-tidynamics typescript -libdaemon py-consolekit py-tifffile typhon -libdap4 py-constantly py-tiktoken typhonio -libdatrie py-contextily py-tilelang typos -libdc1394 py-contextlib2 py-timezonefinder typst -libde265 py-contexttimer py-timm ucc -libdeflate py-continuum py-tinyarray uchardet -libdicom py-contourpy py-tinycss2 ucsc-bedclip -libdisplay-info py-contrib py-tinydb ucsc-bedgraphtobigwig -libdistributed py-control py-tinyrecord ucx -libdivsufsort py-convertdate py-tld udunits -libdmx py-convokit py-tldextract ufo-core -libdrm py-cookiecutter py-tmtools ufo-filters -libdwarf py-coolname py-tokenize-rt ufs-utils -libeatmydata py-copulas py-tokenizers ufs-weather-model -libecpint py-corner py-toml uftrace -libedit py-correctionlib py-tomli umap -libefence py-corrfunc py-tomli-w umesimd -libelf py-counter py-tomlkit umoci -libemos py-courlan py-tomopy umpire -libepoxy py-cov-core py-toolz unblur -libestr py-coverage py-topiary-asr uncrustify -libev py-coveralls py-toposort unibilium -libevdev py-cppheaderparser py-torch unifdef -libevent py-cppy py-torch-c-dlpack-ext unifyfs -libevpath py-cramjam py-torch-cluster unigen -libexif py-crashtest py-torch-fidelity unison -libfabric py-crc32c py-torch-geometric units -libfastcommon py-crcmod py-torch-harmonics units-llnl -libfastjson py-croniter py-torch-nvidia-apex unittest-cpp -libffi py-crossmap py-torch-scatter universal -libffs py-cryolobm py-torch-sparse universal-ctags -libfirefly py-cryptography py-torch-spex unixodbc -libfive py-css-parser py-torch-spline-conv unqlite -libflame py-cssselect py-torchaudio unrar -libfms py-cssselect2 py-torchbenchmark unuran -libfontenc py-cssutils py-torchdata unzip -libfort py-csvkit py-torchdiffeq upcxx -libfs py-ctgan py-torchfile upp -libftdi py-cuda-bindings py-torchgeo uqtk -libfuse py-cuda-core py-torchmeta uriparser -libfyaml py-cuda-pathfinder py-torchmetrics usalign -libgain py-cudf py-torchseg usbutils -libgcrypt py-cufflinks py-torchsummary usearch -libgd py-cuml py-torchtext userspace-rcu -libgdsii py-cupy py-torchtoolbox ut -libgee py-current py-torchvision utf8cpp -libgeopm py-currentscape py-tornado utf8proc -libgeopmd py-curryreader py-tox uthash -libgeotiff py-curvlinops-for-pytorch py-toyplot util-linux -libgff py-custodian py-toytree util-linux-uuid -libgit2 py-custom-inherit py-tpot util-macros -libgit2-glib py-cutadapt py-tqdm uvw -libgpg-error py-cvxopt py-traceback2 uwtools -libgpiod py-cvxpy py-trafilatura vacuumms -libgpuarray py-cwl-upgrader py-trainax vala -libgridxc py-cwl-utils py-traitlets valgrind -libgssglue py-cwltool py-traits valijson -libgta py-cx-oracle py-traitsui vampirtrace -libgtextutils py-cycler py-traittypes vapor -libgtop py-cykhash py-trame vardictjava -libgudev py-cylc-flow py-trame-client variorum -libhandy py-cylc-rose py-trame-common varnish-cache -libharu py-cylp py-trame-server varscan -libhbaapi py-cymem py-trame-vtk vasp -libheif py-cyordereddict py-trame-vuetify vbfnlo -libhio py-cython py-transformer-engine vbz-compression -libhugetlbfs py-cython-bbox py-transformers vc -libiberty py-cyvcf2 py-transforms3d vcftools -libibumad py-d2to1 py-transonic vcsh -libical py-dace py-tree vde -libicd py-dacite py-tree-math vdt -libice py-dadi py-tree-sitter veccore -libiconv py-dalib py-tree-sitter-c vecgeom -libid3tag py-damask py-treehash veclibfort -libidl py-darshan py-treelib vecmem -libidn py-dasbus py-triangle vectorclass-version2 -libidn2 py-dash py-trieregex vegas2 -libimagequant py-dash-bootstrap-components py-trimesh velero -libimobiledevice py-dash-svg py-triton veloc -libinih py-dask py-trl velvet -libint py-dask-awkward py-trojanzoo-sphinx-theme velvetoptimiser -libisal py-dask-expr py-trove-classifiers vep -libiscsi py-dask-glm py-trx-python vep-cache -libjpeg py-dask-histogram py-tuiview verdict -libjpeg-turbo py-dask-jobqueue py-tuspy verible -libjson py-dask-ml py-tuswsgi verilator -libjwt py-dask-mpi py-tweedledum verrou -libjxl py-dask-sphinx-theme py-twine vesta -libkcapi py-databricks-cli py-twisted vfkit -libkml py-dataclasses py-ty vgm -libksba py-dataclasses-json py-typed-ast videoproto -liblas py-datacube py-typeguard viennarna -liblbfgs py-datalad py-typepy viewres -liblbxutil py-datalad-container py-typer vifi -libleidenalg py-datalad-deprecated py-types-dataclasses vigra -liblockfile py-datalad-hirni py-types-geopandas vim -liblognorm py-datalad-metadata-model py-types-pkg-resources vir-simd -liblouis py-datalad-metalad py-types-psutil virtualgl -libluv py-datalad-neuroimaging py-types-python-dateutil visit -liblzf py-datalad-webapp py-types-pytz visit-cgns -libmacaroons py-dataproperty py-types-pyyaml visit-ffp -libmad py-datasets py-types-requests visit-mfem -libmatheval py-datashader py-types-setuptools visit-silo -libmaus2 py-datatrove py-types-shapely visit-unv -libmaxminddb py-dateparser py-types-tqdm viskores -libmbim py-dateutils py-types-typed-ast vite -libmcfp py-datrie py-types-urllib3 vizglow -libmcrypt py-dbf py-typesentry vmatch -libmd py-dbfread py-typeshed-client vmc -libmesh py-dcm2bids py-typing-extensions vmd -libmetalink py-dcmstack py-typing-inspect volk -libmetatensor py-deap py-typing-inspection voms -libmetatensor-torch py-debtcollector py-typish voropp -libmetatomic-torch py-debugpy py-tzdata votca -libmicrodns py-decorator py-tzlocal vpfft -libmicrohttpd py-deepdiff py-ubiquerg vpic -libmmtf-cpp py-deepecho py-uc-micro-py vsearch -libmng py-deephyper py-ucsf-pyem vsftpd -libmnl py-deepmerge py-ucx-py vt -libmo-unpack py-deepsig-biocomp py-uhi vtable-dumper -libmodbus py-deepspeed py-ujson vtk -libmolgrid py-deeptools py-ultralytics vtk-h -libmonitor py-deeptoolsintervals py-umalqurra vtk-m -libmpdclient py-defusedxml py-umap-learn vvtest -libmypaint py-deisa py-umi-tools w3emc -libnbc py-deisa-core py-uncertainties w3m -libndp py-deisa-dask py-uncertainty-toolbox w3nco -libnet py-demjson py-unfoldnd wannier90 -libnetfilter-conntrack py-dendropy py-unicycler warpx -libnetfilter-cthelper py-deprecat py-unidecode wasi-sdk-prebuilt -libnetfilter-cttimeout py-deprecated py-unittest2py3k watch -libnetfilter-queue py-deprecation py-universal-pathlib wayland -libnetworkit py-deprecation-alias py-unshare wayland-protocols -libnfnetlink py-derivative py-unyt wcs -libnfs py-descartes py-update-checker wcslib -libnfsidmap py-devito py-uproot webbench -libnftnl py-devlib py-uproot3 weechat -libnids py-dgl py-uproot3-methods weighttp -libnl py-dh-scikit-optimize py-uqinn wget -libnotify py-diagnostic py-uri-template wgl -libnova py-dict2css py-uritemplate wgrib2 -libnrm py-dictdiffer py-url-normalize wgsim -libnsl py-dictobj py-urllib3 which -libogg py-dill py-urllib3-secure-extra whip -liboldx py-dinosaur py-urwid whizard -libopts py-dipy py-us wi4mpi -libp11 py-dirtyjson py-userpath win-file -libpam py-disbatch py-usgs win-gpg -libpaper py-discover py-utils win-sdk -libpcap py-diskcache py-uv win-wdk -libpciaccess py-dist-meta py-uv-build winbison -libpfm4 py-distance py-uv-dynamic-versioning windowswmproto -libpipeline py-distlib py-uvicorn wiredtiger -libplist py-distributed py-uvloop wireshark -libpmemobj-cpp py-distro py-uvw wise2 -libpng py-django py-uwsgi wonton -libpostal py-dlcpar py-uxarray wordnet -libpressio py-dm-haiku py-validate-pyproject wps -libpressio-adios1 py-dm-tree py-validators wrf -libpressio-adios2 py-dnaio py-vascpy wrf-io -libpressio-dataset py-dnspython py-vcf-kit wrk -libpressio-errorinjector py-docker py-vcrpy wsmancli -libpressio-jit py-dockerpy-creds py-vcstool wt -libpressio-nvcomp py-docket py-vcstools wtdbg2 -libpressio-opt py-docopt py-vcversioner wxparaver -libpressio-predict py-docopt-ng py-vector wxpropgrid -libpressio-rmetric py-docstring-parser py-vector-quantize-pytorch wxwidgets -libpressio-sperr py-docstring-to-markdown py-vermin x11perf -libpressio-tools py-docutils py-vermouth-martinize x264 -libpressio-tthresh py-docutils-stubs py-versioneer xabclib -libproxy py-dogpile-cache py-versioneer-518 xalan-c -libpsl py-doit py-versioningit xapian-core -libpsm3 py-dolfinx-mpc py-verspec xauth -libpsml py-dom-toml py-vesin xbacklight -libpspio py-domdf-python-tools py-vine xbae -libpthread-stubs py-dominate py-virtualenv xbiff -libpulsar py-donfig py-virtualenv-clone xbitmaps -libqglviewer py-dotmap py-virtualenvwrapper xbraid -libqrencode py-dotnetcore2 py-visdom xcalc -libquo py-downhill py-vispy xcb-demo -libraqm py-doxypypy py-vl-convert-python xcb-proto -libraw1394 py-dpath py-voluptuous xcb-util -librdkafka py-drep py-vsc-base xcb-util-cursor -librelp py-drmaa py-vsc-install xcb-util-errors -libreproc py-dryscrape py-vsts xcb-util-image -libressl py-duecredit py-vsts-cd-manager xcb-util-keysyms -libristra py-dulwich py-wadler-lindig xcb-util-renderutil -librmm py-dunamai py-waitress xcb-util-wm -librom py-dvc py-walinuxagent xcb-util-xrm -librsb py-dxchange py-wand xcdf -librsvg py-dxfile py-wandb xcfun -librtlsdr py-dynaconf py-warcio xclip -librttopo py-dynim py-warlock xclipboard -libsakura py-earth2mip py-wasabi xclock -libsamplerate py-earthengine-api py-watchdog xcmiscproto -libseccomp py-easybuild-easyblocks py-watchfiles xcmsdb -libsecret py-easybuild-easyconfigs py-waterdynamics xcompmgr -libsegfault py-easybuild-framework py-waves xconsole -libsharp py-eccodes py-wcsaxes xcrysden -libshm py-ecdsa py-wcwidth xcursor-themes -libsigcpp py-ecmwf-opendata py-webargs xcursorgen -libsignal-protocol-c py-ecmwflibs py-webcolors xdbedizzy -libsigsegv py-ecos py-webdataset xdelta -libsixel py-edam-ontology py-webdavclient3 xditview -libslirp py-edffile py-webencodings xdm -libsm py-edfio py-webkit-server xdmf3 -libsmeagol py-edflib-python py-weblogo xdotool -libsndfile py-editables py-webob xdpyinfo -libsodium py-editdistance py-websocket-client xdriinfo -libsolv py-edlib py-websockets xedit -libspatialindex py-eeglabio py-werkzeug xeniumranger -libspatialite py-eerepr py-wesanderson xerces-c -libspiro py-efel py-wget xeus -libsplash py-efficientnet-pytorch py-whatshap xev -libspng py-eg py-wheel xextproto -libssh py-eigenpy py-whenever xeyes -libssh2 py-einconv py-whey xf86bigfontproto -libstdcompat py-einops py-whey-pth xf86dga -libsvm py-elastic-transport py-whichcraft xf86dgaproto -libszip py-elasticsearch py-whoosh xf86driproto -libtar py-elasticsearch-dsl py-widgetsnbextension xf86miscproto -libtasn1 py-elephant py-wids xf86rushproto -libtermkey py-elevation py-wigners xf86vidmodeproto -libthai py-ema-pytorch py-win-unicode-console xfce4-appfinder -libtheora py-email-validator py-wincertstore xfce4-core -libtiff py-embedding-reader py-word2number xfce4-panel -libtirpc py-emcee py-wordcloud xfce4-session -libtlx py-emoji py-workload-automation xfce4-settings -libtomlc99 py-empy py-wradlib xfconf -libtommath py-entrypoints py-wrapt xfd -libtool py-enum-tools py-wsproto xfdesktop -libtorrent py-envisage py-wstool xfindproxy -libtraceevent py-ephem py-wub xfontsel -libtree py-eprosima-fastdds py-wurlitzer xforms -libuecc py-epydoc py-ww xfs -libunistring py-equation py-wxflow xfsdump -libunwind py-equinox py-wxmplot xfsinfo -liburcu py-espresso py-wxpython xfsprogs -liburing py-espressopp py-x-clip xfwm4 -libusb py-et-xmlfile py-x21 xfwp -libusbmuxd py-ete3 py-xanadu-cloud-client xgamma -libuser py-etelemetry py-xarray xgboost -libuv py-etils py-xarray-regrid xgc -libuv-julia py-eval-type-backport py-xarray-tensorstore xhmm -libva py-evaluate py-xattr xhost -libvdwxc py-eventlet py-xcdat xictools -libverto py-evodiff py-xdot xineramaproto -libvips py-ewah-bool-utils py-xenv xinit -libvorbis py-exarl py-xesmf xinput -libvori py-exceptiongroup py-xgboost xios -libvpx py-execnet py-xgcm xkbcomp -libvterm py-executing py-xhistogram xkbdata -libwebp py-exhale py-xlrd xkbevd -libwebsockets py-exifread py-xlsxwriter xkbprint -libwhich py-exodus-bundler py-xlwt xkbutils -libwindowswm py-expandvars py-xmlplain xkeyboard-config -libwmf py-expecttest py-xmlrunner xkill -libwnck py-exponax py-xmltodict xl -libx11 py-extension-helpers py-xonsh xload -libxau py-extras py-xopen xlogo -libxaw py-ez-setup py-xpyb xlsatoms -libxaw3d py-f90nml py-xskillscore xlsclients -libxc py-f90wrap py-xtb xlsfonts -libxcb py-fabric py-xvfbwrapper xmag -libxcomposite py-fabric3 py-xxhash xman -libxcrypt py-fair-esm py-xyzservices xmessage -libxcursor py-fairscale py-yacman xmh -libxcvt py-faker py-yacs xmlf90 -libxdamage py-fakeredis py-yahmm xmlrpc-c -libxdmcp py-falcon py-yajl xmlto -libxevie py-fallocate py-yamlreader xmodmap -libxext py-fastai py-yapf xmore -libxfce4ui py-fastaindex py-yarl xnedit -libxfce4util py-fastapi py-yaspin xnnpack -libxfixes py-fastapi-utils py-yolk3k xolotl -libxfont py-fastavro py-your xorg-cf-files -libxfont2 py-fastcache py-youtube-dl xorg-docs -libxfontcache py-fastcluster py-yq xorg-gtest -libxft py-fastcore py-yt xorg-server -libxi py-fastcov py-yt-dlp xorg-sgml-doctools -libxinerama py-fastdownload py-yt-dlp-ejs xorgproto -libxkbcommon py-fastdtw py-yte xphelloworld -libxkbfile py-fasteners py-ytopt xplor-nih -libxkbui py-fastfold py-ytopt-autotune xplsprinters -libxml2 py-fastjsonschema py-z3-solver xpmem -libxmu py-fastobo py-zarr xpr -libxp py-fastpath py-zc-buildout xprehashprinterlist -libxpm py-fastprogress py-zc-lockfile xprop -libxpresent py-fastremap py-zensical xproperty -libxprintapputil py-fastrlock py-zfit xproto -libxprintutil py-fasttext-numpy2 py-zfit-interface xproxymanagementprotocol -libxrandr py-fasttext-numpy2-wheel py-zfit-physics xqilla -libxrender py-faust-cchardet py-zict xrandr -libxres py-fava py-zipfile-deflate64 xrdb -libxscrnsaver py-fenics-basix py-zipp xrdcl-record -libxshmfence py-fenics-dijitso py-zipstream-new xrefresh -libxslt py-fenics-dolfinx py-zope-event xrootd -libxsmm py-fenics-ffc py-zope-interface xrx -libxstream py-fenics-ffcx py-zstandard xsbench -libxt py-fenics-fiat py-zxcvbn xscope -libxtrap py-fenics-instant pygmo xsd -libxtst py-fenics-ufl pypy xsdk -libxv py-fenics-ufl-legacy pypy-bootstrap xset -libxvmc py-ffmpy pyrefly xsetmode -libxxf86dga py-fief-client pystring xsetpointer -libxxf86misc py-file-magic pythia6 xsetroot -libxxf86vm py-filecheck pythia8 xsimd -libyaml py-filelock python xsm -libyogrt py-filemagic python-venv xstdcmap -libzip py-filetype q-e-sirius xtb -libzmq py-filterpy qb3 xtcdata -liftoff py-find-libpython qca xtensor -liggghts py-findlibs qcachegrind xtensor-blas -lighttpd py-fiona qcat xtensor-python -ligra py-fire qctool xterm -likwid py-fireworks qd xtl -lima py-fiscalyear qemacs xtrans -linaro-forge py-fisher qemu xtrap -linkphase3 py-fits-tools qgis xts -linktest py-fitsio qgraf xv -linsys-v py-fitter qhull xvidtune -linux-external-modules py-fixtures qjson xvinfo -linux-headers py-flake8 qmcpack xwd -linux-pam py-flake8-import-order qmd-progress xwidgets -linux-perf py-flake8-polyfill qnnpack xwininfo -lis py-flaky qorts xwud -listres py-flameprof qoz xxd-standalone -litestream py-flash-attn qpdf xxdiff -lizard py-flask qperf xxhash -lksctp-tools py-flask-babel qrmumps xyce -llama-cpp py-flask-compress qrupdate xz -llhttp py-flask-cors qscintilla yade -llvm py-flask-paginate qt yafyaml -llvm-amdgpu py-flask-restful qt-5compat yajl -llvm-doe py-flask-socketio qt-base yaksa -llvm-openmp py-flask-sqlalchemy qt-creator yambo -llvm-openmp-ompt py-flatbuffers qt-declarative yaml-cpp -lm-sensors py-flatten-dict qt-quick3d yamlfmt -lmbench py-flawfinder qt-quicktimeline yara -lmdb py-flax qt-shadertools yarn -lmod py-flexcache qt-svg yasm -lndir py-flexmock qt-tools ycruncher -lodepng py-flexparser qtgraph ycsb -log4c py-flexx qthreads yoda -log4cplus py-flit qtkeychain yorick -log4cpp py-flit-core qtltools yosys -log4cxx py-flit-scm qualimap yq -logrotate py-flox quandary yyjson -logstash py-flufl-lock quantum-espresso z-checker -loki py-fluiddyn quartz z3 -looptools py-fluidfft qucs zabbix -lordec py-fluidfft-builder quda zerosum -lorene py-fluidfft-fftw quest zfp -lp-solve py-fluidfft-fftwmpi quickjs zfs -lrose-core py-fluidfft-mpi-with-fftw quicksilver ziatest -lrslib py-fluidfft-p3dfft quo-vadis zig -lrzip py-fluidfft-pfft quota zip -lsd py-fluidsim qwt zipkin -lsf py-fluidsim-core qwtpolar zlib -lshw py-flye r zlib-ng -lsof py-fn-py r-a4 zoltan -lsquic py-folium r-a4base zookeeper -lsscsi py-fonttools r-a4classif zookeeper-benchmark -ltp py-ford r-a4core zopfli -ltr-retriever py-formatizer r-a4preproc zoxide -ltrace py-formulaic r-a4reporting zpares -lua py-fortls r-abadata zpp -lua-bit32 py-fortran-language-server r-abaenrichment zsh -lua-bitlib py-fortranformat r-abind zstd -lua-ffi py-fparser r-absseq zstr -lua-lpeg py-fprettify r-acde zuo -lua-luafilesystem py-fqdn r-acepack zycore-c -lua-luajit py-fracridge r-acgh zydis -lua-luajit-openresty py-fraction r-acme zziplib -lua-luaposix py-freetype-py r-ada -==> 8899 packages +3dtk lua-mpack py-freetype-py r-ada +3proxy lua-sol2 py-freezegun r-adabag +4ti2 lucene py-frozendict r-ade4 +7zip luit py-frozenlist r-adegenet +abacus lulesh py-fs r-adegraphics +abduco lumpy-sv py-fsspec r-adephylo +abi-compliance-checker lustre py-fsspec-xrootd r-adespatial +abi-dumper lvarray py-ftfy r-adgoftest +abinit lvm2 py-ftputil r-adsplit +abseil-cpp lwgrp py-funcy r-aer +abyss lwm2 py-furo r-afex +accfft lwtnn py-fury r-affxparser +acct lxc py-fusepy r-affy +accumulo lynx py-future r-affycomp +ace lz4 py-fuzzywuzzy r-affycompatible +acfl lzma py-fypp r-affycontam +ack lzo py-galaxy-containers r-affycoretools +acl lzop py-galaxy-job-metrics r-affydata +acpica-tools m4 py-galaxy-objectstore r-affyexpress +acpid macfuse py-galaxy-sequence-utils r-affyilm +activeharmony macsio py-galaxy-tool-util r-affyio +activemq mad-numdiff py-galaxy-util r-affypdnn +acts madgraph5amc py-galaxy2cwl r-affyplm +acts-algebra-plugins madis py-gast r-affyqcreport +acts-dd4hep madx py-gcovr r-affyrnadegradation +actsvg maeparser py-gcs-oauth2-boto-plugin r-agdex +additivefoam mafft py-gcsfs r-agilp +addrwatch magic-enum py-gdc-client r-agimicrorna +adept magics py-gdown r-aims +adept-utils magma py-gee-asset-manager r-aldex2 +adf mahout py-geeadd r-allelicimbalance +adiak makedepend py-geemap r-alpine +adios makedepf90 py-geeup r-als +adios-catalyst maker py-gemmforge r-alsace +adios2 mallocmc py-gemmi r-altcdfenvs +adlbx maloc py-genders r-amap +admixtools malt py-geneimpacts r-amelia +adms mamba py-generateds r-ampliqueso +adol-c man-db py-genshi r-analysispageserver +advancecomp mapl py-gensim r-anaquin +adwaita-icon-theme mapnik py-geoalchemy2 r-aneufinder +aegean mapserver py-geocoder r-aneufinderdata +aeskeyfind mapsplice2 py-geocube r-animation +aespipe maq py-geographiclib r-annaffy +affinity maqao py-geojson r-annotate +agile mariadb py-geomdl r-annotationdbi +agrep mariadb-c-client py-geopandas r-annotationfilter +aida mark py-geoplot r-annotationforge +akantu masa py-geopmdpy r-annotationhub +alan mash py-geopmpy r-anytime +albany masurca py-geopy r-aod +albert mathematica py-geoviews r-ape +alembic mathic py-gest-api r-aplot +alglib mathicgb py-gevent r-argparse +all-library matio py-gf256 r-arm +allpaths-lg matlab py-gfal2-python r-aroma-light +alluxio matrix-switch py-gffutils r-arrangements +alpaka maven py-ghp-import r-ash +alpgen maverick py-gidgethub r-askpass +alps mawk py-gidgetlab r-asreml +alpscore mbdyn py-gimmik r-assertive +alquimia mbedtls py-gin-config r-assertive-base +alsa-lib mc py-git-review r-assertive-code +alsa-plugins mcl py-gitdb r-assertive-data +aluminum mcpp py-gitpython r-assertive-data-uk +amber mct py-glean-parser r-assertive-data-us +ambertools mctc-lib py-glean-sdk r-assertive-datetimes +amd-aocl mcutils py-glmnet r-assertive-files +amdblis mdb py-glmnet-python r-assertive-matrices +amdfftw mdspan py-glmsingle r-assertive-models +amdlibflame mdsplus py-glob2 r-assertive-numbers +amdlibm mdtest py-globus-cli r-assertive-properties +amdscalapack med py-globus-sdk r-assertive-reflection +amdsmi medipack py-gluoncv r-assertive-sets +amduprof meep py-glymur r-assertive-strings +amg2013 mefit py-gmsh r-assertive-types +amg2023 megadock py-gmsh-interop r-assertthat +amg4psblas megahit py-gmxapi r-automap +amgx melissa py-gnuplot r-backports +aml memaxes py-goatools r-bamsignals +amp memcached py-gooey r-base64 +ampl meme py-google r-base64enc +ampliconnoise memkind py-google-api-core r-basilisk +ampt memtailor py-google-api-python-client r-basilisk-utils +amqp-cpp memtester py-google-apitools r-bayesfactor +amr-wind mepo py-google-auth r-bayesm +amrex meraculous py-google-auth-httplib2 r-bayesplot +amrfinder mercurial py-google-auth-oauthlib r-bbmisc +amrvis mercury py-google-cloud-appengine-logging r-beachmat +ams mergiraf py-google-cloud-audit-log r-beanplot +anaconda3 mesa py-google-cloud-batch r-beeswarm +andi mesa-demos py-google-cloud-bigquery r-bench +angsd mesa-glu py-google-cloud-core r-bfast +anicalculator meshkit py-google-cloud-logging r-bfastspatial +ant meshlab py-google-cloud-storage r-bglr +antimony meshoptimizer py-google-crc32c r-bh +antlr meshtool py-google-pasta r-biasedurn +antlr4-complete meson py-google-reauth r-bibtex +antlr4-cpp-runtime mesquite py-google-resumable-media r-bigalgebra +ants met py-googleapis-common-protos r-biglm +any2fasta metabat py-googledrivedownloader r-bigmemory +aocc metacarpa py-gosam r-bigmemory-sri +aocl-compression metaeuk py-gpaw r-bindr +aocl-crypto metal py-gpaw-data r-bindrcpp +aocl-da metall py-gpustat r-bio3d +aocl-dlp metaphysicl py-gputil r-biobase +aocl-libmem methyldackel py-gpy r-biocfilecache +aocl-sparse metis py-gpyopt r-biocgenerics +aocl-utils metkit py-gpytorch r-biocinstaller +aoflagger metplus py-gql r-biocio +aom mfem py-gradio r-biocmanager +aotriton mg py-gradio-client r-biocneighbors +aotriton-llvm mgard py-grandalf r-biocparallel +apache-tvm mgardx py-graphcast r-biocsingular +apachetop mgcfd-op2 py-grapheme r-biocstyle +ape mgis py-graphene r-biocversion +aperture-photometry microbiomeutil py-graphlib-backport r-biom-utils +apex microsocks py-graphql-core r-biomart +apfel migraphx py-graphql-relay r-biomartr +apfelxx migrate py-graphql-ws r-biomformat +apktool migrate-package-prs py-graphviz r-biostrings +apple-clang mii py-gravity r-biovizbase +apple-gl mille py-grayskull r-bit +apple-glu millepede py-greenlet r-bit64 +apple-libunwind mimalloc py-grequests r-bitops +apple-libuuid mimic-mcl py-griddataformats r-blavaan +applewmproto minc-toolkit py-griffe r-blob +appres minced py-gromacswrapper r-blockmodeling +apptainer mindthegap py-grpc-google-iam-v1 r-bluster +apr miniamr py-grpcio r-bmp +apr-util miniapp-ascent py-grpcio-status r-bookdown +aqlprofile miniasm py-grpcio-tools r-boot +aragorn miniconda3 py-gsd r-boruta +arbor minife py-gssapi r-brew +arborx miniforge3 py-gsutil r-bridgesampling +arc minigan py-gtdbtk r-brio +archer minighost py-gunicorn r-brms +aretomo minigmg py-gxformat2 r-brobdingnag +aretomo2 minimap2 py-gym r-broom +aretomo3 minimd py-h11 r-broom-helpers +argobots minio py-h2 r-bsgenome +argon2 miniocli py-h3 r-bsgenome-hsapiens-ucsc-hg19 +argp-standalone miniqmc py-h5glance r-bslib +args minisign py-h5io r-bsseq +argtable minismac2d py-h5netcdf r-bumphunter +aria2 minitri py-h5py r-bwstest +arkouda minivite py-h5sh r-c50 +arm-forge minixyce py-hacking r-ca +arm-kernels minizip py-hail r-cachem +armadillo minuit py-handy-archives r-cairo +armcimpi miopen-hip py-hatch r-callr +armcomputelibrary mira py-hatch-cython r-car +armpl-gcc miranda py-hatch-fancy-pypi-readme r-caracas +arpack-ng mirdeep2 py-hatch-jupyter-builder r-cardata +arrayfire mitofates py-hatch-nodejs-version r-caret +arrow mitos py-hatch-requirements-txt r-caretensemble +asagi mivisionx py-hatch-vcs r-caroline +ascent mixcr py-hatchet r-category +asciidoc mkfontdir py-hatchling r-catools +asciidoc-py3 mkfontscale py-hclust2 r-cca +asdcplib mlc-llm py-hdbscan r-ccp +asdf-cxx mlhka py-hdf5plugin r-cdcfluview +asio mlocate py-hdfs r-cellranger +aspa mlpack py-healpix r-champ +aspcud mlperf-deepcam py-healpy r-champdata +aspect mlst py-heapdict r-checkmate +aspell mmg py-heat r-checkpoint +aspell6-de mmseqs2 py-heavyball r-chemometrics +aspell6-en mmv py-hep-ml r-chipseq +aspell6-es moab py-hepdata-converter r-chron +aspera-cli mochi-margo py-hepdata-lib r-circlize +assimp mochi-thallium py-hepdata-validator r-circstats +astra model-angelo py-hepstats r-clarabel +astral model-traits py-hepunits r-class +astyle modeltest-ng py-heudiconv r-classint +at-spi2-atk modern-wheel py-hf-transfer r-cli +at-spi2-core modylas py-hf-xet r-clipr +atf mojitos py-hieroglyph r-clisymbols +atfl mokutil py-highspy r-clock +athena molcas py-hiredis r-clue +atk mold py-hist r-cluster +atlas molden py-histbook r-clustergeneration +atom-dft molgw py-histogrammar r-clusterprofiler +atompaw mongo-c-driver py-histoprint r-cmdstanr +atop mongo-cxx-driver py-hjson r-cner +attr mongodb-async-driver py-hmmlearn r-coda +audacious mono py-holland-backup r-codetools +audacity montage py-holoviews r-codex +audit-userspace moosefs py-horovod r-coin +augustus moreutils py-hpack r-colorspace +authd mosesdecoder py-hpbandster r-colourpicker +authselect mosh py-hpccm r-combinat +autoconf mosquitto py-hsluv r-commonmark +autoconf-archive mothur py-hstspreload r-complexheatmap +autodiff motif py-htgettoken r-compositions +autodock-gpu motioncor2 py-html2text r-compquadform +autodock-vina mount-point-attributes py-html5lib r-condop +autogen mozjpeg py-htmldate r-conflicted +automaded mozjs py-htmlgen r-conquer +automake mpark-variant py-htseq r-consrank +autossh mpas-model py-httpbin r-construct +avizo mpb py-httpcore r-contfrac +aws-ofi-nccl mpc py-httplib2 r-convevol +aws-ofi-rccl mpdecimal py-httpretty r-copula +aws-parallelcluster mpe2 py-httpstan r-corhmm +aws-sdk-cpp mpest py-httptools r-corpcor +awscli mpfi py-httpx r-corrplot +awscli-v2 mpfr py-huggingface-hub r-countrycode +axel mpi-bash py-humanfriendly r-covr +axl mpi-rockstar py-humanize r-cowplot +axom mpi-serial py-hvac r-cpp11 +azcopy mpi-sync-clocks py-hvplot r-crayon +babelflow mpi-test-suite py-hydra-core r-credentials +babelstream mpibenchmark py-hypercorn r-crosstalk +babeltrace mpibind py-hyperframe r-crul +babeltrace2 mpich py-hyperlink r-ctc +babl mpidiff py-hyperopt r-cubature +bacio mpifileutils py-hypothesis r-cubist +backupninja mpigraph py-ibm-cloud-sdk-core r-curl +backward-cpp mpilander py-ibm-watson r-cvxr +bam-readcount mpileaks py-ics r-d3r +bamaddrg mpip py-id r-dada2 +bamdst mpir py-identify r-data-table +bamtools mpitrampoline py-idna r-dbi +bamutil mpiwrapper py-idna-ssl r-dbplyr +banner mpix-launch-swift py-igor r-debugme +bannergrab mpl py-igor2 r-decipher +barrnap mppp py-igraph r-delayedarray +bart mpsolve py-igv-notebook r-delayedmatrixstats +barvinok mpt py-igwn-auth-utils r-deldir +bash mptensor py-ihm r-dendextend +bash-completion mrbayes py-illumina-utils r-densvis +bashtop mrbench py-ilmbase r-deoptim +bat mrchem py-imagecodecs r-deoptimr +batchedblas mrcpp py-imagecorruptions-imaug r-deriv +batctl mrnet py-imagehash r-desc +bats mrtrix3 py-imageio r-deseq +baurmc mruby py-imageio-ffmpeg r-deseq2 +bazel mscclpp py-imagesize r-desolve +bbcp mscgen py-imaug r-devtools +bbmap msgpack-c py-imbalanced-learn r-dexseq +bc mshadow py-imgaug r-diagram +bcache msmc py-iminuit r-diagrammer +bcftools msmc2 py-immutabledict r-dicekriging +bdftopcf msmpi py-immutables r-dichromat +bdii msolve py-importlib-metadata r-diffobj +bdsim msr-safe py-importlib-resources r-diffusionmap +bdw-gc mstk py-imutils r-digest +beagle mstore py-in-n-out r-diptest +beakerlib msvc py-incremental r-dir-expiry +bear mt-metis py-inflect r-dirichletmultinomial +beast-tracer mtn py-inheritance r-dismo +beast1 mui py-iniconfig r-distributional +beast2 mujoco py-iniparse r-diversitree +beatnik multicharge py-inquirer r-dmrcate +bedops multitail py-inquirerpy r-dnacopy +bedtools2 multitime py-inscriptis r-do-db +beforelight multiverso py-installer r-doby +benchmark mumax py-instrain r-domc +berkeley-db mummer py-intake r-doparallel +berkeleygw mummer4 py-intake-esm r-dorng +bertini mumps py-intbitset r-dose +bfs munge py-intel-openmp r-dosnow +bgen muparser py-intensity-normalization r-dotcall64 +bgpdump muparserx py-interface-meta r-downlit +bib2xhtml muscle py-interlap r-downloader +bigdft-atlab muscle5 py-intervaltree r-dplyr +bigdft-chess muse py-invoke r-dqrng +bigdft-core music py-iocapture r-dss +bigdft-futile musica py-iopath r-dt +bigdft-libabinit musl py-ipaddress r-dtplyr +bigdft-liborbs must py-ipdb r-dtw +bigdft-psolver muster py-ipycanvas r-dupradar +bigdft-spred mutationpp py-ipyevents r-dygraphs +bigdft-suite mvapich py-ipyfilechooser r-dynamictreecut +bigreqsproto mvapich-plus py-ipykernel r-e1071 +bigwhoop mvapich2 py-ipyleaflet r-earth +bind9 mxm py-ipympl r-ebseq +binder mxml py-ipyparallel r-ecosolver +binutils mxnet py-ipyrad r-ecp +bioawk mypaint-brushes py-ipython r-edger +biobambam2 mysql py-ipython-cluster-helper r-effects +biobloom mysql-connector-c py-ipython-genutils r-elemstatlearn +biopieces mysqlpp py-ipython-pygments-lexers r-ellipse +bird n2p2 py-ipytree r-ellipsis +bismark nacos py-ipyvtk-simple r-elliptic +bison nag py-ipyvue r-emmeans +bitgroomingz nalu py-ipyvuetify r-emmli +bitlbee nalu-wind py-ipywidgets r-energy +bitmap namd py-irpf90 r-enrichplot +bitsery nano py-isa-rwval r-ensembldb +blackhat nanoflann py-isal r-envstats +blake3 nanomsg py-iso8601 r-ergm +blaspp nanopb py-isodate r-estimability +blast-plus nasm py-isoduration r-europepmc +blast2go nauty py-isort r-evaluate +blat navi py-itables r-evd +blaze nb py-iterative-stats r-exactextractr +blis nbdkit py-itk r-exomecopy +bliss ncbi-magicblast py-itolapi r-exomedepth +blitz ncbi-rmblastn py-itsdangerous r-experimenthub +blktrace ncbi-toolkit py-jacobi r-expint +bloaty ncbi-vdb py-jaconv r-expm +blogbench nccl py-jamo r-factoextra +blt nccl-fastsocket py-janus r-factominer +bmake nccl-tests py-jaraco-classes r-fansi +bmi nccmp py-jaraco-context r-farver +bml ncdu py-jaraco-functools r-fastcluster +bohrium ncftp py-jarowinkler r-fastdigest +boinc-client ncio py-jarvis-util r-fastdummies +bolt ncl py-javaproperties r-fastica +bonniepp nco py-jax r-fastmap +bookleaf-cpp ncompress py-jaxlib r-fastmatch +boost ncurses py-jaxtyping r-fastmatrix +boostmplcartesianproduct ncview py-jcb r-fda +boringssl ncvis py-jdatetime r-fdb-infiniummethylation-hg18 +botan ndiff py-jdcal r-fdb-infiniummethylation-hg19 +bowtie ndzip py-jedi r-fds +bowtie2 neartree py-jeepney r-ff +boxlib neic-finitefault py-jellyfish r-fftwtools +bpp-core nek5000 py-jinja2 r-fgsea +bpp-phyl nekbone py-jinja2-cli r-fields +bpp-phyl-omics nekcem py-jinja2-humanize-extension r-filehash +bpp-popgen neko py-jinja2-time r-filelock +bpp-seq nekrs py-jiter r-findpython +bpp-seq-omics nektar py-jmespath r-fit-models +bpp-suite nektools py-jmp r-fitdistrplus +bracken nemsio py-joblib r-flashclust +brahma nemsiogfs py-jplephem r-flexclust +braker neo4j py-jproperties r-flexmix +branson neocmakelsp py-jprops r-fnn +breakdancer neofoam py-jpype1 r-fontawesome +bref3 neon py-jraph r-forcats +breseq neovim py-jsmin r-foreach +bricks nep py-json-get r-forecast +bridger neper py-json-tricks r-foreign +brigand nest py-json2html r-formatr +brltty net-snmp py-json5 r-formula +brotli netcdf-c py-jsonargparse r-fpc +brpc netcdf-cxx py-jsondiff r-fpcompare +brunsli netcdf-cxx4 py-jsonlines r-fracdiff +brynet netcdf-fortran py-jsonpatch r-fs +bsseeker2 netcdf95 py-jsonpath-ng r-functional +btllib netdata py-jsonpickle r-furrr +btop netgauge py-jsonpointer r-futile-logger +bubblewrap netgen py-jsonref r-futile-options +bucky netkit-ftp py-jsonschema r-future +buddy netlib-lapack py-jsonschema-specifications r-future-apply +bueno netlib-scalapack py-junit-xml r-gamlss +bufr netlib-xblas py-junit2html r-gamlss-data +bufr-query netpbm py-jupyter r-gamlss-dist +bulker netperf py-jupyter-client r-gamm4 +bump2version nettle py-jupyter-console r-gargle +bumpversion networkdirect py-jupyter-core r-gbm +busco neuron py-jupyter-events r-gbrd +busybox neve py-jupyter-leaflet r-gcrma +butter newt py-jupyter-lsp r-gdalutilities +butterflypack nextdenovo py-jupyter-packaging r-gdalutils +bwa nextflow py-jupyter-server r-gdata +bwtool nf-core-tools py-jupyter-server-mathjax r-gdsfmt +byacc nf-seqerakit py-jupyter-server-proxy r-geiger +byfl nf-tower-agent py-jupyter-server-terminals r-genefilter +byobu nf-tower-cli py-jupyter-telemetry r-genelendatabase +byte-lite nf-wave-cli py-jupyterhub r-genemeta +byte-unixbench nfft py-jupyterlab r-geneplotter +byteman nfs-ganesha py-jupyterlab-pygments r-generics +bzip2 nfs-utils py-jupyterlab-server r-genetics +c-ares nghttp2 py-jupyterlab-widgets r-genie3 +c-blosc nginx py-jupytext r-genomeinfodb +c-blosc2 ngmerge py-justext r-genomeinfodbdata +c-lime ngmlr py-jwcrypto r-genomicalignments +c-raft ngspice py-kaggle r-genomicfeatures +c3d nicstat py-kaldiio r-genomicranges +ca-certificates-mozilla nim py-kaleido r-gensa +cabana nimrod-aai py-kb-python r-geojsonsf +cabana-pd ninja py-keras r-geometries +cachefilesd ninja-fortran py-keras-applications r-geometry +caffe ninja-phylogeny py-keras-preprocessing r-geomorph +cairo nix py-keras2onnx r-geonames +cairomm njet py-kerberos r-geoquery +caliper nlcglib py-kerchunk r-geor +callflow nlohmann-json py-key-value-aio r-geosphere +callpath nlohmann-json-schema-validator py-keyboard r-gert +camellia nlopt py-keyring r-getopt +camp nmad py-keyrings-alt r-getoptlong +camx nn-c py-keystoneauth1 r-ggally +canal nnn py-kitchen r-ggbeeswarm +cans nnpack py-kiwisolver r-ggbio +cantera nnvm py-kmodes r-ggdendro +canu node-js py-knack r-ggforce +cap3 nopayloadclient py-kneaddata r-ggfun +capnproto normaliz py-kombu r-ggjoy +capstone notmuch py-kornia r-ggmap +cardioid npb py-kornia-rs r-ggnewscale +care npm py-kosh r-ggpattern +cargo-c npth py-krb5 r-ggplot2 +cargs nq py-kt-legacy r-ggplotify +casacore nrm py-kubernetes r-ggpubr +casacore-measures ns-3-dev py-kymatio r-ggraph +cask nseg py-lagom r-ggrastr +casper nsimd py-langcodes r-ggrepel +cassandra nsjail py-langsmith r-ggridges +cassini-headers nspr py-language-data r-ggsci +castep nss py-lap r-ggsignif +catch2 ntirpc py-laplace-torch r-ggstats +cbc ntl py-lark r-ggthemes +cbench ntpoly py-lark-parser r-ggtree +cbflib numactl py-laspy r-ggvis +cbindgen numamma py-latexcodec r-gh +cblas numap py-law r-gistr +cbqn numaprof py-lazy r-git2r +cbtf numdiff py-lazy-loader r-gitcreds +cbtf-argonavis nut py-lazy-object-proxy r-glimma +cbtf-argonavis-gui nvbandwidth py-lazy-property r-glmgampoi +cbtf-krell nvcomp py-lazyarray r-glmnet +cbtf-lanl nvdimmsim py-lcls-krtc r-globaloptions +cc65 nvhpc py-ldap3 r-globals +ccache nvidia-container-toolkit py-leather r-globaltest +cce nvidia-nsight-systems py-leidenalg r-glue +ccfits nvpl-blas py-lerc r-gmodels +ccls nvpl-common py-lfpykit r-gmp +ccs-qcd nvpl-fft py-lhsmdu r-go-db +cctools nvpl-lapack py-liac-arff r-goftest +cdbfasta nvpl-scalapack py-libclang r-gofuncr +cdd nvptx-tools py-libconf r-googleauthr +cddlib nvshmem py-libcst r-googledrive +cdecimal nvtop py-libensemble r-googlesheets4 +cdhit nvtx py-liblas r-googlevis +cdi nwchem py-librosa r-goplot +cdo nyancat py-librt r-gosemsim +cdt oc py-libsonata r-goseq +ceed ocaml py-lifelines r-gostats +celeritas ocamlbuild py-lightgbm r-gower +cellpose occa py-lightly r-gparotation +cellranger oci-systemd-hook py-lightly-utils r-gplots +centrifuge ocl-icd py-lightning r-graph +cepgen oclgrind py-lightning-api-access r-graphlayouts +cereal oclint py-lightning-cloud r-grbase +ceres-solver oclock py-lightning-fabric r-gridbase +cernlib octa py-lightning-lite r-gridextra +cfitsio octave py-lightning-uq-box r-gridgraphics +cgal octave-arduino py-lightning-utilities r-gridpattern +cgdb octave-control py-lightpipes r-gsa +cgdcbxd octave-gsl py-ligo-segments r-gsalib +cget octave-instrctl py-lil-aretomo r-gseabase +cgl octave-io py-line-profiler r-gsl +cgm octave-optim py-linear-operator r-gsodr +cgns octave-quaternion py-linear-tree r-gson +cgsi-gsoap octave-signal py-linecache2 r-gss +chaco octave-splines py-lineenhancer r-gstat +chafa octave-statistics py-linkchecker r-gsubfn +chai octave-struct py-linkify-it-py r-gtable +chameleon octave-symbolic py-lit r-gtools +changa octopus py-litdata r-gtrellis +channelflow odc py-littleutils r-gviz +chaparral odgi py-lizard r-gwmodel +chapel of-catalyst py-llama-cpp-python r-hardhat +chaplin of-precice py-llnl-sina r-haven +charliecloud ollama py-llvmlite r-hdf5array +charmpp ome-common-cpp py-lmdb r-hdf5r +chatterbug ome-files-cpp py-lmfit r-hdo-db +check ome-model py-lmodule r-hdrcde +chemfiles omega-h py-localcider r-here +chexmix omm py-locket r-hexbin +chez-scheme omm-bundle py-lockfile r-hh +chgcentre omnictl py-logilab-common r-highr +chlorop omniperf py-logistro r-hmisc +chombo omnitrace py-logmuse r-hms +chrony ompss py-logomaker r-hoardr +chrpath ompss-2 py-loguru r-htmltable +cimfomfa ompt-openmp py-loky r-htmltools +cinch oneapi-igc py-loompy r-htmlwidgets +circe2 oneapi-level-zero py-looseversion r-httpcode +circos onednn py-louie r-httpuv +cistem oniguruma py-lpips r-httr +citcoms onnx py-lru-dict r-httr2 +cityhash ont-guppy py-lscsoft-glue r-humaniformat +civetweb oommf py-lsprotocol r-hwriter +cjson oomph py-luigi r-hydrogof +ck op2-dsl py-lupa r-hydrotsm +clamav opa-psm2 py-lvis r-hypergeo +clamr opam py-lws r-hypergraph +clapack opari2 py-lxml r-ica +clara opdilib py-lz4 r-ids +claude-code open-iscsi py-lzstring r-ieugwasr +claw open-isns py-m2r r-igraph +clblast open3d py-macholib r-illumina450probevariants-db +cleaveland4 openal-soft py-machotools r-illuminahumanmethylation450kanno-ilmn12-hg19 +cleverleaf openbabel py-macs2 r-illuminahumanmethylation450kmanifest +clfft openblas py-macs3 r-illuminahumanmethylationepicanno-ilm10b4-hg19 +clhep opencarp py-maestrowf r-illuminahumanmethylationepicmanifest +cli11 opencascade py-magicgui r-illuminaio +clinfo opencl-c-headers py-mahotas r-imager +clingo opencl-clhpp py-mailchecker r-impute +clingo-bootstrap opencl-headers py-make r-influencer +clingo-bootstrap-pgo opencl-icd-loader py-makefun r-ini +cln opencoarrays py-mako r-inline +cloc opencolorio py-mapbox-earcut r-insight +cloog opencv py-mapclassify r-interactivedisplaybase +cloverleaf opendatadetector py-mariadb r-interp +cloverleaf-ref opendx py-marisa-trie r-intervals +cloverleaf3d openexr py-markdown r-inum +clp openfast py-markdown-include r-ipred +clustal-omega openfdtd py-markdown-it-py r-iranges +clustalw openfoam py-markdown2 r-irdisplay +cmake openfoam-org py-markov-clustering r-irkernel +cmaq openfpgaloader py-markovify r-irlba +cmark openfst py-markupsafe r-isdparser +cmdlime opengl py-marshmallow r-islr +cmdstan openglu py-matminer r-iso +cminpack openimagedenoise py-matplotlib r-isoband +cmocka openimageio py-matplotlib-inline r-isva +cmockery openipmi py-matplotlib-scalebar r-iterators +cmor openjdk py-maturin r-iterpc +cni-plugins openjpeg py-mayavi r-jade +cnmem openkim-models py-mbstrdecoder r-janitor +cnpy openldap py-mccabe r-jaspar2018 +cntk openlibm py-md-environ r-jomo +cntk1bitsgd openloops py-mda-xdrlib r-jpeg +cnvnator openmc py-mdahole2 r-jquerylib +codar-cheetah openmm py-mdanalysis r-jsonify +code-server openmolcas py-mdanalysistests r-jsonlite +codec2 openmpi py-mdi r-kableextra +codecov openmx py-mdit-py-plugins r-kegggraph +codee opennurbs py-mdocfile r-keggrest +codes openpa py-mdurl r-kernlab +codipack openpbs py-meautility r-kernsmooth +coevp openpmd-api py-mechanize r-kknn +cohmm openradioss-engine py-medaka r-klar +cohomcalg openradioss-starter py-meldmd r-knitr +coin3d openrasmol py-melissa-core r-kpmt +coinhsl openresty py-memelite r-ks +coinmp openscenegraph py-memory-profiler r-ksamples +coinutils openslide py-memprof r-labeling +collectd openslp py-memray r-labelled +collier openspeedshop py-mendeleev r-lambda-r +colm openspeedshop-utils py-mercantile r-laplacesdemon +colordiff openssh py-mergedeep r-lars +comd openssl py-merlin r-later +comet opensta py-meshio r-lattice +comgr openstf py-meshpy r-latticeextra +commons-lang opensubdiv py-meson-python r-lava +commons-lang3 opentsdb py-metaphlan r-lavaan +commons-logging openturns py-metasv r-lazyeval +compadre openvdb py-metatensor-core r-ldheatmap +compiler-wrapper openvkl py-metatensor-learn r-leafem +composable-kernel openwsman py-metatensor-operations r-leaflet +compose ophidia-analytics-framework py-metatensor-torch r-leaflet-providers +compositeproto ophidia-io-server py-metatomic-torch r-leafpop +composyx ophidia-primitives py-metatrain r-leaps +conda4aarch64 ophidia-server py-metis r-learnbayes +conduit opium py-metomi-isodatetime r-leiden +conmon optional-lite py-metomi-rose r-lfe +connect-proxy optipng py-metpy r-lhs +conquest optix-dev py-metric-learn r-libcoin +conserver opus py-metrics r-libpressio +console-bridge or-tools py-mffpy r-lidr +constype oracle-instant-client py-mg-rast-tools r-lifecycle +consul oras py-mgmetis r-limma +cool orbit2 py-microsoft-aurora r-limsolve +coordgen orc py-mido r-linprog +coral orca py-mikado r-list +corenlp orca-faccts py-mike r-listenv +coreutils orfm py-minio r-lme4 +corset orientdb py-minisom r-lmertest +cosbench orthofiller py-minkowskiengine r-lmtest +cosign orthofinder py-minrpc r-lobstr +cosimio orthomcl py-misk r-locfit +cosma osg-ca-certs py-misopy r-log4r +cosmoflow-benchmark osi py-mistletoe r-loo +cosmomc osmctools py-mistune r-lpsolve +cosp2 osmesa py-mizani r-lpsolveapi +costa osmosis py-mkdocs r-lsei +costo ospray py-mkdocs-autorefs r-lubridate +cotter osqp py-mkdocs-jupyter r-lumi +countdown ossp-uuid py-mkdocs-material r-lwgeom +covfie osu-micro-benchmarks py-mkdocs-material-extensions r-magic +cowsay otf py-mkdocstrings r-magick +cp2k otf-cpt py-mkdocstrings-python r-magrittr +cpat otf2 py-ml-collections r-makecdfenv +cpio ovito py-ml-dtypes r-maldiquant +cplex oxide-rs py-mlflow r-manipulatewidget +cpmd p11-kit py-mlperf-logging r-mapplots +cpp-argparse p3dfft3 py-mlxtend r-mapproj +cpp-httplib p4est py-mmcv r-maps +cpp-logger p7zip py-mmengine r-maptools +cpp-termcolor pacbio-daligner py-mmtf-python r-mapview +cppad pacbio-damasker py-mne r-markdown +cppcheck pacbio-dazz-db py-mne-bids r-marray +cppcodec pacbio-dextractor py-mo-pack r-mass +cppcoro pace py-moarchiving r-mathjaxr +cppgsl pacifica-cli py-mock r-matlab +cpprestsdk packmol py-model-index r-matr +cpptrace pacparser py-modelcif r-matrix +cppunit pacvim py-modepy r-matrixgenerics +cppzmq paddle py-modin r-matrixmodels +cpr padicotm py-modisco r-matrixstats +cprnc pagit py-modred r-mclogit +cpu-features pagmo py-modules-gui r-mclust +cpuinfo pagmo2 py-moltemplate r-mcmc +cqrlib paintor py-monai r-mcmcglmm +cquery pajeng py-monkeytype r-mcmcpack +cracklib pal py-monotonic r-mco +cradl palace py-monty r-mda +cram palisade-development py-more-itertools r-memisc +cray-fftw paml py-morph-tool r-memoise +cray-libsci panda py-morphio r-memuse +cray-mpich pandaseq py-morphosamplers r-mendelianrandomization +cray-mvapich2 pandoc py-motmetrics r-mergemaid +cray-pmi pandoramonitoring py-mouseinfo r-meta +creduce pandorapfa py-moviepy r-metadat +crmc pandorasdk py-mpi4jax r-metafor +croc pango py-mpi4py r-metap +cromwell pangolin py-mpld3 r-metapod +cromwell-womtool pangomm py-mpldock r-methylumi +cronie papi py-mplhep r-mgcv +crosstool-ng papyrus py-mplhep-data r-mgraster +crow paraconf py-mpmath r-mice +crtm paradiseo py-mrcfile r-microbenchmark +crtm-fix parafeed py-msal r-mime +crunch parallel py-msal-extensions r-minfi +crux-toolkit parallel-hashmap py-msgpack r-miniui +cry parallel-netcdf py-msgpack-numpy r-minqa +cryodrgn parallelio py-msrest r-misc3d +cryoef parallelmergetree py-msrestazure r-missmethyl +cryptopp paraview py-mui4py r-mitml +cryptsetup pareval py-multi-imbalance r-mitools +csa-c parflow py-multi-key-dict r-mixtools +cscope parmetis py-multidict r-mlbench +csdp parmgridgen py-multiecho r-mlinterfaces +csvtk parmmg py-multipledispatch r-mlr +ctffind parquet-format py-multiprocess r-mlrmbo +ctpl parsec py-multiqc r-mmwrweek +ctre parsimonator py-multiurl r-mnormt +cub parsplice py-mumps4py r-mockery +cuba parthenon py-munch r-modelmetrics +cubature partons py-munkres r-modelr +cube partons-elementary-utils py-murmurhash r-modeltools +cube-blade partons-numa py-mutagen r-mpm +cubelib pass py-mx r-mr-raps +cubew passt py-mxfold2 r-mrinstruments +cubist pasta py-myhdl r-mrmix +cublasmp pastix py-mypy r-mrpresso +cuda patch py-mypy-extensions r-mscoreutils +cuda-memtest patchelf py-mysql-connector-python r-msnbase +cudd patchutils py-mysqlclient r-multcomp +cudnn pathfinder py-myst-parser r-multcompview +cudss pax-utils py-namex r-multicool +cufflinks pbbam py-nanobind r-multitaper +cufftmp pblat py-nanoget r-multtest +cunit pbmpi py-nanomath r-munsell +cups pbwt py-nanoplot r-mutoss +curl pbzip2 py-nanostat r-mvtnorm +cusolvermp pciutils py-nanotime r-mzid +cusparselt pcl py-nanotron r-mzr +cusz pcma py-napari r-nada +cutensor pcre py-napari-console r-nanotime +cutlass pcre2 py-napari-plugin-engine r-ncbit +cvector pcsclite py-napari-plugin-manager r-ncdf4 +cvise pdal py-napari-svg r-network +cvs pdc py-nara-wpe r-networkd3 +cxi-driver pdf2svg py-narwhals r-neuralnet +cxxopts pdftk py-natsort r-nfactors +cxxtest pdi py-nbclassic r-nimble +cyrus-sasl pdiplugin-decl-hdf5 py-nbclient r-nleqslv +czmq pdiplugin-decl-netcdf py-nbconvert r-nlme +daemonize pdiplugin-mpi py-nbdime r-nloptr +dakota pdiplugin-pycall py-nbformat r-nmf +daligner pdiplugin-serialize py-nbmake r-nmof +dalton pdiplugin-set-value py-nbqa r-nnet +damageproto pdiplugin-trace py-nbsphinx r-nnls +damaris pdiplugin-user-code py-nbstripout r-nonnest2 +damask pdsh py-nbval r-nor1mix +damask-grid pdt py-nc-time-axis r-nortest +damask-mesh pegtl py-ncbi-genome-download r-np +damselfly pelican py-ndg-httpsclient r-npsurv +daos pennant py-ndindex r-numderiv +darshan-runtime percept py-neo r-oligoclasses +darshan-util percolator py-neo4j r-openssl +dash percona-server py-neobolt r-openxlsx +datamash perfstubs py-neotime r-optimparallel +dataspaces perl py-neovim-remote r-optimx +datatransferkit perl-acme-damn py-neptune-client r-optparse +date perl-algorithm-c3 py-nest-asyncio r-ordinal +dateutils perl-algorithm-diff py-nestle r-org-hs-eg-db +dav-sdk perl-alien-build py-netaddr r-organismdbi +davix perl-alien-build-plugin-download-gitlab py-netcdf4 r-osqp +dbcsr perl-alien-libxml2 py-netifaces r-packrat +dbow2 perl-any-uri-escape py-netket r-pacman +dbus perl-apache-logformat-compiler py-netpyne r-paleotree +dbus-glib perl-app-cmd py-networkit r-pamr +dbxtool perl-appconfig py-networkx r-pan +dcap perl-archive-zip py-neuralgcm r-parallelly +dcm2niix perl-array-utils py-neurokit2 r-parallelmap +dcmtk perl-b-cow py-neurolab r-paramhelpers +dctz perl-b-hooks-endofscope py-neurom r-party +dd4hep perl-b-keywords py-neurora r-partykit +ddc perl-bignum py-neurotools r-patchwork +ddd perl-bio-asn1-entrezgene py-nexus-sdk r-pathview +dealii perl-bio-bigfile py-nexusforge r-pbapply +dealii-parameter-gui perl-bio-cluster py-nglview r-pbdzmq +debbuild perl-bio-db-hts py-ngs-tools r-pbivnorm +debugedit perl-bio-ensembl py-nh3 r-pbkrtest +decentralized-internet perl-bio-ensembl-funcgen py-nibabel r-pcamethods +deconseq-standalone perl-bio-ensembl-io py-nilearn r-pcapp +deconwolf perl-bio-ensembl-variation py-nipype r-pegas +dedisp perl-bio-eutilities py-nitransforms r-pepxmltab +deepmdkit perl-bio-searchio-hmmer py-niworkflows r-permute +dejagnu perl-bio-variation py-nltk r-pfam-db +delly2 perl-bioperl py-node-semver r-phangorn +delphes perl-bit-vector py-nodeenv r-phantompeakqualtools +delta perl-bsd-resource py-non-regression-test-tools r-pheatmap +demuxlet perl-cache-cache py-nose r-philentropy +deno perl-cache-memcached py-nose-cov r-phylobase +denovogear perl-cairo py-nose2 r-phyloseq +detray perl-canary-stability py-nosexcover r-phylostratr +dfelibs perl-capture-tiny py-notebook r-phytools +dftbplus perl-carp py-notebook-shim r-picante +dftd3-lib perl-carp-assert py-npe2 r-piggyback +dftd4 perl-carp-clan py-nptyping r-pillar +dftfe perl-catalyst-action-renderview py-npx r-pinfsc50 +dhpmm-f perl-catalyst-action-rest py-ntlm-auth r-pixmap +dhtest perl-catalyst-component-instancepercontext py-ntplib r-pkgbuild +dia perl-catalyst-devel py-nugraph r-pkgcache +dia-umpire-se perl-catalyst-plugin-cache py-nuitka r-pkgconfig +dialign perl-catalyst-plugin-configloader py-num2words r-pkgdepends +dialign-tx perl-catalyst-plugin-static-simple py-numba r-pkgdown +diamond perl-catalyst-runtime py-numba4jax r-pkgload +dicom3tools perl-catalyst-view-json py-numbagg r-pkgmaker +diffmark perl-cgi py-numcodecs r-pki +diffsplice perl-cgi-simple py-numdifftools r-pl94171 +difftastic perl-cgi-struct py-numexpr r-plogr +diffutils perl-chart-gnuplot py-numexpr3 r-plot3d +digitrounding perl-chi py-numkit r-plotly +dihydrogen perl-chi-driver-memcached py-numl r-plotmo +dimemas perl-class-accessor py-numpy r-plotrix +dineof perl-class-accessor-grouped py-numpy-groupies r-pls +ding-libs perl-class-accessor-lvalue py-numpy-indexed r-plyr +dire perl-class-c3 py-numpy-quaternion r-pmcmr +direnv perl-class-c3-adopt-next py-numpy-stl r-pmcmrplus +discotec perl-class-c3-componentised py-numpydoc r-png +discovar perl-class-data-inheritable py-nvidia-dali r-polspline +discovardenovo perl-class-inspector py-nvidia-ml-py r-polyclip +disktype perl-class-load py-nvidia-ml-py3 r-polynom +dislin perl-class-load-xs py-nvidia-modulus r-pool +distbench perl-class-method-modifiers py-nvidia-nvcomp r-poorman +distcc perl-class-singleton py-nvidia-nvimagecodec r-popgenome +diy perl-class-tiny py-nvidia-nvjpeg2k r-popvar +dla-future perl-clone py-nvidia-nvtiff r-posterior +dla-future-fortran perl-clone-choose py-nvidia-physicsnemo r-powerlaw +dlb perl-clone-pp py-nvitop r-prabclus +dlib perl-common-sense py-nvtx r-pracma +dlpack perl-compress-bzip2 py-oauth2client r-praise +dmd perl-compress-lzo py-oauthlib r-preprocesscore +dmidecode perl-compress-raw-bzip2 py-obspy r-prettydoc +dmlc-core perl-compress-raw-zlib py-ocnn r-prettyunits +dmtcp perl-config-any py-odc-geo r-proc +dmxproto perl-config-general py-odfpy r-processx +dnsmap perl-config-inifiles py-ogb r-prodlim +dnsmasq perl-config-simple py-okada-wrapper r-profmem +dnstop perl-config-tiny py-olcf-velocity r-profvis +dnstracer perl-context-preserve py-olefile r-progress +docbook-xml perl-contextual-return py-olmoearth-pretrain-minimal r-progressr +docbook-xsl perl-convert-nls-date-format py-omegaconf r-proj +dock perl-cookie-baker py-onnx r-proj4 +doctest perl-cpan-meta-check py-onnx-opcounter r-projpred +dolfinx-mpc perl-cpanel-json-xs py-onnxconverter-common r-promises +dorado perl-css-minifier-xs py-onnxmltools r-protgenerics +dorian3d-dlib perl-data-dump py-onnxruntime r-proto +dos2unix perl-data-dumper py-ont-fast5-api r-proxy +dosfstools perl-data-dumper-concise py-opcodes r-pryr +dotconf perl-data-optlist py-open-clip-torch r-ps +dotnet-core-sdk perl-data-predicate py-openai r-pscbs +double-batched-fft-library perl-data-stag py-openai-whisper r-pspline +double-conversion perl-data-uuid py-openapi-schema-pydantic r-psych +doxygen perl-data-visitor py-opencensus r-ptw +dpdk perl-date-exception py-opencensus-context r-purrr +dplasma perl-date-manip py-opencv-python r-pvclust +dpmjet perl-date-utils py-opendatalab r-qqconf +draco perl-datetime py-openidc-client r-qs +dracut perl-datetime-format-builder py-openmc r-qtl +dramsim2 perl-datetime-format-iso8601 py-openmesh r-quadprog +dramsim3 perl-datetime-format-mysql py-openmim r-quantmod +dri2proto perl-datetime-format-oracle py-openpmd-validator r-quantreg +dri3proto perl-datetime-format-pg py-openpmd-viewer r-quantro +drill perl-datetime-format-strptime py-openpyxl r-questionr +drishti perl-datetime-locale py-openslide-python r-quickjsr +dropwatch perl-datetime-timezone py-opentelemetry-api r-quickplot +druid perl-db-file py-opentelemetry-exporter-prometheus r-qvalue +ds perl-dbd-mysql py-opentelemetry-instrumentation r-r-cache +dsdp perl-dbd-oracle py-opentelemetry-sdk r-r-methodss3 +dsfmt perl-dbd-pg py-opentelemetry-semantic-conventions r-r-oo +dsqss perl-dbd-sqlite py-opentree r-r-utils +dsrc perl-dbi py-opentuner r-r6 +dssp perl-dbix-class py-opppy r-radialmr +dtc perl-devel-checklib py-ops r-ragg +dtcmp perl-devel-cover py-opt-einsum r-rainbow +dtf perl-devel-cycle py-optax r-randomfields +duckdb perl-devel-globaldestruction py-optree r-randomfieldsutils +duperemove perl-devel-overloadinfo py-optuna r-randomforest +dust perl-devel-size py-or-tools r-randomglm +dwz perl-devel-stacktrace py-oracledb r-ranger +dxt-explorer perl-devel-stacktrace-ashtml py-orbax-checkpoint r-rann +dyninst perl-devel-symdump py-ordered-set r-rapidjsonr +dysco perl-digest-jhash py-orderly-set r-rapiserialize +e2fsprogs perl-digest-md5 py-orjson r-rappdirs +e3sm-kernels perl-digest-md5-file py-os-service-types r-raster +e3sm-scorpio perl-digest-sha1 py-oset r-rbgl +e4s-alc perl-dist-checkconflicts py-oslo-config r-rbibutils +e4s-cl perl-email-abstract py-oslo-i18n r-rbokeh +ea-utils perl-email-address-xs py-oslo-serialization r-rcmdcheck +eagle perl-email-date-format py-oslo-utils r-rcolorbrewer +earlyoom perl-email-messageid py-osqp r-rcpp +easi perl-email-mime py-outdated r-rcppannoy +easybuild perl-email-mime-contenttype py-overpy r-rcpparmadillo +easyloggingpp perl-email-mime-encodings py-overrides r-rcppblaze +ebms perl-email-sender py-owlrl r-rcppcctz +ecbuild perl-email-simple py-owslib r-rcppcnpy +eccodes perl-email-stuffer py-oyaml r-rcppdate +eccodes-cosmo-resources perl-encode-locale py-p2j r-rcppde +ecdsautils perl-error py-pacifica-downloader r-rcppeigen +ecflow perl-eval-closure py-pacifica-namespace r-rcppensmallen +eckit perl-exception-class py-pacifica-uploader r-rcppgsl +eclipse-gcj-parser perl-exporter-auto py-packaging r-rcpphnsw +ecmwf-atlas perl-exporter-lite py-pager r-rcppml +ecos perl-exporter-tiny py-paho-mqtt r-rcppparallel +ecoslim perl-extutils-config py-palettable r-rcppprogress +ecp-data-vis-sdk perl-extutils-depends py-pamela r-rcpproll +ecp-proxy-apps perl-extutils-helpers py-panaroo r-rcpptoml +ectrans perl-extutils-installpaths py-pandas r-rcppziggurat +ed perl-extutils-makemaker py-pandas-datareader r-rcurl +editline perl-extutils-pkgconfig py-pandas-stubs r-rda +editorconfig perl-ffi-checklib py-pandera r-rdpack +editres perl-file-changenotify py-pandocfilters r-readbitmap +edm4hep perl-file-chdir py-panedr r-readr +eem perl-file-copy-recursive py-panel r-readxl +efivar perl-file-find-rule py-papermill r-reams +egl perl-file-grep py-paralleltask r-recipes +eigen perl-file-homedir py-param r-reformulas +eigenexa perl-file-listing py-parameterized r-registry +elasticsearch perl-file-pushd py-paramiko r-rematch +elastix perl-file-remove py-paramz r-rematch2 +elbencho perl-file-sharedir py-parasail r-remotes +elfio perl-file-sharedir-install py-parmed r-renv +elfutils perl-file-slurp py-parse r-reordercluster +elk perl-file-slurp-tiny py-parse-type r-reportingtools +elmerfem perl-file-slurper py-parsedatetime r-repr +elpa perl-file-spec py-parsimonious r-reprex +elsd perl-file-temp py-parsl r-reproducible +elsdc perl-file-which py-parsley r-require +elsi perl-filesys-notify-simple py-parso r-reshape +emacs perl-font-ttf py-partd r-reshape2 +ember perl-forks py-particle r-restfulr +emblmygff3 perl-fth py-paste r-reticulate +emboss perl-gd py-pastedeploy r-rex +embree perl-gdgraph py-pastel r-rfast +enca perl-gdgraph-histogram py-pastml r-rferns +enchant perl-gdtextutil py-patch r-rgdal +energyplus perl-getopt-argvfile py-patch-ng r-rgenoud +ensmallen perl-getopt-long-descriptive py-path-py r-rgeos +entrezdirect perl-getopt-tabular py-pathlib-abc r-rgexf +entt perl-graph py-pathlib2 r-rgl +environment-modules perl-graph-readwrite py-pathml r-rgooglemaps +enzo perl-graphviz py-pathos r-rgraphviz +enzyme perl-gzip-faster py-pathsimanalysis r-rhdf5 +eospac perl-hash-merge py-pathspec r-rhdf5filters +epic perl-hash-moreutils py-pathtools r-rhdf5lib +epics-base perl-hash-multivalue py-pathvalidate r-rhmmer +epics-ca-gateway perl-heap py-pathy r-rhtslib +epics-pcas perl-hook-lexwrap py-patool r-rinside +epics-snmp perl-html-parser py-patsy r-rio +eprosima-fastcdr perl-html-tagset py-pauvre r-rjags +eprosima-fastdds perl-html-template py-pbr r-rjava +epsic perl-http-body py-pdb-tools r-rjson +eq-r perl-http-cookiejar py-pdbfixer r-rjsonio +er perl-http-cookies py-pdequinox r-rlang +erf perl-http-daemon py-pdf2image r-rlas +erfa perl-http-date py-pdm-backend r-rle +erlang perl-http-entity-parser py-pdm-pep517 r-rlist +ermod perl-http-headers-fast py-pdoc3 r-rmariadb +erne perl-http-message py-peachpy r-rmarkdown +es-shell perl-http-multipartparser py-peakutils r-rminer +esmf perl-http-negotiate py-pebble r-rmpfr +espanso perl-http-parser-xs py-peft r-rmpi +essl perl-http-request-ascgi py-pelicanfs r-rms +estarlight perl-http-server-simple py-pem r-rmutil +esys-particle perl-http-tiny py-pendulum r-rmysql +etcd perl-import-into py-pennylane r-rnaseqmap +ethminer perl-inline py-pennylane-lightning r-rncl +ethtool perl-inline-c py-pennylane-lightning-kokkos r-rnexml +etsf-io perl-io-all py-pep517 r-rngtools +eve perl-io-compress py-pep8 r-rnoaa +evemu perl-io-html py-pep8-naming r-robust +everytrace perl-io-prompt py-perfdump r-robustbase +everytrace-example perl-io-sessiondata py-performance r-roc +evieext perl-io-socket-ssl py-periodictable r-rocr +evtgen perl-io-string py-petastorm r-rodbc +exabayes perl-io-stringy py-petname r-rook +exaca perl-io-tty py-petsc4py r-rots +exactextract perl-ipc-run py-pexpect r-roxygen2 +exago perl-ipc-run3 py-pfzy r-rpart +examl perl-ipc-sharelite py-pgzip r-rpart-plot +exampm perl-ipc-system-simple py-phanotate r-rpmm +exasp2 perl-javascript-minifier-xs py-phonenumbers r-rpostgres +exawind perl-json py-phonopy r-rpostgresql +exaworks perl-json-any py-photutils r-rprojroot +exchcxx perl-json-maybexs py-phydms r-rpsychi +exciting perl-json-xs py-phylophlan r-rrblup +exempi perl-kyotocabinet py-pickle5 r-rrcov +exiv2 perl-libwww-perl py-pickleshare r-rrpp +exmcutils perl-libxml-perl py-picmistandard r-rsamtools +exo perl-lingua-en-inflect py-picrust2 r-rsconnect +exodusii perl-list-compare py-pid r-rsnns +exonerate perl-list-moreutils py-pika r-rsolnp +exonerate-gff3 perl-list-moreutils-xs py-pillow r-rspectra +expat perl-list-someutils py-pillow-simd r-rsqlite +expect perl-log-any py-pint r-rstan +express perl-log-any-adapter-callback py-pint-xarray r-rstantools +exprtk perl-log-dispatch py-pip r-rstatix +extrae perl-log-dispatch-filerotate py-pipcl r-rstudioapi +exuberant-ctags perl-log-log4perl py-pipdeptree r-rsubread +eza perl-logger-simple py-piper r-rsvd +eztrace perl-lwp-mediatypes py-pipits r-rtracklayer +f2c perl-lwp-protocol-https py-pispino r-rtsne +f3d perl-mailtools py-pivy r-runit +f77-zmq perl-math-bezier py-pkgconfig r-runjags +f90cache perl-math-bigint py-pkginfo r-ruv +fabtests perl-math-bigrat py-pkgutil-resolve-name r-rvcheck +fabulous perl-math-cdf py-plac r-rversions +faircmakemodules perl-math-cephes py-plaid r-rvest +fairlogger perl-math-matrixreal py-planar r-rviennacl +fairmq perl-math-round py-planet r-rzmq +fairroot perl-math-symbolic py-planetary-computer r-s2 +fairsoft-bundle perl-math-vecstat py-platformdirs r-s4vectors +fairsoft-config perl-mce py-plotext r-s7 +faiss perl-memory-process py-plotille r-samr +fakechroot perl-metacpan-client py-plotly r-sandwich +faketime perl-mime-types py-plotnine r-sass +fakexrandr perl-mni-perllib py-pluggy r-satellite +falco perl-mock-config py-plum-dispatch r-scaledmatrix +falcon perl-module-build py-ply r-scales +fann perl-module-build-tiny py-pmtiles r-scater +faodel perl-module-corelist py-pmw r-scattermore +fargparse perl-module-find py-pmw-patched r-scatterpie +fasd perl-module-implementation py-pockets r-scatterplot3d +fast-float perl-module-install py-poetry r-scdblfinder +fast-global-file-status perl-module-mask py-poetry-core r-scran +fasta perl-module-pluggable py-poetry-dynamic-versioning r-scrime +fastani perl-module-runtime py-poetry-plugin-export r-scs +fastdb perl-module-runtime-conflicts py-poetry-plugin-tweak-dependencies-version r-sctransform +fastdfs perl-module-scandeps py-polars r-scuttle +fastjar perl-module-util py-pomegranate r-sdmtools +fastjet perl-mojolicious py-pooch r-segmented +fastjson perl-moo py-portalocker r-selectr +fastmath perl-moose py-portend r-seqinr +fastme perl-moosex-emulate-class-accessor-fast py-portpicker r-seqlogo +fastor perl-moosex-getopt py-postcactus r-servr +fastp perl-moosex-methodattributes py-poster r-sessioninfo +fastphase perl-moosex-role-parameterized py-pot r-sets +fastplong perl-moox-types-mooselike py-pox r-seurat +fastq-scan perl-moox-types-mooselike-numeric py-poxy r-seuratobject +fastq-screen perl-mozilla-ca py-poyo r-sf +fastqc perl-mro-compat py-ppft r-sfheaders +fastqvalidator perl-namespace-autoclean py-pprintpp r-sfsmisc +fasttext perl-namespace-clean py-pre-commit r-sftime +fasttransforms perl-net-cidr-lite py-preshed r-shadowtext +fasttree perl-net-http py-pretrainedmodels r-shape +fastx-toolkit perl-net-ip py-pretty-errors r-shiny +faust perl-net-scp-expect py-prettytable r-shinydashboard +fbgemm perl-net-server py-priority r-shinyfiles +fca perl-net-server-ss-prefork py-profilehooks r-shinyfiletree +fcgi perl-net-ssleay py-proglog r-shinyjs +fckit perl-number-compare py-progress r-shinystan +fd perl-number-format py-progressbar2 r-shinythemes +fdb perl-object-insideout py-progressbar33 r-shinywidgets +fds perl-package-deprecationmanager py-projectq r-shortread +fdupes perl-package-stash py-prokaryote r-siggenes +feh perl-package-stash-xs py-prometheus-client r-signac +fenics perl-package-variant py-prometheus-flask-exporter r-simpleaffy +fenics-basix perl-padwalker py-promise r-singlecellexperiment +fenics-dolfinx perl-parallel-forkmanager py-prompt-toolkit r-sitmo +fenics-ufcx perl-params-util py-propcache r-sm +feq-parse perl-params-validate py-properscoring r-smoof +fermi perl-params-validationcompiler py-proto-plus r-sn +fermikit perl-parse-recdescent py-protobuf r-snakecase +fermisciencetools perl-parse-yapp py-protoc-gen-swagger r-snow +ferret perl-parselex py-prov r-snowfall +feynhiggs perl-parsetemplate py-proxystore r-snprelate +ffb perl-path-class py-prwlock r-snpstats +fflas-ffpack perl-path-tiny py-psalg r-som +ffmpeg perl-pathtools py-psana r-somaticsignatures +ffr perl-pdf-api2 py-psij-python r-sourcetools +ffsb perl-pegex py-psmon r-sp +ffte perl-perl-critic py-pspamm r-spacetime +fftw perl-perl-critic-moose py-psutil r-spades +fftx perl-perl-tidy py-psyclone r-spades-addins +fgsl perl-perl-unsafe-signals py-psycopg2 r-spades-core +fiat perl-perl-version py-psygnal r-spades-tools +fides perl-perl4-corelibs py-ptyprocess r-spam +figcone perl-perl6-slurp py-pubchempy r-sparsem +figlet perl-perlio-gzip py-pudb r-sparsematrixstats +figtree perl-perlio-utf8-strict py-pulp r-spatial +file perl-plack py-pulsar-galaxy-lib r-spatialeco +filebench perl-plack-middleware-assets py-pure-eval r-spatialpack +filo perl-plack-middleware-crossorigin py-pure-sasl r-spatialreg +filtlong perl-plack-middleware-deflater py-puremagic r-spatstat +fimpute perl-plack-middleware-fixmissingbodyinredirect py-py r-spatstat-core +finch perl-plack-middleware-methodoverride py-py-cpuinfo r-spatstat-data +findbugs perl-plack-middleware-removeredundantbody py-py-spy r-spatstat-explore +findutils perl-plack-middleware-reverseproxy py-py-tes r-spatstat-geom +fio perl-plack-test-externalserver py-py2bit r-spatstat-linnet +fipscheck perl-pod-coverage py-py2neo r-spatstat-model +fish perl-pod-parser py-py4j r-spatstat-random +fixesproto perl-pod-spell py-py6s r-spatstat-sparse +fj perl-posix-strftime-compiler py-pyabel r-spatstat-univar +fjcontrib perl-ppi py-pyaestro r-spatstat-utils +fl perl-ppix-quotelike py-pyahocorasick r-spdata +flac perl-ppix-regexp py-pyamg r-spdep +flamegraph perl-ppix-utils py-pyaml r-speedglm +flamemaster perl-proc-daemon py-pyaml-env r-spem +flann perl-proc-processtable py-pyani r-splancs +flap perl-readonly py-pyarrow r-splines2 +flash perl-readonly-xs py-pyasn1 r-splitstackshape +flashdimmsim perl-ref-util py-pyasn1-modules r-sqldf +flatbuffers perl-regexp-common py-pyassimp r-squarem +flatcc perl-role-tiny py-pyautogui r-squash +flcl perl-rose-datetime py-pybedtools r-sseq +flecsi perl-rose-db py-pybids r-stabledist +flecsph perl-rose-db-object py-pybigwig r-stanheaders +fleur perl-rose-object py-pybind11 r-stargazer +flex perl-safe-isa py-pybind11-stubgen r-stars +flexi perl-scalar-list-utils py-pybktree r-statmod +flexiblas perl-scalar-util-numeric py-pybobyqa r-statnet-common +flibcpp perl-scope-guard py-pybrain r-stringfish +flink perl-search-elasticsearch py-pybtex r-stringi +flint perl-sereal py-pybtex-docutils r-stringr +flit perl-sereal-decoder py-pybv r-strucchange +fltk perl-sereal-encoder py-pycairo r-strucchangercpp +fluidnumerics-self perl-server-starter py-pycares r-styler +flume perl-set-intervaltree py-pycbc r-subplex +flux perl-set-intspan py-pycgns r-summarizedexperiment +flux-core perl-set-object py-pychecker r-suppdists +flux-pmix perl-set-scalar py-pycifrw r-survey +flux-python perl-soap-lite py-pyclibrary r-survival +flux-sched perl-sort-naturally py-pycm r-sva +flux-security perl-specio py-pycmd r-svglite +fluxbox perl-spiffy py-pycocotools r-sys +fmi4cpp perl-sql-abstract py-pycodestyle r-systemfonts +fms perl-sql-abstract-classic py-pycollada r-tarifx +fmt perl-sql-reservedwords py-pycompadre r-taxizedb +foam-extend perl-sql-translator py-pyconify r-tclust +foldseek perl-star-fusion py-pycorenlp r-teachingdemos +folly perl-starman py-pycortex r-tensor +font-util perl-statistics-basic py-pycosat r-tensora +fontcacheproto perl-statistics-descriptive py-pycparser r-terra +fontconfig perl-statistics-pca py-pycrypto r-tester +fontsproto perl-stream-buffered py-pycryptodome r-testit +fonttosfnt perl-strictures py-pycryptodomex r-testthat +foonathan-memory perl-string-approx py-pyct r-textshaping +form perl-string-crc32 py-pycubexr r-tfbstools +formetis perl-string-format py-pycuda r-tfisher +fortrilinos perl-string-numeric py-pycurl r-tfmpvalue +fortuno perl-string-rewriteprefix py-pydantic r-th-data +fossil perl-sub-exporter py-pydantic-compat r-threejs +foundationdb perl-sub-exporter-progressive py-pydantic-core r-tibble +fox perl-sub-identify py-pydantic-extra-types r-tictoc +fp16 perl-sub-install py-pydantic-settings r-tidycensus +fpart perl-sub-name py-pydantic-tes r-tidygraph +fpc perl-sub-quote py-pydap r-tidyr +fpchecker perl-sub-uplevel py-pydata-sphinx-theme r-tidyselect +fping perl-svg py-pydatalog r-tidytree +fplll perl-swissknife py-pydeface r-tidyverse +fplo perl-sys-sigaction py-pydeprecate r-tiff +fpm perl-task-weaken py-pydeps r-tigris +fpocket perl-template-toolkit py-pydevtool r-timechange +fpzip perl-term-ansicolor-markup py-pydftracer r-timedate +fq perl-term-readline-gnu py-pydicom r-tinytex +fqtrim perl-term-table py-pydispatcher r-tinytiger +fr-hit perl-termreadkey py-pydmd r-tmixclust +fraggenescan perl-test-base py-pydocstyle r-tmvnsim +freebayes perl-test-class py-pydoe r-topgo +freecad perl-test-cleannamespaces py-pydoe2 r-treeio +freefem perl-test-deep py-pydot r-triebeard +freeglut perl-test-diaginc py-pydot2 r-trimcluster +freeimage perl-test-differences py-pydotplus r-truncdist +freeipmi perl-test-exception py-pydub r-truncnorm +freesasa perl-test-fatal py-pyeda r-trust +freesurfer perl-test-file py-pyedr r-tseries +freetype perl-test-file-contents py-pyee r-tsne +freexl perl-test-file-sharedir py-pyelftools r-ttr +fribidi perl-test-json py-pyem r-tweenr +frobby perl-test-leaktrace py-pyenchant r-twosamplemr +frontier-client perl-test-longstring py-pyepsg r-txdb-hsapiens-ucsc-hg18-knowngene +frontistr perl-test-memory-cycle py-pyerfa r-txdb-hsapiens-ucsc-hg19-knowngene +frugally-deep perl-test-mockobject py-pyeventsystem r-tximeta +fseq perl-test-mocktime py-pyface r-tximport +fsl perl-test-more py-pyfaidx r-tximportdata +fslsfonts perl-test-most py-pyfasta r-tzdb +fstobdf perl-test-needs py-pyfastaq r-ucminf +fstrack perl-test-nowarnings py-pyfftw r-udunits2 +ftgl perl-test-object py-pyfiglet r-units +ftjam perl-test-output py-pyfits r-upsetr +ftk perl-test-perl-critic py-pyfive r-urca +ftobjectlibrary perl-test-pod py-pyflakes r-urlchecker +ftxui perl-test-pod-coverage py-pyfr r-urltools +fujitsu-fftw perl-test-requires py-pygame r-usethis +fujitsu-frontistr perl-test-requiresinternet py-pygdal r-utf8 +fujitsu-mpi perl-test-sharedfork py-pygdbmi r-uuid +fujitsu-ssl2 perl-test-subcalls py-pygelf r-uwot +fullock perl-test-tcp py-pygeos r-v8 +func perl-test-time py-pygetwindow r-variantannotation +functionalplus perl-test-time-hires py-pygit2 r-varselrf +funhpc perl-test-trap py-pygithub r-vcd +funwave perl-test-warn py-pyglet r-vcfr +fuse-overlayfs perl-test-warnings py-pygments r-vctrs +fusion-io perl-test-weaken py-pygments-pytest r-vegan +fvtkhdf perl-test-without-module py-pygmsh r-vfs +fwq perl-test-xml py-pygmt r-vgam +fxdiv perl-test-xml-simple py-pygobject r-vioplot +fxt perl-test-xpath py-pygps r-vipor +fyba perl-test-yaml py-pygpu r-viridis +fzf perl-test2-plugin-nowarnings py-pygraphviz r-viridislite +g2 perl-test2-suite py-pygresql r-visnetwork +g2c perl-text-csv py-pygrib r-vroom +g2o perl-text-csv-xs py-pygtrie r-vsn +g2tmpl perl-text-diff py-pyh5md r-waldo +g4abla perl-text-format py-pyhdf r-watermelon +g4adept perl-text-glob py-pyheadtail r-webshot +g4channeling perl-text-nsp py-pyhmmer r-wgcna +g4emlow perl-text-simpletable py-pyhull r-whisker +g4ensdfstate perl-text-soundex py-pyicu r-withr +g4hepem perl-text-unidecode py-pyinstrument r-wk +g4incl perl-thread-queue py-pyinstrument-cext r-writexl +g4ndl perl-threads py-pyisemail r-wru +g4neutronxs perl-throwable py-pyjnius r-xde +g4nudexlib perl-tie-ixhash py-pyjwt r-xfun +g4particlexs perl-tie-toobject py-pyke r-xgboost +g4photonevaporation perl-time-clock py-pykerberos r-xlconnect +g4pii perl-time-duration py-pykml r-xlconnectjars +g4radioactivedecay perl-time-duration-parse py-pykokkos-base r-xlsx +g4realsurface perl-time-hires py-pykwalify r-xlsxjars +g4saiddata perl-time-piece py-pylab-sdk r-xmapbridge +g4tendl perl-timedate py-pylatex r-xml +g4urrpt perl-tk py-pyld r-xml2 +g4vg perl-tree-simple py-pylev r-xnomial +gadap perl-tree-simple-visitorfactory py-pylibjpeg-libjpeg r-xopen +gamess-ri-mp2-miniapp perl-try-tiny py-pylibjpeg-openjpeg r-xtable +gams perl-type-tiny py-pylibjpeg-rle r-xts +gapbs perl-types-serialiser py-pylibmagic r-xvector +gapcloser perl-universal-can py-pylikwid r-yaimpute +gapfiller perl-universal-isa py-pylint r-yaml +garcon perl-uri py-pylint-gitlab r-yapsa +garfieldpp perl-uri-encode py-pylith r-yaqcaffy +gasnet perl-uri-find py-pylops r-yarn +gatb-core perl-uri-ws py-pymatgen r-yulab-utils +gate perl-want py-pymatreader r-zcompositions +gatepet2stir perl-www-form-urlencoded py-pymbolic r-zeallot +gatetools perl-www-robotrules py-pymc3 r-zip +gatk perl-xml-dom py-pymdown-extensions r-zlibbioc +gau2grid perl-xml-dom-xpath py-pymeeus r-zoo +gaudi perl-xml-filter-buffertext py-pyminifier r3d +gaussian perl-xml-hash-xs py-pymol rabbitmq +gaussian-view perl-xml-libxml py-pymongo rabbitmq-c +gauxc perl-xml-libxslt py-pymoo racket +gawk perl-xml-namespacesupport py-pymorph racon +gbl perl-xml-parser py-pympler raft +gblocks perl-xml-parser-lite py-pymsgbox ragel +gcc perl-xml-quote py-pymummer raja +gcc-runtime perl-xml-regexp py-pymumps raja-perf +gccmakedep perl-xml-sax py-pymupdf ramulator +gccxml perl-xml-sax-base py-pymupdf-fonts randfold +gchp perl-xml-sax-writer py-pymysql random123 +gcta perl-xml-semanticdiff py-pynacl randrproto +gdal perl-xml-simple py-pynio range-v3 +gdb perl-xml-twig py-pynisher rank-run +gdbm perl-xml-writer py-pynn rankstr +gdk-pixbuf perl-xml-xpath py-pynndescent rapidjson +gdl perl-xml-xpathengine py-pynpm raptor2 +gdrcopy perl-yaml py-pynrrd rarpd +geant3 perl-yaml-libyaml py-pynucleus rasdaemon +geant4 perl-yaml-syck py-pynumpress rasqal +geant4-data perl-yaml-tiny py-pynvim ratel +geant4-vmc pestpp py-pynvml ravel +geany petaca py-pynvtx raxml +gearshifft petsc py-pyodbc raxml-ng +gegelati pexsi py-pyogrio ray +gegl pfapack py-pyomo rayleigh +gem5 pfft py-pyopencl raylib +gemma pfind py-pyopengl rccl +gemmlowp pflare py-pyopenssl rccl-tests +genemark-et pflask py-pypar rclone +generalbrokenlines pflogger py-pyparsing rdc +generate-ninja pflotran py-pypdf rdkit +generax pfunit py-pypdf2 rdma-core +genesis pgdspider py-pypeflow rdp-classifier +genfit pgplot py-pypeg2 rdptools +gengeo ph5concat py-pyperclip re2 +gengetopt phantompeakqualtools py-pyperf re2c +genie pharokka py-pypinfo readfq +genomefinisher phast py-pypinyin readline +genometools phasta py-pypistats realm +genomeworks phist py-pypng recola +genrich phoenix py-pyppeteer recola-sm +geode photos py-pyprecice recon +geoip-api-c photos-f py-pyprof2html recorder +geomodel photospline py-pyproj recordproto +geos php py-pyproject-hooks redis +getorganelle phrap-crossmatch-swat py-pyproject-metadata redis-ai +gettext phred py-pyproject-parser redis-plus-plus +gexiv2 phylip py-pypulse reditools +gfal2 phylobayesmpi py-pyqi redland +gfal2-util phyluce py-pyqt-builder redland-bindings +gfan picard py-pyqt4 redset +gffcompare picsar py-pyqt5 redundans +gffread picsarlite py-pyqt5-sip reframe +gflags pidx py-pyqt6 regale +gfsio pig py-pyqt6-sip regcm +gftl pigz py-pyqtgraph regenie +gftl-shared pika py-pyquaternion regtools +ggml pika-algorithms py-pyreadline relax +gh pilercr py-pyrect relion +ghex pilon py-pyrevolve remhos +ghost pindel py-pyrfr rempi +ghostscript pinentry py-pyro-api rename +ghostscript-fonts pinfo py-pyro-ppl rendercheck +giblib pioman py-pyro4 renderproto +giflib pipework py-pyroaring repeatafterme +gimp pipx py-pyrocko repeatmasker +ginac piranha py-pyrodigal repeatmodeler +ginkgo pism py-pyrodigal-gv repeatscout +giraph pixman py-pyrometheus reprimand +git pixz py-pyrr resolve +git-annex pkg-config py-pyrsistent resourceproto +git-fat-git pkgconf py-pysam restic +git-filter-repo pktools py-pyscaf revbayes +git-imerge planck-likelihood py-pyscf revocap-coupler +git-lfs plantuml py-pyscipopt revocap-refiner +gitconddb plasma py-pyscreeze rgb +givaro plink py-pyseer rhash +gl2ps plink-ng py-pyserial rinetd +glab plink2 py-pysftp ripgrep +glew plog py-pyshacl riscv-gnu-toolchain +glfmultiples ploticus py-pyshp rivet +glfw plplot py-pyside2 rkcommon +glib plsm py-pysimdjson rkt-base +glib-bootstrap plumed py-pysindy rkt-cext-lib +glib-networking ply py-pysmartdl rkt-compiler-lib +glibc pmdk py-pysmiles rkt-dynext-lib +glibmm pmemkv py-pysocks rkt-racket-lib +glimmer pmerge py-pysolar rkt-rackunit-lib +glm pmgr-collective py-pyspark rkt-scheme-lib +global pmix py-pyspellchecker rkt-testing-util-lib +globalarrays pmlib py-pyspice rkt-zo-lib +globus-callout pnfft py-pyspnego rlwrap +globus-common pngquant py-pyspoa rmats +globus-ftp-client pngwriter py-pyspod rmgdft +globus-ftp-control pnmpi py-pysqlite3 rmlab +globus-gass-copy poamsa py-pystac rna-seqc +globus-gass-transfer pocl py-pystac-client rnaquast +globus-gsi-callback podio py-pystache rnaz +globus-gsi-cert-utils podman py-pystan rng-tools +globus-gsi-credential podman-compose py-pysurfer rngstreams +globus-gsi-openssl-error poke py-pytablewriter rnpletal +globus-gsi-proxy-core polymake py-pytailf roary +globus-gsi-proxy-ssl polyml py-pytaridx rocal +globus-gsi-sysconfig polypolish py-pytecplot rocalution +globus-gss-assist poorjit py-pytesseract rocblas +globus-gssapi-error poplddecay py-pytest rocdecode +globus-gssapi-gsi poppler py-pytest-aiohttp rocfft +globus-io poppler-data py-pytest-allclose rocjpeg +globus-openssl-module popt py-pytest-arraydiff rocketmq +globus-xio porta py-pytest-astropy rocksdb +globus-xio-gsi-driver portage py-pytest-astropy-header rockstar +globus-xio-pipe-driver portcullis py-pytest-asyncio rocm-bandwidth-test +globus-xio-popen-driver ports-of-call py-pytest-benchmark rocm-clang-ocl +glog possvm py-pytest-cache rocm-cmake +gloo postgis py-pytest-check-links rocm-core +glow postgresql py-pytest-cmake rocm-dbgapi +glpk povray py-pytest-cov rocm-debug-agent +glproto powerapi py-pytest-cpp rocm-device-libs +gluegen powertop py-pytest-datadir rocm-examples +glusterfs ppl py-pytest-doctestplus rocm-gdb +glvis pplacer py-pytest-fail-slow rocm-opencl +glx ppopen-appl-amr-fdm py-pytest-filter-subpackage rocm-openmp-extras +gmake ppopen-appl-bem py-pytest-flake8 rocm-smi-lib +gmap-gsnap ppopen-appl-bem-at py-pytest-flakes rocm-tensile +gmic ppopen-appl-dem-util py-pytest-forked rocm-validation-suite +gmime ppopen-appl-fdm py-pytest-html rocminfo +gmodel ppopen-appl-fdm-at py-pytest-httpbin rocmlir +gmp ppopen-appl-fem py-pytest-isort rocprim +gmsh ppopen-appl-fvm py-pytest-lazy-fixture rocprofiler-compute +gmt ppopen-at py-pytest-memray rocprofiler-compute-viewer +gmtsar ppopen-math-mp py-pytest-metadata rocprofiler-dev +gnat ppopen-math-vis py-pytest-mock rocprofiler-register +gnds pprof py-pytest-mpi rocprofiler-sdk +gnina prank py-pytest-mypy rocprofiler-systems +gnome-common precice py-pytest-openfiles rocpydecode +gnuconfig predixy py-pytest-parallel rocrand +gnupg premake-core py-pytest-pep8 rocshmem +gnuplot presentproto py-pytest-pylint rocsolver +gnuradio preseq py-pytest-qt rocsparse +gnutls pressio-log py-pytest-random-order rocthrust +go pressio-ops py-pytest-regtest roctracer-dev +go-bootstrap pressio-rom py-pytest-remotedata roctracer-dev-api +go-md2man presto py-pytest-reportlog rocwmma +go-sh prettier py-pytest-retry rodinia +goaccess price py-pytest-runner roms +gobject-introspection prime95 py-pytest-socket root +goblin-hmc-sim primer3 py-pytest-subprocess roounfold +gocryptfs prinseq-lite py-pytest-timeout rosco +goimports printproto py-pytest-workflow rose +goma prism py-pytest-xdist ross +gomplate prmon py-python-benedict routinator +google-cloud-cli prng py-python-bioformats routino +google-cloud-cpp probconsrna py-python-box rpcsvc-proto +google-crc32c procenv py-python-calamine rpm +googletest process-in-process py-python-certifi-win32 rpp +gopls procps py-python-constraint rr +gosam-contrib procps-ng py-python-crfsuite rrdtool +goshimmer prod-util py-python-daemon rsbench +gotcha prodigal py-python-dateutil rsem +gource professor py-python-deprecated rsl +gpcnet profugusmc py-python-discovery rstart +gperf proj py-python-docs-theme rstudio +gperftools prokka py-python-docx rsync +gpgme prometheus py-python-dotenv rsyslog +gpi-2 prometheus-cpp py-python-editor rt-tests +gpi-space prophecy4f py-python-engineio rtags +gplates proteowizard py-python-fmask rtax +gprofng-gui protobuf py-python-fsutil rtmpdump +gprolog protobuf-c py-python-gitlab ruby +gptl proxymngr py-python-hostlist ruby-asciidoctor +gptune prrte py-python-igraph ruby-charlock-holmes +gpu-burn pruners-ninja py-python-javabridge ruby-erubis +gpuscout ps-lite py-python-jenkins ruby-gist +gqrx psalg py-python-jose ruby-gnuplot +gr-osmosdr psblas py-python-json-logger ruby-hpricot +grabix pscmc py-python-keystoneclient ruby-mustache +grace psi4 py-python-ldap ruby-narray +grackle psimd py-python-levenshtein ruby-rake +gradle psipred py-python-libsbml ruby-rdiscount +grads pslib py-python-logstash ruby-ronn +grafana psm py-python-louvain ruby-rubyinline +graph500 psmc py-python-lsp-jsonrpc ruby-svn2git +graphblast psrcat py-python-lsp-ruff ruby-terminal-table +graphicsmagick psrchive py-python-lsp-server ruby-thor +graphite2 psrdada py-python-lzo ruby-tmuxinator +graphlib pstreams py-python-magic ruby-unicode-display-width +graphmap pthreadpool py-python-mapnik ruby-xdg +graphviz pueue py-python-markdown-math ruby-zentest +grass pugixml py-python-memcached runc +graylog2-server puk py-python-multipart rust +green-mbpt pukabi py-python-mumps rust-bindgen +green-seet pulseaudio py-python-oauth2 rust-bootstrap +greenx pumgen py-python-picard rust-clap +grep pumi py-python-pptx s4pred +grib-util purify py-python-ptrace s5cmd +gribjump pv py-python-rapidjson sabre +grid pvm py-python-slugify saga-gis +gridlab-d pwgen py-python-socketio sage +gridtools pxz py-python-sotools sailfish +grnboost py-3to2 py-python-subunit salmon +groff py-4suite-xml py-python-swiftclient salmon-tddft +gromacs py-a2wsgi py-python-utils salome-configuration +gromacs-chain-coordinate py-abcpy py-python-xlib salome-medcoupling +gromacs-swaxs py-abipy py-python-xmp-toolkit saltfm +grpc py-about-time py-python3-openid sam2p +gsettings-desktop-schemas py-absl-py py-python3-xlib sambamba +gsi-ncdiag py-accelerate py-pythonqwt samblaster +gsibec py-accessible-pygments py-pythonsollya samrai +gsl py-accimage py-pythran samtools +gsl-lite py-acme-tiny py-pytimeparse samurai +gslib py-acres py-pytng sandbox +gsoap py-adal py-pytokens sandia-micro-benchmarks +gspell py-adb-enhanced py-pytoml sartre +gtfsort py-addict py-pytools sarus +gtk-doc py-adios py-pytorch-gradual-warmup-lr satsuma2 +gtkmm py-adios4dolfinx py-pytorch-lightning savanna +gtkorvo-atl py-advancedhtmlparser py-pytorch-sphinx-theme saws +gtkorvo-cercs-env py-aenum py-pytorch-warmup sbcl +gtkorvo-dill py-affine py-pyts sbcl-bootstrap +gtkorvo-enet py-agate py-pytuq sblim-sfcc +gtkplus py-agate-dbf py-pytweening sbml +gtksourceview py-agate-excel py-pytz sbp +gts py-agate-sql py-pyu2f sbt +guacamole-client py-ahpy py-pyudev scafacos +guacamole-server py-aiobotocore py-pyugrid scala +guidance py-aiocontextvars py-pyupgrade scalasca +guile py-aiodns py-pyusb scale +gunrock py-aiofiles py-pyutilib scallop +gurobi py-aiohappyeyeballs py-pyuwsgi scalpel +gvproxy py-aiohttp py-pyvcf scan-for-matches +gxsview py-aiohttp-cors py-pyvips scantailor +gzip py-aioitertools py-pyvista scc +h2database py-aiojobs py-pyvistaqt sccache +h5bench py-aioredis py-pyviz-comms scine-core +h5cpp py-aiosignal py-pyvolve scine-database +h5hut py-aiosqlite py-pywavelets scine-molassembler +h5part py-aiowebdav2 py-pywcs scine-qcmaquis +h5utils py-alabaster py-pywin32 scine-readuct +h5z-zfp py-albucore py-pywinpty scine-serenity +haccabana py-alembic py-pyworld scine-sparrow +hacckernels py-alive-progress py-pyxlsb scine-utilities +hackrf-host py-alpaca-eval py-pyyaml scine-xtb +hadoop py-alpaca-farm py-pyyaml-env-tag scipoptsuite +hadoop-xrootd py-alphafold py-pyzmq scitokens-cpp +hal py-altair py-qdldl scnlib +half py-altgraph py-qiskit-aer scons +halide py-amici py-qiskit-ibm-provider scorecard +hama py-amityping py-qiskit-nature scorep +hammer py-amplpy py-qiskit-terra scorpio +hapcut2 py-ampltools py-qmtest scotch +hapdip py-amqp py-qpsolvers scr +haploview py-amrex py-qpth screen +haproxy py-angel py-qrcode scripts +hard py-aniso8601 py-qsymm scrnsaverproto +hardlink py-anndata py-qtawesome scrot +harfbuzz py-annexremote py-qtconsole scs +harminv py-annotated-types py-qtpy sctk +hashcat py-annoy py-quantiphy sdl2 +haveged py-ansi2html py-quantities sdl2-image +hazelcast py-ansible py-quantum-blackbird sdl2-ttf +hbase py-ansimarkup py-quantum-xir sdsl-lite +hbm-dramsim2 py-ansiwrap py-quart seacas +hc py-antimeridian py-quast seacr +hcoll py-antipickle py-quaternionic seal +hdf py-antlr4-python3-runtime py-qudida sed +hdf-eos2 py-antspyx py-queryablelist sedacs +hdf-eos5 py-anuga py-querystring-parser seissol +hdf5 py-anvio py-questionary selalib +hdf5-blosc py-anybadge py-qutip semiprof +hdf5-vfd-gds py-anyio py-qutip-qip sendme +hdf5-vol-async py-anytree py-rachis sensei +hdf5-vol-cache py-anywidget py-radiant-mlhub sentencepiece +hdf5-vol-daos py-apache-libcloud py-radical-entk sentieon-genomics +hdf5-vol-external-passthrough py-apache-tvm-ffi py-radical-gtod sepp +hdf5-vol-log py-apebench py-radical-pilot seq-gen +hdfview py-apex py-radical-saga seqan +healpix-cxx py-apeye py-radical-utils seqfu +heaptrack py-apeye-core py-ranger-fm seqkit +heasoft py-apipkg py-rapidfuzz seqprep +heffte py-apispec py-rapidfuzz-capi seqtk +heimdall py-app-model py-rarfile serenity +helib py-appdirs py-rassumfrassum serenity-libint +helics py-applicationinsights py-rasterio serf +helm py-appnope py-rasterstats serialbox +help2man py-apprise py-ratelim sessreg +henson py-apptools py-ratelimiter setserial +hepmc py-apscheduler py-raven setxkbmap +hepmc3 py-arcgis py-ray sfcgal +hepmcanalysis py-arch py-rbtools sfcio +heppdt py-archspec py-rdflib sfml +heputils py-arcp py-rdflib-jsonld sga +hermes py-argcomplete py-rdt sgpp +hermes-shm py-argh py-reacton shadow +herwig3 py-argon2-cffi py-readchar shadowenv +herwigpp py-argon2-cffi-bindings py-readme-renderer shamrock +hevea py-argparse-dataclass py-recommonmark shapeit +heyoka py-argparse-manpage py-redis shapeit4 +hh-suite py-args py-referencing shapelib +hibench py-arkouda py-refgenconf shapemapper +hicolor-icon-theme py-arm-pyart py-refgenie shared-mime-info +hicops py-arpeggio py-regex shark +hicup py-arrow py-regionmask shc +highfive py-art py-regions sheenbidi +highway py-arviz py-reindent shellcheck +highwayhash py-asciitree py-relion shengbte +hiop py-asdf py-relion-blush sherpa +hip py-asdf-astropy py-relion-classranker shiro +hip-tensor py-asdf-coordinates-schemas py-repligit shocklibs +hip-tests py-asdf-standard py-reportlab shoremap +hipace py-asdf-transform-schemas py-reportseff shortstack +hipblas py-asdf-unit-schemas py-repoze-lru showfont +hipblas-common py-asdfghjkl py-reproject shred +hipblaslt py-ase py-requests shtns +hipcc py-asgi-lifespan py-requests-cache shtools +hipcub py-asgiref py-requests-file shuffile +hipdnn py-asn1crypto py-requests-ftp sicer2 +hipfft py-aspy-yaml py-requests-futures sickle +hipfort py-asserts py-requests-kerberos sicm +hipify-clang py-ast-serialize py-requests-mock siesta +hiprand py-asteval py-requests-ntlm sigcpp +hipsolver py-astor py-requests-oauthlib sigio +hipsparse py-astpretty py-requests-toolbelt signalp +hipsparselt py-astroid py-requests-unixsocket signify +hipsycl py-astropy py-requirements-parser silo +hiptt py-astropy-healpix py-reretry simde +hiredis py-astropy-helpers py-resampy simdjson +hisat2 py-astropy-iers-data py-resize-right simgrid +hisea py-asttokens py-resolvelib simmetrix-simmodsuite +hive py-astunparse py-responses simple-dftd3 +hivex py-async-generator py-resultsfile simplemoc +hmmer py-async-lru py-retry simsipm +hohqmesh py-async-timeout py-retry-decorator simul +homer py-asyncio py-retrying simulationio +hoomd-blue py-asyncpg py-retworkx sina +hoppet py-asynctest py-rfc3339-validator singular-factory +hotspot py-atomicwrites py-rfc3986 singularity-eos +hp2p py-atpublic py-rfc3986-validator singularity-hpc +hpc-beeflow py-atropos py-rfc3987-syntax singularityce +hpcc py-ats py-rich sio +hpccg py-attmap py-rich-argparse sionlib +hpcg py-attrs py-rich-click sirius +hpckit py-audioread py-rio-pmtiles sjpeg +hpctoolkit py-auditwheel py-rios skilion-onedrive +hpcviewer py-authlib py-rioxarray skopeo +hpcx-mpi py-autocfg py-rise sl +hpddm py-autodocsumm py-river slang +hpgmg py-autograd py-rmm slate +hping py-autograd-gamma py-rnc2rng sleef +hpl py-automat py-robocrys slepc +hpx py-autopep8 py-robotframework slf4j +hpx-kokkos py-autoray py-rocrate slirp4netns +hpx5 py-autoreject py-roifile sloccount +hsa-amd-aqlprofile py-auxlib py-roman-numerals slurm +hsa-rocr-dev py-avro py-roman-numerals-py slurm-drmaa +hsakmt py-avro-json-serializer py-rope smalt +hsakmt-roct py-avro-python3 py-rosdep smartdenovo +hsf-cmaketools py-awesome-slugify py-rosdistro smartmontools +hssp py-awkward py-rosinstall smee-client +hstr py-awkward-cpp py-rosinstall-generator smof +hto4l py-awkward0 py-rospkg smproxy +htop py-awscrt py-rotary-embedding-torch snakemake +htslib py-ax-platform py-rouge-score snap +http-get py-azote py-routes snap-berkeley +http-load py-azure-batch py-rpds-py snap-korf +http-parser py-azure-cli-command-modules-nspkg py-rply snappy +http-ping py-azure-cli-core py-rpy2 snbone +http-post py-azure-cli-nspkg py-rsa sniffles +httpd py-azure-cli-telemetry py-rsatoolbox snpeff +httperf py-azure-common py-rseqc snphylo +httpie py-azure-core py-rst2pdf snptest +httping py-azure-cosmos py-rtoml soapdenovo-trans +httpress py-azure-datalake-store py-rtree soapdenovo2 +hub py-azure-functions-devops-build py-ruamel-ordereddict socat +hudi py-azure-graphrbac py-ruamel-yaml soci +hugo py-azure-identity py-ruamel-yaml-clib sofa-c +hunspell py-azure-keyvault py-ruamel-yaml-jinja2 sollya +hw-probe py-azure-keyvault-certificates py-rucio-clients solr +hwdata py-azure-keyvault-keys py-ruff somatic-sniper +hwloc py-azure-keyvault-nspkg py-rustworkx sombrero +hwmalloc py-azure-keyvault-secrets py-rx sonlib +hybpiper py-azure-loganalytics py-s3cmd sopt +hybrid-lambda py-azure-mgmt-advisor py-s3fs soqt +hybridsim py-azure-mgmt-apimanagement py-s3transfer sortmerna +hycom py-azure-mgmt-appconfiguration py-sacrebleu sos +hydra py-azure-mgmt-applicationinsights py-sacremoses sosflow +hydrogen py-azure-mgmt-authorization py-safe-netrc source-highlight +hypar py-azure-mgmt-batch py-safetensors sourmash +hyperfine py-azure-mgmt-batchai py-salib sowing +hyperqueue py-azure-mgmt-billing py-sarif-tools sox +hyperscan py-azure-mgmt-botservice py-scandir sp +hyphen py-azure-mgmt-cdn py-scanpy spaceranger +hyphy py-azure-mgmt-cognitiveservices py-schema spack +hypre py-azure-mgmt-compute py-schema-salad spack-configs-dav-sdk +hypre-cmake py-azure-mgmt-consumption py-scientificpython spack-configs-facilities +hypredrive py-azure-mgmt-containerinstance py-scifem spack-configs-tools-sdk +hztool py-azure-mgmt-containerregistry py-scikit-build spades +i3 py-azure-mgmt-containerservice py-scikit-build-core span-lite +ibm-databroker py-azure-mgmt-core py-scikit-fmm spark +ibmisc py-azure-mgmt-cosmosdb py-scikit-fuzzy sparse +icarus py-azure-mgmt-datalake-analytics py-scikit-image sparsehash +iceauth py-azure-mgmt-datalake-store py-scikit-learn sparskit +icedtea py-azure-mgmt-datamigration py-scikit-learn-extra sparta +icet py-azure-mgmt-deploymentmanager py-scikit-matter spath +icey py-azure-mgmt-devtestlabs py-scikit-optimize spatialdata +ico py-azure-mgmt-dns py-scikit-sparse spatter +icon py-azure-mgmt-eventgrid py-scikits-odes spdk +icu4c py-azure-mgmt-eventhub py-scine-chemoton spdlog +id3lib py-azure-mgmt-hdinsight py-scine-puffin specfem3d-globe +idba py-azure-mgmt-imagebuilder py-scinum spectra +idg py-azure-mgmt-iotcentral py-scipy spectre +idl py-azure-mgmt-iothub py-scitokens spectrum-mpi +iegenlib py-azure-mgmt-iothubprovisioningservices py-scooby speex +ignite py-azure-mgmt-keyvault py-scoop speexdsp +igprof py-azure-mgmt-kusto py-scp sperr +igraph py-azure-mgmt-loganalytics py-screed spfft +igv py-azure-mgmt-managedservices py-scs spglib +igvtools py-azure-mgmt-managementgroups py-sdmetrics sph2pipe +ike-scan py-azure-mgmt-maps py-sdnotify spherepack +ilmbase py-azure-mgmt-marketplaceordering py-sdv sphexa +ima-evm-utils py-azure-mgmt-media py-seaborn spindle +imagemagick py-azure-mgmt-monitor py-secretstorage spiner +imake py-azure-mgmt-msi py-seekpath spiral-package-fftx +imath py-azure-mgmt-netapp py-segmentation-models-pytorch spiral-package-hcol +imgui py-azure-mgmt-network py-selenium spiral-package-jit +imlib2 py-azure-mgmt-nspkg py-semantic-version spiral-package-mpi +imod py-azure-mgmt-policyinsights py-semver spiral-package-simt +imp py-azure-mgmt-privatedns py-send2trash spiral-software +impalajit py-azure-mgmt-rdbms py-sentencepiece spla +improved-rdock py-azure-mgmt-recoveryservices py-sentry-sdk spm +impute2 py-azure-mgmt-recoveryservicesbackup py-seqeval spot +indicators py-azure-mgmt-redhatopenshift py-sequence-models sprng +infernal py-azure-mgmt-redis py-seriate sqlcipher +influxdb py-azure-mgmt-relay py-serpent sqlite +iniparser py-azure-mgmt-reservations py-session-info sqlite-jdbc +inputproto py-azure-mgmt-resource py-setproctitle sqlitebrowser +integratorxx py-azure-mgmt-search py-setupmeta sqoop +intel-gpu-tools py-azure-mgmt-security py-setuptools squashfs +intel-gtpin py-azure-mgmt-servicebus py-setuptools-cpp squashfs-mount +intel-llvm py-azure-mgmt-servicefabric py-setuptools-git squashfuse +intel-mlc py-azure-mgmt-signalr py-setuptools-git-versioning squid +intel-mpi-benchmarks py-azure-mgmt-sql py-setuptools-reproducible sra-tools +intel-oneapi-advisor py-azure-mgmt-sqlvirtualmachine py-setuptools-rust sratoolkit +intel-oneapi-ccl py-azure-mgmt-storage py-setuptools-scm srcml +intel-oneapi-compilers py-azure-mgmt-trafficmanager py-setuptools-scm-git-archive srcml-identifier-getter-tool +intel-oneapi-compilers-classic py-azure-mgmt-web py-sfepy srilm +intel-oneapi-dal py-azure-multiapi-storage py-sgp4 srm-ifce +intel-oneapi-dnn py-azure-nspkg py-sh sse2neon +intel-oneapi-dpct py-azure-storage-blob py-shap sshfs +intel-oneapi-dpl py-azure-storage-common py-shapely sshpass +intel-oneapi-inspector py-azure-storage-nspkg py-shellescape ssht +intel-oneapi-ipp py-b2luigi py-shellingham ssmtp +intel-oneapi-ippcp py-babel py-shiboken2 sspace-longread +intel-oneapi-itac py-backcall py-shippinglabel sspace-standard +intel-oneapi-mkl py-backoff py-shortbred sst-core +intel-oneapi-mpi py-backpack-for-pytorch py-shortuuid sst-dumpi +intel-oneapi-runtime py-backports-abc py-shroud sst-elements +intel-oneapi-tbb py-backports-cached-property py-shtab sst-macro +intel-oneapi-vpl py-backports-entry-points-selectable py-simpervisor sst-transports +intel-oneapi-vtune py-backports-lzma py-simple-slurm stacks +intel-pin py-backports-os py-simpleeval staden-io-lib +intel-tbb py-backports-ssl-match-hostname py-simplegeneric star +intel-xed py-backports-tarfile py-simplejson star-ccm-plus +interproscan py-backports-tempfile py-simplekml starlight +intltool py-backports-weakref py-simpletraj starpu +ioapi py-backports-zoneinfo py-simpy starship +ior py-bagit py-simsimd startup-notification +iotaa py-bagit-profile py-singledispatchmethod stat +iozone py-bakta py-sip stata +ip py-bandit py-six stc +ipcalc py-barectf py-skl2onnx stdexec +iperf2 py-basemap py-slepc4py steps +iperf3 py-bash-kernel py-slicer stinger +ipm py-basis-set-exchange py-slurm-pipeline storm +ipopt py-batchspawner py-smac stow +iproute2 py-bayesian-optimization py-smart-open strace +iptraf-ng py-bcbio-gff py-smartredis stream +iq-tree py-bcolz py-smartsim stress +irep py-bcrypt py-smartypants stress-ng +isa-l py-bdbag py-smmap stressapptest +isa-l-crypto py-beaker py-smolagents string-view-lite +isaac py-beancount py-smote-variants stringtie +isaac-server py-beartype py-snakemake-executor-plugin-azure-batch stripack +isc-dhcp py-beautifulsoup4 py-snakemake-executor-plugin-cluster-generic structure +iscdtoolbox-commons py-beniget py-snakemake-executor-plugin-cluster-sync strumpack +iscdtoolbox-elasticity py-bibtexparser py-snakemake-executor-plugin-drmaa su2 +isescan py-bidict py-snakemake-executor-plugin-flux sublime-text +isl py-bids-validator py-snakemake-executor-plugin-googlebatch subread +iso-codes py-bids-validator-deno py-snakemake-executor-plugin-kubernetes subversion +isoquant py-bidscoin py-snakemake-executor-plugin-slurm suite-sparse +ispc py-bidskit py-snakemake-executor-plugin-slurm-jobstep sumaclust +istio py-bidsschematools py-snakemake-executor-plugin-tes sumo +itensor py-bigdft py-snakemake-interface-common sundials +itk py-bigfloat py-snakemake-interface-executor-plugins suntans +itstool py-billiard py-snakemake-interface-logger-plugins superchic +itsx py-binary py-snakemake-interface-report-plugins superlu +iwyu py-binaryornot py-snakemake-interface-scheduler-plugins superlu-dist +jacamar-ci py-bintrees py-snakemake-interface-storage-plugins superlu-mt +jackcess py-binwalk py-snakemake-storage-plugin-azure supermagic +jafka py-biobb-common py-snakemake-storage-plugin-fs surfer +jags py-biobb-gromacs py-snakemake-storage-plugin-ftp survey +jali py-biobb-io py-snakemake-storage-plugin-gcs sw4 +jansi py-biobb-model py-snakemake-storage-plugin-http sw4lite +jansi-native py-biobb-structure-checking py-snakemake-storage-plugin-pelican swan +jansson py-biobb-structure-utils py-snakemake-storage-plugin-rucio swap-assembler +jasper py-bioblend py-snakemake-storage-plugin-s3 swarm +javafx py-biom-format py-snakemake-storage-plugin-sftp swfft +jbigkit py-biomine py-snakemake-storage-plugin-zenodo swftools +jblob py-biopandas py-snakeviz swiftsim +jchronoss py-biopython py-snappy swig +jdk py-biosppy py-sncosmo swipl +jedi-cmake py-biotite py-sniffio syclomatic +jellyfish py-biotraj py-snoop symengine +jemalloc py-bitarray py-snowballstemmer symlinks +jetty-project py-bitshuffle py-snuggs sympack +jhpcn-df py-bitstring py-sobol-seq sympol +jimtcl py-bitstruct py-social-auth-core sys-sage +jline3 py-black py-sonlib sysbench +jmol py-blake3 py-sortedcollections syscalc +jogl py-bleach py-sortedcontainers sysfsutils +jonquil py-blessed py-soundfile sysget +jose py-blessings py-soupsieve sysstat +jpegoptim py-blight py-soyclustering systemc +jq py-blinker py-spacy systemd +json-c py-blis py-spacy-legacy systemtap +json-cwx py-blosc py-spacy-loggers sz +json-fortran py-blosc2 py-spacy-models-en-core-web-sm sz-cpp +json-glib py-blosum py-spacy-models-en-vectors-web-lg sz3 +jsoncons py-bluepyefe py-sparse szauto +jsoncpp py-bluepyemodel py-spatialist szx +jsonnet py-bluepyopt py-spatialite t8code +jstorm py-bmap-tools py-spatialpandas tabix +jube py-bmtk py-spdlog tajo +judy py-bokeh py-spectra talass +jujutsu py-boltons py-spectral talloc +julea py-boom-boot-manager py-speech-recognition talosctl +julia py-boost-histogram py-spefile tamaas +jump py-boto py-spgl1 tandem +junit4 py-boto3 py-spglib tangram +just py-botocore py-spherical tantan +justbuild py-botorch py-sphericart tar +jwt-cpp py-bottle py-sphericart-torch targetp +jxrlib-debian py-bottleneck py-sphinx task +k8 py-bqplot py-sphinx-argparse taskd +kadath py-braceexpand py-sphinx-autodoc-typehints taskflow +kafka py-brain-indexer py-sphinx-basic-ng tasmanian +kagen py-branca py-sphinx-book-theme tassel +kahip py-bravado py-sphinx-bootstrap-theme tau +kaiju py-bravado-core py-sphinx-click tauola +kakoune py-breakseq2 py-sphinx-copybutton tb-lmto +kakoune-lsp py-breathe py-sphinx-design tbl2asn +kaks-calculator py-brian py-sphinx-fortran tblite +kaldi py-brian2 py-sphinx-gallery tcl +kalign py-brotli py-sphinx-github-changelog tcl-bwidget +kallisto py-brotlipy py-sphinx-immaterial tcl-itcl +karma py-bsddb3 py-sphinx-jinja2-compat tcl-tcllib +kassiopeia py-build py-sphinx-multiversion tcl-tclxml +kbd py-bx-python py-sphinx-prompt tcl-togl +kbproto py-cachecontrol py-sphinx-removed-in tclap +kcov py-cached-property py-sphinx-rtd-dark-mode tcoffee +kdiff3 py-cachetools py-sphinx-rtd-theme tcpdump +kea py-cachey py-sphinx-tabs tcptrace +kealib py-cachy py-sphinx-theme-builder tcsh +keepalived py-cairocffi py-sphinx-toolbox tdengine +keepassxc py-cairosvg py-sphinxautomodapi tealeaf +kenlm py-caliper-reader py-sphinxcontrib-applehelp tecio +kentutils py-callmonitor py-sphinxcontrib-bibtex teckit +keyutils py-calver py-sphinxcontrib-devhelp tecplot +khmer py-cantoolz py-sphinxcontrib-htmlhelp telegraf +kibana py-carputils py-sphinxcontrib-issuetracker telocal +kicad py-cartopy py-sphinxcontrib-jquery tempestextremes +kim-api py-casadi py-sphinxcontrib-jsmath tempestremap +kinesis py-catalogue py-sphinxcontrib-mermaid templight +kineto py-catkin-pkg py-sphinxcontrib-moderncmakedomain templight-tools +kitty py-cattrs py-sphinxcontrib-napoleon tempo +kmergenie py-cbor2 py-sphinxcontrib-plantuml tengine +kmod py-cclib py-sphinxcontrib-programoutput tensorflow-serving-client +knem py-cdo py-sphinxcontrib-qthelp tensorpipe +kokkos py-cdsapi py-sphinxcontrib-serializinghtml termcap +kokkos-fft py-cekit py-sphinxcontrib-spelling terminalimageviewer +kokkos-kernels py-celery py-sphinxcontrib-tikz tesseract +kokkos-nvcc-wrapper py-cellprofiler py-sphinxcontrib-trio test-drive +kokkos-tools py-cellprofiler-core py-sphinxcontrib-websupport tests-sos +koliop py-centrosome py-sphinxemoji testu01 +kraken py-cerberus py-sphobjinv tetgen +kraken2 py-certifi py-spykeutils tethex +krakenuniq py-certipy py-spython tetranscripts +krb5 py-cf-units py-sqlalchemy texi2html +krims py-cf-xarray py-sqlalchemy-migrate texinfo +kripke py-cffconvert py-sqlalchemy-stubs texlive +kubectl py-cffi py-sqlalchemy-utils texstudio +kubernetes py-cfgrib py-sqlitedict textparser +kumi py-cfgv py-sqlparse tfel +kvasir-mpl py-cftime py-srsly the-platinum-searcher +kvtree py-cgen py-sseclient the-silver-searcher +kylin py-chai py-sshtunnel theia-ide +kynema py-chai-lab py-sspilib thepeg +kynema-driver py-chainer py-stack-data thermo4pfm +kynema-fmb py-chainforgecodegen py-starfile thesis +kynema-sgf py-chainmap py-starlette thornado-mini +kynema-ugf py-chalice py-starlette-context thrift +kyotocabinet py-chardet py-starsessions thrust +ladot py-charm4py py-stashcp thunar +laghos py-charset-normalizer py-statmorph thunar-volman +lame py-chart-studio py-statsmodels tidy-html5 +lammps py-cheap-repr py-stdlib-list tig +lammps-example-plugin py-checkm-genome py-stestr tiled-mm +landsfcutil py-cheetah3 py-stevedore time +lanl-cmake-modules py-chemfiles py-stomp-py timedatex +lapackpp py-chemiscope py-stopit timemory +last py-cheroot py-storm timew +lastz py-cherrypy py-stratify tini +laszip py-chex py-strawberryfields tinker +latex2html py-choreographer py-streamlit tiny-tensor-compiler +latte py-chronyk py-stringzilla tinycbor +launchmon py-ci-info py-striprtf tinygltf +laynii py-ci-sdr py-stsci-distutils tinyobjloader +lazygit py-cig-pythia py-stui tinyxml +lazyten py-cinema-lib py-submitit tinyxml2 +lbann py-cinemasci py-subrosa tioga +lbfgspp py-circus py-subword-nmt tippecanoe +lbxproxy py-citeproc-py py-supermercado tiptop +lc-framework py-clarabel py-superqt tiramisu +lcals py-clean-text py-supervisor tix +lcc py-cleo py-svgpath tixi +lcgenv py-click py-svgpathtools tk +lci py-click-didyoumean py-svgutils tkrzw +lcio py-click-option-group py-svgwrite tl-expected +lcms py-click-plugins py-swagger-spec-validator tldd +lcov py-click-repl py-symengine tmalign +ldak py-cligj py-symfit tmhmm +ldc py-clikit py-sympy tmscore +ldc-bootstrap py-climate py-syned tmux +ldsc py-climax py-sysrsync tnftp +lean4 py-clint py-systemd-python tofu-ls +legion py-clip-anytorch py-tabledata tomcat +lemon py-clipboard py-tables toml-f +leptonica py-cloudauthz py-tabulate toml11 +lerc py-cloudbridge py-tatsu tomlplusplus +less py-cloudpathlib py-tblib topaz +lesstif py-cloudpickle py-tbparse topaz-3dem +leveldb py-clustershell py-tcolorpy topcom +lfortran py-cma py-tempita tophat +lftp py-cmaes py-templateflow torch-scatter +lhapdf py-cmake-format py-tempora torque +lhapdf5 py-cmake-parser py-tenacity totalview +lhapdfsets py-cmocean py-tensorboard toybox +libabigail py-cmseq py-tensorboard-data-server tpm2-tss +libaec py-cmsml py-tensorboard-plugin-wit tracer +libaio py-cmyt py-tensorboardx tracy +libao py-coapthon3 py-tensorflow tracy-client +libapplewm py-coca-pytorch py-tensorflow-datasets tramonto +libapreq2 py-coclust py-tensorflow-estimator transabyss +libarchive py-codebasin py-tensorflow-hub transdecoder +libasr py-codecarbon py-tensorflow-metadata transferbench +libassuan py-codechecker py-tensorflow-probability transposome +libatasmart py-codepy py-tensorly transrate +libatomic-ops py-codespell py-tensorstore transset +libavif py-coherent-licensed py-termcolor trapproto +libbacktrace py-coilmq py-termgraph tree +libbeagle py-colabtools py-terminado tree-sitter +libbeato py-colorama py-terminaltables treelite +libbeef py-colorcet py-tern treesub +libbigwig py-colorclass py-tesorter trexio +libbinio py-colored py-testfixtures trf +libblastrampoline py-colored-traceback py-testinfra triangle +libbsd py-coloredlogs py-testpath trident +libbson py-colorful py-testrepository trilinos +libbytesize py-colorio py-testresources trilinos-catalyst-ioss-adapter +libcanberra py-colorlog py-testscenarios trimal +libcap py-colorlover py-testtools trimgalore +libcap-ng py-colormath py-tetoolkit trimmomatic +libcatalyst py-colorpy py-text-unidecode trinity +libceed py-colorspacious py-textblob trinotate +libcerf py-colossalai py-texttable trivy +libcgroup py-colour py-textual trnascan-se +libcifpp py-comm py-textual-fspicker trng +libcint py-common py-textual-plotext trompeloeil +libcircle py-commonmark py-textwrap3 truchas +libconfig py-conan py-textx tskit +libconfuse py-conda-inject py-tf-keras tsne-cuda +libcroco py-conda-souschef py-tf2onnx tulip +libctl py-confection py-tfdlpack tumbler +libcudf py-configargparse py-theano turbine +libcuml py-configobj py-thewalrus turbomole +libcumlprims py-configparser py-thinc turbovnc +libcxi py-configspace py-thop turnserver +libcxxwrap-julia py-confluent-kafka py-threadpoolctl twm +libcyaml py-connectionpool py-throttler tycho2 +libdaemon py-consolekit py-tidynamics typescript +libdap4 py-constantly py-tifffile typhon +libdatrie py-contextily py-tiktoken typhonio +libdc1394 py-contextlib2 py-tilelang typos +libde265 py-contexttimer py-timezonefinder typst +libdeflate py-continuum py-timm ucc +libdicom py-contourpy py-tinyarray uchardet +libdisplay-info py-contrib py-tinycss2 ucsc-bedclip +libdistributed py-control py-tinydb ucsc-bedgraphtobigwig +libdivsufsort py-convertdate py-tinyrecord ucx +libdmx py-convokit py-tld udunits +libdrm py-cookiecutter py-tldextract ufo-core +libdwarf py-coolname py-tmtools ufo-filters +libeatmydata py-copulas py-tokenize-rt ufs-utils +libecpint py-corner py-tokenizers ufs-weather-model +libedit py-correctionlib py-toml uftrace +libefence py-corrfunc py-tomli umap +libelf py-counter py-tomli-w umesimd +libemos py-courlan py-tomlkit umoci +libepoxy py-cov-core py-tomopy umpire +libestr py-coverage py-toolz unblur +libev py-coveralls py-topiary-asr uncrustify +libevdev py-cppheaderparser py-toposort unibilium +libevent py-cppy py-torch unifdef +libevpath py-cramjam py-torch-c-dlpack-ext unifyfs +libexif py-crashtest py-torch-cluster unigen +libfabric py-crc32c py-torch-fidelity unison +libfastcommon py-crcmod py-torch-geometric units +libfastjson py-croniter py-torch-harmonics units-llnl +libffi py-crossmap py-torch-nvidia-apex unittest-cpp +libffs py-cryolobm py-torch-scatter universal +libfirefly py-cryptography py-torch-sparse universal-ctags +libfive py-css-parser py-torch-spex unixodbc +libflame py-cssselect py-torch-spline-conv unqlite +libfms py-cssselect2 py-torchaudio unrar +libfontenc py-cssutils py-torchbenchmark unuran +libfort py-csvkit py-torchdata unzip +libfs py-ctgan py-torchdiffeq upcxx +libftdi py-cuda-bindings py-torchfile upp +libfuse py-cuda-core py-torchgeo uqtk +libfyaml py-cuda-pathfinder py-torchmeta uriparser +libgain py-cudf py-torchmetrics usalign +libgcrypt py-cufflinks py-torchseg usbutils +libgd py-cuml py-torchsummary usearch +libgdsii py-cupy py-torchtext userspace-rcu +libgee py-current py-torchtoolbox ut +libgeopm py-currentscape py-torchvision utf8cpp +libgeopmd py-curryreader py-tornado utf8proc +libgeotiff py-curvlinops-for-pytorch py-tox uthash +libgff py-custodian py-toyplot util-linux +libgit2 py-custom-inherit py-toytree util-linux-uuid +libgit2-glib py-cutadapt py-tpot util-macros +libgpg-error py-cvxopt py-tqdm uvw +libgpiod py-cvxpy py-traceback2 uwtools +libgpuarray py-cwl-upgrader py-trafilatura vacuumms +libgridxc py-cwl-utils py-trainax vala +libgssglue py-cwltool py-traitlets valgrind +libgta py-cx-oracle py-traits valijson +libgtextutils py-cycler py-traitsui vampirtrace +libgtop py-cykhash py-traittypes vapor +libgudev py-cylc-flow py-trame vardictjava +libhandy py-cylc-rose py-trame-client variorum +libharu py-cylp py-trame-common varnish-cache +libhbaapi py-cymem py-trame-server varscan +libheif py-cyordereddict py-trame-vtk vasp +libhio py-cython py-trame-vuetify vbfnlo +libhugetlbfs py-cython-bbox py-transformer-engine vbz-compression +libiberty py-cyvcf2 py-transformers vc +libibumad py-d2to1 py-transforms3d vcftools +libical py-dace py-transonic vcsh +libicd py-dacite py-tree vde +libice py-dadi py-tree-math vdt +libiconv py-dalib py-tree-sitter veccore +libid3tag py-damask py-tree-sitter-c vecgeom +libidl py-darshan py-treehash veclibfort +libidn py-dasbus py-treelib vecmem +libidn2 py-dash py-triangle vectorclass-version2 +libimagequant py-dash-bootstrap-components py-trieregex vegas2 +libimobiledevice py-dash-svg py-trimesh velero +libinih py-dask py-triton veloc +libint py-dask-awkward py-trl velvet +libisal py-dask-expr py-trojanzoo-sphinx-theme velvetoptimiser +libiscsi py-dask-glm py-trove-classifiers vep +libjpeg py-dask-histogram py-trx-python vep-cache +libjpeg-turbo py-dask-jobqueue py-tuiview verdict +libjson py-dask-ml py-tuspy verible +libjwt py-dask-mpi py-tuswsgi verilator +libjxl py-dask-sphinx-theme py-tweedledum verrou +libkcapi py-databricks-cli py-twine vesta +libkml py-dataclasses py-twisted vfkit +libksba py-dataclasses-json py-ty vgm +liblas py-datacube py-typed-ast videoproto +liblbfgs py-datalad py-typeguard viennarna +liblbxutil py-datalad-container py-typepy viewres +libleidenalg py-datalad-deprecated py-typer vifi +liblockfile py-datalad-hirni py-types-dataclasses vigra +liblognorm py-datalad-metadata-model py-types-geopandas vim +liblouis py-datalad-metalad py-types-pkg-resources vir-simd +libluv py-datalad-neuroimaging py-types-psutil virtualgl +liblzf py-datalad-webapp py-types-python-dateutil visit +libmacaroons py-dataproperty py-types-pytz visit-cgns +libmad py-datasets py-types-pyyaml visit-ffp +libmatheval py-datashader py-types-requests visit-mfem +libmaus2 py-datatrove py-types-setuptools visit-silo +libmaxminddb py-dateparser py-types-shapely visit-unv +libmbim py-dateutils py-types-tqdm viskores +libmcfp py-datrie py-types-typed-ast vite +libmcrypt py-dbf py-types-urllib3 vizglow +libmd py-dbfread py-typesentry vmatch +libmesh py-dcm2bids py-typeshed-client vmc +libmetalink py-dcmstack py-typing-extensions vmd +libmetatensor py-deap py-typing-inspect volk +libmetatensor-torch py-debtcollector py-typing-inspection voms +libmetatomic-torch py-debugpy py-typish voropp +libmicrodns py-decorator py-tzdata votca +libmicrohttpd py-deepdiff py-tzlocal vpfft +libmmtf-cpp py-deepecho py-ubiquerg vpic +libmng py-deephyper py-uc-micro-py vsearch +libmnl py-deepmerge py-ucsf-pyem vsftpd +libmo-unpack py-deepsig-biocomp py-ucx-py vt +libmodbus py-deepspeed py-uhi vtable-dumper +libmolgrid py-deeptools py-ujson vtk +libmonitor py-deeptoolsintervals py-ultralytics vtk-h +libmpdclient py-defusedxml py-umalqurra vtk-m +libmypaint py-deisa py-umap-learn vvtest +libnbc py-deisa-core py-umi-tools w3emc +libndp py-deisa-dask py-uncertainties w3m +libnet py-demjson py-uncertainty-toolbox w3nco +libnetfilter-conntrack py-dendropy py-unfoldnd wannier90 +libnetfilter-cthelper py-deprecat py-unicycler warpx +libnetfilter-cttimeout py-deprecated py-unidecode wasi-sdk-prebuilt +libnetfilter-queue py-deprecation py-unittest2py3k watch +libnetworkit py-deprecation-alias py-universal-pathlib wayland +libnfnetlink py-derivative py-unshare wayland-protocols +libnfs py-descartes py-unyt wcs +libnfsidmap py-devito py-update-checker wcslib +libnftnl py-devlib py-uproot webbench +libnids py-dgl py-uproot3 weechat +libnl py-dh-scikit-optimize py-uproot3-methods weighttp +libnotify py-diagnostic py-uqinn wget +libnova py-dict2css py-uri-template wgl +libnrm py-dictdiffer py-uritemplate wgrib2 +libnsl py-dictobj py-url-normalize wgsim +libogg py-dill py-urllib3 which +liboldx py-dinosaur py-urllib3-secure-extra whip +libopts py-dipy py-urwid whizard +libp11 py-dirtyjson py-us wi4mpi +libpam py-disbatch py-userpath win-file +libpaper py-discover py-usgs win-gpg +libpcap py-diskcache py-utils win-sdk +libpciaccess py-dist-meta py-uv win-wdk +libpfm4 py-distance py-uv-build winbison +libpipeline py-distlib py-uv-dynamic-versioning windowswmproto +libplist py-distributed py-uvicorn wiredtiger +libpmemobj-cpp py-distro py-uvloop wireshark +libpng py-django py-uvw wise2 +libpostal py-dlcpar py-uwsgi wonton +libpressio py-dm-haiku py-uxarray wordnet +libpressio-adios1 py-dm-tree py-validate-pyproject wps +libpressio-adios2 py-dnaio py-validators wrf +libpressio-dataset py-dnspython py-vascpy wrf-io +libpressio-errorinjector py-docker py-vcf-kit wrk +libpressio-jit py-dockerpy-creds py-vcrpy wsmancli +libpressio-nvcomp py-docket py-vcstool wt +libpressio-opt py-docopt py-vcstools wtdbg2 +libpressio-predict py-docopt-ng py-vcversioner wxparaver +libpressio-rmetric py-docstring-parser py-vector wxpropgrid +libpressio-sperr py-docstring-to-markdown py-vector-quantize-pytorch wxwidgets +libpressio-tools py-docutils py-vermin x11perf +libpressio-tthresh py-docutils-stubs py-vermouth-martinize x264 +libproxy py-dogpile-cache py-versioneer xabclib +libpsl py-doit py-versioneer-518 xalan-c +libpsm3 py-dolfinx-mpc py-versioningit xapian-core +libpsml py-dom-toml py-verspec xauth +libpspio py-domdf-python-tools py-vesin xbacklight +libpthread-stubs py-dominate py-vine xbae +libpulsar py-donfig py-virtualenv xbiff +libqglviewer py-dotmap py-virtualenv-clone xbitmaps +libqrencode py-dotnetcore2 py-virtualenvwrapper xbraid +libquo py-downhill py-visdom xcalc +libraqm py-doxypypy py-vispy xcb-demo +libraw1394 py-dpath py-vl-convert-python xcb-proto +librdkafka py-drep py-voluptuous xcb-util +librelp py-drmaa py-vsc-base xcb-util-cursor +libreproc py-dryscrape py-vsc-install xcb-util-errors +libressl py-duecredit py-vsts xcb-util-image +libristra py-dulwich py-vsts-cd-manager xcb-util-keysyms +librmm py-dunamai py-wadler-lindig xcb-util-renderutil +librom py-dvc py-waitress xcb-util-wm +librsb py-dxchange py-walinuxagent xcb-util-xrm +librsvg py-dxfile py-wand xcdf +librtlsdr py-dynaconf py-wandb xcfun +librttopo py-dynim py-warcio xclip +libsakura py-earth2mip py-warlock xclipboard +libsamplerate py-earthengine-api py-wasabi xclock +libseccomp py-easybuild-easyblocks py-watchdog xcmiscproto +libsecret py-easybuild-easyconfigs py-watchfiles xcmsdb +libsegfault py-easybuild-framework py-waterdynamics xcompmgr +libsharp py-eccodes py-waves xconsole +libshm py-ecdsa py-wcsaxes xcrysden +libsigcpp py-ecmwf-opendata py-wcwidth xcursor-themes +libsignal-protocol-c py-ecmwflibs py-webargs xcursorgen +libsigsegv py-ecos py-webcolors xdbedizzy +libsixel py-edam-ontology py-webdataset xdelta +libslirp py-edffile py-webdavclient3 xditview +libsm py-edfio py-webencodings xdm +libsmeagol py-edflib-python py-webkit-server xdmf3 +libsndfile py-editables py-weblogo xdotool +libsodium py-editdistance py-webob xdpyinfo +libsolv py-edlib py-websocket-client xdriinfo +libspatialindex py-eeglabio py-websockets xedit +libspatialite py-eerepr py-werkzeug xeniumranger +libspiro py-efel py-wesanderson xerces-c +libsplash py-efficientnet-pytorch py-wget xeus +libspng py-eg py-whatshap xev +libssh py-eigenpy py-wheel xextproto +libssh2 py-einconv py-whenever xeyes +libstdcompat py-einops py-whey xf86bigfontproto +libsvm py-elastic-transport py-whey-pth xf86dga +libszip py-elasticsearch py-whichcraft xf86dgaproto +libtar py-elasticsearch-dsl py-whoosh xf86driproto +libtasn1 py-elecsolver py-widgetsnbextension xf86miscproto +libtermkey py-elephant py-wids xf86rushproto +libthai py-elevation py-wigners xf86vidmodeproto +libtheora py-ema-pytorch py-win-unicode-console xfce4-appfinder +libtiff py-email-validator py-wincertstore xfce4-core +libtirpc py-embedding-reader py-word2number xfce4-panel +libtlx py-emcee py-wordcloud xfce4-session +libtomlc99 py-emoji py-workload-automation xfce4-settings +libtommath py-empy py-wradlib xfconf +libtool py-entrypoints py-wrapt xfd +libtorrent py-enum-tools py-wsproto xfdesktop +libtraceevent py-envisage py-wstool xfindproxy +libtree py-ephem py-wub xfontsel +libuecc py-eprosima-fastdds py-wurlitzer xforms +libunistring py-epydoc py-ww xfs +libunwind py-equation py-wxflow xfsdump +liburcu py-equinox py-wxmplot xfsinfo +liburing py-espresso py-wxpython xfsprogs +libusb py-espressopp py-x-clip xfwm4 +libusbmuxd py-et-xmlfile py-x21 xfwp +libuser py-ete3 py-xanadu-cloud-client xgamma +libuv py-etelemetry py-xarray xgboost +libuv-julia py-etils py-xarray-regrid xgc +libva py-eval-type-backport py-xarray-tensorstore xhmm +libvdwxc py-evaluate py-xattr xhost +libverto py-eventlet py-xcdat xictools +libvips py-evodiff py-xdot xineramaproto +libvorbis py-ewah-bool-utils py-xenv xinit +libvori py-exarl py-xesmf xinput +libvpx py-exceptiongroup py-xgboost xios +libvterm py-execnet py-xgcm xkbcomp +libwebp py-executing py-xhistogram xkbdata +libwebsockets py-exhale py-xlrd xkbevd +libwhich py-exifread py-xlsxwriter xkbprint +libwindowswm py-exodus-bundler py-xlwt xkbutils +libwmf py-expandvars py-xmlplain xkeyboard-config +libwnck py-expecttest py-xmlrunner xkill +libx11 py-exponax py-xmltodict xl +libxau py-extension-helpers py-xonsh xload +libxaw py-extras py-xopen xlogo +libxaw3d py-ez-setup py-xpyb xlsatoms +libxc py-f90nml py-xskillscore xlsclients +libxcb py-f90wrap py-xtb xlsfonts +libxcomposite py-fabric py-xvfbwrapper xmag +libxcrypt py-fabric3 py-xxhash xman +libxcursor py-fair-esm py-xyzservices xmessage +libxcvt py-fairscale py-yacman xmh +libxdamage py-faker py-yacs xmlf90 +libxdmcp py-fakeredis py-yahmm xmlrpc-c +libxevie py-falcon py-yajl xmlto +libxext py-fallocate py-yamlreader xmodmap +libxfce4ui py-fastai py-yapf xmore +libxfce4util py-fastaindex py-yarl xnedit +libxfixes py-fastapi py-yaspin xnnpack +libxfont py-fastapi-utils py-yolk3k xolotl +libxfont2 py-fastavro py-your xorg-cf-files +libxfontcache py-fastcache py-youtube-dl xorg-docs +libxft py-fastcluster py-yq xorg-gtest +libxi py-fastcore py-yt xorg-server +libxinerama py-fastcov py-yt-dlp xorg-sgml-doctools +libxkbcommon py-fastdownload py-yt-dlp-ejs xorgproto +libxkbfile py-fastdtw py-yte xphelloworld +libxkbui py-fasteners py-ytopt xplor-nih +libxml2 py-fastfold py-ytopt-autotune xplsprinters +libxmu py-fastjsonschema py-z3-solver xpmem +libxp py-fastobo py-zarr xpr +libxpm py-fastpath py-zc-buildout xprehashprinterlist +libxpresent py-fastprogress py-zc-lockfile xprop +libxprintapputil py-fastremap py-zensical xproperty +libxprintutil py-fastrlock py-zfit xproto +libxrandr py-fasttext-numpy2 py-zfit-interface xproxymanagementprotocol +libxrender py-fasttext-numpy2-wheel py-zfit-physics xqilla +libxres py-faust-cchardet py-zict xrandr +libxscrnsaver py-fava py-zipfile-deflate64 xrdb +libxshmfence py-fenics-basix py-zipp xrdcl-record +libxslt py-fenics-dijitso py-zipstream-new xrefresh +libxsmm py-fenics-dolfinx py-zope-event xrootd +libxstream py-fenics-ffc py-zope-interface xrx +libxt py-fenics-ffcx py-zstandard xsbench +libxtrap py-fenics-fiat py-zxcvbn xscope +libxtst py-fenics-instant pygmo xsd +libxv py-fenics-ufl pypy xsdk +libxvmc py-fenics-ufl-legacy pypy-bootstrap xset +libxxf86dga py-ffmpy pyrefly xsetmode +libxxf86misc py-fief-client pystring xsetpointer +libxxf86vm py-file-magic pythia6 xsetroot +libyaml py-filecheck pythia8 xsimd +libyogrt py-filelock python xsm +libzip py-filemagic python-venv xstdcmap +libzmq py-filetype q-e-sirius xtb +liftoff py-filterpy qb3 xtcdata +liggghts py-find-libpython qca xtensor +lighttpd py-findlibs qcachegrind xtensor-blas +ligra py-fiona qcat xtensor-python +likwid py-fire qctool xterm +lima py-fireworks qd xtl +linaro-forge py-fiscalyear qemacs xtrans +linkphase3 py-fisher qemu xtrap +linktest py-fits-tools qgis xts +linsys-v py-fitsio qgraf xv +linux-external-modules py-fitter qhull xvidtune +linux-headers py-fixtures qjson xvinfo +linux-pam py-flake8 qmcpack xwd +linux-perf py-flake8-import-order qmd-progress xwidgets +lis py-flake8-polyfill qnnpack xwininfo +listres py-flaky qorts xwud +litestream py-flameprof qoz xxd-standalone +lizard py-flash-attn qpdf xxdiff +lksctp-tools py-flask qperf xxhash +llama-cpp py-flask-babel qrmumps xyce +llhttp py-flask-compress qrupdate xz +llvm py-flask-cors qscintilla yade +llvm-amdgpu py-flask-paginate qt yafyaml +llvm-doe py-flask-restful qt-5compat yajl +llvm-openmp py-flask-socketio qt-base yaksa +llvm-openmp-ompt py-flask-sqlalchemy qt-creator yambo +lm-sensors py-flatbuffers qt-declarative yaml-cpp +lmbench py-flatten-dict qt-quick3d yamlfmt +lmdb py-flawfinder qt-quicktimeline yara +lmod py-flax qt-shadertools yarn +lndir py-flexcache qt-svg yasm +lodepng py-flexmock qt-tools ycruncher +log4c py-flexparser qtgraph ycsb +log4cplus py-flexx qthreads yoda +log4cpp py-flit qtkeychain yorick +log4cxx py-flit-core qtltools yosys +logrotate py-flit-scm qualimap yq +logstash py-flox quandary yyjson +loki py-flufl-lock quantum-espresso z-checker +looptools py-fluiddyn quartz z3 +lordec py-fluidfft qucs zabbix +lorene py-fluidfft-builder quda zerosum +lp-solve py-fluidfft-fftw quest zfp +lrose-core py-fluidfft-fftwmpi quickjs zfs +lrslib py-fluidfft-mpi-with-fftw quicksilver ziatest +lrzip py-fluidfft-p3dfft quo-vadis zig +lsd py-fluidfft-pfft quota zip +lsf py-fluidsim qwt zipkin +lshw py-fluidsim-core qwtpolar zlib +lsof py-flye r zlib-ng +lsquic py-fn-py r-a4 zoltan +lsscsi py-folium r-a4base zookeeper +ltp py-fonttools r-a4classif zookeeper-benchmark +ltr-retriever py-ford r-a4core zopfli +ltrace py-formatizer r-a4preproc zoxide +lua py-formulaic r-a4reporting zpares +lua-bit32 py-fortls r-abadata zpp +lua-bitlib py-fortran-language-server r-abaenrichment zsh +lua-ffi py-fortranformat r-abind zstd +lua-lpeg py-fparser r-absseq zstr +lua-luafilesystem py-fprettify r-acde zuo +lua-luajit py-fqdn r-acepack zycore-c +lua-luajit-openresty py-fracridge r-acgh zydis +lua-luaposix py-fraction r-acme zziplib +==> 8900 packages diff --git a/outputs/basics/tcl-zlib-hash.out b/outputs/basics/tcl-zlib-hash.out deleted file mode 100644 index e0873bb44..000000000 --- a/outputs/basics/tcl-zlib-hash.out +++ /dev/null @@ -1 +0,0 @@ -$ spack install tcl ^/slh diff --git a/outputs/basics/trilinos.out b/outputs/basics/trilinos.out index 87efe5fee..3b561a40f 100644 --- a/outputs/basics/trilinos.out +++ b/outputs/basics/trilinos.out @@ -9,5 +9,5 @@ $ spack install trilinos [+] 7kdghmr openblas@0.3.33 /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.33-7kdghmrs2gv3hijtczxgksuak43u6vsh (0s) [+] 5zilkuz kokkos-kernels@5.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-5.1.1-5zilkuzvnsxj6abvzudjlshewffiatse (0s) [ ] u43pchx trilinos@17.1.1 fetching from build cache (0s) -[ ] u43pchx trilinos@17.1.1 relocating (1s) +[ ] 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 (1s) diff --git a/outputs/basics/zlib-2.0.7.out b/outputs/basics/zlib-2.0.7.out index e2778da7d..d25cf6b56 100644 --- a/outputs/basics/zlib-2.0.7.out +++ b/outputs/basics/zlib-2.0.7.out @@ -2,7 +2,7 @@ $ spack install zlib-ng@2.0.7 [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 (1s) +[+] 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-gcc-10.out b/outputs/basics/zlib-gcc-14.out similarity index 100% rename from outputs/basics/zlib-gcc-10.out rename to outputs/basics/zlib-gcc-14.out diff --git a/tutorial_basics.rst b/tutorial_basics.rst index b95975842..d2a4c7909 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -115,7 +115,7 @@ The Spec Syntax --------------- So far we've installed packages with their default configuration. -Spack's *spec syntax* is the interface by which we can request specific configurations of a package. +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. We express each kind of constraint with its own sigil -- ``@`` for versions, ``+`` and ``~`` for variants, ``%`` for direct dependencies such as compilers, and ``^`` for dependencies anywhere in the graph. The subsections below introduce these one at a time, building up from a bare package name to fully constrained dependency graphs. @@ -130,31 +130,39 @@ Before installing a specific version, let's check which versions of ``zlib-ng`` .. literalinclude:: outputs/basics/versions-zlib.out :language: spec -The ``@`` sigil is used to specify versions. +We select one with the ``@`` sigil: .. literalinclude:: outputs/basics/zlib-2.0.7.out :language: spec +The ``@`` 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. + ^^^^^^^^ Variants ^^^^^^^^ -Besides versions, packages expose build options called variants. -Boolean variants are toggled with the ``+`` (enable) and ``~`` or ``-`` (disable) sigils. -There are two sigils for "disable" to avoid conflicts with shell parsing in different situations. -For example, ``zlib-ng`` has an ``ipo`` variant that enables interprocedural optimization, which we turn on with ``+ipo``. +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 + +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-ipo.out :language: spec Not every variant is boolean. -Some take a value, which we set with the same ``name=value`` syntax used for compiler flags. +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/zlib-build-type.out :language: spec -The ``ipo`` and ``build_type`` options come from zlib-ng's CMake build system, so requesting either one builds it with CMake rather than its default Autotools build. +Some variants are *conditional*: the indented ``when`` lines in the ``spack info`` output mark them. +Here ``build_type``, ``generator``, and ``ipo`` are available only ``when build_system=cmake`` -- that is, when zlib-ng is built with CMake instead of Autotools. +Requesting one of them, as we just did with ``+ipo``, therefore also selects the CMake build system. ^^^^^^^^^^^^^^^^^^^ Direct Dependencies @@ -163,63 +171,71 @@ Direct Dependencies The ``%`` sigil specifies a direct dependency of the package we're installing. The most common direct dependency is a compiler -- every package built from source needs one -- so that is what we will use ``%`` for first. So far we've let Spack choose the compiler, building ``zlib-ng`` with GCC just as we did for gmake. -This time we'll install it with ``%clang`` to build it with the clang compiler instead. +This time we'll build it with Clang instead, using ``%clang``: .. literalinclude:: outputs/basics/zlib-clang.out :language: spec -Notice that this installation is located separately from the previous one. +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. -The spec syntax is recursive -- any syntax we can specify for the "root" package we can also use for a dependency. -For example, because a compiler is just another dependency, we can pin the version Spack builds with: +**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/zlib-gcc-10.out +.. literalinclude:: outputs/basics/zlib-gcc-14.out :language: spec ^^^^^^^^^^^^^^^^^^^^^^^ Transitive Dependencies ^^^^^^^^^^^^^^^^^^^^^^^ -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. +So far we've installed packages with few dependencies of their own. +``tcl`` is our first package with a runtime dependency -- it depends on ``zlib-ng``. +Let's preview what will be installed with ``spack spec``: -.. literalinclude:: outputs/basics/tcl.out +.. literalinclude:: outputs/basics/spec-tcl.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 ``^``. +This is the *concretized* spec. +Spack has filled in every dependency, along with its version, variants, and compiler. +Now let's install it: -.. literalinclude:: outputs/basics/tcl-zlib-clang.out +.. literalinclude:: outputs/basics/tcl.out :language: spec -We can also refer to packages from the command line by their hash. -Spack generates a unique hash for each spec, reflecting its complete provenance. -Any change to the spec -- such as compiler version, build options, or dependencies -- results in a different hash, and Spack uses these hashes to give every configuration its own installation directory. -Each build of zlib-ng we installed therefore has a distinct hash. -Instead of typing out the entire spec, we can depend on a specific build -- for example our ``zlib-ng %gcc@14`` build -- by using the ``/`` sigil followed by its hash. +By default, Spack installs from a binary cache when it can, rather than building from source. +In the plan above, ``[+]`` marks specs that are already installed, ``[e]`` those provided externally by the system, and ``[b]`` those available in a cache but not yet installed. +So although the plan lists ``zlib-ng`` and several other packages, installing ``tcl`` fetched only ``tcl`` from the cache: its runtime dependency ``zlib-ng`` was already installed and reused, while the build-only dependencies a source build needs (such as ``gmake``) are skipped for a prebuilt binary. -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. +The ``^`` sigil can constrain any dependency of a root spec, whether direct or transitive. +For example, let's build ``tcl`` against a ``zlib-ng`` compiled with Clang, previewing again to see how Spack resolves it: -.. literalinclude:: outputs/basics/tcl-zlib-hash.out +.. literalinclude:: outputs/basics/spec-tcl-zlib-clang.out :language: spec -The ``spack find`` command can take a ``-d`` flag, which shows dependency information. -Note that each package has a top-level entry, even if it also appears as a dependency. +Notice 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`` itself keeps the default compiler. +Installing executes that plan: -.. literalinclude:: outputs/basics/find-ldf.out +.. literalinclude:: outputs/basics/tcl-zlib-clang.out + :language: spec + +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/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 +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. + ^^^^^^^^^^^^^^^^^^^^ Virtual Dependencies ^^^^^^^^^^^^^^^^^^^^ @@ -228,7 +244,7 @@ Let's move on to a more complicated package. HDF5 is a good example: it depends on MPI, but ``mpi`` is not an ordinary package. It is a *virtual package* -- an interface that several real packages provide -- and Spack handles dependencies on such interfaces through "virtual dependencies". -Because HDF5 is more involved than the packages we've installed so far, let's preview the concretized install plan before building, using the ``spack spec`` command (which accepts the same spec syntax as ``spack install``). +Because HDF5 is more involved than the packages we've installed so far, let's preview its concretized install plan with ``spack spec`` before building. .. literalinclude:: outputs/basics/hdf5-spec.out :language: spec From d0dd4912540a3c48083ec98c4d1b082fffd3e0ad Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 16 Jun 2026 23:06:23 +0200 Subject: [PATCH 15/26] Fix "Transitive Dependencies" --- outputs/basics.sh | 3 ++- tutorial_basics.rst | 39 ++++++++++++++++----------------------- 2 files changed, 18 insertions(+), 24 deletions(-) diff --git a/outputs/basics.sh b/outputs/basics.sh index cfad950dc..65672e468 100755 --- a/outputs/basics.sh +++ b/outputs/basics.sh @@ -50,7 +50,8 @@ example --tee basics/zlib-build-type "spack install zlib-ng build_type=Debug" example --tee basics/zlib-clang "spack install zlib-ng %clang" example --tee basics/zlib-gcc-14 "spack install zlib-ng %gcc@14" -example basics/spec-tcl "spack spec -l tcl" +# tcl.out is no longer shown in the prose, but the default tcl install is kept: +# the Uninstalling section needs multiple tcl configurations installed. example --tee basics/tcl "spack install tcl" 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" diff --git a/tutorial_basics.rst b/tutorial_basics.rst index d2a4c7909..7ee0f62dd 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -189,37 +189,29 @@ For example, since a compiler is just another dependency, we can pin its version Transitive Dependencies ^^^^^^^^^^^^^^^^^^^^^^^ -So far we've installed packages with few dependencies of their own. -``tcl`` is our first package with a runtime dependency -- it depends on ``zlib-ng``. -Let's preview what will be installed with ``spack spec``: - -.. literalinclude:: outputs/basics/spec-tcl.out - :language: spec - -This is the *concretized* spec. -Spack has filled in every dependency, along with its version, variants, and compiler. -Now let's install it: - -.. literalinclude:: outputs/basics/tcl.out - :language: spec - -By default, Spack installs from a binary cache when it can, rather than building from source. -In the plan above, ``[+]`` marks specs that are already installed, ``[e]`` those provided externally by the system, and ``[b]`` those available in a cache but not yet installed. -So although the plan lists ``zlib-ng`` and several other packages, installing ``tcl`` fetched only ``tcl`` from the cache: its runtime dependency ``zlib-ng`` was already installed and reused, while the build-only dependencies a source build needs (such as ``gmake``) are skipped for a prebuilt binary. - The ``^`` sigil can constrain any dependency of a root spec, whether direct or transitive. -For example, let's build ``tcl`` against a ``zlib-ng`` compiled with Clang, previewing again to see how Spack resolves it: + +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 a request on that ``zlib-ng`` using ``spack spec``; the ``-l`` flag adds each node's hash: .. literalinclude:: outputs/basics/spec-tcl-zlib-clang.out :language: spec -Notice 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`` itself keeps the default compiler. -Installing executes that plan: +This is the *concretized* spec: Spack has filled in every dependency, along with its version, variants, and compiler. +In the output, ``[+]`` marks specs already installed, ``[e]`` those provided externally by the system, and ``[b]`` those available in a cache but not yet installed. +Notice also that ``%`` binds to the spec it follows. +Because ``%clang`` comes after ``^zlib-ng@2.0.7``, only ``zlib-ng`` is built with Clang, while ``tcl`` keeps the default compiler. + +Now let's install it: .. literalinclude:: outputs/basics/tcl-zlib-clang.out :language: spec -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. +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: @@ -228,7 +220,8 @@ For example, rather than writing ``^zlib-ng@2.0.7 %clang`` again, we can point ` 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 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 From 7f90404dff8f40f488511cab5904d6d62a0c6c62 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Wed, 17 Jun 2026 00:23:50 +0200 Subject: [PATCH 16/26] Fix "Virtual Dependencies" --- outputs/basics.sh | 26 +- outputs/basics/clone.out | 4 +- outputs/basics/find-d-trilinos.out | 102 --- outputs/basics/find-dep-mpich.out | 5 +- outputs/basics/find-ldf-2.out | 707 ------------------ outputs/basics/find-lf.out | 7 +- outputs/basics/find-px.out | 6 +- outputs/basics/find.out | 7 +- outputs/basics/gmake.out | 8 +- outputs/basics/graph-trilinos.out | 586 --------------- .../{hdf5-hl-mpi.out => hdf5-mpich.out} | 6 +- outputs/basics/hdf5-no-mpi.out | 2 +- outputs/basics/hdf5.out | 24 +- outputs/basics/install-gcc-16.out | 8 +- outputs/basics/tcl-zlib-clang.out | 2 +- outputs/basics/trilinos-hdf5.out | 4 +- outputs/basics/trilinos.out | 12 +- outputs/basics/zlib-2.0.7.out | 2 +- outputs/basics/zlib-clang.out | 2 +- tutorial_basics.rst | 144 ++-- 20 files changed, 115 insertions(+), 1549 deletions(-) delete mode 100644 outputs/basics/find-d-trilinos.out delete mode 100644 outputs/basics/find-ldf-2.out delete mode 100644 outputs/basics/graph-trilinos.out rename outputs/basics/{hdf5-hl-mpi.out => hdf5-mpich.out} (81%) diff --git a/outputs/basics.sh b/outputs/basics.sh index 65672e468..65ba63794 100755 --- a/outputs/basics.sh +++ b/outputs/basics.sh @@ -37,8 +37,8 @@ example basics/mirror "spack mirror add --unsigned tutorial /mirror" # NOTE: specs reordered (spec-syntax subsections regrouped; querying moved to its # own section after the spec syntax; zlib-ng variant examples added; hdf5 moved to -# the virtual-dependencies block; spack info added to Variants). Outputs under -# outputs/basics/ need regeneration. +# the virtual-dependencies block; spack info added to Variants; trilinos moved to its own +# section after Querying). Outputs under outputs/basics/ need regeneration. example basics/versions-zlib "spack versions zlib-ng" example --tee basics/zlib-2.0.7 "spack install zlib-ng@2.0.7" @@ -65,28 +65,26 @@ example basics/find-ldf "spack find -ldf" example basics/graph-tcl "spack graph tcl" +example basics/providers-mpi "spack providers mpi" example basics/hdf5-spec "spack spec hdf5" example --tee basics/hdf5 "spack install hdf5" example --tee basics/hdf5-no-mpi "spack install hdf5~mpi" -example --tee basics/hdf5-hl-mpi "spack install hdf5+hl+mpi ^mpich" +example --tee basics/hdf5-mpich "spack install hdf5 ^mpich" +example basics/spec-hdf5-compilers "spack spec hdf5 %c,cxx=clang %fortran=gcc" -example basics/find-ldf-2 "spack find -ldf" - -example --tee basics/trilinos "spack install trilinos" - -example --tee basics/trilinos-hdf5 "spack install trilinos +hdf5 ^hdf5+hl+mpi ^mpich" - -example basics/find-d-trilinos "spack find -d trilinos" - -example basics/graph-trilinos "spack graph trilinos" - -# Querying Installations (now its own doc section, after The Spec Syntax) +# Querying Installations (now its own doc section, after The Spec Syntax). These run +# BEFORE trilinos is installed, so their outputs reflect a pre-trilinos state. example basics/find "spack find" example basics/find-lf "spack find -l" example basics/find-dep-mpich "spack find ^mpich" example basics/find-px "spack find -px" +# A Realistic Example (Trilinos) -- its own doc section, after Querying, before Uninstalling. +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" + example basics/find-d-tcl "spack find -d tcl" example basics/find-zlib "spack find zlib-ng" diff --git a/outputs/basics/clone.out b/outputs/basics/clone.out index cee841226..b6ded176d 100644 --- a/outputs/basics/clone.out +++ b/outputs/basics/clone.out @@ -3,7 +3,7 @@ Cloning into '/home/spack/spack'... 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.1327i(delta8249),/pack-reused 0 (from 0)K -Receiving objects: 100% (2411/2411), 5.48 MiB | 8.24 MiB/s, done. +remote:nTotale2411 (delta2326),4reused 1327 (delta 249), pack-reused 0 (from 0)K +Receiving objects: 100% (2411/2411), 5.48 MiB | 12.31 MiB/s, done. Resolving deltas: 100% (326/326), done. $ cd ~/spack diff --git a/outputs/basics/find-d-trilinos.out b/outputs/basics/find-d-trilinos.out deleted file mode 100644 index 75ba237a5..000000000 --- a/outputs/basics/find-d-trilinos.out +++ /dev/null @@ -1,102 +0,0 @@ -$ spack find -d trilinos --- linux-ubuntu26.04-x86_64_v3 / %c,cxx,fortran=gcc@15.2.0 ------ -trilinos@17.1.1 - cmake@3.31.11 - curl@8.20.0 - nghttp2@1.67.1 - diffutils@3.12 - openssl@3.6.1 - ca-certificates-mozilla@2026-03-19 - ncurses@6.6 - zlib-ng@2.3.3 - compiler-wrapper@1.1.0 - gcc@15.2.0 - gcc-runtime@15.2.0 - glibc@2.43 - gmake@4.4.1 - hwloc@2.13.0 - libpciaccess@0.17 - util-macros@1.20.2 - libxml2@2.15.3 - libiconv@1.18 - xz@5.8.3 - pkgconf@2.5.1 - kokkos@5.1.1 - kokkos-kernels@5.1.1 - openblas@0.3.33 - openmpi@5.0.10 - autoconf@2.72 - m4@1.4.21 - libsigsegv@2.15 - automake@1.18.1 - libevent@2.1.12 - libtool@2.5.4 - file@5.46 - zstd@1.5.7 - findutils@4.10.0 - gettext@1.0 - tar@1.35 - pigz@2.8 - numactl@2.0.19 - openssh@10.3p1 - krb5@1.22.2 - bison@3.8.2 - libedit@3.1-20251016 - libxcrypt@4.5.2 - perl@5.42.0 - berkeley-db@18.1.40 - bzip2@1.0.8 - gdbm@1.26 - readline@8.3 - less@692 - pmix@6.1.0 - prrte@4.1.0 - flex@2.6.3 - -trilinos@17.1.1 - cmake@3.31.11 - curl@8.20.0 - nghttp2@1.67.1 - diffutils@3.12 - openssl@3.6.1 - ca-certificates-mozilla@2026-03-19 - perl@5.42.0 - berkeley-db@18.1.40 - less@692 - ncurses@6.6 - zlib-ng@2.3.3 - compiler-wrapper@1.1.0 - gcc@15.2.0 - gcc-runtime@15.2.0 - glibc@2.43 - gmake@4.4.1 - hdf5@1.14.6 - pkgconf@2.5.1 - hwloc@2.13.0 - libpciaccess@0.17 - util-macros@1.20.2 - libxml2@2.15.3 - libiconv@1.18 - xz@5.8.3 - kokkos@5.1.1 - kokkos-kernels@5.1.1 - mpich@5.0.1 - findutils@4.10.0 - gettext@1.0 - tar@1.35 - pigz@2.8 - libfabric@2.5.1 - python@3.14.5 - bzip2@1.0.8 - expat@2.8.1 - libbsd@0.12.2 - libmd@1.1.0 - gdbm@1.26 - libffi@3.5.2 - readline@8.3 - sqlite@3.53.1 - util-linux-uuid@2.41 - zstd@1.5.7 - openblas@0.3.33 - -==> 2 installed packages diff --git a/outputs/basics/find-dep-mpich.out b/outputs/basics/find-dep-mpich.out index 2ca11eee3..4a50dec50 100644 --- a/outputs/basics/find-dep-mpich.out +++ b/outputs/basics/find-dep-mpich.out @@ -1,7 +1,4 @@ $ 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 +==> 1 installed package diff --git a/outputs/basics/find-ldf-2.out b/outputs/basics/find-ldf-2.out deleted file mode 100644 index 02a0b6c60..000000000 --- a/outputs/basics/find-ldf-2.out +++ /dev/null @@ -1,707 +0,0 @@ -$ spack find -ldf --- 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 -mmywg7x compiler-wrapper@1.1.0 -punbqrx findutils@4.10.0 -sle3ix4 gettext@1.0 -f5xe4px tar@1.35 -afklka7 pigz@2.8 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -ujctyey hwloc@2.13.0 -ekvivpv ncurses@6.6 -itb4a2s libfabric@2.5.1 -qzkk5ym libpciaccess@0.17 -o5fy6wf util-macros@1.20.2 -ujlg2ua libxml2@2.15.3 -vbwvgwx libiconv@1.18 -hhjyyqy xz@5.8.3 -g72d7i3 zlib-ng@2.3.3 -yvl6jpi pkgconf@2.5.1 -derywaq python@3.14.5 -cbtgjrh bzip2@1.0.8 -ao2onuz diffutils@3.12 -d462mhw expat@2.8.1 -7o3mv6c libbsd@0.12.2 -yvvn7mu libmd@1.1.0 -cq4dkuc gdbm@1.26 -aiceosz libffi@3.5.2 -33yozp5 openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -bvphs3b perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -ohmdb2l less@692 -k25xiih readline@8.3 -unjd5da sqlite@3.53.1 -clufswx util-linux-uuid@2.41 -63aruxk zstd@1.5.7 - -qfut5qq openmpi@5.0.10 -jo3eg4r autoconf@2.72 -y6uqrto m4@1.4.21 -ao2onuz diffutils@3.12 -phcmfqk libsigsegv@2.15 -yhkgfai automake@1.18.1 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -ujctyey hwloc@2.13.0 -qzkk5ym libpciaccess@0.17 -o5fy6wf util-macros@1.20.2 -ujlg2ua libxml2@2.15.3 -vbwvgwx libiconv@1.18 -hhjyyqy xz@5.8.3 -ekvivpv ncurses@6.6 -oopqoag libevent@2.1.12 -33yozp5 openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -3gdq456 libtool@2.5.4 -mguwetc file@5.46 -63aruxk zstd@1.5.7 -punbqrx findutils@4.10.0 -sle3ix4 gettext@1.0 -f5xe4px tar@1.35 -afklka7 pigz@2.8 -2t2useu numactl@2.0.19 -m6yx5j3 openssh@10.3p1 -ldqeqfw krb5@1.22.2 -lbkegpi bison@3.8.2 -uwyh3xy libedit@3.1-20251016 -bkzcu2s libxcrypt@4.5.2 -bvphs3b perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cbtgjrh bzip2@1.0.8 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -yvl6jpi pkgconf@2.5.1 -ycyqykw pmix@6.1.0 -nldxmxw prrte@4.1.0 -vwo3ajm flex@2.6.3 -g72d7i3 zlib-ng@2.3.3 - - --- linux-ubuntu26.04-x86_64_v3 / %c,cxx=clang@21.1.8 ------------ -kie72sp zlib-ng@2.0.7 -mmywg7x compiler-wrapper@1.1.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -px4mv6l llvm@21.1.8 - -5dji3nx zlib-ng@2.3.3 -mmywg7x compiler-wrapper@1.1.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -px4mv6l llvm@21.1.8 - - --- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- -slhcf4i zlib-ng@2.3.3 -mmywg7x compiler-wrapper@1.1.0 -5zrvmb3 gcc@14.3.0 -xm76mt3 gcc-runtime@15.2.0 -yjlog5x gcc@15.2.0 -yc4n2pp glibc@2.43 -ofpkua6 gmake@4.4.1 - - --- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- -sle3ix4 gettext@1.0 -cbtgjrh bzip2@1.0.8 -ao2onuz diffutils@3.12 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -vbwvgwx libiconv@1.18 -ujlg2ua libxml2@2.15.3 -yvl6jpi pkgconf@2.5.1 -g72d7i3 zlib-ng@2.3.3 -ekvivpv ncurses@6.6 -f5xe4px tar@1.35 -afklka7 pigz@2.8 -63aruxk zstd@1.5.7 -hhjyyqy xz@5.8.3 - -ujctyey hwloc@2.13.0 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -qzkk5ym libpciaccess@0.17 -o5fy6wf util-macros@1.20.2 -ujlg2ua libxml2@2.15.3 -vbwvgwx libiconv@1.18 -hhjyyqy xz@5.8.3 -g72d7i3 zlib-ng@2.3.3 -ekvivpv ncurses@6.6 -yvl6jpi pkgconf@2.5.1 - -ldqeqfw krb5@1.22.2 -lbkegpi bison@3.8.2 -y6uqrto m4@1.4.21 -phcmfqk libsigsegv@2.15 -mmywg7x compiler-wrapper@1.1.0 -ao2onuz diffutils@3.12 -vbwvgwx libiconv@1.18 -punbqrx findutils@4.10.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -sle3ix4 gettext@1.0 -cbtgjrh bzip2@1.0.8 -ujlg2ua libxml2@2.15.3 -ekvivpv ncurses@6.6 -f5xe4px tar@1.35 -afklka7 pigz@2.8 -63aruxk zstd@1.5.7 -hhjyyqy xz@5.8.3 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -uwyh3xy libedit@3.1-20251016 -33yozp5 openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -g72d7i3 zlib-ng@2.3.3 -bvphs3b perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -yvl6jpi pkgconf@2.5.1 - -ekvivpv ncurses@6.6 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -yvl6jpi pkgconf@2.5.1 - -m6yx5j3 openssh@10.3p1 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -ldqeqfw krb5@1.22.2 -lbkegpi bison@3.8.2 -y6uqrto m4@1.4.21 -phcmfqk libsigsegv@2.15 -ao2onuz diffutils@3.12 -vbwvgwx libiconv@1.18 -punbqrx findutils@4.10.0 -sle3ix4 gettext@1.0 -cbtgjrh bzip2@1.0.8 -ujlg2ua libxml2@2.15.3 -f5xe4px tar@1.35 -afklka7 pigz@2.8 -63aruxk zstd@1.5.7 -hhjyyqy xz@5.8.3 -bvphs3b perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -yvl6jpi pkgconf@2.5.1 -uwyh3xy libedit@3.1-20251016 -bkzcu2s libxcrypt@4.5.2 -ekvivpv ncurses@6.6 -33yozp5 openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -g72d7i3 zlib-ng@2.3.3 - -33yozp5 openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -bvphs3b perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cbtgjrh bzip2@1.0.8 -ao2onuz diffutils@3.12 -vbwvgwx libiconv@1.18 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -ekvivpv ncurses@6.6 -yvl6jpi pkgconf@2.5.1 -g72d7i3 zlib-ng@2.3.3 - -53i7gbs tcl@8.6.17 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -kie72sp zlib-ng@2.0.7 -px4mv6l llvm@21.1.8 - -jmv6sxq tcl@8.6.17 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -ofpkua6 gmake@4.4.1 -5zrvmb3 gcc@14.3.0 -slhcf4i zlib-ng@2.3.3 - -aeoqp4e zlib-ng@2.0.7 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 - -g72d7i3 zlib-ng@2.3.3 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 - -t7jnrlg zlib-ng@2.3.3 -4hb3wtk cmake@3.31.11 -rt5ujla curl@8.20.0 -4lyasaz nghttp2@1.67.1 -ao2onuz diffutils@3.12 -vbwvgwx libiconv@1.18 -drmc4rl openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -ylggcb5 perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cbtgjrh bzip2@1.0.8 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -yvl6jpi pkgconf@2.5.1 -ekvivpv ncurses@6.6 -4vg46ge zlib@1.3.2 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 - -6l3ycpy zlib-ng@2.3.3 -4hb3wtk cmake@3.31.11 -rt5ujla curl@8.20.0 -4lyasaz nghttp2@1.67.1 -ao2onuz diffutils@3.12 -vbwvgwx libiconv@1.18 -drmc4rl openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -ylggcb5 perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cbtgjrh bzip2@1.0.8 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -yvl6jpi pkgconf@2.5.1 -ekvivpv ncurses@6.6 -4vg46ge zlib@1.3.2 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 - -63aruxk zstd@1.5.7 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 - - --- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ -cbtgjrh bzip2@1.0.8 -mmywg7x compiler-wrapper@1.1.0 -ao2onuz diffutils@3.12 -vbwvgwx libiconv@1.18 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 - -cdyuto2 gmake@4.4.1 -mmywg7x compiler-wrapper@1.1.0 -cl66sen gcc@15.2.0 -yhhe2we gcc-runtime@15.2.0 -ublhg65 glibc@2.43 - -as6mmcj hdf5@1.14.6 -a4wqsr7 cmake@3.31.11 -j2fa7xl curl@8.20.0 -4lyasaz nghttp2@1.67.1 -ao2onuz diffutils@3.12 -vbwvgwx libiconv@1.18 -33yozp5 openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -bvphs3b perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cbtgjrh bzip2@1.0.8 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -ekvivpv ncurses@6.6 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -yvl6jpi pkgconf@2.5.1 -g72d7i3 zlib-ng@2.3.3 - -7cwv3st hdf5@1.14.6 -a4wqsr7 cmake@3.31.11 -j2fa7xl curl@8.20.0 -4lyasaz nghttp2@1.67.1 -ao2onuz diffutils@3.12 -33yozp5 openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -ekvivpv ncurses@6.6 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -qfut5qq openmpi@5.0.10 -jo3eg4r autoconf@2.72 -y6uqrto m4@1.4.21 -phcmfqk libsigsegv@2.15 -yhkgfai automake@1.18.1 -ujctyey hwloc@2.13.0 -qzkk5ym libpciaccess@0.17 -o5fy6wf util-macros@1.20.2 -ujlg2ua libxml2@2.15.3 -vbwvgwx libiconv@1.18 -hhjyyqy xz@5.8.3 -oopqoag libevent@2.1.12 -3gdq456 libtool@2.5.4 -mguwetc file@5.46 -63aruxk zstd@1.5.7 -punbqrx findutils@4.10.0 -sle3ix4 gettext@1.0 -f5xe4px tar@1.35 -afklka7 pigz@2.8 -2t2useu numactl@2.0.19 -m6yx5j3 openssh@10.3p1 -ldqeqfw krb5@1.22.2 -lbkegpi bison@3.8.2 -uwyh3xy libedit@3.1-20251016 -bkzcu2s libxcrypt@4.5.2 -bvphs3b perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cbtgjrh bzip2@1.0.8 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -ycyqykw pmix@6.1.0 -nldxmxw prrte@4.1.0 -vwo3ajm flex@2.6.3 -yvl6jpi pkgconf@2.5.1 -g72d7i3 zlib-ng@2.3.3 - -jceyzq7 hdf5@1.14.6 -a4wqsr7 cmake@3.31.11 -j2fa7xl curl@8.20.0 -4lyasaz nghttp2@1.67.1 -ao2onuz diffutils@3.12 -33yozp5 openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -bvphs3b perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -ohmdb2l less@692 -ekvivpv ncurses@6.6 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -xkilhym mpich@5.0.1 -punbqrx findutils@4.10.0 -sle3ix4 gettext@1.0 -f5xe4px tar@1.35 -afklka7 pigz@2.8 -ujctyey hwloc@2.13.0 -itb4a2s libfabric@2.5.1 -qzkk5ym libpciaccess@0.17 -o5fy6wf util-macros@1.20.2 -ujlg2ua libxml2@2.15.3 -vbwvgwx libiconv@1.18 -hhjyyqy xz@5.8.3 -derywaq python@3.14.5 -cbtgjrh bzip2@1.0.8 -d462mhw expat@2.8.1 -7o3mv6c libbsd@0.12.2 -yvvn7mu libmd@1.1.0 -cq4dkuc gdbm@1.26 -aiceosz libffi@3.5.2 -k25xiih readline@8.3 -unjd5da sqlite@3.53.1 -clufswx util-linux-uuid@2.41 -63aruxk zstd@1.5.7 -yvl6jpi pkgconf@2.5.1 -g72d7i3 zlib-ng@2.3.3 - -uwyh3xy libedit@3.1-20251016 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -ekvivpv ncurses@6.6 -yvl6jpi pkgconf@2.5.1 - -oopqoag libevent@2.1.12 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -33yozp5 openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -bvphs3b perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cbtgjrh bzip2@1.0.8 -ao2onuz diffutils@3.12 -vbwvgwx libiconv@1.18 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -ekvivpv ncurses@6.6 -yvl6jpi pkgconf@2.5.1 -g72d7i3 zlib-ng@2.3.3 - -itb4a2s libfabric@2.5.1 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 - -vbwvgwx libiconv@1.18 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 - -qzkk5ym libpciaccess@0.17 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -yvl6jpi pkgconf@2.5.1 -o5fy6wf util-macros@1.20.2 - -bkzcu2s libxcrypt@4.5.2 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -bvphs3b perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cbtgjrh bzip2@1.0.8 -ao2onuz diffutils@3.12 -vbwvgwx libiconv@1.18 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -ekvivpv ncurses@6.6 -yvl6jpi pkgconf@2.5.1 -g72d7i3 zlib-ng@2.3.3 - -ujlg2ua libxml2@2.15.3 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -vbwvgwx libiconv@1.18 -yvl6jpi pkgconf@2.5.1 -hhjyyqy xz@5.8.3 -g72d7i3 zlib-ng@2.3.3 - -2t2useu numactl@2.0.19 -jo3eg4r autoconf@2.72 -bvphs3b perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cbtgjrh bzip2@1.0.8 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -ekvivpv ncurses@6.6 -yvl6jpi pkgconf@2.5.1 -g72d7i3 zlib-ng@2.3.3 -yhkgfai automake@1.18.1 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -3gdq456 libtool@2.5.4 -mguwetc file@5.46 -hhjyyqy xz@5.8.3 -63aruxk zstd@1.5.7 -punbqrx findutils@4.10.0 -sle3ix4 gettext@1.0 -ujlg2ua libxml2@2.15.3 -f5xe4px tar@1.35 -afklka7 pigz@2.8 -y6uqrto m4@1.4.21 -ao2onuz diffutils@3.12 -vbwvgwx libiconv@1.18 -phcmfqk libsigsegv@2.15 - -afklka7 pigz@2.8 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -g72d7i3 zlib-ng@2.3.3 - -yvl6jpi pkgconf@2.5.1 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 - -ycyqykw pmix@6.1.0 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -ujctyey hwloc@2.13.0 -qzkk5ym libpciaccess@0.17 -o5fy6wf util-macros@1.20.2 -ujlg2ua libxml2@2.15.3 -vbwvgwx libiconv@1.18 -hhjyyqy xz@5.8.3 -ekvivpv ncurses@6.6 -oopqoag libevent@2.1.12 -33yozp5 openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -bvphs3b perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -3gdq456 libtool@2.5.4 -mguwetc file@5.46 -cbtgjrh bzip2@1.0.8 -63aruxk zstd@1.5.7 -punbqrx findutils@4.10.0 -sle3ix4 gettext@1.0 -f5xe4px tar@1.35 -afklka7 pigz@2.8 -y6uqrto m4@1.4.21 -ao2onuz diffutils@3.12 -phcmfqk libsigsegv@2.15 -yvl6jpi pkgconf@2.5.1 -g72d7i3 zlib-ng@2.3.3 - -nldxmxw prrte@4.1.0 -jo3eg4r autoconf@2.72 -yhkgfai automake@1.18.1 -mmywg7x compiler-wrapper@1.1.0 -vwo3ajm flex@2.6.3 -lbkegpi bison@3.8.2 -ao2onuz diffutils@3.12 -vbwvgwx libiconv@1.18 -punbqrx findutils@4.10.0 -sle3ix4 gettext@1.0 -f5xe4px tar@1.35 -afklka7 pigz@2.8 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -ujctyey hwloc@2.13.0 -qzkk5ym libpciaccess@0.17 -o5fy6wf util-macros@1.20.2 -ujlg2ua libxml2@2.15.3 -hhjyyqy xz@5.8.3 -ekvivpv ncurses@6.6 -oopqoag libevent@2.1.12 -33yozp5 openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -3gdq456 libtool@2.5.4 -mguwetc file@5.46 -63aruxk zstd@1.5.7 -y6uqrto m4@1.4.21 -phcmfqk libsigsegv@2.15 -bvphs3b perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cbtgjrh bzip2@1.0.8 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -g72d7i3 zlib-ng@2.3.3 -yvl6jpi pkgconf@2.5.1 -ycyqykw pmix@6.1.0 - -f5xe4px tar@1.35 -cbtgjrh bzip2@1.0.8 -ao2onuz diffutils@3.12 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -vbwvgwx libiconv@1.18 -afklka7 pigz@2.8 -g72d7i3 zlib-ng@2.3.3 -hhjyyqy xz@5.8.3 -63aruxk zstd@1.5.7 - -hhjyyqy xz@5.8.3 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 - - --- linux-ubuntu26.04-x86_64_v3 / no compilers ------------------- -mmywg7x compiler-wrapper@1.1.0 - -5zrvmb3 gcc@14.3.0 - -yjlog5x gcc@15.2.0 - -yhhe2we gcc-runtime@15.2.0 -cl66sen gcc@15.2.0 -ublhg65 glibc@2.43 - -xm76mt3 gcc-runtime@15.2.0 -yjlog5x gcc@15.2.0 -yc4n2pp glibc@2.43 - -yc4n2pp glibc@2.43 - -px4mv6l llvm@21.1.8 - -==> 46 installed packages diff --git a/outputs/basics/find-lf.out b/outputs/basics/find-lf.out index e4aa4bed0..68d01dae8 100644 --- a/outputs/basics/find-lf.out +++ b/outputs/basics/find-lf.out @@ -3,7 +3,7 @@ $ spack find -l 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 7kdghmr openblas@0.3.33 qfut5qq openmpi@5.0.10 u43pchx trilinos@17.1.1 3sqhxga trilinos@17.1.1 +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 @@ -20,9 +20,6 @@ cbtgjrh bzip2@1.0.8 7cwv3st hdf5@1.14.6 oopqoag libevent@2.1.12 qzkk5ym lib cdyuto2 gmake@4.4.1 jceyzq7 hdf5@1.14.6 itb4a2s libfabric@2.5.1 bkzcu2s libxcrypt@4.5.2 afklka7 pigz@2.8 nldxmxw prrte@4.1.0 as6mmcj hdf5@1.14.6 uwyh3xy libedit@3.1-20251016 vbwvgwx libiconv@1.18 ujlg2ua libxml2@2.15.3 yvl6jpi pkgconf@2.5.1 f5xe4px tar@1.35 --- linux-ubuntu26.04-x86_64_v3 / %cxx=gcc@15.2.0 ---------------- -kpwomw3 kokkos@5.1.1 5zilkuz kokkos-kernels@5.1.1 - -- linux-ubuntu26.04-x86_64_v3 / no compilers ------------------- mmywg7x compiler-wrapper@1.1.0 5zrvmb3 gcc@14.3.0 yjlog5x gcc@15.2.0 yhhe2we gcc-runtime@15.2.0 xm76mt3 gcc-runtime@15.2.0 yc4n2pp glibc@2.43 px4mv6l llvm@21.1.8 -==> 51 installed packages +==> 46 installed packages diff --git a/outputs/basics/find-px.out b/outputs/basics/find-px.out index c1358903c..2f60b553c 100644 --- a/outputs/basics/find-px.out +++ b/outputs/basics/find-px.out @@ -1,8 +1,4 @@ $ spack find -px --- linux-ubuntu26.04-x86_64_v3 / %c,cxx,fortran=gcc@15.2.0 ------ -trilinos@17.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-17.1.1-u43pchxcfkd7syptwimxl4lozm5jmy2h -trilinos@17.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-17.1.1-3sqhxgauqbdivdlcr6gdh2km37fiky5j - -- 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 @@ -21,4 +17,4 @@ gmake@4.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-cdyuto2vcd7 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 -==> 13 installed packages +==> 11 installed packages diff --git a/outputs/basics/find.out b/outputs/basics/find.out index ba211cd2a..395ee8b4f 100644 --- a/outputs/basics/find.out +++ b/outputs/basics/find.out @@ -3,7 +3,7 @@ $ spack find gcc@15.2.0 glibc@2.43 -- linux-ubuntu26.04-x86_64_v3 / %c,cxx,fortran=gcc@15.2.0 ------ -mpich@5.0.1 openblas@0.3.33 openmpi@5.0.10 trilinos@17.1.1 trilinos@17.1.1 +mpich@5.0.1 openmpi@5.0.10 -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=clang@21.1.8 ------------ zlib-ng@2.0.7 zlib-ng@2.3.3 @@ -18,9 +18,6 @@ gettext@1.0 hwloc@2.13.0 krb5@1.22.2 ncurses@6.6 openssh@10.3p1 openssl@3.6. bzip2@1.0.8 hdf5@1.14.6 hdf5@1.14.6 libevent@2.1.12 libiconv@1.18 libxcrypt@4.5.2 numactl@2.0.19 pkgconf@2.5.1 prrte@4.1.0 xz@5.8.3 gmake@4.4.1 hdf5@1.14.6 libedit@3.1-20251016 libfabric@2.5.1 libpciaccess@0.17 libxml2@2.15.3 pigz@2.8 pmix@6.1.0 tar@1.35 --- linux-ubuntu26.04-x86_64_v3 / %cxx=gcc@15.2.0 ---------------- -kokkos@5.1.1 kokkos-kernels@5.1.1 - -- 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 -==> 51 installed packages +==> 46 installed packages diff --git a/outputs/basics/gmake.out b/outputs/basics/gmake.out index 1bca5cb81..d579d3386 100644 --- a/outputs/basics/gmake.out +++ b/outputs/basics/gmake.out @@ -5,9 +5,9 @@ $ spack install gmake [ ] mmywg7x compiler-wrapper@1.1.0 staging (0s) [ ] yhhe2we gcc-runtime@15.2.0 staging (0s) [ ] yhhe2we gcc-runtime@15.2.0 install (0s) -[+] yhhe2we gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-yhhe2wecmh7n4qwwmqxictetytv2m6wo (0s) -[ ] mmywg7x compiler-wrapper@1.1.0 install (0s) -[+] mmywg7x compiler-wrapper@1.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.1.0-mmywg7x4myxvxepmqe5go3ppxirmuijp (0s) +[ ] mmywg7x compiler-wrapper@1.1.0 install (1s) +[+] mmywg7x compiler-wrapper@1.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.1.0-mmywg7x4myxvxepmqe5go3ppxirmuijp (1s) +[+] yhhe2we gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-yhhe2wecmh7n4qwwmqxictetytv2m6wo (1s) [ ] cdyuto2 gmake@4.4.1 staging (0s) -[ ] cdyuto2 gmake@4.4.1 install (1s) +[ ] 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 (8s) diff --git a/outputs/basics/graph-trilinos.out b/outputs/basics/graph-trilinos.out deleted file mode 100644 index cb5aa7119..000000000 --- a/outputs/basics/graph-trilinos.out +++ /dev/null @@ -1,586 +0,0 @@ -$ spack graph trilinos -o trilinos@17.1.1/u43pchx -|\ -| |\ -| | |\ -| | | |\ -| | | | |\ -| | | | | |\ -| | | | | | |\ -| | | | | | | |\ -| | | | | | | | |\ -| | | | | | | | | |\ -| | o | | | | | | | | kokkos-kernels@5.1.1/5zilkuz -| | |\| | | | | | | | -| | |\ \ \ \ \ \ \ \ \ -| | | |_|_|/ / / / / / -| | |/| | | | | | | | -| | | |\ \ \ \ \ \ \ \ -| | | | |_|_|/ / / / / -| | | |/| | | | | | | -| | | | |\ \ \ \ \ \ \ -| | | | | |_|_|/ / / / -| | | | |/| | | | | | -| | | | | |\ \ \ \ \ \ -| | | | | | |_|_|/ / / -| | | | | |/| | | | | -| | | | | | |\ \ \ \ \ -| | | | | | | |_|_|/ / -| | | | | | |/| | | | -| | | | | | | | |/ / -| | | | | | | |/| | -| o | | | | | | | | openblas@0.3.33/7kdghmr -| |\| | | | | | | | -| |\ \ \ \ \ \ \ \ \ -| | |_|/ / / / / / / -| |/| | | | | | | | -| | |\ \ \ \ \ \ \ \ -| | | |_|/ / / / / / -| | |/| | | | | | | -| | | |\ \ \ \ \ \ \ -| | | | |_|/ / / / / -| | | |/| | | | | | -| | | | |/ / / / / -o | | | | | | | | openmpi@5.0.10/qfut5qq -|\| | | | | | | | -|\ \ \ \ \ \ \ \ \ -| |\ \ \ \ \ \ \ \ \ -| | |\ \ \ \ \ \ \ \ \ -| | | |\ \ \ \ \ \ \ \ \ -| | | | |\ \ \ \ \ \ \ \ \ -| | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | | | | |_|_|_|_|_|_|_|/ -| | | | | | | | | |/| | | | | | | | -| | | | | | | | | | |\ \ \ \ \ \ \ \ -| | | | | | | | | | | |_|_|_|_|/ / / -| | | | | | | | | | |/| | | | | | | -| | | | | | | | | | | |\ \ \ \ \ \ \ -| | | | | | | | | | | | |_|/ / / / / -| | | | | | | | | | | |/| | | | | | -| | | | | | | | | | | | |\ \ \ \ \ \ -| | | | | | | | | | | | | |_|/ / / / -| | | | | | | | | | | | |/| | | | | -| | | | | | | | | | | | | |\ \ \ \ \ -| | | | | | | | | | | | | | |_|/ / / -| | | | | | | | | | | | | |/| | | | -| | | | | | | | | | | | | | |\ \ \ \ -| | | | | | | | | | | | | | | | | | o kokkos@5.1.1/kpwomw3 -| | | | | | | | | | | |_|_|_|_|_|_|/| -| | | | | | | | | | |/| |_|_|_|_|_|/| -| | | | | | | | | | | |/| |_|_|_|_|/| -| | | | | | | | | | | | |/| |_|_|_|/| -| | | | | | | | | | | | | |/| | | |/| -| | | | | | | | | | | | | | | | |/|/ -| | | | | | o | | | | | | | | | | | numactl@2.0.19/2t2useu -| | | | | | |\| | | | | | | | | | | -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |_|_|_|/ / / / / / / / -| | | | | | | |/| | | | | | | | | | | -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |_|_|_|_|_|_|_|_|/ / -| | | | | | | | |/| | | | | | | | | | -| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | |_|_|_|/ / / / / / -| | | | | | | | | |/| | | | | | | | | -| | | | | | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | | | | | |_|_|_|/ / / / / -| | | | | | | | | | |/| | | | | | | | -| | | | | | | | | | | |\ \ \ \ \ \ \ \ -| | | | | | | | | | | | |_|_|_|/ / / / -| | | | | | | | | | | |/| | | | | | | -| | | | | | | | | | | | |\ \ \ \ \ \ \ -| | | | | | | | | | | | | |_|_|_|/ / / -| | | | | | | | | | | | |/| | | | | | -| | | | | | | | | | | | | | |_|/ / / -| | | | | | | | | | | | | |/| | | | -| | | | | o | | | | | | | | | | | | openssh@10.3p1/m6yx5j3 -| |_|_|_|/| | | | | | | | | | | | | -|/| | | | | | | | | | | | | | | | | -| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | |_|/ / / / / / / / / / / -| | | | | | | | | | |/| | | | | | | | | | | | -| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | |_|/ / / / / / / / / / -| | | | | | | | | | | |/| | | | | | | | | | | -| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | | |_|/ / / / / / / / / -| | | | | | | | | | | | |/| | | | | | | | | | -| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | | | |_|/ / / / / / / / -| | | | | | | | | | | | | |/| | | | | | | | | -| | | | | | | | | | | | | | |/ / / / / / / / -| o | | | | | | | | | | | | | | | | | | | | prrte@4.1.0/nldxmxw -| |\| | | | | | | | | | | | | | | | | | | | -| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | |_|/ / / / / / / / / / / / / / / / / / / -| |/| | | | | | | | | | | | | | | | | | | | -| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | |_|/ / / / / / / / / / / / / / / / / / -| | |/| | | | | | | | | | | | | | | | | | | -| | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | |_|_|_|_|_|_|_|_|_|_|_|/ / / / / / / -| | | |/| | | | | | | | | | | | | | | | | | -| | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | |_|_|_|_|_|_|_|_|_|_|_|_|_|/ / / / -| | | | |/| | | | | | | | | | | | | | | | | -| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | |_|_|_|_|_|_|_|_|_|_|_|_|_|/ / / -| | | | | |/| | | | | | | | | | | | | | | | -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |_|_|_|_|_|_|_|_|_|_|_|_|_|/ / -| | | | | | |/| | | | | | | | | | | | | | | -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |_|_|_|_|_|_|/ / / / / / / / -| | | | | | | |/| | | | | | | | | | | | | | -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |_|_|_|_|_|_|/ / / / / / / -| | | | | | | | |/| | | | | | | | | | | | | -| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | |_|_|_|_|_|_|/ / / / / / -| | | | | | | | | |/| | | | | | | | | | | | -| | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | |_|_|_|_|_|_|/ / / / / -| | | | | | | | | | |/| | | | | | | | | | | -| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | | |_|_|_|_|_|_|/ / / / -| | | | | | | | | | | | |/| | | | | | | | | | -| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | | | |_|_|_|_|_|_|/ / / -| | | | | | | | | | | | | |/| | | | | | | | | -| | | | | | | | | | | | | | | |_|_|_|_|/ / / -| | | | | | | | | | | | | | |/| | | | | | | -| | | | | | | | | | | | | | | | | | | | | o cmake@3.31.11/a4wqsr7 -| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| -|/| | | | | | | |_|_|_|_|_|_|_|_|_|_|_|_|/| -| | | | | | | |/| |_|_|_|_|_|_|_|_|_|_|_|/| -| | | | | | | | |/| |_|_|_|_|_|_|_|_|_|_|/| -| | | | | | | | | |/| |_|_|_|_|_|_|_|_|_|/| -| | | | | | | | | | |/| | |_|_|_|_|_|_|_|/| -| | | | | | | | | | | | |/| | | | | |_|_|/| -| | | | | | | | | | | | | | | | | |/| | | | -| | | | | | | | | | | | | | | | | | | | o | krb5@1.22.2/ldqeqfw -| | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | -| |/| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | -| | |/| | | | | |_|_|_|_|_|_|_|_|_|_|_|/| | -| | | | | | | |/| |_|_|_|_|_|_|_|_|_|_|/| | -| | | | | | | | |/| |_|_|_|_|_|_|_|_|_|/| | -| | | | | | | | | |/| |_|_|_|_|_|_|_|_|/| | -| | | | | | | | | | |/| | |_|_|_|_|_|_|/| | -| | | | | | | | | | | | |/| | | | |_|_|/| | -| | | | | | | | | | | | | | | | |/| | |/| | -| | | | | | | | | | | | | | | | | | | | |\ \ -| | | | | | | | | | | | | | | | | | | | | |\ \ -| | | | | | | | | | | | | | | | | | | | | | |\ \ -| | | | | | | | | | | | | | | | | | o | | | | | | libxcrypt@4.5.2/bkzcu2s -| | | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | | | | | -| | |/| | | | | |_|_|_|_|_|_|_|_|_|/| | | | | | | -| | | | | | | |/| |_|_|_|_|_|_|_|_|/| | | | | | | -| | | | | | | | |/| |_|_|_|_|_|_|_|/| | | | | | | -| | | | | | | | | |/| |_|_|_|_|_|_|/| | | | | | | -| | | | | | | | | | |/| | |_|_|_|_|/ / / / / / / -| | | | | | | | | | | | |/| | | | | | | | | | | -| | | | | | | | | | | | | o | | | | | | | | | | automake@1.18.1/yhkgfai -| | | |_|_|_|_|_|_|_|_|_|/| | | | | | | | | | | -| | |/| | | | | |_|_|_|_|/| | | | | | | | | | | -| | | | | | | |/| |_|_|_|/| | | | | | | | | | | -| | | | | | | | |/| |_|_|/| | | | | | | | | | | -| | | | | | | | | |/| |_|/| | | | | | | | | | | -| | | | | | | | | | |/| |/| | | | | | | | | | | -| | | | | | | | | | | | | |/ / / / / / / / / / -| | | | | | | | | | | o | | | | | | | | | | | flex@2.6.3/vwo3ajm -| | | | |_|_|_|_|_|_|/| | | | | | | | | | | | -| | | |/| | | | |_|_|/| | | | | | | | | | | | -| | | | | | | |/| |_|/| | | | | | | | | | | | -| | | | | | | | |/| |/| | | | | | | | | | | | -| | | | | | | | | |/|/| | | | | | | | | | | | -| | | | | | | | | | | |\| | | | | | | | | | | -| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | |_|_|_|_|_|_|_|/ / / / -| | | | | | | | | | | |/| | | | | | | | | | | -| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | | |_|_|_|_|_|_|_|/ / / -| | | | | | | | | | | | |/| | | | | | | | | | -| | | | | | | | | | | | | | |_|_|_|_|_|/ / / -| | | | | | | | | | | | | |/| | | | | | | | -| | | | | | | | | | | | | | | | o | | | | | pmix@6.1.0/ycyqykw -| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | | | | -|/| |_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | | | | -| |/| | | |_|_|_|_|_|_|_|_|_|_|/| | | | | | -| | | | |/| |_|_|_|_|_|_|_|_|_|/| | | | | | -| | | | | |/| |_|_|_|_|_|_|_|_|/| | | | | | -| | | | | | |/| |_|_|_|_|_|_|_|/| | | | | | -| | | | | | | |/| |_|_|_|_|_|_|/| | | | | | -| | | | | | | | |/| |_|_|_|_|_|/| | | | | | -| | | | | | | | | |/| |_|_|_|_|/| | | | | | -| | | | | | | | | | |/| | | | |/ / / / / / -| | | | | | | | | | | | | | |/| | | | | | -| | | | | | | | | | | | | | | | | | | | o curl@8.20.0/j2fa7xl -| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| -|/| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| -| |/| | | | | | |_|_|_|_|_|_|_|_|_|_|_|/| -| | | | | | | |/| |_|_|_|_|_|_|_|_|_|_|/| -| | | | | | | | |/| |_|_|_|_|_|_|_|_|_|/| -| | | | | | | | | |/| |_|_|_|_|_|_|_|_|/| -| | | | | | | | | | |/| | | | |_|_|_|_|/| -| | | | | | | | | | | | | | |/| | |_|_|/| -| | | | | | | | | | | | | | | | |/| | | | -| | | | | | | | | | | | | | | | | | o | | libedit@3.1-20251016/uwyh3xy -| | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| | | -| |/| | | | | | |_|_|_|_|_|_|_|_|_|/| | | -| | | | | | | |/| |_|_|_|_|_|_|_|_|/| | | -| | | | | | | | |/| |_|_|_|_|_|_|_|/| | | -| | | | | | | | | |/| |_|_|_|_|_|_|/| | | -| | | | | | | | | | |/| | | | |_|_|/| | | -| | | | | | | | | | | | | | |/| | |/ / / -| | | | | | | | | | | | | | | o | | | | autoconf@2.72/jo3eg4r -| | | |_|_|_|_|_|_|_|_|_|_|_|/| | | | | -| | |/| |_|_|_|_|_|_|_|_|_|_|/| | | | | -| | | |/| | | | |_|_|_|_|_|_|/ / / / / -| | | | | | | |/| | | | | | | | | | | -| | | | | | | | | | | | | o | | | | | bison@3.8.2/lbkegpi -| | | | |_|_|_|_|_|_|_|_|/| | | | | | -| | | |/| | | | |_|_|_|_|/| | | | | | -| | | | | | | |/| |_|_|_|/| | | | | | -| | | | | | | | |/| |_|_|/| | | | | | -| | | | | | | | | |/| |_|/| | | | | | -| | | | | | | | | | |/| |/| | | | | | -| | | | | | | | | | | | | |/ / / / / -| | | | | | o | | | | | | | | | | | hwloc@2.13.0/ujctyey -| | |_|_|_|/| | | | | | | | | | | | -| |/| | | | | | | | | | | | | | | | -| | | | | | |\| | | | | | | | | | | -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |_|_|_|_|_|_|_|_|/ / / -| | | | | | |/| | | | | | | | | | | -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | |_|/ / / / / / / / / -| | | | | | | | | |/| | | | | | | | | | -| | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | | |_|/ / / / / / / / -| | | | | | | | | | |/| | | | | | | | | -| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | | | | | | |_|/ / / / / / / -| | | | | | | | | | | |/| | | | | | | | -| | | | | | | | | | | | | |_|/ / / / / -| | | | | | | | | | | | |/| | | | | | -| | | | | o | | | | | | | | | | | | | libevent@2.1.12/oopqoag -| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | |_|_|_|_|_|_|_|_|_|_|/ / / -| | | | | |/| | | | | | | | | | | | | -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |_|_|_|_|_|_|_|/ / / / / -| | | | | | |/| | | | | | | | | | | | -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |_|_|_|/ / / / / / / / -| | | | | | | |/| | | | | | | | | | | -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |_|_|_|/ / / / / / / -| | | | | | | | |/| | | | | | | | | | -| | | | | | | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | | | | | | |_|_|_|/ / / / / / -| | | | | | | | | |/| | | | | | | | | -| | | | | | | | | | | |_|/ / / / / / -| | | | | | | | | | |/| | | | | | | -| | | | o | | | | | | | | | | | | | libtool@2.5.4/3gdq456 -| | | |/| | | | | | | | | | | | | | -| | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | |_|/ / / / / / / / / / / / -| | | | |/| | | | | | | | | | | | | -| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | |_|/ / / / / / / / / / / -| | | | | |/| | | | | | | | | | | | -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |_|/ / / / / / / / / / -| | | | | | |/| | | | | | | | | | | -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |_|/ / / / / / / / / -| | | | | | | |/| | | | | | | | | | -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |_|_|_|_|_|/ / / / -| | | | | | | | |/| | | | | | | | | -| | | | | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | | | | | |/ / / / / / / -| | | | | | | | | | |/| | | | | | | -| | | | | | | | | | | | | | | | | o nghttp2@1.67.1/4lyasaz -| | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|/| -| |/| | | |_|_|_|_|_|_|_|_|_|_|_|/| -| | | | |/| |_|_|_|_|_|_|_|_|_|_|/| -| | | | | |/| |_|_|_|_|_|_|_|_|_|/| -| | | | | | |/| |_|_|_|_|_|_|_|_|/| -| | | | | | | |/| | | |_|_|_|_|_|/| -| | | | | | | | | | |/| | | | | |/ -| | | | | | | | | | | | | | | |/| -| | | | | | | | | | | | | | o | | libpciaccess@0.17/qzkk5ym -| | |_|_|_|_|_|_|_|_|_|_|_|/| | | -| |/| | | |_|_|_|_|_|_|_|_|/| | | -| | | | |/| |_|_|_|_|_|_|_|/| | | -| | | | | |/| |_|_|_|_|_|_|/| | | -| | | | | | |/| |_|_|_|_|_|/| | | -| | | | | | | |/| | | |_|_|/| | | -| | | | | | | | | | |/| | | | | | -| | | | | | | | | | | o | | | | | openssl@3.6.1/33yozp5 -| |_|_|_|_|_|_|_|_|_|/| | | | | | -|/| | |_|_|_|_|_|_|_|/| | | | | | -| | |/| | |_|_|_|_|_|/| | | | | | -| | | | |/| |_|_|_|_|/| | | | | | -| | | | | |/| |_|_|_|/| | | | | | -| | | | | | |/| |_|_|/| | | | | | -| | | | | | | |/| | |/| | | | | | -| | | | | | | | | o | | | | | | | file@5.46/mguwetc -| |_|_|_|_|_|_|_|/| | | | | | | | -|/| | | | |_|_|_|/| | | | | | | | -| | | | |/| |_|_|/| | | | | | | | -| | | | | |/| |_|/| | | | | | | | -| | | | | | |/| |/| | | | | | | | -| | | | | | | |/| | | | | | | | | -| | | | | | | | | |\| | | | | | | -| | | | | | | | | |\ \ \ \ \ \ \ \ -| | | | | | | | | | |\ \ \ \ \ \ \ \ -| | | | | | | | o | | | | | | | | | | findutils@4.10.0/punbqrx -| | | | | |_|_|/| | | | | | | | | | | -| | | | |/| |_|/| | | | | | | | | | | -| | | | | |/| |/| | | | | | | | | | | -| | | | | | |/|/| | | | | | | | | | | -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |_|_|_|_|_|_|_|_|_|/ -| | | | | | | | |/| | | | | | | | | | -| | | | | | | | | | |_|/ / / / / / / -| | | | | | | | | |/| | | | | | | | -| | | o | | | | | | | | | | | | | | m4@1.4.21/y6uqrto -| | | |\| | | | | | | | | | | | | | -| | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | |_|/ / / / / / / / / / / / / -| | | | |/| | | | | | | | | | | | | | -| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | |_|/ / / / / / / / / / / / -| | | | | |/| | | | | | | | | | | | | -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |_|/ / / / / / / / / / / -| | | | | | |/| | | | | | | | | | | | -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |_|_|_|_|_|_|_|_|_|_|/ -| | | | | | | |/| | | | | | | | | | | -| | | | | | | | | |/ / / / / / / / / -| | | | | | | | |/| | | | | | | | | -| | | | | | | | | | | | | | | | | o util-macros@1.20.2/o5fy6wf -| | | | | | | | | | |_|_|_|_|_|_|/ -| | | | | | | | | |/| | | | | | | -| | | | | | | | | | | | | | o | | ca-certificates-mozilla@2026-03-19/axeuqg3 -| | | | | | | | | | | | | | / / -| | o | | | | | | | | | | | | | perl@5.42.0/bvphs3b -| |/| | | | | | | | | | | | | | -|/| | | | | | | | | | | | | | | -| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | |_|_|_|_|_|_|/ / / / / / / -| | | |/| | | | | | | | | | | | | -| | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | |_|/ / / / / / / / / / / -| | | | |/| | | | | | | | | | | | -| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |_|/ / / / / / / / / / -| | | | | | |/| | | | | | | | | | | -| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ -| | | | | | | | |_|/ / / / / / / / / -| | | | | | | |/| | | | | | | | | | -| | | | | | | | |\ \ \ \ \ \ \ \ \ \ -| | | | | | | | | |_|_|/ / / / / / / -| | | | | | | | |/| | | | | | | | | -| | | | | | | | | |\ \ \ \ \ \ \ \ \ -| | | | | | | | | | |_|_|_|_|_|/ / / -| | | | | | | | | |/| | | | | | | | -| | | | | | | | | | | | | o | | | | gettext@1.0/sle3ix4 -| | | | |_|_|_|_|_|_|_|_|/| | | | | -| | | |/| |_|_|_|_|_|_|_|/| | | | | -| | | | |/| | |_|_|_|_|_|/| | | | | -| | | | | | |/| |_|_|_|_|/| | | | | -| | | | | | | |/| |_|_|_|/| | | | | -| | | | | | | | |/| |_|_|/| | | | | -| | | | | | | | | |/| | | | | | | | -| | | | | | | | | | | | | |\ \ \ \ \ -| | | | | | | | | | | | | | |_|/ / / -| | | | | | | | | | | | | |/| | | | -| | | | | | | | | | | | | | |\ \ \ \ -| | | | | | | | | | | | | | | |\ \ \ \ -| | | | | | | | | | | | | | | | |_|/ / -| | | | | | | | | | | | | | | |/| | | -| | | | | | | | | | | | | | | | |\ \ \ -| | | | | | | | | | | | | | | | | |_|/ -| | | | | | | | | | | | | | | | |/| | -| | | | | | | | | | | o | | | | | | | libsigsegv@2.15/phcmfqk -| | | | |_|_|_|_|_|_|/| | | | | | | | -| | | |/| |_|_|_|_|_|/| | | | | | | | -| | | | |/| | |_|_|_|/| | | | | | | | -| | | | | | |/| |_|_|/| | | | | | | | -| | | | | | | |/| |_|/ / / / / / / / -| | | | | | | | |/| | | | | | | | | -| | | | | | | | | | o | | | | | | | berkeley-db@18.1.40/27d4iyp -| | | | |_|_|_|_|_|/| | | | | | | | -| | | |/| |_|_|_|_|/| | | | | | | | -| | | | |/| | |_|_|/| | | | | | | | -| | | | | | |/| |_|/| | | | | | | | -| | | | | | | |/| |/ / / / / / / / -| | | | | | | | |/| | | | | | | | -| | | | | o | | | | | | | | | | | gdbm@1.26/cq4dkuc -| | | | |/| | | | | | | | | | | | -| | | |/|/| | | | | | | | | | | | -| | | | | |\| | | | | | | | | | | -| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | | |_|/ / / / / / / / / / -| | | | | | |/| | | | | | | | | | | -| | | | | | | |/ / / / / / / / / / -| | o | | | | | | | | | | | | | | less@692/ohmdb2l -| | |\| | | | | | | | | | | | | | -| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | |_|_|_|_|_|_|_|_|_|_|/ / / / -| | |/| | | | | | | | | | | | | | -| | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | |_|/ / / / / / / / / / / / -| | | |/| | | | | | | | | | | | | -| | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ -| | | | | |_|_|_|_|/ / / / / / / / -| | | | |/| | | | | | | | | | | | -| | | | | |\ \ \ \ \ \ \ \ \ \ \ \ -| | | | | | |_|_|/ / / / / / / / / -| | | | | |/| | | | | | | | | | | -| | | | | | | |/ / / / / / / / / -| | | | | | |/| | | | | | | | | -| | | | | | | | | | | | | o | | libxml2@2.15.3/ujlg2ua -| |_|_|_|_|_|_|_|_|_|_|_|/| | | -|/| |_|_|_|_|_|_|_|_|_|_|/| | | -| |/| | |_|_|_|_|_|_|_|_|/| | | -| | | |/| |_|_|_|_|_|_|_|/| | | -| | | | |/| |_|_|_|_|_|_|/| | | -| | | | | |/| |_|_|_|_|_|/| | | -| | | | | | |/| |_|_|_|_|/| | | -| | | | | | | |/| | | | |/| | | -| | | | | | | | | | | |/| | | | -| | | | | | | | | | | | | |/ / -| | | | | | | | | | | | o | | tar@1.35/f5xe4px -| | | | |_|_|_|_|_|_|_|/| | | -| | | |/| |_|_|_|_|_|_|/| | | -| | | | |/| |_|_|_|_|_|/| | | -| | | | | |/| |_|_|_|_|/| | | -| | | | | | |/| |_|_|_|/| | | -| | | | | | | |/| | |_|/| | | -| | | | | | | | | |/| |/| | | -| | | | | | | | | | | | |\| | -| | | | | | | | | | | | |\ \ \ -| | | | | | | | | | | | | |_|/ -| | | | | | | | | | | | |/| | -| | | | | | | | o | | | | | | readline@8.3/k25xiih -| | | |_|_|_|_|/| | | | | | | -| | |/| |_|_|_|/| | | | | | | -| | | |/| |_|_|/| | | | | | | -| | | | |/| |_|/| | | | | | | -| | | | | |/| |/| | | | | | | -| | | | | | |/|/ / / / / / / -| | | | | | | | o | | | | | bzip2@1.0.8/cbtgjrh -| | | | |_|_|_|/| | | | | | -| | | |/| |_|_|/| | | | | | -| | | | |/| |_|/| | | | | | -| | | | | |/| |/| | | | | | -| | | | | | |/|/| | | | | | -| | | | | | | | |/ / / / / -| | | | | | | | | | | o | pigz@2.8/afklka7 -| |_|_|_|_|_|_|_|_|_|/| | -|/| | | |_|_|_|_|_|_|/| | -| | | |/| |_|_|_|_|_|/| | -| | | | |/| |_|_|_|_|/| | -| | | | | |/| |_|_|_|/| | -| | | | | | |/| |_|_|/ / -| | | | | | | |/| | | | -| | | | | | | | | o | | xz@5.8.3/hhjyyqy -| | | | |_|_|_|_|/| | | -| | | |/| |_|_|_|/| | | -| | | | |/| |_|_|/| | | -| | | | | |/| |_|/| | | -| | | | | | |/| |/ / / -| | | | | | | |/| | | -| | | | | | | | | o | zstd@1.5.7/63aruxk -| | | | |_|_|_|_|/| | -| | | |/| |_|_|_|/| | -| | | | |/| |_|_|/| | -| | | | | |/| |_|/| | -| | | | | | |/| |/ / -| | | | | | | |/| | -| | o | | | | | | | ncurses@6.6/ekvivpv -| |/| | | | | | | | -| | |\| | | | | | | -| | |\ \ \ \ \ \ \ \ -| | | |_|_|_|_|/ / / -| | |/| | | | | | | -| | | |\ \ \ \ \ \ \ -| | | | |_|/ / / / / -| | | |/| | | | | | -| | | | |\ \ \ \ \ \ -| | | | | |_|/ / / / -| | | | |/| | | | | -| | | | | |/ / / / -| | | | | | | o | diffutils@3.12/ao2onuz -| | | |_|_|_|/| | -| | |/| |_|_|/| | -| | | |/| |_|/| | -| | | | |/| |/| | -| | | | | |/|/| | -| | | | | | | |/ -o | | | | | | | zlib-ng@2.3.3/g72d7i3 -|\ \ \ \ \ \ \ \ -| |_|/ / / / / / -|/| | | | | | | -| |\ \ \ \ \ \ \ -| | |_|_|_|_|/ / -| |/| | | | | | -| | |\ \ \ \ \ \ -| | | |_|/ / / / -| | |/| | | | | -| | | |\ \ \ \ \ -| | | | |_|/ / / -| | | |/| | | | -| | | | |/ / / -| | | | | o | pkgconf@2.5.1/yvl6jpi -| |_|_|_|/| | -|/| |_|_|/| | -| |/| |_|/| | -| | |/| |/| | -| | | |/|/ / -| | | | | o libiconv@1.18/vbwvgwx -| |_|_|_|/| -|/| |_|_|/| -| |/| |_|/| -| | |/| |/| -| | | |/|/ -o | | | | gmake@4.4.1/r4lhaok -|\| | | | -|\ \ \ \ \ -| |_|/ / / -|/| | | | -| |\ \ \ \ -| | |_|/ / -| |/| | | -| | |/ / -| | o | compiler-wrapper@1.1.0/mmywg7x -| | / -o | | gcc-runtime@15.2.0/xm76mt3 -|\| | -| |/ -|/| -| o gcc@15.2.0/yjlog5x -| -o glibc@2.43/yc4n2pp diff --git a/outputs/basics/hdf5-hl-mpi.out b/outputs/basics/hdf5-mpich.out similarity index 81% rename from outputs/basics/hdf5-hl-mpi.out rename to outputs/basics/hdf5-mpich.out index 853e2ac20..e7f4c90b1 100644 --- a/outputs/basics/hdf5-hl-mpi.out +++ b/outputs/basics/hdf5-mpich.out @@ -1,9 +1,9 @@ -$ spack install hdf5+hl+mpi ^mpich +$ spack install hdf5 ^mpich [ ] itb4a2s libfabric@2.5.1 fetching from build cache (0s) [ ] itb4a2s libfabric@2.5.1 relocating (0s) [+] itb4a2s libfabric@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.5.1-itb4a2swgfzelii4nbzmo3fzdnfq5rhy (0s) -[ ] xkilhym mpich@5.0.1 fetching from build cache (0s) -[ ] xkilhym mpich@5.0.1 relocating (0s) +[ ] xkilhym mpich@5.0.1 fetching from build cache (1s) +[ ] xkilhym mpich@5.0.1 relocating (1s) [+] 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) diff --git a/outputs/basics/hdf5-no-mpi.out b/outputs/basics/hdf5-no-mpi.out index 55db01c34..84321724b 100644 --- a/outputs/basics/hdf5-no-mpi.out +++ b/outputs/basics/hdf5-no-mpi.out @@ -1,4 +1,4 @@ $ spack install hdf5~mpi -[ ] as6mmcj hdf5@1.14.6 fetching from build cache (0s) +[ ] as6mmcj hdf5@1.14.6 fetching from build cache (1s) [ ] 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.out b/outputs/basics/hdf5.out index 72a2a37f4..01dfa050a 100644 --- a/outputs/basics/hdf5.out +++ b/outputs/basics/hdf5.out @@ -7,48 +7,48 @@ $ spack install hdf5 [ ] bkzcu2s libxcrypt@4.5.2 fetching from build cache (0s) [ ] hhjyyqy xz@5.8.3 fetching from build cache (0s) [ ] 63aruxk zstd@1.5.7 fetching from build cache (0s) -[ ] ekvivpv ncurses@6.6 relocating (0s) [ ] vbwvgwx libiconv@1.18 fetching from build cache (0s) +[ ] ekvivpv ncurses@6.6 relocating (0s) [ ] bkzcu2s libxcrypt@4.5.2 relocating (0s) [ ] cbtgjrh bzip2@1.0.8 fetching from build cache (0s) [ ] hhjyyqy xz@5.8.3 relocating (0s) [ ] 2t2useu numactl@2.0.19 fetching from build cache (0s) [ ] 63aruxk zstd@1.5.7 relocating (0s) -[ ] vbwvgwx libiconv@1.18 relocating (0s) [ ] qzkk5ym libpciaccess@0.17 fetching from build cache (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) [ ] 2t2useu numactl@2.0.19 relocating (0s) [ ] qzkk5ym libpciaccess@0.17 relocating (0s) [+] yvl6jpi pkgconf@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-yvl6jpilvkgopkrc2aanfhd3z7lz7r3l (0s) [+] bkzcu2s libxcrypt@4.5.2 /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.5.2-bkzcu2s2hndgbhrkbhtlcnlvxg2em7e3 (0s) -[+] cbtgjrh bzip2@1.0.8 /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-cbtgjrhpwivtaewryhbkj6zxuukhoekx (0s) [ ] 33yozp5 openssl@3.6.1 fetching from build cache (0s) -[+] 63aruxk zstd@1.5.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-63aruxky3a4xfivh32jt676wmoftlzy6 (0s) [ ] afklka7 pigz@2.8 fetching from build cache (0s) +[+] 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) [+] qzkk5ym libpciaccess@0.17 /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-qzkk5ymbu3z37kjhgylrkdy7w3hixzna (0s) -[+] vbwvgwx libiconv@1.18 /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-vbwvgwxvjrccmptlen3ebo555lk5wior (0s) [ ] afklka7 pigz@2.8 relocating (0s) -[+] hhjyyqy xz@5.8.3 /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.8.3-hhjyyqygxtpzvdyoddyypk5sfyqdcmqe (0s) +[+] vbwvgwx libiconv@1.18 /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-vbwvgwxvjrccmptlen3ebo555lk5wior (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) [+] 2t2useu numactl@2.0.19 /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.19-2t2useutfyn7jozdzlunsc6336q6fcqx (0s) [+] afklka7 pigz@2.8 /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-afklka7uurghkxzfzr2kpku3hq64dp2w (0s) [ ] ujlg2ua libxml2@2.15.3 fetching from build cache (0s) [ ] ujlg2ua libxml2@2.15.3 relocating (0s) [ ] f5xe4px tar@1.35 fetching from build cache (0s) [ ] f5xe4px tar@1.35 relocating (0s) -[+] ujlg2ua libxml2@2.15.3 /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.15.3-ujlg2uai6quwrnqjswhpatdam2owxnzh (0s) [+] 33yozp5 openssl@3.6.1 /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.1-33yozp5l5ca4dnkgjjf2l2tdvt47mdna (0s) +[+] 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) [ ] oopqoag libevent@2.1.12 fetching from build cache (0s) [ ] oopqoag libevent@2.1.12 relocating (0s) -[+] ekvivpv ncurses@6.6 /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.6-ekvivpvwxpsfmbydk42j7me3ckftiheo (0s) [+] oopqoag libevent@2.1.12 /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-oopqoagvk4zhptmzymsbim2dmnfy37zf (0s) -[ ] ujctyey hwloc@2.13.0 fetching from build cache (0s) -[ ] sle3ix4 gettext@1.0 fetching from build cache (0s) -[ ] uwyh3xy libedit@3.1-20251016 fetching from build cache (0s) -[ ] ujctyey hwloc@2.13.0 relocating (1s) +[+] ekvivpv ncurses@6.6 /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.6-ekvivpvwxpsfmbydk42j7me3ckftiheo (0s) +[ ] uwyh3xy libedit@3.1-20251016 fetching from build cache (1s) +[ ] ujctyey hwloc@2.13.0 fetching from build cache (1s) [ ] uwyh3xy libedit@3.1-20251016 relocating (1s) +[ ] sle3ix4 gettext@1.0 fetching from build cache (1s) +[ ] ujctyey hwloc@2.13.0 relocating (1s) [ ] sle3ix4 gettext@1.0 relocating (1s) [+] uwyh3xy libedit@3.1-20251016 /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20251016-uwyh3xy52rwywtmgrdtwnljgevcnnctj (1s) [+] ujctyey hwloc@2.13.0 /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.13.0-ujctyeyjzvata7o7oje5nefjmgqabosi (1s) diff --git a/outputs/basics/install-gcc-16.out b/outputs/basics/install-gcc-16.out index e85d7a452..9fd864323 100644 --- a/outputs/basics/install-gcc-16.out +++ b/outputs/basics/install-gcc-16.out @@ -5,12 +5,12 @@ $ spack install gcc@16 [ ] cuzgmus binutils@2.46.0 relocating (0s) [+] xpmsy5x gmp@6.3.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-xpmsy5xffenfvl6lc5shb5a5krckrznd (0s) [ ] melg7ga mpfr@4.2.2 fetching from build cache (0s) -[ ] melg7ga mpfr@4.2.2 relocating (1s) -[+] 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 (1s) +[ ] melg7ga mpfr@4.2.2 relocating (0s) +[+] cuzgmus binutils@2.46.0 /home/spack/spack/opt/spack/linux-x86_64_v3/binutils-2.46.0-cuzgmusnboe4pknwnod4jziquvzteeya (0s) +[+] melg7ga mpfr@4.2.2 /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.2-melg7gafkownovvlndh46ljc4nuf5puy (0s) [ ] gxmoxea mpc@1.4.1 fetching from build cache (0s) [ ] gxmoxea mpc@1.4.1 relocating (0s) -[+] gxmoxea mpc@1.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.4.1-gxmoxea2jy4kihilaqibmhjvvuea3ydy (0s) +[+] gxmoxea mpc@1.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.4.1-gxmoxea2jy4kihilaqibmhjvvuea3ydy (1s) [ ] vlwdxlj gcc@16.1.0 fetching from build cache (0s) [ ] vlwdxlj gcc@16.1.0 relocating (0s) [+] vlwdxlj gcc@16.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-16.1.0-vlwdxljzbis42fjrlecvyo4tmuq5eebn (1s) diff --git a/outputs/basics/tcl-zlib-clang.out b/outputs/basics/tcl-zlib-clang.out index 7a76a127c..b047feecf 100644 --- a/outputs/basics/tcl-zlib-clang.out +++ b/outputs/basics/tcl-zlib-clang.out @@ -4,4 +4,4 @@ $ spack install tcl ^zlib-ng@2.0.7 %clang [+] 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) +[+] 53i7gbs tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-53i7gbsb6wbhk55vv62jpqudomfmw6f7 (0s) diff --git a/outputs/basics/trilinos-hdf5.out b/outputs/basics/trilinos-hdf5.out index b99d8bcd6..9f5989c4c 100644 --- a/outputs/basics/trilinos-hdf5.out +++ b/outputs/basics/trilinos-hdf5.out @@ -1,4 +1,4 @@ -$ spack install trilinos +hdf5 ^hdf5+hl+mpi ^mpich +$ spack install trilinos +hdf5 ^mpich [ ] 3sqhxga trilinos@17.1.1 fetching from build cache (0s) [ ] 3sqhxga trilinos@17.1.1 relocating (0s) -[+] 3sqhxga trilinos@17.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-17.1.1-3sqhxgauqbdivdlcr6gdh2km37fiky5j (1s) +[+] 3sqhxga trilinos@17.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-17.1.1-3sqhxgauqbdivdlcr6gdh2km37fiky5j (0s) diff --git a/outputs/basics/trilinos.out b/outputs/basics/trilinos.out index 3b561a40f..ba3c460af 100644 --- a/outputs/basics/trilinos.out +++ b/outputs/basics/trilinos.out @@ -1,12 +1,12 @@ $ spack install trilinos -[ ] 7kdghmr openblas@0.3.33 fetching from build cache (0s) -[ ] kpwomw3 kokkos@5.1.1 fetching from build cache (0s) -[ ] kpwomw3 kokkos@5.1.1 relocating (0s) -[ ] 7kdghmr openblas@0.3.33 relocating (0s) -[+] kpwomw3 kokkos@5.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-5.1.1-kpwomw3oxg75uzjlwi2j62ncy7uq356m (0s) +[ ] 7kdghmr openblas@0.3.33 fetching from build cache (1s) +[ ] kpwomw3 kokkos@5.1.1 fetching from build cache (1s) +[ ] kpwomw3 kokkos@5.1.1 relocating (1s) +[ ] 7kdghmr openblas@0.3.33 relocating (1s) +[+] 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 (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) diff --git a/outputs/basics/zlib-2.0.7.out b/outputs/basics/zlib-2.0.7.out index d25cf6b56..e2778da7d 100644 --- a/outputs/basics/zlib-2.0.7.out +++ b/outputs/basics/zlib-2.0.7.out @@ -2,7 +2,7 @@ $ spack install zlib-ng@2.0.7 [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) +[+] xm76mt3 gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-xm76mt35elmqwrjdlibzhngqkiqnyq4p (1s) [ ] 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-clang.out b/outputs/basics/zlib-clang.out index ff8bc199e..3bee89092 100644 --- a/outputs/basics/zlib-clang.out +++ b/outputs/basics/zlib-clang.out @@ -1,4 +1,4 @@ $ spack install zlib-ng %clang [ ] 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) +[+] 5dji3nx zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-5dji3nxkz53p6yf6icvu3rnyhz66mg7d (1s) diff --git a/tutorial_basics.rst b/tutorial_basics.rst index 7ee0f62dd..66a0fec29 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -164,12 +164,18 @@ Some variants are *conditional*: the indented ``when`` lines in the ``spack info Here ``build_type``, ``generator``, and ``ipo`` are available only ``when build_system=cmake`` -- that is, when zlib-ng is built with CMake instead of Autotools. Requesting one of them, as we just did with ``+ipo``, therefore also selects the CMake build system. +.. note:: + + The spec syntax can also set compiler flags directly on a build. + Spack accepts ``cppflags``, ``cflags``, ``cxxflags``, ``fflags``, ``ldflags``, and ``ldlibs`` -- written like ``cflags="-O3"`` -- and its compiler wrappers inject them into the appropriate compilation commands (values containing spaces must be quoted on the command line). + This is an escape hatch for special cases rather than the usual way to configure a build: most of the time a package's variants and build system already select appropriate options, so reach for explicit flags only when you genuinely need them. + ^^^^^^^^^^^^^^^^^^^ Direct Dependencies ^^^^^^^^^^^^^^^^^^^ The ``%`` sigil specifies a direct dependency of the package we're installing. -The most common direct dependency is a compiler -- every package built from source needs one -- so that is what we will use ``%`` for first. +The most common direct dependency is a compiler -- every package built from source needs one -- so that is what we will use ``%`` for here. So far we've let Spack choose the compiler, building ``zlib-ng`` with GCC just as we did for gmake. This time we'll build it with Clang instead, using ``%clang``: @@ -192,7 +198,7 @@ Transitive Dependencies 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 a request on that ``zlib-ng`` using ``spack spec``; the ``-l`` flag adds each node's hash: +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 @@ -234,105 +240,40 @@ 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. +``hdf5`` is a good example: it depends on ``mpi``, but ``mpi`` is not an ordinary package. It is a *virtual package* -- an interface that several real packages provide -- and Spack handles dependencies on such interfaces through "virtual dependencies". -Because HDF5 is more involved than the packages we've installed so far, let's preview its concretized install plan with ``spack spec`` before building. +By default ``hdf5`` builds against ``openmpi``: -.. literalinclude:: outputs/basics/hdf5-spec.out +.. literalinclude:: outputs/basics/hdf5.out :language: spec -With default settings HDF5 builds against OpenMPI, so installing it also brings in an MPI implementation. +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.out - :language: spec +.. literalinclude:: outputs/basics/providers-mpi.out + :language: console -HDF5 controls this through a boolean ``mpi`` variant; disabling it with ``~mpi`` drops the MPI dependency entirely. +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``: -.. literalinclude:: outputs/basics/hdf5-no-mpi.out +.. literalinclude:: outputs/basics/hdf5-mpich.out :language: spec -We might instead want HDF5 built against a *different* MPI implementation. -Actual MPI implementation packages (like ``openmpi``, ``mpich``, ``mvapich2``, etc.) provide the ``mpi`` interface, and 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. - 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``. - -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: - -.. code-block:: spec - - hdf5 %c,cxx=gcc %fortran=oneapi - -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. - -.. literalinclude:: outputs/basics/hdf5-hl-mpi.out - :language: spec - -.. note:: - - 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. - -We'll do a quick check in on what we have installed so far. - -.. literalinclude:: outputs/basics/find-ldf-2.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. - -.. 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. - -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: - -.. literalinclude:: outputs/basics/trilinos-hdf5.out - :language: spec +We call this "virtual assignment", which can be specified with ``%virtual=provider`` or ``^virtual=provider``. -We see that every package in the Trilinos DAG that depends on MPI now uses MPICH. +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/find-d-trilinos.out +.. literalinclude:: outputs/basics/spec-hdf5-compilers.out :language: spec + :lines: 1-2 -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. - -.. code-block:: console - - $ spack graph --dot trilinos | dot -Tpdf > trilinos_graph.pdf - -^^^^^^^^^^^^^^ -Compiler Flags -^^^^^^^^^^^^^^ - -As an aside, the spec syntax can also set compiler flags directly on a build. -Spack accepts ``cppflags``, ``cflags``, ``cxxflags``, ``fflags``, ``ldflags``, and ``ldlibs`` -- written like ``cflags="-O3"`` -- and its compiler wrappers inject them into the appropriate compilation commands (values containing spaces must be quoted on the command line). -This is an escape hatch for special cases rather than the usual way to configure a build: most of the time a package's variants and build system already select appropriate options, so reach for explicit flags only when you genuinely need them. +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. .. _basics-tutorial-query: @@ -365,6 +306,41 @@ It can also show the path to which a package was installed using the ``-p`` flag .. literalinclude:: outputs/basics/find-px.out :language: spec +.. _basics-tutorial-trilinos: + +------------------- +A Realistic Example +------------------- + +Now that we know the spec syntax and how to query installations, let's put them to work on a realistic package. + +.. literalinclude:: outputs/basics/trilinos.out + :language: spec + +Now we're starting to see the power of Spack. +Depending on the spec, Trilinos can have over 30 direct dependencies, many of which have dependencies of their own. +Installing more complex packages can take days or weeks even for an experienced user. +Although we've done a binary installation for the tutorial, a source installation of Trilinos using Spack takes about 3 hours (depending on the system), but only 20 seconds of programmer time. + +Spack manages 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 + +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/trilinos-find-mpich.out + :language: spec + +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 -Tsvg > trilinos_graph.svg + .. _basics-tutorial-uninstall: --------------------- From 6242ad4a3870adb2801e8b678bdcaeb5440fc0e9 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Wed, 17 Jun 2026 00:53:28 +0200 Subject: [PATCH 17/26] First draft --- outputs/basics.sh | 12 +- outputs/basics/clone.out | 4 +- outputs/basics/find-d-tcl.out | 11 +- outputs/basics/{find-lf.out => find-l.out} | 6 +- outputs/basics/find-ldf.out | 136 --------------------- outputs/basics/find-lf-zlib.out | 5 +- outputs/basics/find-px.out | 3 +- outputs/basics/find.out | 4 +- outputs/basics/gmake.out | 4 +- outputs/basics/hdf5-mpich.out | 4 +- outputs/basics/hdf5-no-mpi.out | 6 +- outputs/basics/hdf5.out | 30 ++--- outputs/basics/install-gcc-16.out | 4 +- outputs/basics/tcl-zlib-clang.out | 2 +- outputs/basics/tcl.out | 4 - outputs/basics/trilinos-hdf5.out | 2 +- outputs/basics/trilinos.out | 12 +- outputs/basics/uninstall-zlib.out | 43 +------ outputs/basics/zlib-clang.out | 2 +- tutorial_basics.rst | 51 ++++---- 20 files changed, 75 insertions(+), 270 deletions(-) rename outputs/basics/{find-lf.out => find-l.out} (88%) delete mode 100644 outputs/basics/find-ldf.out delete mode 100644 outputs/basics/tcl.out diff --git a/outputs/basics.sh b/outputs/basics.sh index 65ba63794..34b0eb4ea 100755 --- a/outputs/basics.sh +++ b/outputs/basics.sh @@ -50,9 +50,6 @@ example --tee basics/zlib-build-type "spack install zlib-ng build_type=Debug" example --tee basics/zlib-clang "spack install zlib-ng %clang" example --tee basics/zlib-gcc-14 "spack install zlib-ng %gcc@14" -# tcl.out is no longer shown in the prose, but the default tcl install is kept: -# the Uninstalling section needs multiple tcl configurations installed. -example --tee basics/tcl "spack install tcl" 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" @@ -61,8 +58,6 @@ example --tee basics/tcl-zlib-clang "spack install tcl ^zlib-ng@2.0.7 %clang" 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/find-ldf "spack find -ldf" - example basics/graph-tcl "spack graph tcl" example basics/providers-mpi "spack providers mpi" @@ -76,7 +71,8 @@ example basics/spec-hdf5-compilers "spack spec hdf5 %c,cxx=clang %fortran=gcc" # Querying Installations (now its own doc section, after The Spec Syntax). These run # BEFORE trilinos is installed, so their outputs reflect a pre-trilinos state. example basics/find "spack find" -example basics/find-lf "spack find -l" +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" @@ -85,11 +81,9 @@ 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" -example basics/find-d-tcl "spack find -d tcl" - example basics/find-zlib "spack find zlib-ng" -#example basics/uninstall-zlib "spack uninstall -y zlib-ng %gcc@14" +example basics/uninstall-zlib "spack uninstall -y zlib-ng %gcc@14" example basics/find-lf-zlib "spack find -lf zlib-ng" diff --git a/outputs/basics/clone.out b/outputs/basics/clone.out index b6ded176d..0cb0aba4f 100644 --- a/outputs/basics/clone.out +++ b/outputs/basics/clone.out @@ -3,7 +3,7 @@ Cloning into '/home/spack/spack'... remote: Enumerating objects: 2411, done.K remote: Counting objects: 100% (2411/2411), done.K remote: Compressing objects: 100% (1617/1617), done.K -remote:nTotale2411 (delta2326),4reused 1327 (delta 249), pack-reused 0 (from 0)K -Receiving objects: 100% (2411/2411), 5.48 MiB | 12.31 MiB/s, done. +remote:nTotale2411 (delta2326),4reused.1327i(delta7249),/pack-reused 0 (from 0)K +Receiving objects: 100% (2411/2411), 5.48 MiB | 10.15MMiB/s, done. Resolving deltas: 100% (326/326), done. $ cd ~/spack diff --git a/outputs/basics/find-d-tcl.out b/outputs/basics/find-d-tcl.out index 52fa61e26..33822939c 100644 --- a/outputs/basics/find-d-tcl.out +++ b/outputs/basics/find-d-tcl.out @@ -9,13 +9,4 @@ tcl@8.6.17 zlib-ng@2.0.7 llvm@21.1.8 -tcl@8.6.17 - compiler-wrapper@1.1.0 - gcc@15.2.0 - gcc-runtime@15.2.0 - glibc@2.43 - gmake@4.4.1 - gcc@14.3.0 - zlib-ng@2.3.3 - -==> 2 installed packages +==> 1 installed package diff --git a/outputs/basics/find-lf.out b/outputs/basics/find-l.out similarity index 88% rename from outputs/basics/find-lf.out rename to outputs/basics/find-l.out index 68d01dae8..c54ae7cd9 100644 --- a/outputs/basics/find-lf.out +++ b/outputs/basics/find-l.out @@ -12,8 +12,8 @@ kie72sp zlib-ng@2.0.7 5dji3nx zlib-ng@2.3.3 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 aeoqp4e zlib-ng@2.0.7 t7jnrlg zlib-ng@2.3.3 63aruxk zstd@1.5.7 -ujctyey hwloc@2.13.0 ekvivpv ncurses@6.6 33yozp5 openssl@3.6.1 jmv6sxq tcl@8.6.17 g72d7i3 zlib-ng@2.3.3 6l3ycpy zlib-ng@2.3.3 +sle3ix4 gettext@1.0 ldqeqfw krb5@1.22.2 m6yx5j3 openssh@10.3p1 53i7gbs tcl@8.6.17 g72d7i3 zlib-ng@2.3.3 6l3ycpy zlib-ng@2.3.3 +ujctyey hwloc@2.13.0 ekvivpv ncurses@6.6 33yozp5 openssl@3.6.1 aeoqp4e zlib-ng@2.0.7 t7jnrlg zlib-ng@2.3.3 63aruxk zstd@1.5.7 -- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ cbtgjrh bzip2@1.0.8 7cwv3st hdf5@1.14.6 oopqoag libevent@2.1.12 qzkk5ym libpciaccess@0.17 2t2useu numactl@2.0.19 ycyqykw pmix@6.1.0 hhjyyqy xz@5.8.3 @@ -22,4 +22,4 @@ as6mmcj hdf5@1.14.6 uwyh3xy libedit@3.1-20251016 vbwvgwx libiconv@1.18 ujlg -- linux-ubuntu26.04-x86_64_v3 / no compilers ------------------- mmywg7x compiler-wrapper@1.1.0 5zrvmb3 gcc@14.3.0 yjlog5x gcc@15.2.0 yhhe2we gcc-runtime@15.2.0 xm76mt3 gcc-runtime@15.2.0 yc4n2pp glibc@2.43 px4mv6l llvm@21.1.8 -==> 46 installed packages +==> 45 installed packages diff --git a/outputs/basics/find-ldf.out b/outputs/basics/find-ldf.out deleted file mode 100644 index e21391537..000000000 --- a/outputs/basics/find-ldf.out +++ /dev/null @@ -1,136 +0,0 @@ -$ spack find -ldf --- linux-ubuntu26.04-x86_64 / no compilers ---------------------- -cl66sen gcc@15.2.0 - -ublhg65 glibc@2.43 - - --- linux-ubuntu26.04-x86_64_v3 / %c,cxx=clang@21.1.8 ------------ -kie72sp zlib-ng@2.0.7 -mmywg7x compiler-wrapper@1.1.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -px4mv6l llvm@21.1.8 - -5dji3nx zlib-ng@2.3.3 -mmywg7x compiler-wrapper@1.1.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -px4mv6l llvm@21.1.8 - - --- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- -slhcf4i zlib-ng@2.3.3 -mmywg7x compiler-wrapper@1.1.0 -5zrvmb3 gcc@14.3.0 -xm76mt3 gcc-runtime@15.2.0 -yjlog5x gcc@15.2.0 -yc4n2pp glibc@2.43 -ofpkua6 gmake@4.4.1 - - --- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- -53i7gbs tcl@8.6.17 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 -kie72sp zlib-ng@2.0.7 -px4mv6l llvm@21.1.8 - -jmv6sxq tcl@8.6.17 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -ofpkua6 gmake@4.4.1 -5zrvmb3 gcc@14.3.0 -slhcf4i zlib-ng@2.3.3 - -aeoqp4e zlib-ng@2.0.7 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 - -t7jnrlg zlib-ng@2.3.3 -4hb3wtk cmake@3.31.11 -rt5ujla curl@8.20.0 -4lyasaz nghttp2@1.67.1 -ao2onuz diffutils@3.12 -vbwvgwx libiconv@1.18 -drmc4rl openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -ylggcb5 perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cbtgjrh bzip2@1.0.8 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -yvl6jpi pkgconf@2.5.1 -ekvivpv ncurses@6.6 -4vg46ge zlib@1.3.2 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 - -6l3ycpy zlib-ng@2.3.3 -4hb3wtk cmake@3.31.11 -rt5ujla curl@8.20.0 -4lyasaz nghttp2@1.67.1 -ao2onuz diffutils@3.12 -vbwvgwx libiconv@1.18 -drmc4rl openssl@3.6.1 -axeuqg3 ca-certificates-mozilla@2026-03-19 -ylggcb5 perl@5.42.0 -27d4iyp berkeley-db@18.1.40 -cbtgjrh bzip2@1.0.8 -cq4dkuc gdbm@1.26 -k25xiih readline@8.3 -ohmdb2l less@692 -yvl6jpi pkgconf@2.5.1 -ekvivpv ncurses@6.6 -4vg46ge zlib@1.3.2 -mmywg7x compiler-wrapper@1.1.0 -yjlog5x gcc@15.2.0 -xm76mt3 gcc-runtime@15.2.0 -yc4n2pp glibc@2.43 -r4lhaok gmake@4.4.1 - - --- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ -cdyuto2 gmake@4.4.1 -mmywg7x compiler-wrapper@1.1.0 -cl66sen gcc@15.2.0 -yhhe2we gcc-runtime@15.2.0 -ublhg65 glibc@2.43 - - --- linux-ubuntu26.04-x86_64_v3 / no compilers ------------------- -mmywg7x compiler-wrapper@1.1.0 - -5zrvmb3 gcc@14.3.0 - -yjlog5x gcc@15.2.0 - -yhhe2we gcc-runtime@15.2.0 -cl66sen gcc@15.2.0 -ublhg65 glibc@2.43 - -xm76mt3 gcc-runtime@15.2.0 -yjlog5x gcc@15.2.0 -yc4n2pp glibc@2.43 - -yc4n2pp glibc@2.43 - -px4mv6l llvm@21.1.8 - -==> 18 installed packages diff --git a/outputs/basics/find-lf-zlib.out b/outputs/basics/find-lf-zlib.out index 7f7fc2b4a..c1ae2821e 100644 --- a/outputs/basics/find-lf-zlib.out +++ b/outputs/basics/find-lf-zlib.out @@ -2,9 +2,6 @@ $ spack find -lf zlib-ng -- 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 -------------- aeoqp4e zlib-ng@2.0.7 g72d7i3 zlib-ng@2.3.3 t7jnrlg zlib-ng@2.3.3 6l3ycpy zlib-ng@2.3.3 -==> 7 installed packages +==> 6 installed packages diff --git a/outputs/basics/find-px.out b/outputs/basics/find-px.out index 2f60b553c..a05ea8a04 100644 --- a/outputs/basics/find-px.out +++ b/outputs/basics/find-px.out @@ -7,7 +7,6 @@ zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-slhcf4i -- 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 -tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-jmv6sxqk3p4ykp5vh7jl6i5na4vfr46e 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 @@ -17,4 +16,4 @@ gmake@4.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-cdyuto2vcd7 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 -==> 11 installed packages +==> 10 installed packages diff --git a/outputs/basics/find.out b/outputs/basics/find.out index 395ee8b4f..663bce56d 100644 --- a/outputs/basics/find.out +++ b/outputs/basics/find.out @@ -12,7 +12,7 @@ zlib-ng@2.0.7 zlib-ng@2.3.3 zlib-ng@2.3.3 -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- -gettext@1.0 hwloc@2.13.0 krb5@1.22.2 ncurses@6.6 openssh@10.3p1 openssl@3.6.1 tcl@8.6.17 tcl@8.6.17 zlib-ng@2.0.7 zlib-ng@2.3.3 zlib-ng@2.3.3 zlib-ng@2.3.3 zstd@1.5.7 +gettext@1.0 hwloc@2.13.0 krb5@1.22.2 ncurses@6.6 openssh@10.3p1 openssl@3.6.1 tcl@8.6.17 zlib-ng@2.0.7 zlib-ng@2.3.3 zlib-ng@2.3.3 zlib-ng@2.3.3 zstd@1.5.7 -- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ bzip2@1.0.8 hdf5@1.14.6 hdf5@1.14.6 libevent@2.1.12 libiconv@1.18 libxcrypt@4.5.2 numactl@2.0.19 pkgconf@2.5.1 prrte@4.1.0 xz@5.8.3 @@ -20,4 +20,4 @@ gmake@4.4.1 hdf5@1.14.6 libedit@3.1-20251016 libfabric@2.5.1 libpciaccess@0.1 -- 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 -==> 46 installed packages +==> 45 installed packages diff --git a/outputs/basics/gmake.out b/outputs/basics/gmake.out index d579d3386..b2efe337f 100644 --- a/outputs/basics/gmake.out +++ b/outputs/basics/gmake.out @@ -5,9 +5,9 @@ $ spack install gmake [ ] 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 (1s) +[+] yhhe2we gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-yhhe2wecmh7n4qwwmqxictetytv2m6wo (0s) +[ ] mmywg7x compiler-wrapper@1.1.0 install (0s) [+] mmywg7x compiler-wrapper@1.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.1.0-mmywg7x4myxvxepmqe5go3ppxirmuijp (1s) -[+] yhhe2we gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-yhhe2wecmh7n4qwwmqxictetytv2m6wo (1s) [ ] 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 (8s) diff --git a/outputs/basics/hdf5-mpich.out b/outputs/basics/hdf5-mpich.out index e7f4c90b1..d0648b4d6 100644 --- a/outputs/basics/hdf5-mpich.out +++ b/outputs/basics/hdf5-mpich.out @@ -2,8 +2,8 @@ $ spack install hdf5 ^mpich [ ] itb4a2s libfabric@2.5.1 fetching from build cache (0s) [ ] itb4a2s libfabric@2.5.1 relocating (0s) [+] itb4a2s libfabric@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.5.1-itb4a2swgfzelii4nbzmo3fzdnfq5rhy (0s) -[ ] xkilhym mpich@5.0.1 fetching from build cache (1s) -[ ] xkilhym mpich@5.0.1 relocating (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) diff --git a/outputs/basics/hdf5-no-mpi.out b/outputs/basics/hdf5-no-mpi.out index 84321724b..7c5651ba2 100644 --- a/outputs/basics/hdf5-no-mpi.out +++ b/outputs/basics/hdf5-no-mpi.out @@ -1,4 +1,4 @@ $ spack install hdf5~mpi -[ ] as6mmcj hdf5@1.14.6 fetching from build cache (1s) -[ ] 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) +[ ] as6mmcj hdf5@1.14.6 fetching from build cache (0s) +[ ] as6mmcj hdf5@1.14.6 relocating (0s) +[+] as6mmcj hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-as6mmcjwjlgjhglp62wogxim6exfgtvd (0s) diff --git a/outputs/basics/hdf5.out b/outputs/basics/hdf5.out index 01dfa050a..4cf752282 100644 --- a/outputs/basics/hdf5.out +++ b/outputs/basics/hdf5.out @@ -8,28 +8,28 @@ $ spack install hdf5 [ ] 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) -[ ] ekvivpv ncurses@6.6 relocating (0s) [ ] bkzcu2s libxcrypt@4.5.2 relocating (0s) +[ ] ekvivpv ncurses@6.6 relocating (0s) [ ] cbtgjrh bzip2@1.0.8 fetching from build cache (0s) [ ] hhjyyqy xz@5.8.3 relocating (0s) [ ] 2t2useu numactl@2.0.19 fetching from build cache (0s) [ ] 63aruxk zstd@1.5.7 relocating (0s) -[ ] qzkk5ym libpciaccess@0.17 fetching from build cache (0s) [ ] vbwvgwx libiconv@1.18 relocating (0s) -[ ] cbtgjrh bzip2@1.0.8 relocating (0s) +[ ] qzkk5ym libpciaccess@0.17 fetching from build cache (0s) [+] g72d7i3 zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-g72d7i3bvgfmroytbp2d6giv67ymputp (0s) +[ ] cbtgjrh bzip2@1.0.8 relocating (0s) [ ] 2t2useu numactl@2.0.19 relocating (0s) -[ ] qzkk5ym libpciaccess@0.17 relocating (0s) [+] yvl6jpi pkgconf@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-yvl6jpilvkgopkrc2aanfhd3z7lz7r3l (0s) -[+] bkzcu2s libxcrypt@4.5.2 /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.5.2-bkzcu2s2hndgbhrkbhtlcnlvxg2em7e3 (0s) +[ ] qzkk5ym libpciaccess@0.17 relocating (0s) [ ] 33yozp5 openssl@3.6.1 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) [ ] afklka7 pigz@2.8 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) +[+] 63aruxk zstd@1.5.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-63aruxky3a4xfivh32jt676wmoftlzy6 (0s) [+] qzkk5ym libpciaccess@0.17 /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-qzkk5ymbu3z37kjhgylrkdy7w3hixzna (0s) -[ ] afklka7 pigz@2.8 relocating (0s) [+] vbwvgwx libiconv@1.18 /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-vbwvgwxvjrccmptlen3ebo555lk5wior (0s) [ ] 33yozp5 openssl@3.6.1 relocating (0s) +[ ] afklka7 pigz@2.8 relocating (0s) [+] hhjyyqy xz@5.8.3 /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.8.3-hhjyyqygxtpzvdyoddyypk5sfyqdcmqe (0s) [+] 2t2useu numactl@2.0.19 /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.19-2t2useutfyn7jozdzlunsc6336q6fcqx (0s) [+] afklka7 pigz@2.8 /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-afklka7uurghkxzfzr2kpku3hq64dp2w (0s) @@ -44,14 +44,14 @@ $ spack install hdf5 [ ] 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 (0s) [+] ekvivpv ncurses@6.6 /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.6-ekvivpvwxpsfmbydk42j7me3ckftiheo (0s) -[ ] uwyh3xy libedit@3.1-20251016 fetching from build cache (1s) -[ ] ujctyey hwloc@2.13.0 fetching from build cache (1s) -[ ] uwyh3xy libedit@3.1-20251016 relocating (1s) -[ ] sle3ix4 gettext@1.0 fetching from build cache (1s) -[ ] ujctyey hwloc@2.13.0 relocating (1s) -[ ] sle3ix4 gettext@1.0 relocating (1s) -[+] uwyh3xy libedit@3.1-20251016 /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20251016-uwyh3xy52rwywtmgrdtwnljgevcnnctj (1s) -[+] ujctyey hwloc@2.13.0 /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.13.0-ujctyeyjzvata7o7oje5nefjmgqabosi (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 (0s) diff --git a/outputs/basics/install-gcc-16.out b/outputs/basics/install-gcc-16.out index 9fd864323..a576386dd 100644 --- a/outputs/basics/install-gcc-16.out +++ b/outputs/basics/install-gcc-16.out @@ -5,12 +5,12 @@ $ spack install gcc@16 [ ] cuzgmus binutils@2.46.0 relocating (0s) [+] xpmsy5x gmp@6.3.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-xpmsy5xffenfvl6lc5shb5a5krckrznd (0s) [ ] melg7ga mpfr@4.2.2 fetching from build cache (0s) -[ ] melg7ga mpfr@4.2.2 relocating (0s) [+] cuzgmus binutils@2.46.0 /home/spack/spack/opt/spack/linux-x86_64_v3/binutils-2.46.0-cuzgmusnboe4pknwnod4jziquvzteeya (0s) +[ ] melg7ga mpfr@4.2.2 relocating (0s) [+] melg7ga mpfr@4.2.2 /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.2-melg7gafkownovvlndh46ljc4nuf5puy (0s) [ ] gxmoxea mpc@1.4.1 fetching from build cache (0s) [ ] gxmoxea mpc@1.4.1 relocating (0s) -[+] gxmoxea mpc@1.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.4.1-gxmoxea2jy4kihilaqibmhjvvuea3ydy (1s) +[+] 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/tcl-zlib-clang.out b/outputs/basics/tcl-zlib-clang.out index b047feecf..7a76a127c 100644 --- a/outputs/basics/tcl-zlib-clang.out +++ b/outputs/basics/tcl-zlib-clang.out @@ -4,4 +4,4 @@ $ spack install tcl ^zlib-ng@2.0.7 %clang [+] kie72sp zlib-ng@2.0.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-kie72sp5o6k6qp7wr4dg7ccq5xdoadfg (0s) [ ] 53i7gbs tcl@8.6.17 fetching from build cache (0s) [ ] 53i7gbs tcl@8.6.17 relocating (0s) -[+] 53i7gbs tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-53i7gbsb6wbhk55vv62jpqudomfmw6f7 (0s) +[+] 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.out b/outputs/basics/tcl.out deleted file mode 100644 index 98d6a1f74..000000000 --- a/outputs/basics/tcl.out +++ /dev/null @@ -1,4 +0,0 @@ -$ spack install tcl -[ ] jmv6sxq tcl@8.6.17 fetching from build cache (0s) -[ ] jmv6sxq tcl@8.6.17 relocating (0s) -[+] jmv6sxq tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-jmv6sxqk3p4ykp5vh7jl6i5na4vfr46e (1s) diff --git a/outputs/basics/trilinos-hdf5.out b/outputs/basics/trilinos-hdf5.out index 9f5989c4c..6218b08b2 100644 --- a/outputs/basics/trilinos-hdf5.out +++ b/outputs/basics/trilinos-hdf5.out @@ -1,4 +1,4 @@ $ 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 (0s) +[+] 3sqhxga trilinos@17.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-17.1.1-3sqhxgauqbdivdlcr6gdh2km37fiky5j (1s) diff --git a/outputs/basics/trilinos.out b/outputs/basics/trilinos.out index ba3c460af..3b561a40f 100644 --- a/outputs/basics/trilinos.out +++ b/outputs/basics/trilinos.out @@ -1,12 +1,12 @@ $ spack install trilinos -[ ] 7kdghmr openblas@0.3.33 fetching from build cache (1s) -[ ] kpwomw3 kokkos@5.1.1 fetching from build cache (1s) -[ ] kpwomw3 kokkos@5.1.1 relocating (1s) -[ ] 7kdghmr openblas@0.3.33 relocating (1s) -[+] kpwomw3 kokkos@5.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-5.1.1-kpwomw3oxg75uzjlwi2j62ncy7uq356m (1s) +[ ] 7kdghmr openblas@0.3.33 fetching from build cache (0s) +[ ] kpwomw3 kokkos@5.1.1 fetching from build cache (0s) +[ ] kpwomw3 kokkos@5.1.1 relocating (0s) +[ ] 7kdghmr openblas@0.3.33 relocating (0s) +[+] kpwomw3 kokkos@5.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-5.1.1-kpwomw3oxg75uzjlwi2j62ncy7uq356m (0s) [ ] 5zilkuz kokkos-kernels@5.1.1 fetching from build cache (0s) [ ] 5zilkuz kokkos-kernels@5.1.1 relocating (0s) -[+] 7kdghmr openblas@0.3.33 /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.33-7kdghmrs2gv3hijtczxgksuak43u6vsh (1s) +[+] 7kdghmr openblas@0.3.33 /home/spack/spack/opt/spack/linux-x86_64_v3/openblas-0.3.33-7kdghmrs2gv3hijtczxgksuak43u6vsh (0s) [+] 5zilkuz kokkos-kernels@5.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-kernels-5.1.1-5zilkuzvnsxj6abvzudjlshewffiatse (0s) [ ] u43pchx trilinos@17.1.1 fetching from build cache (0s) [ ] u43pchx trilinos@17.1.1 relocating (0s) diff --git a/outputs/basics/uninstall-zlib.out b/outputs/basics/uninstall-zlib.out index 02b34507a..4b850a095 100644 --- a/outputs/basics/uninstall-zlib.out +++ b/outputs/basics/uninstall-zlib.out @@ -1,43 +1,2 @@ $ spack uninstall -y zlib-ng %gcc@14 -Script started on 2026-06-16 15:42:15+00:00 [COMMAND="spack uninstall -y zlib-ng %gcc@14" TERM="xterm" TTY="/dev/pts/0" COLUMNS="-1" LINES="-1"] -==> Error: zlib-ng %gcc@14 matches multiple packages: - - -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- - z7qz2gt zlib-ng@2.3.3 slhcf4i zlib-ng@2.3.3 - -==> Error: You can either: - a) use a more specific spec, or - b) specify the spec by its hash (e.g. `spack uninstall /hash`), or - c) use `spack uninstall --all` to uninstall ALL matching specs. - - -Script done on 2026-06-16 15:42:16+00:00 [COMMAND_EXIT_CODE="1"] -$ spack uninstall -y zlib-ng %gcc@14 -Script started on 2026-06-16 15:49:17+00:00 [COMMAND="spack uninstall -y zlib-ng %gcc@14" TERM="xterm" TTY="/dev/pts/0" COLUMNS="201" LINES="55"] -==> Error: zlib-ng %gcc@14 matches multiple packages: - - -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- - z7qz2gt zlib-ng@2.3.3 slhcf4i zlib-ng@2.3.3 - -==> Error: You can either: - a) use a more specific spec, or - b) specify the spec by its hash (e.g. `spack uninstall /hash`), or - c) use `spack uninstall --all` to uninstall ALL matching specs. - - -Script done on 2026-06-16 15:49:18+00:00 [COMMAND_EXIT_CODE="1"] -$ spack uninstall -y zlib-ng %gcc@14 -Script started on 2026-06-16 16:13:46+00:00 [COMMAND="spack uninstall -y zlib-ng %gcc@14" TERM="xterm" TTY="/dev/pts/0" COLUMNS="201" LINES="55"] -==> Refusing to uninstall the following specs - -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@14.3.0 -------------- - slhcf4i zlib-ng@2.3.3 - -==> The following dependents are still installed: - -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- - jmv6sxq tcl@8.6.17 - -==> Error: There are still dependents. - use `spack uninstall --dependents` to remove dependents too - use `spack uninstall --force` to override - -Script done on 2026-06-16 16:13:46+00:00 [COMMAND_EXIT_CODE="1"] +==> 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/zlib-clang.out b/outputs/basics/zlib-clang.out index 3bee89092..ff8bc199e 100644 --- a/outputs/basics/zlib-clang.out +++ b/outputs/basics/zlib-clang.out @@ -1,4 +1,4 @@ $ spack install zlib-ng %clang [ ] 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 (1s) +[+] 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/tutorial_basics.rst b/tutorial_basics.rst index 66a0fec29..4f60a30f0 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -286,14 +286,21 @@ Now that we have installed a variety of packages, we can use the ``spack find`` .. literalinclude:: outputs/basics/find.out :language: spec +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-lf.out +.. literalinclude:: outputs/basics/find-l.out :language: spec As we saw when referring to builds by hash, every installed package has a distinct hash, so configurations that look alike in the default output still occupy separate installations. +``spack find`` can also show what each installed package depends on with the ``-d`` flag. +For example, here is the ``tcl`` we installed, shown with its dependency tree: + +.. literalinclude:: outputs/basics/find-d-tcl.out + :language: spec + The ``spack find`` command can also accept what we call "anonymous specs": expressions in spec syntax that do not contain a package name. For example, ``spack find ^mpich`` will return every installed package that depends on MPICH. @@ -319,7 +326,8 @@ Now that we know the spec syntax and how to query installations, let's put them Now we're starting to see the power of Spack. Depending on the spec, Trilinos can have over 30 direct dependencies, many of which have dependencies of their own. -Installing more complex packages can take days or weeks even for an experienced user. +Only a handful are built here, though: the rest of that large graph was already installed earlier in the tutorial, so Spack reuses those builds instead of repeating them. +Installing a package this complex by hand can take an experienced user days or weeks. Although we've done a binary installation for the tutorial, a source installation of Trilinos using Spack takes about 3 hours (depending on the system), but only 20 seconds of programmer time. Spack manages the consistency of the entire DAG: every package that depends on MPI is satisfied by the same MPI. @@ -347,12 +355,9 @@ We can instead render it as an image with ``spack graph --dot``: 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 @@ -364,24 +369,25 @@ We can uninstall packages by spec using the same syntax as install. .. literalinclude:: outputs/basics/find-lf-zlib.out :language: spec -We can also uninstall packages by referring only to their hash. - -We can use either the ``--force`` (or ``-f``) flag or the ``--dependents`` (or ``-R``) flag to remove packages that are required by another installed package. -Use ``--force`` to remove just the specified package, leaving dependents broken. -Use ``--dependents`` to remove the specified package and all of its dependents. +We can also refer to a package by its hash instead of a full spec. +But Spack won't remove a package that another installed package still needs: .. literalinclude:: outputs/basics/uninstall-needed.out :language: spec +To remove it anyway, use ``--force`` (or ``-f``) to delete just that package and leave its dependents broken, or ``--dependents`` (or ``-R``) to remove it together with everything that depends on it: + .. literalinclude:: outputs/basics/uninstall-r-needed.out :language: spec -Spack will not uninstall packages that are not sufficiently specified (i.e., if the spec is ambiguous and matches multiple installed packages). -The ``--all`` (or ``-a``) flag can be used to uninstall all packages matching an ambiguous spec. +Spack refuses to uninstall a package when the spec is ambiguous -- when it matches more than one installed package: .. literalinclude:: outputs/basics/uninstall-ambiguous.out :language: spec +As the error suggests, we can disambiguate with a more specific spec, refer to the exact build by its hash, or pass ``--all`` (or ``-a``) to remove every match. +Here we remove one of the two Trilinos builds by its hash: + .. literalinclude:: outputs/basics/uninstall-specific.out :language: spec @@ -389,29 +395,28 @@ The ``--all`` (or ``-a``) flag can be used to uninstall all packages matching an 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``. +In the *Installing Packages* section, we saw that Spack manages a list of available compilers on the system, detected automatically from the user's ``PATH`` variable: .. literalinclude:: outputs/basics/compilers.out :language: console -These compilers are maintained in a YAML file. -Later in the tutorial we will discuss how to configure external compilers by hand for special cases. -Spack can also use compilers built by Spack to compile later packages. +Spack can also build a compiler itself and then use it to compile other packages. .. 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@16`` 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 @@ -419,7 +424,7 @@ For now, we will uninstall it to avoid using it in the next section. .. note:: The spec syntax may be confusing for new users. - Spack can provide information about commands you run frequently. + Spack can provide information about the commands you run. For instance, see the output of ``spack help --spec``: .. literalinclude:: outputs/basics/help-spec.out From 8bb5b6e8b75bb953f215729598e96b1e8225d9d6 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Wed, 17 Jun 2026 00:59:05 +0200 Subject: [PATCH 18/26] Add missing output --- outputs/basics/info-zlib.out | 44 ++++++++++++++++++++++++++ outputs/basics/install-gcc-12.1.0.out | 16 ++++++++++ outputs/basics/providers-mpi.out | 7 ++++ outputs/basics/spec-hdf5-compilers.out | 44 ++++++++++++++++++++++++++ outputs/basics/spec-tcl-zlib-clang.out | 10 ++++++ outputs/basics/spec-tcl-zlib-hash.out | 10 ++++++ outputs/basics/trilinos-find-mpich.out | 7 ++++ outputs/basics/zlib-build-type.out | 4 +++ outputs/basics/zlib-ipo.out | 4 +++ 9 files changed, 146 insertions(+) create mode 100644 outputs/basics/info-zlib.out create mode 100644 outputs/basics/install-gcc-12.1.0.out create mode 100644 outputs/basics/providers-mpi.out create mode 100644 outputs/basics/spec-hdf5-compilers.out create mode 100644 outputs/basics/spec-tcl-zlib-clang.out create mode 100644 outputs/basics/spec-tcl-zlib-hash.out create mode 100644 outputs/basics/trilinos-find-mpich.out create mode 100644 outputs/basics/zlib-build-type.out create mode 100644 outputs/basics/zlib-ipo.out diff --git a/outputs/basics/info-zlib.out b/outputs/basics/info-zlib.out new file mode 100644 index 000000000..8635962f8 --- /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 new file mode 100644 index 000000000..880ea216e --- /dev/null +++ b/outputs/basics/install-gcc-12.1.0.out @@ -0,0 +1,16 @@ +$ 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/providers-mpi.out b/outputs/basics/providers-mpi.out new file mode 100644 index 000000000..399020d8e --- /dev/null +++ b/outputs/basics/providers-mpi.out @@ -0,0 +1,7 @@ +$ spack providers mpi +mpi: +-- no arch / no compilers --------------------------------------- +cray-mpich@:8 fujitsu-mpi mpi-serial mpich@:1.2 mpich@:4.3 mpitrampoline mpt@3: mvapich-plus mvapich2@2.3: openmpi@:1.2 openmpi@1.7.5:1.10.7 +cray-mpich@9: hpcx-mpi mpich@:1.0 mpich@:3.1 mpich@5: mpt msmpi mvapich2 nmad openmpi@1.3:1.7.2 openmpi@2.0.0: +cray-mvapich2 intel-oneapi-mpi mpich@:1.1 mpich@:3.2 mpilander mpt@1: mvapich mvapich2@2.1: nvhpc openmpi@1.7.3:1.7.4 spectrum-mpi + diff --git a/outputs/basics/spec-hdf5-compilers.out b/outputs/basics/spec-hdf5-compilers.out new file mode 100644 index 000000000..bf0be0724 --- /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 000000000..c18200580 --- /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 000000000..1dfd16633 --- /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/trilinos-find-mpich.out b/outputs/basics/trilinos-find-mpich.out new file mode 100644 index 000000000..2ca11eee3 --- /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/zlib-build-type.out b/outputs/basics/zlib-build-type.out new file mode 100644 index 000000000..73a284227 --- /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-ipo.out b/outputs/basics/zlib-ipo.out new file mode 100644 index 000000000..e17bb56a4 --- /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) From 1586d8621876aa52619846011cb45014057736a3 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Wed, 17 Jun 2026 11:45:42 +0200 Subject: [PATCH 19/26] Polish the section --- outputs/basics.sh | 23 ++++----- outputs/basics/clone.out | 4 +- outputs/basics/compiler-uninstall.out | 8 +-- outputs/basics/compilers.out | 7 --- outputs/basics/gmake.out | 6 +-- outputs/basics/graph-tcl.out | 25 +++++----- outputs/basics/hdf5-mpich.out | 8 +-- outputs/basics/hdf5.out | 44 ++++++++--------- outputs/basics/install-gcc-16.out | 6 +-- outputs/basics/spec-zziplib.out | 70 +++++++++++---------------- outputs/basics/tcl-zlib-clang.out | 2 +- outputs/basics/trilinos.out | 2 +- outputs/basics/zlib-2.0.7.out | 8 +-- outputs/basics/zlib-ipo.out | 6 +-- tutorial_basics.rst | 62 +++++++++++++----------- 15 files changed, 126 insertions(+), 155 deletions(-) delete mode 100644 outputs/basics/compilers.out diff --git a/outputs/basics.sh b/outputs/basics.sh index 34b0eb4ea..a4791c768 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" @@ -23,7 +23,7 @@ example basics/source-setup ". share/spack/setup-env.sh" spack repo update -# spack list +# Installing Packages example basics/list "spack list" example basics/list-py "spack list 'py-*'" @@ -35,10 +35,7 @@ example basics/compiler-list "spack compilers" example basics/mirror "spack mirror add --unsigned tutorial /mirror" #example basics/mirror "spack buildcache keys --install --trust" -# NOTE: specs reordered (spec-syntax subsections regrouped; querying moved to its -# own section after the spec syntax; zlib-ng variant examples added; hdf5 moved to -# the virtual-dependencies block; spack info added to Variants; trilinos moved to its own -# section after Querying). Outputs under outputs/basics/ need regeneration. +# The Spec Syntax example basics/versions-zlib "spack versions zlib-ng" example --tee basics/zlib-2.0.7 "spack install zlib-ng@2.0.7" @@ -53,8 +50,7 @@ example --tee basics/zlib-gcc-14 "spack install zlib-ng %gcc@14" 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" -# Refer to the zlib-ng@2.0.7 %clang build we just installed by its hash. This spec -# is unambiguous (the other zlib-ng@2.0.7 build uses gcc), so the query is safe here. +# 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}" @@ -68,19 +64,19 @@ example --tee basics/hdf5-no-mpi "spack install hdf5~mpi" example --tee basics/hdf5-mpich "spack install hdf5 ^mpich" example basics/spec-hdf5-compilers "spack spec hdf5 %c,cxx=clang %fortran=gcc" -# Querying Installations (now its own doc section, after The Spec Syntax). These run -# BEFORE trilinos is installed, so their outputs reflect a pre-trilinos state. +# 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 (Trilinos) -- its own doc section, after Querying, before Uninstalling. +# 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@14" @@ -96,12 +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/compilers "spack compilers" - +# 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@16" -echo y | example basics/compiler-uninstall 'spack uninstall gcc@16' +example basics/compiler-uninstall 'spack uninstall -y gcc@16' diff --git a/outputs/basics/clone.out b/outputs/basics/clone.out index 0cb0aba4f..6daf55fea 100644 --- a/outputs/basics/clone.out +++ b/outputs/basics/clone.out @@ -3,7 +3,7 @@ Cloning into '/home/spack/spack'... 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.1327i(delta7249),/pack-reused 0 (from 0)K -Receiving objects: 100% (2411/2411), 5.48 MiB | 10.15MMiB/s, done. +remote:nTotale2411 (delta2326),4reused 1327 (delta 249), pack-reused 0 (from 0)K +Receiving objects: 100% (2411/2411), 5.48 MiB | 12.50 MiB/s, done. Resolving deltas: 100% (326/326), done. $ cd ~/spack diff --git a/outputs/basics/compiler-uninstall.out b/outputs/basics/compiler-uninstall.out index 9588ed052..b545da5d5 100644 --- a/outputs/basics/compiler-uninstall.out +++ b/outputs/basics/compiler-uninstall.out @@ -1,6 +1,2 @@ -$ spack uninstall gcc@16 -y - -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- - vlwdxlj gcc@16.1.0 - -==> 1 packages will be uninstalled. Do you want to proceed? [y/N] ==> 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 +$ 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.out b/outputs/basics/compilers.out deleted file mode 100644 index 025c50b8f..000000000 --- a/outputs/basics/compilers.out +++ /dev/null @@ -1,7 +0,0 @@ -$ spack compilers -==> Available compilers --- gcc ubuntu26.04-x86_64 --------------------------------------- -[e] gcc@15.2.0 [e] gcc@14.3.0 - --- llvm ubuntu26.04-x86_64 -------------------------------------- -[e] llvm@21.1.8 diff --git a/outputs/basics/gmake.out b/outputs/basics/gmake.out index b2efe337f..ea95dfd4f 100644 --- a/outputs/basics/gmake.out +++ b/outputs/basics/gmake.out @@ -7,7 +7,7 @@ $ spack install gmake [ ] yhhe2we gcc-runtime@15.2.0 install (0s) [+] yhhe2we gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-yhhe2wecmh7n4qwwmqxictetytv2m6wo (0s) [ ] mmywg7x compiler-wrapper@1.1.0 install (0s) -[+] mmywg7x compiler-wrapper@1.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.1.0-mmywg7x4myxvxepmqe5go3ppxirmuijp (1s) +[+] mmywg7x compiler-wrapper@1.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.1.0-mmywg7x4myxvxepmqe5go3ppxirmuijp (0s) [ ] cdyuto2 gmake@4.4.1 staging (0s) -[ ] cdyuto2 gmake@4.4.1 install (0s) -[+] cdyuto2 gmake@4.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-cdyuto2vcd73fdknitpbrk3mofaa6hw5 (8s) +[ ] cdyuto2 gmake@4.4.1 install (1s) +[+] cdyuto2 gmake@4.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-cdyuto2vcd73fdknitpbrk3mofaa6hw5 (9s) diff --git a/outputs/basics/graph-tcl.out b/outputs/basics/graph-tcl.out index 614d0482d..3e3a6b69a 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/jmv6sxq +o tcl@8.6.17/d4ibosb |\ | |\ | | |\ | | | |\ | | | | |\ -o | | | | | zlib-ng@2.3.3/slhcf4i +o | | | | | zlib-ng@2.3.3/g72d7i3 |\| | | | | |\ \ \ \ \ \ | |_|/ / / / @@ -14,17 +14,16 @@ o | | | | | zlib-ng@2.3.3/slhcf4i | | |_|/ / / | |/| | | | | | |\ \ \ \ -| | | | |_|/ -| | | |/| | -| | | | o | gmake@4.4.1/ofpkua6 -| |_|_|/| | -|/| |_|/| | -| |/| |/| | -| | |/|/ / -| | | o | compiler-wrapper@1.1.0/mmywg7x -| | | / -| | o | gcc@14.3.0/5zrvmb3 -| | / +| | | |_|/ / +| | |/| | | +| | | |/ / +| | | | o gmake@4.4.1/r4lhaok +| |_|_|/| +|/| |_|/| +| |/| |/| +| | |/|/ +| | | o compiler-wrapper@1.1.0/mmywg7x +| | | | o | gcc-runtime@15.2.0/xm76mt3 |/| | | |/ diff --git a/outputs/basics/hdf5-mpich.out b/outputs/basics/hdf5-mpich.out index d0648b4d6..be7c1a802 100644 --- a/outputs/basics/hdf5-mpich.out +++ b/outputs/basics/hdf5-mpich.out @@ -4,7 +4,7 @@ $ spack install hdf5 ^mpich [+] itb4a2s libfabric@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.5.1-itb4a2swgfzelii4nbzmo3fzdnfq5rhy (0s) [ ] xkilhym mpich@5.0.1 fetching from build cache (0s) [ ] xkilhym mpich@5.0.1 relocating (0s) -[+] xkilhym mpich@5.0.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-5.0.1-xkilhym6dn2n7afhh5dtjskmj5jwjbhm (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 (0s) +[+] xkilhym mpich@5.0.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpich-5.0.1-xkilhym6dn2n7afhh5dtjskmj5jwjbhm (0s) +[ ] jceyzq7 hdf5@1.14.6 fetching from build cache (1s) +[ ] jceyzq7 hdf5@1.14.6 relocating (1s) +[+] jceyzq7 hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-jceyzq7qvavwbbfywa3dt3jfurkfk4ba (1s) diff --git a/outputs/basics/hdf5.out b/outputs/basics/hdf5.out index 4cf752282..114ec1fdd 100644 --- a/outputs/basics/hdf5.out +++ b/outputs/basics/hdf5.out @@ -9,65 +9,65 @@ $ spack install hdf5 [ ] 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) -[ ] ekvivpv ncurses@6.6 relocating (0s) [ ] cbtgjrh bzip2@1.0.8 fetching from build cache (0s) -[ ] hhjyyqy xz@5.8.3 relocating (0s) +[ ] ekvivpv ncurses@6.6 relocating (0s) [ ] 2t2useu numactl@2.0.19 fetching from build cache (0s) -[ ] 63aruxk zstd@1.5.7 relocating (0s) -[ ] vbwvgwx libiconv@1.18 relocating (0s) +[ ] hhjyyqy xz@5.8.3 relocating (0s) [ ] qzkk5ym libpciaccess@0.17 fetching from build cache (0s) -[+] g72d7i3 zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-g72d7i3bvgfmroytbp2d6giv67ymputp (0s) +[ ] vbwvgwx libiconv@1.18 relocating (0s) +[ ] 63aruxk zstd@1.5.7 relocating (0s) [ ] cbtgjrh bzip2@1.0.8 relocating (0s) [ ] 2t2useu numactl@2.0.19 relocating (0s) -[+] yvl6jpi pkgconf@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-yvl6jpilvkgopkrc2aanfhd3z7lz7r3l (0s) +[+] g72d7i3 zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-g72d7i3bvgfmroytbp2d6giv67ymputp (0s) [ ] qzkk5ym libpciaccess@0.17 relocating (0s) -[ ] 33yozp5 openssl@3.6.1 fetching from build cache (0s) +[+] yvl6jpi pkgconf@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-yvl6jpilvkgopkrc2aanfhd3z7lz7r3l (0s) [+] bkzcu2s libxcrypt@4.5.2 /home/spack/spack/opt/spack/linux-x86_64_v3/libxcrypt-4.5.2-bkzcu2s2hndgbhrkbhtlcnlvxg2em7e3 (0s) -[ ] afklka7 pigz@2.8 fetching from build cache (0s) [+] cbtgjrh bzip2@1.0.8 /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-cbtgjrhpwivtaewryhbkj6zxuukhoekx (0s) +[ ] 33yozp5 openssl@3.6.1 fetching from build cache (0s) [+] 63aruxk zstd@1.5.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zstd-1.5.7-63aruxky3a4xfivh32jt676wmoftlzy6 (0s) +[ ] afklka7 pigz@2.8 fetching from build cache (0s) [+] qzkk5ym libpciaccess@0.17 /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-qzkk5ymbu3z37kjhgylrkdy7w3hixzna (0s) [+] vbwvgwx libiconv@1.18 /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-vbwvgwxvjrccmptlen3ebo555lk5wior (0s) -[ ] 33yozp5 openssl@3.6.1 relocating (0s) -[ ] afklka7 pigz@2.8 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 relocating (0s) [+] 2t2useu numactl@2.0.19 /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.19-2t2useutfyn7jozdzlunsc6336q6fcqx (0s) -[+] afklka7 pigz@2.8 /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-afklka7uurghkxzfzr2kpku3hq64dp2w (0s) +[ ] 33yozp5 openssl@3.6.1 relocating (0s) [ ] ujlg2ua libxml2@2.15.3 fetching from build cache (0s) +[+] afklka7 pigz@2.8 /home/spack/spack/opt/spack/linux-x86_64_v3/pigz-2.8-afklka7uurghkxzfzr2kpku3hq64dp2w (0s) [ ] ujlg2ua libxml2@2.15.3 relocating (0s) [ ] f5xe4px tar@1.35 fetching from build cache (0s) [ ] f5xe4px tar@1.35 relocating (0s) -[+] 33yozp5 openssl@3.6.1 /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.1-33yozp5l5ca4dnkgjjf2l2tdvt47mdna (0s) [+] ujlg2ua libxml2@2.15.3 /home/spack/spack/opt/spack/linux-x86_64_v3/libxml2-2.15.3-ujlg2uai6quwrnqjswhpatdam2owxnzh (0s) +[+] 33yozp5 openssl@3.6.1 /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.1-33yozp5l5ca4dnkgjjf2l2tdvt47mdna (0s) [+] f5xe4px tar@1.35 /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-f5xe4pxaujwc2cs2ppllgloh7gwbkkyd (0s) [ ] oopqoag libevent@2.1.12 fetching from build cache (0s) [ ] oopqoag libevent@2.1.12 relocating (0s) -[+] oopqoag libevent@2.1.12 /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-oopqoagvk4zhptmzymsbim2dmnfy37zf (0s) [+] ekvivpv ncurses@6.6 /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.6-ekvivpvwxpsfmbydk42j7me3ckftiheo (0s) +[+] oopqoag libevent@2.1.12 /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-oopqoagvk4zhptmzymsbim2dmnfy37zf (0s) +[ ] sle3ix4 gettext@1.0 fetching from build cache (0s) [ ] uwyh3xy libedit@3.1-20251016 fetching from build cache (0s) [ ] ujctyey hwloc@2.13.0 fetching from build cache (0s) -[ ] 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) +[ ] ujctyey hwloc@2.13.0 relocating (0s) [+] uwyh3xy libedit@3.1-20251016 /home/spack/spack/opt/spack/linux-x86_64_v3/libedit-3.1-20251016-uwyh3xy52rwywtmgrdtwnljgevcnnctj (0s) [+] ujctyey hwloc@2.13.0 /home/spack/spack/opt/spack/linux-x86_64_v3/hwloc-2.13.0-ujctyeyjzvata7o7oje5nefjmgqabosi (0s) [ ] ycyqykw pmix@6.1.0 fetching from build cache (0s) [ ] ycyqykw pmix@6.1.0 relocating (0s) [+] ycyqykw pmix@6.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/pmix-6.1.0-ycyqykw634st7ajhnrl2kqnkldgtk3xr (0s) [ ] nldxmxw prrte@4.1.0 fetching from build cache (0s) -[ ] 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) +[+] sle3ix4 gettext@1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-1.0-sle3ix4nizh2w3uwvaokqlqlotlaexbu (0s) +[ ] nldxmxw prrte@4.1.0 relocating (1s) +[ ] ldqeqfw krb5@1.22.2 fetching from build cache (1s) +[ ] ldqeqfw krb5@1.22.2 relocating (1s) +[+] ldqeqfw krb5@1.22.2 /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.22.2-ldqeqfwa76qeegjqhv72by6ayv5xlwae (1s) +[+] nldxmxw prrte@4.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.1.0-nldxmxwkhusnlqwqsuacqvn3t5r6bpjb (1s) [ ] m6yx5j3 openssh@10.3p1 fetching from build cache (0s) [ ] m6yx5j3 openssh@10.3p1 relocating (0s) [+] m6yx5j3 openssh@10.3p1 /home/spack/spack/opt/spack/linux-x86_64_v3/openssh-10.3p1-m6yx5j3srcybuucnboqjse2jc2a35vxq (0s) [ ] qfut5qq openmpi@5.0.10 fetching from build cache (0s) [ ] qfut5qq openmpi@5.0.10 relocating (0s) -[+] qfut5qq openmpi@5.0.10 /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.10-qfut5qqwp2fzaq3ymgk7nxvjv3qyrvml (1s) +[+] qfut5qq openmpi@5.0.10 /home/spack/spack/opt/spack/linux-x86_64_v3/openmpi-5.0.10-qfut5qqwp2fzaq3ymgk7nxvjv3qyrvml (0s) [ ] 7cwv3st hdf5@1.14.6 fetching from build cache (0s) [ ] 7cwv3st hdf5@1.14.6 relocating (0s) [+] 7cwv3st hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-7cwv3stkmkwxjbnujvpc6drqh3af5cwz (0s) diff --git a/outputs/basics/install-gcc-16.out b/outputs/basics/install-gcc-16.out index a576386dd..fcb47d193 100644 --- a/outputs/basics/install-gcc-16.out +++ b/outputs/basics/install-gcc-16.out @@ -5,12 +5,12 @@ $ spack install gcc@16 [ ] cuzgmus binutils@2.46.0 relocating (0s) [+] xpmsy5x gmp@6.3.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-xpmsy5xffenfvl6lc5shb5a5krckrznd (0s) [ ] melg7ga mpfr@4.2.2 fetching from build cache (0s) -[+] cuzgmus binutils@2.46.0 /home/spack/spack/opt/spack/linux-x86_64_v3/binutils-2.46.0-cuzgmusnboe4pknwnod4jziquvzteeya (0s) [ ] melg7ga mpfr@4.2.2 relocating (0s) +[+] cuzgmus binutils@2.46.0 /home/spack/spack/opt/spack/linux-x86_64_v3/binutils-2.46.0-cuzgmusnboe4pknwnod4jziquvzteeya (0s) [+] melg7ga mpfr@4.2.2 /home/spack/spack/opt/spack/linux-x86_64_v3/mpfr-4.2.2-melg7gafkownovvlndh46ljc4nuf5puy (0s) [ ] gxmoxea mpc@1.4.1 fetching from build cache (0s) -[ ] gxmoxea mpc@1.4.1 relocating (0s) -[+] gxmoxea mpc@1.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.4.1-gxmoxea2jy4kihilaqibmhjvvuea3ydy (0s) +[ ] gxmoxea mpc@1.4.1 relocating (1s) +[+] gxmoxea mpc@1.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.4.1-gxmoxea2jy4kihilaqibmhjvvuea3ydy (1s) [ ] vlwdxlj gcc@16.1.0 fetching from build cache (0s) [ ] vlwdxlj gcc@16.1.0 relocating (0s) [+] vlwdxlj gcc@16.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-16.1.0-vlwdxljzbis42fjrlecvyo4tmuq5eebn (1s) diff --git a/outputs/basics/spec-zziplib.out b/outputs/basics/spec-zziplib.out index a45b3e6ab..7b789863e 100644 --- a/outputs/basics/spec-zziplib.out +++ b/outputs/basics/spec-zziplib.out @@ -1,25 +1,20 @@ $ 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@16.1.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@16.1.0 -[b] ^nghttp2@1.67.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 -[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@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 -[b] ^openssl@3.6.1~docs+shared build_system=generic certs=mozilla platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=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 -[b] ^perl@5.42.0+cpanm+opcode+open+shared+threads build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.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@16.1.0 -[b] ^less@692 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 [+] ^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 -[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 -[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 -[b] ^gmake@4.4.1~guile build_system=generic 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 @@ -27,48 +22,37 @@ $ spack spec zziplib %gcc@16 [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 -[+] ^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] ^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 -[+] ^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] ^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 -[+] ^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 -[+] ^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 -[+] ^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 [+] ^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@16.1.0 -[+] ^pkgconf@2.5.1 build_system=autotools 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@16.1.0 -[b] ^bzip2@1.0.8~debug~pic+shared build_system=generic platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 -[b] ^diffutils@3.12 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 -[b] ^expat@2.8.1+libbsd build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 -[b] ^libbsd@0.12.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 -[b] ^libmd@1.1.0 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 -[b] ^gdbm@1.26 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.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@16.1.0 -[b] ^libiconv@1.18 build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 -[b] ^libxml2@2.15.3+pic~python+shared build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 -[b] ^tar@1.35 build_system=autotools zip=pigz platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 -[b] ^pigz@2.8 build_system=makefile platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 -[b] ^libffi@3.5.2 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c,cxx=gcc@16.1.0 -[b] ^pkgconf@2.5.1 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 -[b] ^readline@8.3 build_system=autotools patches:=21f0a03,72dee13,e273643 platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 -[b] ^sqlite@3.53.1+column_metadata+fts+rtree build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 -[b] ^util-linux-uuid@2.41 build_system=autotools platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.0 -[b] ^xz@5.8.3~pic build_system=autotools libs:=shared,static platform=linux os=ubuntu26.04 target=x86_64_v3 %c=gcc@16.1.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@16.1.0 +[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 -[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@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 7a76a127c..b047feecf 100644 --- a/outputs/basics/tcl-zlib-clang.out +++ b/outputs/basics/tcl-zlib-clang.out @@ -4,4 +4,4 @@ $ spack install tcl ^zlib-ng@2.0.7 %clang [+] 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) +[+] 53i7gbs tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-53i7gbsb6wbhk55vv62jpqudomfmw6f7 (0s) diff --git a/outputs/basics/trilinos.out b/outputs/basics/trilinos.out index 3b561a40f..5b5db451d 100644 --- a/outputs/basics/trilinos.out +++ b/outputs/basics/trilinos.out @@ -10,4 +10,4 @@ $ spack install trilinos [+] 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 (1s) +[+] u43pchx trilinos@17.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-17.1.1-u43pchxcfkd7syptwimxl4lozm5jmy2h (0s) diff --git a/outputs/basics/zlib-2.0.7.out b/outputs/basics/zlib-2.0.7.out index e2778da7d..d053d97e7 100644 --- a/outputs/basics/zlib-2.0.7.out +++ b/outputs/basics/zlib-2.0.7.out @@ -2,7 +2,7 @@ $ spack install zlib-ng@2.0.7 [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 (1s) -[ ] 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) +[+] xm76mt3 gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-xm76mt35elmqwrjdlibzhngqkiqnyq4p (0s) +[ ] aeoqp4e zlib-ng@2.0.7 fetching from build cache (1s) +[ ] aeoqp4e zlib-ng@2.0.7 relocating (1s) +[+] aeoqp4e zlib-ng@2.0.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-aeoqp4ey2pntuxsbajc5hwovr5l4qy2l (1s) diff --git a/outputs/basics/zlib-ipo.out b/outputs/basics/zlib-ipo.out index e17bb56a4..518ab2ec3 100644 --- a/outputs/basics/zlib-ipo.out +++ b/outputs/basics/zlib-ipo.out @@ -1,4 +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) +[ ] 6l3ycpy zlib-ng@2.3.3 fetching from build cache (1s) +[ ] 6l3ycpy zlib-ng@2.3.3 relocating (1s) +[+] 6l3ycpy zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-6l3ycpy4crfl6ry4jax3p6crw3byw5oa (1s) diff --git a/tutorial_basics.rst b/tutorial_basics.rst index 4f60a30f0..84a586e99 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -29,10 +29,10 @@ 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. +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 @@ -47,10 +47,13 @@ Spack has some nice command line integration tools, so instead of simply prepend And now we're good to go! ------------------ -What is in Spack? ------------------ +.. _basics-tutorial-install-packages: +------------------- +Installing Packages +------------------- + +Before installing anything, let's see what Spack has to offer. The ``spack list`` command shows available packages. .. literalinclude:: outputs/basics/list.out @@ -66,11 +69,7 @@ For example, let's view all available Python packages. :language: console :lines: 1-6 -------------------- -Installing Packages -------------------- - -Installing a package is as simple as typing ``spack install`` followed by its name: +Once we've found a package, installing it is as simple as typing ``spack install`` followed by its name: .. code-block:: console @@ -117,8 +116,7 @@ The Spec Syntax 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. -We express each kind of constraint with its own sigil -- ``@`` for versions, ``+`` and ``~`` for variants, ``%`` for direct dependencies such as compilers, and ``^`` for dependencies anywhere in the graph. -The subsections below introduce these one at a time, building up from a bare package name to fully constrained dependency graphs. +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. ^^^^^^^^ Versions @@ -166,9 +164,8 @@ Requesting one of them, as we just did with ``+ipo``, therefore also selects the .. note:: - The spec syntax can also set compiler flags directly on a build. - Spack accepts ``cppflags``, ``cflags``, ``cxxflags``, ``fflags``, ``ldflags``, and ``ldlibs`` -- written like ``cflags="-O3"`` -- and its compiler wrappers inject them into the appropriate compilation commands (values containing spaces must be quoted on the command line). - This is an escape hatch for special cases rather than the usual way to configure a build: most of the time a package's variants and build system already select appropriate options, so reach for explicit flags only when you genuinely need them. + The same ``name=value`` syntax also sets compiler flags on a build: Spack accepts ``cflags``, ``cxxflags``, ``cppflags``, ``fflags``, ``ldflags``, and ``ldlibs`` -- written like ``cflags="-O3"`` (quote values containing spaces) -- and its compiler wrappers inject them into the right commands. + This is an escape hatch, though: a package's variants and build system usually select appropriate options already, so reach for explicit flags only when you genuinely need them. ^^^^^^^^^^^^^^^^^^^ Direct Dependencies @@ -275,6 +272,26 @@ The same syntax works for ``mpi``: we could have written ``hdf5 ^mpi=mpich`` ins There's no need, though, because the only way for ``hdf5`` to depend on ``mpich`` is for ``mpich`` to provide ``mpi``. This is also why we didn't have to specify which virtuals ``gcc`` and ``clang`` provided earlier when building simpler packages. +^^^^^^^^^^^^^^^^^^^^^ +Spec Syntax Reference +^^^^^^^^^^^^^^^^^^^^^ + +We have now seen every piece of the spec syntax. +Taken together, the sigils let us constrain any part of a build: + +* ``@`` selects a version or a version range. +* ``+`` and ``~`` toggle boolean variants, and ``name=value`` sets the others. +* ``%`` constrains a direct dependency, such as a compiler. +* ``^`` constrains any dependency in the graph, whether direct or transitive. +* ``/`` refers to an already-installed build by its hash. +* ``%virtual=provider`` and ``^virtual=provider`` pick which package provides a virtual. + +Because the syntax is recursive, each of these can be applied to a dependency just as it is to the root package. +There is no need to memorize all of this: ``spack help --spec`` prints a concise summary you can return to whenever you need it. + +.. literalinclude:: outputs/basics/help-spec.out + :language: console + .. _basics-tutorial-query: ---------------------- @@ -395,11 +412,7 @@ Here we remove one of the two Trilinos builds by its hash: Customizing Compilers --------------------- -In the *Installing Packages* section, we saw that Spack manages a list of available compilers on the system, detected automatically from the user's ``PATH`` variable: - -.. 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 build a compiler itself and then use it to compile other packages. .. literalinclude:: outputs/basics/install-gcc-16.out @@ -420,12 +433,3 @@ 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:: - - The spec syntax may be confusing for new users. - Spack can provide information about the commands you run. - For instance, see the output of ``spack help --spec``: - - .. literalinclude:: outputs/basics/help-spec.out - :language: console From dba308b501e1b6fd87bfe373020c263c74b6a5fe Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Wed, 17 Jun 2026 11:50:35 +0200 Subject: [PATCH 20/26] Polish the section --- tutorial_basics.rst | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/tutorial_basics.rst b/tutorial_basics.rst index 84a586e99..02254a9c0 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -19,7 +19,7 @@ A few fundamental ideas underpin everything that follows: Keep these points in mind, as we'll illustrate them with examples. -We will begin by introducing the ``spack install`` command, highlighting the versatility of Spack’s spec syntax and the flexibility it offers users. +We will begin by introducing the ``spack install`` command, highlighting the versatility of Spack's spec syntax and the flexibility it offers users. Next, we will demonstrate how to use the ``spack find`` command to view installed packages, as well as the ``spack uninstall`` command to remove them. Additionally, we will discuss how Spack manages compilers, with a particular focus on using Spack-built compilers within the Spack environment. @@ -102,8 +102,6 @@ We'll cover externals in the "Spack Concepts" slides and in the :ref:`Configurat We just built ``gmake`` from source. To speed up the rest of the tutorial, let's add a binary cache: -.. Its packages are signed with GPG, so enabling it takes two steps: telling Spack where the cache lives and trusting the key the binaries were signed with. - .. literalinclude:: outputs/basics/mirror.out :language: console @@ -343,7 +341,7 @@ Now that we know the spec syntax and how to query installations, let's put them 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. -Only a handful are built here, though: the rest of that large graph was already installed earlier in the tutorial, so Spack reuses those builds instead of repeating them. +Only a handful are new here, though: the rest of that large graph was already installed earlier in the tutorial, so Spack reuses those builds instead of repeating them. Installing a package this complex by hand can take an experienced user days or weeks. Although we've done a binary installation for the tutorial, a source installation of Trilinos using Spack takes about 3 hours (depending on the system), but only 20 seconds of programmer time. @@ -413,7 +411,7 @@ Customizing Compilers --------------------- 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 build a compiler itself and then use it to compile other packages. +Spack can also install a compiler itself and then use it to compile other packages. .. literalinclude:: outputs/basics/install-gcc-16.out :language: spec @@ -429,7 +427,16 @@ The ``gcc@16`` compiler is immediately available to use: :language: spec :lines: 1-2 -We won't need this compiler in the next section, so we'll uninstall it for now. +We won't need this compiler in the next chapter, so we'll uninstall it for now. .. literalinclude:: outputs/basics/compiler-uninstall.out :language: spec + +---------- +Next Steps +---------- + +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. + +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. From 54b8a19f80bc664029ffb82e8a42bbd532d89652 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Wed, 17 Jun 2026 15:02:57 +0200 Subject: [PATCH 21/26] Temporarily disable output generation --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 695e1a1d5..c6656d9a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,8 +51,10 @@ jobs: uses: ./.github/workflows/container.yml outputs: + # Output regeneration temporarily disabled — remove the `false` line below to re-enable. if: | - !cancelled() + false + && !cancelled() && contains(needs.*.result, 'success') && !contains(needs.*.result, 'failure') && (needs.changes.outputs.outputs == 'true' From 261b30acd2e0fea6329591c49797adb5b5b6a46d Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Thu, 18 Jun 2026 16:11:52 +0200 Subject: [PATCH 22/26] Minor style fixes --- outputs/basics/clone.out | 4 +- outputs/basics/compiler-list.out | 2 +- outputs/basics/compilers-2.out | 2 +- outputs/basics/find-l.out | 14 +- outputs/basics/find.out | 8 +- outputs/basics/gmake.out | 6 +- outputs/basics/hdf5-mpich.out | 12 +- outputs/basics/hdf5-no-mpi.out | 4 +- outputs/basics/hdf5.out | 56 +- outputs/basics/info-zlib.out | 2 +- outputs/basics/install-gcc-16.out | 10 +- outputs/basics/list-py.out | 1763 ++++---- outputs/basics/list.out | 6679 +++++++++++++++++++---------- outputs/basics/providers-mpi.out | 7 +- outputs/basics/tcl-zlib-clang.out | 2 +- outputs/basics/trilinos-hdf5.out | 2 +- outputs/basics/trilinos.out | 6 +- outputs/basics/versions-zlib.out | 4 +- outputs/basics/zlib-2.0.7.out | 6 +- outputs/basics/zlib-gcc-14.out | 2 +- outputs/basics/zlib-ipo.out | 6 +- tutorial_basics.rst | 18 +- 22 files changed, 5551 insertions(+), 3064 deletions(-) diff --git a/outputs/basics/clone.out b/outputs/basics/clone.out index 6daf55fea..1b9da32d5 100644 --- a/outputs/basics/clone.out +++ b/outputs/basics/clone.out @@ -3,7 +3,7 @@ Cloning into '/home/spack/spack'... remote: Enumerating objects: 2411, done.K remote: Counting objects: 100% (2411/2411), done.K remote: Compressing objects: 100% (1617/1617), done.K -remote:nTotale2411 (delta2326),4reused 1327 (delta 249), pack-reused 0 (from 0)K -Receiving objects: 100% (2411/2411), 5.48 MiB | 12.50 MiB/s, done. +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 025c50b8f..820becc0e 100644 --- a/outputs/basics/compiler-list.out +++ b/outputs/basics/compiler-list.out @@ -1,7 +1,7 @@ $ spack compilers ==> Available compilers -- gcc ubuntu26.04-x86_64 --------------------------------------- -[e] gcc@15.2.0 [e] gcc@14.3.0 +[e] gcc@15.2.0 [e] gcc@14.3.0 -- llvm ubuntu26.04-x86_64 -------------------------------------- [e] llvm@21.1.8 diff --git a/outputs/basics/compilers-2.out b/outputs/basics/compilers-2.out index 00c8f9f5d..65ca4f9b9 100644 --- a/outputs/basics/compilers-2.out +++ b/outputs/basics/compilers-2.out @@ -1,7 +1,7 @@ $ spack compilers ==> Available compilers -- gcc ubuntu26.04-x86_64 --------------------------------------- -[e] gcc@15.2.0 [e] gcc@14.3.0 [+] gcc@16.1.0 +[e] gcc@15.2.0 [e] gcc@14.3.0 [+] gcc@16.1.0 -- llvm ubuntu26.04-x86_64 -------------------------------------- [e] llvm@21.1.8 diff --git a/outputs/basics/find-l.out b/outputs/basics/find-l.out index c54ae7cd9..48868154c 100644 --- a/outputs/basics/find-l.out +++ b/outputs/basics/find-l.out @@ -12,14 +12,16 @@ kie72sp zlib-ng@2.0.7 5dji3nx zlib-ng@2.3.3 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 +sle3ix4 gettext@1.0 ldqeqfw krb5@1.22.2 m6yx5j3 openssh@10.3p1 53i7gbs tcl@8.6.17 g72d7i3 zlib-ng@2.3.3 6l3ycpy zlib-ng@2.3.3 +ujctyey hwloc@2.13.0 ekvivpv ncurses@6.6 33yozp5 openssl@3.6.1 aeoqp4e zlib-ng@2.0.7 t7jnrlg zlib-ng@2.3.3 63aruxk zstd@1.5.7 -- linux-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ -cbtgjrh bzip2@1.0.8 7cwv3st hdf5@1.14.6 oopqoag libevent@2.1.12 qzkk5ym libpciaccess@0.17 2t2useu numactl@2.0.19 ycyqykw pmix@6.1.0 hhjyyqy xz@5.8.3 -cdyuto2 gmake@4.4.1 jceyzq7 hdf5@1.14.6 itb4a2s libfabric@2.5.1 bkzcu2s libxcrypt@4.5.2 afklka7 pigz@2.8 nldxmxw prrte@4.1.0 -as6mmcj hdf5@1.14.6 uwyh3xy libedit@3.1-20251016 vbwvgwx libiconv@1.18 ujlg2ua libxml2@2.15.3 yvl6jpi pkgconf@2.5.1 f5xe4px tar@1.35 +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 5zrvmb3 gcc@14.3.0 yjlog5x gcc@15.2.0 yhhe2we gcc-runtime@15.2.0 xm76mt3 gcc-runtime@15.2.0 yc4n2pp glibc@2.43 px4mv6l llvm@21.1.8 +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.out b/outputs/basics/find.out index 663bce56d..feb95365b 100644 --- a/outputs/basics/find.out +++ b/outputs/basics/find.out @@ -12,11 +12,13 @@ zlib-ng@2.0.7 zlib-ng@2.3.3 zlib-ng@2.3.3 -- linux-ubuntu26.04-x86_64_v3 / %c,cxx=gcc@15.2.0 -------------- -gettext@1.0 hwloc@2.13.0 krb5@1.22.2 ncurses@6.6 openssh@10.3p1 openssl@3.6.1 tcl@8.6.17 zlib-ng@2.0.7 zlib-ng@2.3.3 zlib-ng@2.3.3 zlib-ng@2.3.3 zstd@1.5.7 +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-ubuntu26.04-x86_64_v3 / %c=gcc@15.2.0 ------------------ -bzip2@1.0.8 hdf5@1.14.6 hdf5@1.14.6 libevent@2.1.12 libiconv@1.18 libxcrypt@4.5.2 numactl@2.0.19 pkgconf@2.5.1 prrte@4.1.0 xz@5.8.3 -gmake@4.4.1 hdf5@1.14.6 libedit@3.1-20251016 libfabric@2.5.1 libpciaccess@0.17 libxml2@2.15.3 pigz@2.8 pmix@6.1.0 tar@1.35 +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-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 diff --git a/outputs/basics/gmake.out b/outputs/basics/gmake.out index ea95dfd4f..9151225bd 100644 --- a/outputs/basics/gmake.out +++ b/outputs/basics/gmake.out @@ -5,9 +5,9 @@ $ spack install gmake [ ] mmywg7x compiler-wrapper@1.1.0 staging (0s) [ ] yhhe2we gcc-runtime@15.2.0 staging (0s) [ ] yhhe2we gcc-runtime@15.2.0 install (0s) -[+] yhhe2we gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-yhhe2wecmh7n4qwwmqxictetytv2m6wo (0s) [ ] mmywg7x compiler-wrapper@1.1.0 install (0s) [+] mmywg7x compiler-wrapper@1.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/compiler-wrapper-1.1.0-mmywg7x4myxvxepmqe5go3ppxirmuijp (0s) +[+] 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 (1s) -[+] cdyuto2 gmake@4.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/gmake-4.4.1-cdyuto2vcd73fdknitpbrk3mofaa6hw5 (9s) +[ ] 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/hdf5-mpich.out b/outputs/basics/hdf5-mpich.out index be7c1a802..0b3346d4a 100644 --- a/outputs/basics/hdf5-mpich.out +++ b/outputs/basics/hdf5-mpich.out @@ -1,10 +1,10 @@ $ spack install hdf5 ^mpich -[ ] itb4a2s libfabric@2.5.1 fetching from build cache (0s) -[ ] itb4a2s libfabric@2.5.1 relocating (0s) -[+] itb4a2s libfabric@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/libfabric-2.5.1-itb4a2swgfzelii4nbzmo3fzdnfq5rhy (0s) +[ ] 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 (0s) -[ ] jceyzq7 hdf5@1.14.6 fetching from build cache (1s) -[ ] jceyzq7 hdf5@1.14.6 relocating (1s) +[+] 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 7c5651ba2..55db01c34 100644 --- a/outputs/basics/hdf5-no-mpi.out +++ b/outputs/basics/hdf5-no-mpi.out @@ -1,4 +1,4 @@ $ spack install hdf5~mpi [ ] as6mmcj hdf5@1.14.6 fetching from build cache (0s) -[ ] as6mmcj hdf5@1.14.6 relocating (0s) -[+] as6mmcj hdf5@1.14.6 /home/spack/spack/opt/spack/linux-x86_64_v3/hdf5-1.14.6-as6mmcjwjlgjhglp62wogxim6exfgtvd (0s) +[ ] 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.out b/outputs/basics/hdf5.out index 114ec1fdd..2665d0d8d 100644 --- a/outputs/basics/hdf5.out +++ b/outputs/basics/hdf5.out @@ -1,73 +1,73 @@ $ spack install hdf5 [ ] g72d7i3 zlib-ng@2.3.3 fetching from build cache (0s) -[ ] g72d7i3 zlib-ng@2.3.3 relocating (0s) [ ] yvl6jpi pkgconf@2.5.1 fetching from build cache (0s) -[ ] yvl6jpi pkgconf@2.5.1 relocating (0s) [ ] ekvivpv ncurses@6.6 fetching from build cache (0s) +[ ] 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) -[ ] 2t2useu numactl@2.0.19 fetching from build cache (0s) +[ ] 63aruxk zstd@1.5.7 relocating (0s) [ ] hhjyyqy xz@5.8.3 relocating (0s) -[ ] qzkk5ym libpciaccess@0.17 fetching from build cache (0s) [ ] vbwvgwx libiconv@1.18 relocating (0s) -[ ] 63aruxk zstd@1.5.7 relocating (0s) [ ] cbtgjrh bzip2@1.0.8 relocating (0s) -[ ] 2t2useu numactl@2.0.19 relocating (0s) [+] g72d7i3 zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-g72d7i3bvgfmroytbp2d6giv67ymputp (0s) -[ ] qzkk5ym libpciaccess@0.17 relocating (0s) [+] yvl6jpi pkgconf@2.5.1 /home/spack/spack/opt/spack/linux-x86_64_v3/pkgconf-2.5.1-yvl6jpilvkgopkrc2aanfhd3z7lz7r3l (0s) +[ ] 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) -[+] cbtgjrh bzip2@1.0.8 /home/spack/spack/opt/spack/linux-x86_64_v3/bzip2-1.0.8-cbtgjrhpwivtaewryhbkj6zxuukhoekx (0s) -[ ] 33yozp5 openssl@3.6.1 fetching from build cache (0s) +[ ] 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) -[+] qzkk5ym libpciaccess@0.17 /home/spack/spack/opt/spack/linux-x86_64_v3/libpciaccess-0.17-qzkk5ymbu3z37kjhgylrkdy7w3hixzna (0s) [+] vbwvgwx libiconv@1.18 /home/spack/spack/opt/spack/linux-x86_64_v3/libiconv-1.18-vbwvgwxvjrccmptlen3ebo555lk5wior (0s) -[+] hhjyyqy xz@5.8.3 /home/spack/spack/opt/spack/linux-x86_64_v3/xz-5.8.3-hhjyyqygxtpzvdyoddyypk5sfyqdcmqe (0s) +[ ] 33yozp5 openssl@3.6.1 fetching from build cache (0s) [ ] afklka7 pigz@2.8 relocating (0s) -[+] 2t2useu numactl@2.0.19 /home/spack/spack/opt/spack/linux-x86_64_v3/numactl-2.0.19-2t2useutfyn7jozdzlunsc6336q6fcqx (0s) [ ] 33yozp5 openssl@3.6.1 relocating (0s) -[ ] ujlg2ua libxml2@2.15.3 fetching from build cache (0s) +[+] 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) -[ ] ujlg2ua libxml2@2.15.3 relocating (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) -[+] 33yozp5 openssl@3.6.1 /home/spack/spack/opt/spack/linux-x86_64_v3/openssl-3.6.1-33yozp5l5ca4dnkgjjf2l2tdvt47mdna (0s) [+] f5xe4px tar@1.35 /home/spack/spack/opt/spack/linux-x86_64_v3/tar-1.35-f5xe4pxaujwc2cs2ppllgloh7gwbkkyd (0s) +[+] 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) -[+] ekvivpv ncurses@6.6 /home/spack/spack/opt/spack/linux-x86_64_v3/ncurses-6.6-ekvivpvwxpsfmbydk42j7me3ckftiheo (0s) -[+] oopqoag libevent@2.1.12 /home/spack/spack/opt/spack/linux-x86_64_v3/libevent-2.1.12-oopqoagvk4zhptmzymsbim2dmnfy37zf (0s) -[ ] sle3ix4 gettext@1.0 fetching from build cache (0s) +[+] 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) -[ ] sle3ix4 gettext@1.0 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 (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) -[+] sle3ix4 gettext@1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gettext-1.0-sle3ix4nizh2w3uwvaokqlqlotlaexbu (0s) -[ ] nldxmxw prrte@4.1.0 relocating (1s) -[ ] ldqeqfw krb5@1.22.2 fetching from build cache (1s) -[ ] ldqeqfw krb5@1.22.2 relocating (1s) -[+] ldqeqfw krb5@1.22.2 /home/spack/spack/opt/spack/linux-x86_64_v3/krb5-1.22.2-ldqeqfwa76qeegjqhv72by6ayv5xlwae (1s) -[+] nldxmxw prrte@4.1.0 /home/spack/spack/opt/spack/linux-x86_64_v3/prrte-4.1.0-nldxmxwkhusnlqwqsuacqvn3t5r6bpjb (1s) +[ ] 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 (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 (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 index 8635962f8..d37f2d7ef 100644 --- a/outputs/basics/info-zlib.out +++ b/outputs/basics/info-zlib.out @@ -21,7 +21,7 @@ Variants: when build_system=cmake the build system generator to use - ipo [false] false, true + ipo [false] false, true when build_system=cmake %cmake@3.9: CMake interprocedural optimization diff --git a/outputs/basics/install-gcc-16.out b/outputs/basics/install-gcc-16.out index fcb47d193..667ae0bd5 100644 --- a/outputs/basics/install-gcc-16.out +++ b/outputs/basics/install-gcc-16.out @@ -3,14 +3,14 @@ $ spack install gcc@16 [ ] cuzgmus binutils@2.46.0 fetching from build cache (0s) [ ] xpmsy5x gmp@6.3.0 relocating (0s) [ ] cuzgmus binutils@2.46.0 relocating (0s) -[+] xpmsy5x gmp@6.3.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gmp-6.3.0-xpmsy5xffenfvl6lc5shb5a5krckrznd (0s) +[+] 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 (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 (1s) -[+] gxmoxea mpc@1.4.1 /home/spack/spack/opt/spack/linux-x86_64_v3/mpc-1.4.1-gxmoxea2jy4kihilaqibmhjvvuea3ydy (1s) +[ ] 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) +[+] 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 c9cb022ec..ca4e1b43c 100644 --- a/outputs/basics/list-py.out +++ b/outputs/basics/list-py.out @@ -1,756 +1,1009 @@ $ spack list 'py-*' -py-3to2 py-fabric3 py-mysql-connector-python py-pywcs -py-4suite-xml py-fair-esm py-mysqlclient py-pywin32 -py-a2wsgi py-fairscale py-myst-parser py-pywinpty -py-abcpy py-faker py-namex py-pyworld -py-abipy py-fakeredis py-nanobind py-pyxlsb -py-about-time py-falcon py-nanoget py-pyyaml -py-absl-py py-fallocate py-nanomath py-pyyaml-env-tag -py-accelerate py-fastai py-nanoplot py-pyzmq -py-accessible-pygments py-fastaindex py-nanostat py-qdldl -py-accimage py-fastapi py-nanotime py-qiskit-aer -py-acme-tiny py-fastapi-utils py-nanotron py-qiskit-ibm-provider -py-acres py-fastavro py-napari py-qiskit-nature -py-adal py-fastcache py-napari-console py-qiskit-terra -py-adb-enhanced py-fastcluster py-napari-plugin-engine py-qmtest -py-addict py-fastcore py-napari-plugin-manager py-qpsolvers -py-adios py-fastcov py-napari-svg py-qpth -py-adios4dolfinx py-fastdownload py-nara-wpe py-qrcode -py-advancedhtmlparser py-fastdtw py-narwhals py-qsymm -py-aenum py-fasteners py-natsort py-qtawesome -py-affine py-fastfold py-nbclassic py-qtconsole -py-agate py-fastjsonschema py-nbclient py-qtpy -py-agate-dbf py-fastobo py-nbconvert py-quantiphy -py-agate-excel py-fastpath py-nbdime py-quantities -py-agate-sql py-fastprogress py-nbformat py-quantum-blackbird -py-ahpy py-fastremap py-nbmake py-quantum-xir -py-aiobotocore py-fastrlock py-nbqa py-quart -py-aiocontextvars py-fasttext-numpy2 py-nbsphinx py-quast -py-aiodns py-fasttext-numpy2-wheel py-nbstripout py-quaternionic -py-aiofiles py-faust-cchardet py-nbval py-qudida -py-aiohappyeyeballs py-fava py-nc-time-axis py-queryablelist -py-aiohttp py-fenics-basix py-ncbi-genome-download py-querystring-parser -py-aiohttp-cors py-fenics-dijitso py-ndg-httpsclient py-questionary -py-aioitertools py-fenics-dolfinx py-ndindex py-qutip -py-aiojobs py-fenics-ffc py-neo py-qutip-qip -py-aioredis py-fenics-ffcx py-neo4j py-rachis -py-aiosignal py-fenics-fiat py-neobolt py-radiant-mlhub -py-aiosqlite py-fenics-instant py-neotime py-radical-entk -py-aiowebdav2 py-fenics-ufl py-neovim-remote py-radical-gtod -py-alabaster py-fenics-ufl-legacy py-neptune-client py-radical-pilot -py-albucore py-ffmpy py-nest-asyncio py-radical-saga -py-alembic py-fief-client py-nestle py-radical-utils -py-alive-progress py-file-magic py-netaddr py-ranger-fm -py-alpaca-eval py-filecheck py-netcdf4 py-rapidfuzz -py-alpaca-farm py-filelock py-netifaces py-rapidfuzz-capi -py-alphafold py-filemagic py-netket py-rarfile -py-altair py-filetype py-netpyne py-rassumfrassum -py-altgraph py-filterpy py-networkit py-rasterio -py-amici py-find-libpython py-networkx py-rasterstats -py-amityping py-findlibs py-neuralgcm py-ratelim -py-amplpy py-fiona py-neurokit2 py-ratelimiter -py-ampltools py-fire py-neurolab py-raven -py-amqp py-fireworks py-neurom py-ray -py-amrex py-fiscalyear py-neurora py-rbtools -py-angel py-fisher py-neurotools py-rdflib -py-aniso8601 py-fits-tools py-nexus-sdk py-rdflib-jsonld -py-anndata py-fitsio py-nexusforge py-rdt -py-annexremote py-fitter py-nglview py-reacton -py-annotated-types py-fixtures py-ngs-tools py-readchar -py-annoy py-flake8 py-nh3 py-readme-renderer -py-ansi2html py-flake8-import-order py-nibabel py-recommonmark -py-ansible py-flake8-polyfill py-nilearn py-redis -py-ansimarkup py-flaky py-nipype py-referencing -py-ansiwrap py-flameprof py-nitransforms py-refgenconf -py-antimeridian py-flash-attn py-niworkflows py-refgenie -py-antipickle py-flask py-nltk py-regex -py-antlr4-python3-runtime py-flask-babel py-node-semver py-regionmask -py-antspyx py-flask-compress py-nodeenv py-regions -py-anuga py-flask-cors py-non-regression-test-tools py-reindent -py-anvio py-flask-paginate py-nose py-relion -py-anybadge py-flask-restful py-nose-cov py-relion-blush -py-anyio py-flask-socketio py-nose2 py-relion-classranker -py-anytree py-flask-sqlalchemy py-nosexcover py-repligit -py-anywidget py-flatbuffers py-notebook py-reportlab -py-apache-libcloud py-flatten-dict py-notebook-shim py-reportseff -py-apache-tvm-ffi py-flawfinder py-npe2 py-repoze-lru -py-apebench py-flax py-nptyping py-reproject -py-apex py-flexcache py-npx py-requests -py-apeye py-flexmock py-ntlm-auth py-requests-cache -py-apeye-core py-flexparser py-ntplib py-requests-file -py-apipkg py-flexx py-nugraph py-requests-ftp -py-apispec py-flit py-nuitka py-requests-futures -py-app-model py-flit-core py-num2words py-requests-kerberos -py-appdirs py-flit-scm py-numba py-requests-mock -py-applicationinsights py-flox py-numba4jax py-requests-ntlm -py-appnope py-flufl-lock py-numbagg py-requests-oauthlib -py-apprise py-fluiddyn py-numcodecs py-requests-toolbelt -py-apptools py-fluidfft py-numdifftools py-requests-unixsocket -py-apscheduler py-fluidfft-builder py-numexpr py-requirements-parser -py-arcgis py-fluidfft-fftw py-numexpr3 py-reretry -py-arch py-fluidfft-fftwmpi py-numkit py-resampy -py-archspec py-fluidfft-mpi-with-fftw py-numl py-resize-right -py-arcp py-fluidfft-p3dfft py-numpy py-resolvelib -py-argcomplete py-fluidfft-pfft py-numpy-groupies py-responses -py-argh py-fluidsim py-numpy-indexed py-resultsfile -py-argon2-cffi py-fluidsim-core py-numpy-quaternion py-retry -py-argon2-cffi-bindings py-flye py-numpy-stl py-retry-decorator -py-argparse-dataclass py-fn-py py-numpydoc py-retrying -py-argparse-manpage py-folium py-nvidia-dali py-retworkx -py-args py-fonttools py-nvidia-ml-py py-rfc3339-validator -py-arkouda py-ford py-nvidia-ml-py3 py-rfc3986 -py-arm-pyart py-formatizer py-nvidia-modulus py-rfc3986-validator -py-arpeggio py-formulaic py-nvidia-nvcomp py-rfc3987-syntax -py-arrow py-fortls py-nvidia-nvimagecodec py-rich -py-art py-fortran-language-server py-nvidia-nvjpeg2k py-rich-argparse -py-arviz py-fortranformat py-nvidia-nvtiff py-rich-click -py-asciitree py-fparser py-nvidia-physicsnemo py-rio-pmtiles -py-asdf py-fprettify py-nvitop py-rios -py-asdf-astropy py-fqdn py-nvtx py-rioxarray -py-asdf-coordinates-schemas py-fracridge py-oauth2client py-rise -py-asdf-standard py-fraction py-oauthlib py-river -py-asdf-transform-schemas py-freetype-py py-obspy py-rmm -py-asdf-unit-schemas py-freezegun py-ocnn py-rnc2rng -py-asdfghjkl py-frozendict py-odc-geo py-robocrys -py-ase py-frozenlist py-odfpy py-robotframework -py-asgi-lifespan py-fs py-ogb py-rocrate -py-asgiref py-fsspec py-okada-wrapper py-roifile -py-asn1crypto py-fsspec-xrootd py-olcf-velocity py-roman-numerals -py-aspy-yaml py-ftfy py-olefile py-roman-numerals-py -py-asserts py-ftputil py-olmoearth-pretrain-minimal py-rope -py-ast-serialize py-funcy py-omegaconf py-rosdep -py-asteval py-furo py-onnx py-rosdistro -py-astor py-fury py-onnx-opcounter py-rosinstall -py-astpretty py-fusepy py-onnxconverter-common py-rosinstall-generator -py-astroid py-future py-onnxmltools py-rospkg -py-astropy py-fuzzywuzzy py-onnxruntime py-rotary-embedding-torch -py-astropy-healpix py-fypp py-ont-fast5-api py-rouge-score -py-astropy-helpers py-galaxy-containers py-opcodes py-routes -py-astropy-iers-data py-galaxy-job-metrics py-open-clip-torch py-rpds-py -py-asttokens py-galaxy-objectstore py-openai py-rply -py-astunparse py-galaxy-sequence-utils py-openai-whisper py-rpy2 -py-async-generator py-galaxy-tool-util py-openapi-schema-pydantic py-rsa -py-async-lru py-galaxy-util py-opencensus py-rsatoolbox -py-async-timeout py-galaxy2cwl py-opencensus-context py-rseqc -py-asyncio py-gast py-opencv-python py-rst2pdf -py-asyncpg py-gcovr py-opendatalab py-rtoml -py-asynctest py-gcs-oauth2-boto-plugin py-openidc-client py-rtree -py-atomicwrites py-gcsfs py-openmc py-ruamel-ordereddict -py-atpublic py-gdc-client py-openmesh py-ruamel-yaml -py-atropos py-gdown py-openmim py-ruamel-yaml-clib -py-ats py-gee-asset-manager py-openpmd-validator py-ruamel-yaml-jinja2 -py-attmap py-geeadd py-openpmd-viewer py-rucio-clients -py-attrs py-geemap py-openpyxl py-ruff -py-audioread py-geeup py-openslide-python py-rustworkx -py-auditwheel py-gemmforge py-opentelemetry-api py-rx -py-authlib py-gemmi py-opentelemetry-exporter-prometheus py-s3cmd -py-autocfg py-genders py-opentelemetry-instrumentation py-s3fs -py-autodocsumm py-geneimpacts py-opentelemetry-sdk py-s3transfer -py-autograd py-generateds py-opentelemetry-semantic-conventions py-sacrebleu -py-autograd-gamma py-genshi py-opentree py-sacremoses -py-automat py-gensim py-opentuner py-safe-netrc -py-autopep8 py-geoalchemy2 py-opppy py-safetensors -py-autoray py-geocoder py-ops py-salib -py-autoreject py-geocube py-opt-einsum py-sarif-tools -py-auxlib py-geographiclib py-optax py-scandir -py-avro py-geojson py-optree py-scanpy -py-avro-json-serializer py-geomdl py-optuna py-schema -py-avro-python3 py-geopandas py-or-tools py-schema-salad -py-awesome-slugify py-geoplot py-oracledb py-scientificpython -py-awkward py-geopmdpy py-orbax-checkpoint py-scifem -py-awkward-cpp py-geopmpy py-ordered-set py-scikit-build -py-awkward0 py-geopy py-orderly-set py-scikit-build-core -py-awscrt py-geoviews py-orjson py-scikit-fmm -py-ax-platform py-gest-api py-os-service-types py-scikit-fuzzy -py-azote py-gevent py-oset py-scikit-image -py-azure-batch py-gf256 py-oslo-config py-scikit-learn -py-azure-cli-command-modules-nspkg py-gfal2-python py-oslo-i18n py-scikit-learn-extra -py-azure-cli-core py-gffutils py-oslo-serialization py-scikit-matter -py-azure-cli-nspkg py-ghp-import py-oslo-utils py-scikit-optimize -py-azure-cli-telemetry py-gidgethub py-osqp py-scikit-sparse -py-azure-common py-gidgetlab py-outdated py-scikits-odes -py-azure-core py-gimmik py-overpy py-scine-chemoton -py-azure-cosmos py-gin-config py-overrides py-scine-puffin -py-azure-datalake-store py-git-review py-owlrl py-scinum -py-azure-functions-devops-build py-gitdb py-owslib py-scipy -py-azure-graphrbac py-gitpython py-oyaml py-scitokens -py-azure-identity py-glean-parser py-p2j py-scooby -py-azure-keyvault py-glean-sdk py-pacifica-downloader py-scoop -py-azure-keyvault-certificates py-glmnet py-pacifica-namespace py-scp -py-azure-keyvault-keys py-glmnet-python py-pacifica-uploader py-screed -py-azure-keyvault-nspkg py-glmsingle py-packaging py-scs -py-azure-keyvault-secrets py-glob2 py-pager py-sdmetrics -py-azure-loganalytics py-globus-cli py-paho-mqtt py-sdnotify -py-azure-mgmt-advisor py-globus-sdk py-palettable py-sdv -py-azure-mgmt-apimanagement py-gluoncv py-pamela py-seaborn -py-azure-mgmt-appconfiguration py-glymur py-panaroo py-secretstorage -py-azure-mgmt-applicationinsights py-gmsh py-pandas py-seekpath -py-azure-mgmt-authorization py-gmsh-interop py-pandas-datareader py-segmentation-models-pytorch -py-azure-mgmt-batch py-gmxapi py-pandas-stubs py-selenium -py-azure-mgmt-batchai py-gnuplot py-pandera py-semantic-version -py-azure-mgmt-billing py-goatools py-pandocfilters py-semver -py-azure-mgmt-botservice py-gooey py-panedr py-send2trash -py-azure-mgmt-cdn py-google py-panel py-sentencepiece -py-azure-mgmt-cognitiveservices py-google-api-core py-papermill py-sentry-sdk -py-azure-mgmt-compute py-google-api-python-client py-paralleltask py-seqeval -py-azure-mgmt-consumption py-google-apitools py-param py-sequence-models -py-azure-mgmt-containerinstance py-google-auth py-parameterized py-seriate -py-azure-mgmt-containerregistry py-google-auth-httplib2 py-paramiko py-serpent -py-azure-mgmt-containerservice py-google-auth-oauthlib py-paramz py-session-info -py-azure-mgmt-core py-google-cloud-appengine-logging py-parasail py-setproctitle -py-azure-mgmt-cosmosdb py-google-cloud-audit-log py-parmed py-setupmeta -py-azure-mgmt-datalake-analytics py-google-cloud-batch py-parse py-setuptools -py-azure-mgmt-datalake-store py-google-cloud-bigquery py-parse-type py-setuptools-cpp -py-azure-mgmt-datamigration py-google-cloud-core py-parsedatetime py-setuptools-git -py-azure-mgmt-deploymentmanager py-google-cloud-logging py-parsimonious py-setuptools-git-versioning -py-azure-mgmt-devtestlabs py-google-cloud-storage py-parsl py-setuptools-reproducible -py-azure-mgmt-dns py-google-crc32c py-parsley py-setuptools-rust -py-azure-mgmt-eventgrid py-google-pasta py-parso py-setuptools-scm -py-azure-mgmt-eventhub py-google-reauth py-partd py-setuptools-scm-git-archive -py-azure-mgmt-hdinsight py-google-resumable-media py-particle py-sfepy -py-azure-mgmt-imagebuilder py-googleapis-common-protos py-paste py-sgp4 -py-azure-mgmt-iotcentral py-googledrivedownloader py-pastedeploy py-sh -py-azure-mgmt-iothub py-gosam py-pastel py-shap -py-azure-mgmt-iothubprovisioningservices py-gpaw py-pastml py-shapely -py-azure-mgmt-keyvault py-gpaw-data py-patch py-shellescape -py-azure-mgmt-kusto py-gpustat py-patch-ng py-shellingham -py-azure-mgmt-loganalytics py-gputil py-path-py py-shiboken2 -py-azure-mgmt-managedservices py-gpy py-pathlib-abc py-shippinglabel -py-azure-mgmt-managementgroups py-gpyopt py-pathlib2 py-shortbred -py-azure-mgmt-maps py-gpytorch py-pathml py-shortuuid -py-azure-mgmt-marketplaceordering py-gql py-pathos py-shroud -py-azure-mgmt-media py-gradio py-pathsimanalysis py-shtab -py-azure-mgmt-monitor py-gradio-client py-pathspec py-simpervisor -py-azure-mgmt-msi py-grandalf py-pathtools py-simple-slurm -py-azure-mgmt-netapp py-graphcast py-pathvalidate py-simpleeval -py-azure-mgmt-network py-grapheme py-pathy py-simplegeneric -py-azure-mgmt-nspkg py-graphene py-patool py-simplejson -py-azure-mgmt-policyinsights py-graphlib-backport py-patsy py-simplekml -py-azure-mgmt-privatedns py-graphql-core py-pauvre py-simpletraj -py-azure-mgmt-rdbms py-graphql-relay py-pbr py-simpy -py-azure-mgmt-recoveryservices py-graphql-ws py-pdb-tools py-simsimd -py-azure-mgmt-recoveryservicesbackup py-graphviz py-pdbfixer py-singledispatchmethod -py-azure-mgmt-redhatopenshift py-gravity py-pdequinox py-sip -py-azure-mgmt-redis py-grayskull py-pdf2image py-six -py-azure-mgmt-relay py-greenlet py-pdm-backend py-skl2onnx -py-azure-mgmt-reservations py-grequests py-pdm-pep517 py-slepc4py -py-azure-mgmt-resource py-griddataformats py-pdoc3 py-slicer -py-azure-mgmt-search py-griffe py-peachpy py-slurm-pipeline -py-azure-mgmt-security py-gromacswrapper py-peakutils py-smac -py-azure-mgmt-servicebus py-grpc-google-iam-v1 py-pebble py-smart-open -py-azure-mgmt-servicefabric py-grpcio py-peft py-smartredis -py-azure-mgmt-signalr py-grpcio-status py-pelicanfs py-smartsim -py-azure-mgmt-sql py-grpcio-tools py-pem py-smartypants -py-azure-mgmt-sqlvirtualmachine py-gsd py-pendulum py-smmap -py-azure-mgmt-storage py-gssapi py-pennylane py-smolagents -py-azure-mgmt-trafficmanager py-gsutil py-pennylane-lightning py-smote-variants -py-azure-mgmt-web py-gtdbtk py-pennylane-lightning-kokkos py-snakemake-executor-plugin-azure-batch -py-azure-multiapi-storage py-gunicorn py-pep517 py-snakemake-executor-plugin-cluster-generic -py-azure-nspkg py-gxformat2 py-pep8 py-snakemake-executor-plugin-cluster-sync -py-azure-storage-blob py-gym py-pep8-naming py-snakemake-executor-plugin-drmaa -py-azure-storage-common py-h11 py-perfdump py-snakemake-executor-plugin-flux -py-azure-storage-nspkg py-h2 py-performance py-snakemake-executor-plugin-googlebatch -py-b2luigi py-h3 py-periodictable py-snakemake-executor-plugin-kubernetes -py-babel py-h5glance py-petastorm py-snakemake-executor-plugin-slurm -py-backcall py-h5io py-petname py-snakemake-executor-plugin-slurm-jobstep -py-backoff py-h5netcdf py-petsc4py py-snakemake-executor-plugin-tes -py-backpack-for-pytorch py-h5py py-pexpect py-snakemake-interface-common -py-backports-abc py-h5sh py-pfzy py-snakemake-interface-executor-plugins -py-backports-cached-property py-hacking py-pgzip py-snakemake-interface-logger-plugins -py-backports-entry-points-selectable py-hail py-phanotate py-snakemake-interface-report-plugins -py-backports-lzma py-handy-archives py-phonenumbers py-snakemake-interface-scheduler-plugins -py-backports-os py-hatch py-phonopy py-snakemake-interface-storage-plugins -py-backports-ssl-match-hostname py-hatch-cython py-photutils py-snakemake-storage-plugin-azure -py-backports-tarfile py-hatch-fancy-pypi-readme py-phydms py-snakemake-storage-plugin-fs -py-backports-tempfile py-hatch-jupyter-builder py-phylophlan py-snakemake-storage-plugin-ftp -py-backports-weakref py-hatch-nodejs-version py-pickle5 py-snakemake-storage-plugin-gcs -py-backports-zoneinfo py-hatch-requirements-txt py-pickleshare py-snakemake-storage-plugin-http -py-bagit py-hatch-vcs py-picmistandard py-snakemake-storage-plugin-pelican -py-bagit-profile py-hatchet py-picrust2 py-snakemake-storage-plugin-rucio -py-bakta py-hatchling py-pid py-snakemake-storage-plugin-s3 -py-bandit py-hclust2 py-pika py-snakemake-storage-plugin-sftp -py-barectf py-hdbscan py-pillow py-snakemake-storage-plugin-zenodo -py-basemap py-hdf5plugin py-pillow-simd py-snakeviz -py-bash-kernel py-hdfs py-pint py-snappy -py-basis-set-exchange py-healpix py-pint-xarray py-sncosmo -py-batchspawner py-healpy py-pip py-sniffio -py-bayesian-optimization py-heapdict py-pipcl py-snoop -py-bcbio-gff py-heat py-pipdeptree py-snowballstemmer -py-bcolz py-heavyball py-piper py-snuggs -py-bcrypt py-hep-ml py-pipits py-sobol-seq -py-bdbag py-hepdata-converter py-pispino py-social-auth-core -py-beaker py-hepdata-lib py-pivy py-sonlib -py-beancount py-hepdata-validator py-pkgconfig py-sortedcollections -py-beartype py-hepstats py-pkginfo py-sortedcontainers -py-beautifulsoup4 py-hepunits py-pkgutil-resolve-name py-soundfile -py-beniget py-heudiconv py-plac py-soupsieve -py-bibtexparser py-hf-transfer py-plaid py-soyclustering -py-bidict py-hf-xet py-planar py-spacy -py-bids-validator py-hieroglyph py-planet py-spacy-legacy -py-bids-validator-deno py-highspy py-planetary-computer py-spacy-loggers -py-bidscoin py-hiredis py-platformdirs py-spacy-models-en-core-web-sm -py-bidskit py-hist py-plotext py-spacy-models-en-vectors-web-lg -py-bidsschematools py-histbook py-plotille py-sparse -py-bigdft py-histogrammar py-plotly py-spatialist -py-bigfloat py-histoprint py-plotnine py-spatialite -py-billiard py-hjson py-pluggy py-spatialpandas -py-binary py-hmmlearn py-plum-dispatch py-spdlog -py-binaryornot py-holland-backup py-ply py-spectra -py-bintrees py-holoviews py-pmtiles py-spectral -py-binwalk py-horovod py-pmw py-speech-recognition -py-biobb-common py-hpack py-pmw-patched py-spefile -py-biobb-gromacs py-hpbandster py-pockets py-spgl1 -py-biobb-io py-hpccm py-poetry py-spglib -py-biobb-model py-hsluv py-poetry-core py-spherical -py-biobb-structure-checking py-hstspreload py-poetry-dynamic-versioning py-sphericart -py-biobb-structure-utils py-htgettoken py-poetry-plugin-export py-sphericart-torch -py-bioblend py-html2text py-poetry-plugin-tweak-dependencies-version py-sphinx -py-biom-format py-html5lib py-polars py-sphinx-argparse -py-biomine py-htmldate py-pomegranate py-sphinx-autodoc-typehints -py-biopandas py-htmlgen py-pooch py-sphinx-basic-ng -py-biopython py-htseq py-portalocker py-sphinx-book-theme -py-biosppy py-httpbin py-portend py-sphinx-bootstrap-theme -py-biotite py-httpcore py-portpicker py-sphinx-click -py-biotraj py-httplib2 py-postcactus py-sphinx-copybutton -py-bitarray py-httpretty py-poster py-sphinx-design -py-bitshuffle py-httpstan py-pot py-sphinx-fortran -py-bitstring py-httptools py-pox py-sphinx-gallery -py-bitstruct py-httpx py-poxy py-sphinx-github-changelog -py-black py-huggingface-hub py-poyo py-sphinx-immaterial -py-blake3 py-humanfriendly py-ppft py-sphinx-jinja2-compat -py-bleach py-humanize py-pprintpp py-sphinx-multiversion -py-blessed py-hvac py-pre-commit py-sphinx-prompt -py-blessings py-hvplot py-preshed py-sphinx-removed-in -py-blight py-hydra-core py-pretrainedmodels py-sphinx-rtd-dark-mode -py-blinker py-hypercorn py-pretty-errors py-sphinx-rtd-theme -py-blis py-hyperframe py-prettytable py-sphinx-tabs -py-blosc py-hyperlink py-priority py-sphinx-theme-builder -py-blosc2 py-hyperopt py-profilehooks py-sphinx-toolbox -py-blosum py-hypothesis py-proglog py-sphinxautomodapi -py-bluepyefe py-ibm-cloud-sdk-core py-progress py-sphinxcontrib-applehelp -py-bluepyemodel py-ibm-watson py-progressbar2 py-sphinxcontrib-bibtex -py-bluepyopt py-ics py-progressbar33 py-sphinxcontrib-devhelp -py-bmap-tools py-id py-projectq py-sphinxcontrib-htmlhelp -py-bmtk py-identify py-prokaryote py-sphinxcontrib-issuetracker -py-bokeh py-idna py-prometheus-client py-sphinxcontrib-jquery -py-boltons py-idna-ssl py-prometheus-flask-exporter py-sphinxcontrib-jsmath -py-boom-boot-manager py-igor py-promise py-sphinxcontrib-mermaid -py-boost-histogram py-igor2 py-prompt-toolkit py-sphinxcontrib-moderncmakedomain -py-boto py-igraph py-propcache py-sphinxcontrib-napoleon -py-boto3 py-igv-notebook py-properscoring py-sphinxcontrib-plantuml -py-botocore py-igwn-auth-utils py-proto-plus py-sphinxcontrib-programoutput -py-botorch py-ihm py-protobuf py-sphinxcontrib-qthelp -py-bottle py-illumina-utils py-protoc-gen-swagger py-sphinxcontrib-serializinghtml -py-bottleneck py-ilmbase py-prov py-sphinxcontrib-spelling -py-bqplot py-imagecodecs py-proxystore py-sphinxcontrib-tikz -py-braceexpand py-imagecorruptions-imaug py-prwlock py-sphinxcontrib-trio -py-brain-indexer py-imagehash py-psalg py-sphinxcontrib-websupport -py-branca py-imageio py-psana py-sphinxemoji -py-bravado py-imageio-ffmpeg py-psij-python py-sphobjinv -py-bravado-core py-imagesize py-psmon py-spykeutils -py-breakseq2 py-imaug py-pspamm py-spython -py-breathe py-imbalanced-learn py-psutil py-sqlalchemy -py-brian py-imgaug py-psyclone py-sqlalchemy-migrate -py-brian2 py-iminuit py-psycopg2 py-sqlalchemy-stubs -py-brotli py-immutabledict py-psygnal py-sqlalchemy-utils -py-brotlipy py-immutables py-ptyprocess py-sqlitedict -py-bsddb3 py-importlib-metadata py-pubchempy py-sqlparse -py-build py-importlib-resources py-pudb py-srsly -py-bx-python py-imutils py-pulp py-sseclient -py-cachecontrol py-in-n-out py-pulsar-galaxy-lib py-sshtunnel -py-cached-property py-incremental py-pure-eval py-sspilib -py-cachetools py-inflect py-pure-sasl py-stack-data -py-cachey py-inheritance py-puremagic py-starfile -py-cachy py-iniconfig py-py py-starlette -py-cairocffi py-iniparse py-py-cpuinfo py-starlette-context -py-cairosvg py-inquirer py-py-spy py-starsessions -py-caliper-reader py-inquirerpy py-py-tes py-stashcp -py-callmonitor py-inscriptis py-py2bit py-statmorph -py-calver py-installer py-py2neo py-statsmodels -py-cantoolz py-instrain py-py4j py-stdlib-list -py-carputils py-intake py-py6s py-stestr -py-cartopy py-intake-esm py-pyabel py-stevedore -py-casadi py-intbitset py-pyaestro py-stomp-py -py-catalogue py-intel-openmp py-pyahocorasick py-stopit -py-catkin-pkg py-intensity-normalization py-pyamg py-storm -py-cattrs py-interface-meta py-pyaml py-stratify -py-cbor2 py-interlap py-pyaml-env py-strawberryfields -py-cclib py-intervaltree py-pyani py-streamlit -py-cdo py-invoke py-pyarrow py-stringzilla -py-cdsapi py-iocapture py-pyasn1 py-striprtf -py-cekit py-iopath py-pyasn1-modules py-stsci-distutils -py-celery py-ipaddress py-pyassimp py-stui -py-cellprofiler py-ipdb py-pyautogui py-submitit -py-cellprofiler-core py-ipycanvas py-pybedtools py-subrosa -py-centrosome py-ipyevents py-pybids py-subword-nmt -py-cerberus py-ipyfilechooser py-pybigwig py-supermercado -py-certifi py-ipykernel py-pybind11 py-superqt -py-certipy py-ipyleaflet py-pybind11-stubgen py-supervisor -py-cf-units py-ipympl py-pybktree py-svgpath -py-cf-xarray py-ipyparallel py-pybobyqa py-svgpathtools -py-cffconvert py-ipyrad py-pybrain py-svgutils -py-cffi py-ipython py-pybtex py-svgwrite -py-cfgrib py-ipython-cluster-helper py-pybtex-docutils py-swagger-spec-validator -py-cfgv py-ipython-genutils py-pybv py-symengine -py-cftime py-ipython-pygments-lexers py-pycairo py-symfit -py-cgen py-ipytree py-pycares py-sympy -py-chai py-ipyvtk-simple py-pycbc py-syned -py-chai-lab py-ipyvue py-pycgns py-sysrsync -py-chainer py-ipyvuetify py-pychecker py-systemd-python -py-chainforgecodegen py-ipywidgets py-pycifrw py-tabledata -py-chainmap py-irpf90 py-pyclibrary py-tables -py-chalice py-isa-rwval py-pycm py-tabulate -py-chardet py-isal py-pycmd py-tatsu -py-charm4py py-iso8601 py-pycocotools py-tblib -py-charset-normalizer py-isodate py-pycodestyle py-tbparse -py-chart-studio py-isoduration py-pycollada py-tcolorpy -py-cheap-repr py-isort py-pycompadre py-tempita -py-checkm-genome py-itables py-pyconify py-templateflow -py-cheetah3 py-iterative-stats py-pycorenlp py-tempora -py-chemfiles py-itk py-pycortex py-tenacity -py-chemiscope py-itolapi py-pycosat py-tensorboard -py-cheroot py-itsdangerous py-pycparser py-tensorboard-data-server -py-cherrypy py-jacobi py-pycrypto py-tensorboard-plugin-wit -py-chex py-jaconv py-pycryptodome py-tensorboardx -py-choreographer py-jamo py-pycryptodomex py-tensorflow -py-chronyk py-janus py-pyct py-tensorflow-datasets -py-ci-info py-jaraco-classes py-pycubexr py-tensorflow-estimator -py-ci-sdr py-jaraco-context py-pycuda py-tensorflow-hub -py-cig-pythia py-jaraco-functools py-pycurl py-tensorflow-metadata -py-cinema-lib py-jarowinkler py-pydantic py-tensorflow-probability -py-cinemasci py-jarvis-util py-pydantic-compat py-tensorly -py-circus py-javaproperties py-pydantic-core py-tensorstore -py-citeproc-py py-jax py-pydantic-extra-types py-termcolor -py-clarabel py-jaxlib py-pydantic-settings py-termgraph -py-clean-text py-jaxtyping py-pydantic-tes py-terminado -py-cleo py-jcb py-pydap py-terminaltables -py-click py-jdatetime py-pydata-sphinx-theme py-tern -py-click-didyoumean py-jdcal py-pydatalog py-tesorter -py-click-option-group py-jedi py-pydeface py-testfixtures -py-click-plugins py-jeepney py-pydeprecate py-testinfra -py-click-repl py-jellyfish py-pydeps py-testpath -py-cligj py-jinja2 py-pydevtool py-testrepository -py-clikit py-jinja2-cli py-pydftracer py-testresources -py-climate py-jinja2-humanize-extension py-pydicom py-testscenarios -py-climax py-jinja2-time py-pydispatcher py-testtools -py-clint py-jiter py-pydmd py-tetoolkit -py-clip-anytorch py-jmespath py-pydocstyle py-text-unidecode -py-clipboard py-jmp py-pydoe py-textblob -py-cloudauthz py-joblib py-pydoe2 py-texttable -py-cloudbridge py-jplephem py-pydot py-textual -py-cloudpathlib py-jproperties py-pydot2 py-textual-fspicker -py-cloudpickle py-jprops py-pydotplus py-textual-plotext -py-clustershell py-jpype1 py-pydub py-textwrap3 -py-cma py-jraph py-pyeda py-textx -py-cmaes py-jsmin py-pyedr py-tf-keras -py-cmake-format py-json-get py-pyee py-tf2onnx -py-cmake-parser py-json-tricks py-pyelftools py-tfdlpack -py-cmocean py-json2html py-pyem py-theano -py-cmseq py-json5 py-pyenchant py-thewalrus -py-cmsml py-jsonargparse py-pyepsg py-thinc -py-cmyt py-jsondiff py-pyerfa py-thop -py-coapthon3 py-jsonlines py-pyeventsystem py-threadpoolctl -py-coca-pytorch py-jsonpatch py-pyface py-throttler -py-coclust py-jsonpath-ng py-pyfaidx py-tidynamics -py-codebasin py-jsonpickle py-pyfasta py-tifffile -py-codecarbon py-jsonpointer py-pyfastaq py-tiktoken -py-codechecker py-jsonref py-pyfftw py-tilelang -py-codepy py-jsonschema py-pyfiglet py-timezonefinder -py-codespell py-jsonschema-specifications py-pyfits py-timm -py-coherent-licensed py-junit-xml py-pyfive py-tinyarray -py-coilmq py-junit2html py-pyflakes py-tinycss2 -py-colabtools py-jupyter py-pyfr py-tinydb -py-colorama py-jupyter-client py-pygame py-tinyrecord -py-colorcet py-jupyter-console py-pygdal py-tld -py-colorclass py-jupyter-core py-pygdbmi py-tldextract -py-colored py-jupyter-events py-pygelf py-tmtools -py-colored-traceback py-jupyter-leaflet py-pygeos py-tokenize-rt -py-coloredlogs py-jupyter-lsp py-pygetwindow py-tokenizers -py-colorful py-jupyter-packaging py-pygit2 py-toml -py-colorio py-jupyter-server py-pygithub py-tomli -py-colorlog py-jupyter-server-mathjax py-pyglet py-tomli-w -py-colorlover py-jupyter-server-proxy py-pygments py-tomlkit -py-colormath py-jupyter-server-terminals py-pygments-pytest py-tomopy -py-colorpy py-jupyter-telemetry py-pygmsh py-toolz -py-colorspacious py-jupyterhub py-pygmt py-topiary-asr -py-colossalai py-jupyterlab py-pygobject py-toposort -py-colour py-jupyterlab-pygments py-pygps py-torch -py-comm py-jupyterlab-server py-pygpu py-torch-c-dlpack-ext -py-common py-jupyterlab-widgets py-pygraphviz py-torch-cluster -py-commonmark py-jupytext py-pygresql py-torch-fidelity -py-conan py-justext py-pygrib py-torch-geometric -py-conda-inject py-jwcrypto py-pygtrie py-torch-harmonics -py-conda-souschef py-kaggle py-pyh5md py-torch-nvidia-apex -py-confection py-kaldiio py-pyhdf py-torch-scatter -py-configargparse py-kaleido py-pyheadtail py-torch-sparse -py-configobj py-kb-python py-pyhmmer py-torch-spex -py-configparser py-keras py-pyhull py-torch-spline-conv -py-configspace py-keras-applications py-pyicu py-torchaudio -py-confluent-kafka py-keras-preprocessing py-pyinstrument py-torchbenchmark -py-connectionpool py-keras2onnx py-pyinstrument-cext py-torchdata -py-consolekit py-kerberos py-pyisemail py-torchdiffeq -py-constantly py-kerchunk py-pyjnius py-torchfile -py-contextily py-key-value-aio py-pyjwt py-torchgeo -py-contextlib2 py-keyboard py-pyke py-torchmeta -py-contexttimer py-keyring py-pykerberos py-torchmetrics -py-continuum py-keyrings-alt py-pykml py-torchseg -py-contourpy py-keystoneauth1 py-pykokkos-base py-torchsummary -py-contrib py-kitchen py-pykwalify py-torchtext -py-control py-kiwisolver py-pylab-sdk py-torchtoolbox -py-convertdate py-kmodes py-pylatex py-torchvision -py-convokit py-knack py-pyld py-tornado -py-cookiecutter py-kneaddata py-pylev py-tox -py-coolname py-kombu py-pylibjpeg-libjpeg py-toyplot -py-copulas py-kornia py-pylibjpeg-openjpeg py-toytree -py-corner py-kornia-rs py-pylibjpeg-rle py-tpot -py-correctionlib py-kosh py-pylibmagic py-tqdm -py-corrfunc py-krb5 py-pylikwid py-traceback2 -py-counter py-kt-legacy py-pylint py-trafilatura -py-courlan py-kubernetes py-pylint-gitlab py-trainax -py-cov-core py-kymatio py-pylith py-traitlets -py-coverage py-lagom py-pylops py-traits -py-coveralls py-langcodes py-pymatgen py-traitsui -py-cppheaderparser py-langsmith py-pymatreader py-traittypes -py-cppy py-language-data py-pymbolic py-trame -py-cramjam py-lap py-pymc3 py-trame-client -py-crashtest py-laplace-torch py-pymdown-extensions py-trame-common -py-crc32c py-lark py-pymeeus py-trame-server -py-crcmod py-lark-parser py-pyminifier py-trame-vtk -py-croniter py-laspy py-pymol py-trame-vuetify -py-crossmap py-latexcodec py-pymongo py-transformer-engine -py-cryolobm py-law py-pymoo py-transformers -py-cryptography py-lazy py-pymorph py-transforms3d -py-css-parser py-lazy-loader py-pympler py-transonic -py-cssselect py-lazy-object-proxy py-pymsgbox py-tree -py-cssselect2 py-lazy-property py-pymummer py-tree-math -py-cssutils py-lazyarray py-pymumps py-tree-sitter -py-csvkit py-lcls-krtc py-pymupdf py-tree-sitter-c -py-ctgan py-ldap3 py-pymupdf-fonts py-treehash -py-cuda-bindings py-leather py-pymysql py-treelib -py-cuda-core py-leidenalg py-pynacl py-triangle -py-cuda-pathfinder py-lerc py-pynio py-trieregex -py-cudf py-lfpykit py-pynisher py-trimesh -py-cufflinks py-lhsmdu py-pynn py-triton -py-cuml py-liac-arff py-pynndescent py-trl -py-cupy py-libclang py-pynpm py-trojanzoo-sphinx-theme -py-current py-libconf py-pynrrd py-trove-classifiers -py-currentscape py-libcst py-pynucleus py-trx-python -py-curryreader py-libensemble py-pynumpress py-tuiview -py-curvlinops-for-pytorch py-liblas py-pynvim py-tuspy -py-custodian py-librosa py-pynvml py-tuswsgi -py-custom-inherit py-librt py-pynvtx py-tweedledum -py-cutadapt py-libsonata py-pyodbc py-twine -py-cvxopt py-lifelines py-pyogrio py-twisted -py-cvxpy py-lightgbm py-pyomo py-ty -py-cwl-upgrader py-lightly py-pyopencl py-typed-ast -py-cwl-utils py-lightly-utils py-pyopengl py-typeguard -py-cwltool py-lightning py-pyopenssl py-typepy -py-cx-oracle py-lightning-api-access py-pypar py-typer -py-cycler py-lightning-cloud py-pyparsing py-types-dataclasses -py-cykhash py-lightning-fabric py-pypdf py-types-geopandas -py-cylc-flow py-lightning-lite py-pypdf2 py-types-pkg-resources -py-cylc-rose py-lightning-uq-box py-pypeflow py-types-psutil -py-cylp py-lightning-utilities py-pypeg2 py-types-python-dateutil -py-cymem py-lightpipes py-pyperclip py-types-pytz -py-cyordereddict py-ligo-segments py-pyperf py-types-pyyaml -py-cython py-lil-aretomo py-pypinfo py-types-requests -py-cython-bbox py-line-profiler py-pypinyin py-types-setuptools -py-cyvcf2 py-linear-operator py-pypistats py-types-shapely -py-d2to1 py-linear-tree py-pypng py-types-tqdm -py-dace py-linecache2 py-pyppeteer py-types-typed-ast -py-dacite py-lineenhancer py-pyprecice py-types-urllib3 -py-dadi py-linkchecker py-pyprof2html py-typesentry -py-dalib py-linkify-it-py py-pyproj py-typeshed-client -py-damask py-lit py-pyproject-hooks py-typing-extensions -py-darshan py-litdata py-pyproject-metadata py-typing-inspect -py-dasbus py-littleutils py-pyproject-parser py-typing-inspection -py-dash py-lizard py-pypulse py-typish -py-dash-bootstrap-components py-llama-cpp-python py-pyqi py-tzdata -py-dash-svg py-llnl-sina py-pyqt-builder py-tzlocal -py-dask py-llvmlite py-pyqt4 py-ubiquerg -py-dask-awkward py-lmdb py-pyqt5 py-uc-micro-py -py-dask-expr py-lmfit py-pyqt5-sip py-ucsf-pyem -py-dask-glm py-lmodule py-pyqt6 py-ucx-py -py-dask-histogram py-localcider py-pyqt6-sip py-uhi -py-dask-jobqueue py-locket py-pyqtgraph py-ujson -py-dask-ml py-lockfile py-pyquaternion py-ultralytics -py-dask-mpi py-logilab-common py-pyreadline py-umalqurra -py-dask-sphinx-theme py-logistro py-pyrect py-umap-learn -py-databricks-cli py-logmuse py-pyrevolve py-umi-tools -py-dataclasses py-logomaker py-pyrfr py-uncertainties -py-dataclasses-json py-loguru py-pyro-api py-uncertainty-toolbox -py-datacube py-loky py-pyro-ppl py-unfoldnd -py-datalad py-loompy py-pyro4 py-unicycler -py-datalad-container py-looseversion py-pyroaring py-unidecode -py-datalad-deprecated py-louie py-pyrocko py-unittest2py3k -py-datalad-hirni py-lpips py-pyrodigal py-universal-pathlib -py-datalad-metadata-model py-lru-dict py-pyrodigal-gv py-unshare -py-datalad-metalad py-lscsoft-glue py-pyrometheus py-unyt -py-datalad-neuroimaging py-lsprotocol py-pyrr py-update-checker -py-datalad-webapp py-luigi py-pyrsistent py-uproot -py-dataproperty py-lupa py-pysam py-uproot3 -py-datasets py-lvis py-pyscaf py-uproot3-methods -py-datashader py-lws py-pyscf py-uqinn -py-datatrove py-lxml py-pyscipopt py-uri-template -py-dateparser py-lz4 py-pyscreeze py-uritemplate -py-dateutils py-lzstring py-pyseer py-url-normalize -py-datrie py-m2r py-pyserial py-urllib3 -py-dbf py-macholib py-pysftp py-urllib3-secure-extra -py-dbfread py-machotools py-pyshacl py-urwid -py-dcm2bids py-macs2 py-pyshp py-us -py-dcmstack py-macs3 py-pyside2 py-userpath -py-deap py-maestrowf py-pysimdjson py-usgs -py-debtcollector py-magicgui py-pysindy py-utils -py-debugpy py-mahotas py-pysmartdl py-uv -py-decorator py-mailchecker py-pysmiles py-uv-build -py-deepdiff py-make py-pysocks py-uv-dynamic-versioning -py-deepecho py-makefun py-pysolar py-uvicorn -py-deephyper py-mako py-pyspark py-uvloop -py-deepmerge py-mapbox-earcut py-pyspellchecker py-uvw -py-deepsig-biocomp py-mapclassify py-pyspice py-uwsgi -py-deepspeed py-mariadb py-pyspnego py-uxarray -py-deeptools py-marisa-trie py-pyspoa py-validate-pyproject -py-deeptoolsintervals py-markdown py-pyspod py-validators -py-defusedxml py-markdown-include py-pysqlite3 py-vascpy -py-deisa py-markdown-it-py py-pystac py-vcf-kit -py-deisa-core py-markdown2 py-pystac-client py-vcrpy -py-deisa-dask py-markov-clustering py-pystache py-vcstool -py-demjson py-markovify py-pystan py-vcstools -py-dendropy py-markupsafe py-pysurfer py-vcversioner -py-deprecat py-marshmallow py-pytablewriter py-vector -py-deprecated py-matminer py-pytailf py-vector-quantize-pytorch -py-deprecation py-matplotlib py-pytaridx py-vermin -py-deprecation-alias py-matplotlib-inline py-pytecplot py-vermouth-martinize -py-derivative py-matplotlib-scalebar py-pytesseract py-versioneer -py-descartes py-maturin py-pytest py-versioneer-518 -py-devito py-mayavi py-pytest-aiohttp py-versioningit -py-devlib py-mbstrdecoder py-pytest-allclose py-verspec -py-dgl py-mccabe py-pytest-arraydiff py-vesin -py-dh-scikit-optimize py-md-environ py-pytest-astropy py-vine -py-diagnostic py-mda-xdrlib py-pytest-astropy-header py-virtualenv -py-dict2css py-mdahole2 py-pytest-asyncio py-virtualenv-clone -py-dictdiffer py-mdanalysis py-pytest-benchmark py-virtualenvwrapper -py-dictobj py-mdanalysistests py-pytest-cache py-visdom -py-dill py-mdi py-pytest-check-links py-vispy -py-dinosaur py-mdit-py-plugins py-pytest-cmake py-vl-convert-python -py-dipy py-mdocfile py-pytest-cov py-voluptuous -py-dirtyjson py-mdurl py-pytest-cpp py-vsc-base -py-disbatch py-meautility py-pytest-datadir py-vsc-install -py-discover py-mechanize py-pytest-doctestplus py-vsts -py-diskcache py-medaka py-pytest-fail-slow py-vsts-cd-manager -py-dist-meta py-meldmd py-pytest-filter-subpackage py-wadler-lindig -py-distance py-melissa-core py-pytest-flake8 py-waitress -py-distlib py-memelite py-pytest-flakes py-walinuxagent -py-distributed py-memory-profiler py-pytest-forked py-wand -py-distro py-memprof py-pytest-html py-wandb -py-django py-memray py-pytest-httpbin py-warcio -py-dlcpar py-mendeleev py-pytest-isort py-warlock -py-dm-haiku py-mercantile py-pytest-lazy-fixture py-wasabi -py-dm-tree py-mergedeep py-pytest-memray py-watchdog -py-dnaio py-merlin py-pytest-metadata py-watchfiles -py-dnspython py-meshio py-pytest-mock py-waterdynamics -py-docker py-meshpy py-pytest-mpi py-waves -py-dockerpy-creds py-meson-python py-pytest-mypy py-wcsaxes -py-docket py-metaphlan py-pytest-openfiles py-wcwidth -py-docopt py-metasv py-pytest-parallel py-webargs -py-docopt-ng py-metatensor-core py-pytest-pep8 py-webcolors -py-docstring-parser py-metatensor-learn py-pytest-pylint py-webdataset -py-docstring-to-markdown py-metatensor-operations py-pytest-qt py-webdavclient3 -py-docutils py-metatensor-torch py-pytest-random-order py-webencodings -py-docutils-stubs py-metatomic-torch py-pytest-regtest py-webkit-server -py-dogpile-cache py-metatrain py-pytest-remotedata py-weblogo -py-doit py-metis py-pytest-reportlog py-webob -py-dolfinx-mpc py-metomi-isodatetime py-pytest-retry py-websocket-client -py-dom-toml py-metomi-rose py-pytest-runner py-websockets -py-domdf-python-tools py-metpy py-pytest-socket py-werkzeug -py-dominate py-metric-learn py-pytest-subprocess py-wesanderson -py-donfig py-metrics py-pytest-timeout py-wget -py-dotmap py-mffpy py-pytest-workflow py-whatshap -py-dotnetcore2 py-mg-rast-tools py-pytest-xdist py-wheel -py-downhill py-mgmetis py-python-benedict py-whenever -py-doxypypy py-microsoft-aurora py-python-bioformats py-whey -py-dpath py-mido py-python-box py-whey-pth -py-drep py-mikado py-python-calamine py-whichcraft -py-drmaa py-mike py-python-certifi-win32 py-whoosh -py-dryscrape py-minio py-python-constraint py-widgetsnbextension -py-duecredit py-minisom py-python-crfsuite py-wids -py-dulwich py-minkowskiengine py-python-daemon py-wigners -py-dunamai py-minrpc py-python-dateutil py-win-unicode-console -py-dvc py-misk py-python-deprecated py-wincertstore -py-dxchange py-misopy py-python-discovery py-word2number -py-dxfile py-mistletoe py-python-docs-theme py-wordcloud -py-dynaconf py-mistune py-python-docx py-workload-automation -py-dynim py-mizani py-python-dotenv py-wradlib -py-earth2mip py-mkdocs py-python-editor py-wrapt -py-earthengine-api py-mkdocs-autorefs py-python-engineio py-wsproto -py-easybuild-easyblocks py-mkdocs-jupyter py-python-fmask py-wstool -py-easybuild-easyconfigs py-mkdocs-material py-python-fsutil py-wub -py-easybuild-framework py-mkdocs-material-extensions py-python-gitlab py-wurlitzer -py-eccodes py-mkdocstrings py-python-hostlist py-ww -py-ecdsa py-mkdocstrings-python py-python-igraph py-wxflow -py-ecmwf-opendata py-ml-collections py-python-javabridge py-wxmplot -py-ecmwflibs py-ml-dtypes py-python-jenkins py-wxpython -py-ecos py-mlflow py-python-jose py-x-clip -py-edam-ontology py-mlperf-logging py-python-json-logger py-x21 -py-edffile py-mlxtend py-python-keystoneclient py-xanadu-cloud-client -py-edfio py-mmcv py-python-ldap py-xarray -py-edflib-python py-mmengine py-python-levenshtein py-xarray-regrid -py-editables py-mmtf-python py-python-libsbml py-xarray-tensorstore -py-editdistance py-mne py-python-logstash py-xattr -py-edlib py-mne-bids py-python-louvain py-xcdat -py-eeglabio py-mo-pack py-python-lsp-jsonrpc py-xdot -py-eerepr py-moarchiving py-python-lsp-ruff py-xenv -py-efel py-mock py-python-lsp-server py-xesmf -py-efficientnet-pytorch py-model-index py-python-lzo py-xgboost -py-eg py-modelcif py-python-magic py-xgcm -py-eigenpy py-modepy py-python-mapnik py-xhistogram -py-einconv py-modin py-python-markdown-math py-xlrd -py-einops py-modisco py-python-memcached py-xlsxwriter -py-elastic-transport py-modred py-python-multipart py-xlwt -py-elasticsearch py-modules-gui py-python-mumps py-xmlplain -py-elasticsearch-dsl py-moltemplate py-python-oauth2 py-xmlrunner -py-elecsolver py-monai py-python-picard py-xmltodict -py-elephant py-monkeytype py-python-pptx py-xonsh -py-elevation py-monotonic py-python-ptrace py-xopen -py-ema-pytorch py-monty py-python-rapidjson py-xpyb -py-email-validator py-more-itertools py-python-slugify py-xskillscore -py-embedding-reader py-morph-tool py-python-socketio py-xtb -py-emcee py-morphio py-python-sotools py-xvfbwrapper -py-emoji py-morphosamplers py-python-subunit py-xxhash -py-empy py-motmetrics py-python-swiftclient py-xyzservices -py-entrypoints py-mouseinfo py-python-utils py-yacman -py-enum-tools py-moviepy py-python-xlib py-yacs -py-envisage py-mpi4jax py-python-xmp-toolkit py-yahmm -py-ephem py-mpi4py py-python3-openid py-yajl -py-eprosima-fastdds py-mpld3 py-python3-xlib py-yamlreader -py-epydoc py-mpldock py-pythonqwt py-yapf -py-equation py-mplhep py-pythonsollya py-yarl -py-equinox py-mplhep-data py-pythran py-yaspin -py-espresso py-mpmath py-pytimeparse py-yolk3k -py-espressopp py-mrcfile py-pytng py-your -py-et-xmlfile py-msal py-pytokens py-youtube-dl -py-ete3 py-msal-extensions py-pytoml py-yq -py-etelemetry py-msgpack py-pytools py-yt -py-etils py-msgpack-numpy py-pytorch-gradual-warmup-lr py-yt-dlp -py-eval-type-backport py-msrest py-pytorch-lightning py-yt-dlp-ejs -py-evaluate py-msrestazure py-pytorch-sphinx-theme py-yte -py-eventlet py-mui4py py-pytorch-warmup py-ytopt -py-evodiff py-multi-imbalance py-pyts py-ytopt-autotune -py-ewah-bool-utils py-multi-key-dict py-pytuq py-z3-solver -py-exarl py-multidict py-pytweening py-zarr -py-exceptiongroup py-multiecho py-pytz py-zc-buildout -py-execnet py-multipledispatch py-pyu2f py-zc-lockfile -py-executing py-multiprocess py-pyudev py-zensical -py-exhale py-multiqc py-pyugrid py-zfit -py-exifread py-multiurl py-pyupgrade py-zfit-interface -py-exodus-bundler py-mumps4py py-pyusb py-zfit-physics -py-expandvars py-munch py-pyutilib py-zict -py-expecttest py-munkres py-pyuwsgi py-zipfile-deflate64 -py-exponax py-murmurhash py-pyvcf py-zipp -py-extension-helpers py-mutagen py-pyvips py-zipstream-new -py-extras py-mx py-pyvista py-zope-event -py-ez-setup py-mxfold2 py-pyvistaqt py-zope-interface -py-f90nml py-myhdl py-pyviz-comms py-zstandard -py-f90wrap py-mypy py-pyvolve py-zxcvbn -py-fabric py-mypy-extensions py-pywavelets -==> 3015 packages +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 900b93229..4f1a88565 100644 --- a/outputs/basics/list.out +++ b/outputs/basics/list.out @@ -1,2227 +1,4454 @@ $ spack list -3dtk lua-mpack py-freetype-py r-ada -3proxy lua-sol2 py-freezegun r-adabag -4ti2 lucene py-frozendict r-ade4 -7zip luit py-frozenlist r-adegenet -abacus lulesh py-fs r-adegraphics -abduco lumpy-sv py-fsspec r-adephylo -abi-compliance-checker lustre py-fsspec-xrootd r-adespatial -abi-dumper lvarray py-ftfy r-adgoftest -abinit lvm2 py-ftputil r-adsplit -abseil-cpp lwgrp py-funcy r-aer -abyss lwm2 py-furo r-afex -accfft lwtnn py-fury r-affxparser -acct lxc py-fusepy r-affy -accumulo lynx py-future r-affycomp -ace lz4 py-fuzzywuzzy r-affycompatible -acfl lzma py-fypp r-affycontam -ack lzo py-galaxy-containers r-affycoretools -acl lzop py-galaxy-job-metrics r-affydata -acpica-tools m4 py-galaxy-objectstore r-affyexpress -acpid macfuse py-galaxy-sequence-utils r-affyilm -activeharmony macsio py-galaxy-tool-util r-affyio -activemq mad-numdiff py-galaxy-util r-affypdnn -acts madgraph5amc py-galaxy2cwl r-affyplm -acts-algebra-plugins madis py-gast r-affyqcreport -acts-dd4hep madx py-gcovr r-affyrnadegradation -actsvg maeparser py-gcs-oauth2-boto-plugin r-agdex -additivefoam mafft py-gcsfs r-agilp -addrwatch magic-enum py-gdc-client r-agimicrorna -adept magics py-gdown r-aims -adept-utils magma py-gee-asset-manager r-aldex2 -adf mahout py-geeadd r-allelicimbalance -adiak makedepend py-geemap r-alpine -adios makedepf90 py-geeup r-als -adios-catalyst maker py-gemmforge r-alsace -adios2 mallocmc py-gemmi r-altcdfenvs -adlbx maloc py-genders r-amap -admixtools malt py-geneimpacts r-amelia -adms mamba py-generateds r-ampliqueso -adol-c man-db py-genshi r-analysispageserver -advancecomp mapl py-gensim r-anaquin -adwaita-icon-theme mapnik py-geoalchemy2 r-aneufinder -aegean mapserver py-geocoder r-aneufinderdata -aeskeyfind mapsplice2 py-geocube r-animation -aespipe maq py-geographiclib r-annaffy -affinity maqao py-geojson r-annotate -agile mariadb py-geomdl r-annotationdbi -agrep mariadb-c-client py-geopandas r-annotationfilter -aida mark py-geoplot r-annotationforge -akantu masa py-geopmdpy r-annotationhub -alan mash py-geopmpy r-anytime -albany masurca py-geopy r-aod -albert mathematica py-geoviews r-ape -alembic mathic py-gest-api r-aplot -alglib mathicgb py-gevent r-argparse -all-library matio py-gf256 r-arm -allpaths-lg matlab py-gfal2-python r-aroma-light -alluxio matrix-switch py-gffutils r-arrangements -alpaka maven py-ghp-import r-ash -alpgen maverick py-gidgethub r-askpass -alps mawk py-gidgetlab r-asreml -alpscore mbdyn py-gimmik r-assertive -alquimia mbedtls py-gin-config r-assertive-base -alsa-lib mc py-git-review r-assertive-code -alsa-plugins mcl py-gitdb r-assertive-data -aluminum mcpp py-gitpython r-assertive-data-uk -amber mct py-glean-parser r-assertive-data-us -ambertools mctc-lib py-glean-sdk r-assertive-datetimes -amd-aocl mcutils py-glmnet r-assertive-files -amdblis mdb py-glmnet-python r-assertive-matrices -amdfftw mdspan py-glmsingle r-assertive-models -amdlibflame mdsplus py-glob2 r-assertive-numbers -amdlibm mdtest py-globus-cli r-assertive-properties -amdscalapack med py-globus-sdk r-assertive-reflection -amdsmi medipack py-gluoncv r-assertive-sets -amduprof meep py-glymur r-assertive-strings -amg2013 mefit py-gmsh r-assertive-types -amg2023 megadock py-gmsh-interop r-assertthat -amg4psblas megahit py-gmxapi r-automap -amgx melissa py-gnuplot r-backports -aml memaxes py-goatools r-bamsignals -amp memcached py-gooey r-base64 -ampl meme py-google r-base64enc -ampliconnoise memkind py-google-api-core r-basilisk -ampt memtailor py-google-api-python-client r-basilisk-utils -amqp-cpp memtester py-google-apitools r-bayesfactor -amr-wind mepo py-google-auth r-bayesm -amrex meraculous py-google-auth-httplib2 r-bayesplot -amrfinder mercurial py-google-auth-oauthlib r-bbmisc -amrvis mercury py-google-cloud-appengine-logging r-beachmat -ams mergiraf py-google-cloud-audit-log r-beanplot -anaconda3 mesa py-google-cloud-batch r-beeswarm -andi mesa-demos py-google-cloud-bigquery r-bench -angsd mesa-glu py-google-cloud-core r-bfast -anicalculator meshkit py-google-cloud-logging r-bfastspatial -ant meshlab py-google-cloud-storage r-bglr -antimony meshoptimizer py-google-crc32c r-bh -antlr meshtool py-google-pasta r-biasedurn -antlr4-complete meson py-google-reauth r-bibtex -antlr4-cpp-runtime mesquite py-google-resumable-media r-bigalgebra -ants met py-googleapis-common-protos r-biglm -any2fasta metabat py-googledrivedownloader r-bigmemory -aocc metacarpa py-gosam r-bigmemory-sri -aocl-compression metaeuk py-gpaw r-bindr -aocl-crypto metal py-gpaw-data r-bindrcpp -aocl-da metall py-gpustat r-bio3d -aocl-dlp metaphysicl py-gputil r-biobase -aocl-libmem methyldackel py-gpy r-biocfilecache -aocl-sparse metis py-gpyopt r-biocgenerics -aocl-utils metkit py-gpytorch r-biocinstaller -aoflagger metplus py-gql r-biocio -aom mfem py-gradio r-biocmanager -aotriton mg py-gradio-client r-biocneighbors -aotriton-llvm mgard py-grandalf r-biocparallel -apache-tvm mgardx py-graphcast r-biocsingular -apachetop mgcfd-op2 py-grapheme r-biocstyle -ape mgis py-graphene r-biocversion -aperture-photometry microbiomeutil py-graphlib-backport r-biom-utils -apex microsocks py-graphql-core r-biomart -apfel migraphx py-graphql-relay r-biomartr -apfelxx migrate py-graphql-ws r-biomformat -apktool migrate-package-prs py-graphviz r-biostrings -apple-clang mii py-gravity r-biovizbase -apple-gl mille py-grayskull r-bit -apple-glu millepede py-greenlet r-bit64 -apple-libunwind mimalloc py-grequests r-bitops -apple-libuuid mimic-mcl py-griddataformats r-blavaan -applewmproto minc-toolkit py-griffe r-blob -appres minced py-gromacswrapper r-blockmodeling -apptainer mindthegap py-grpc-google-iam-v1 r-bluster -apr miniamr py-grpcio r-bmp -apr-util miniapp-ascent py-grpcio-status r-bookdown -aqlprofile miniasm py-grpcio-tools r-boot -aragorn miniconda3 py-gsd r-boruta -arbor minife py-gssapi r-brew -arborx miniforge3 py-gsutil r-bridgesampling -arc minigan py-gtdbtk r-brio -archer minighost py-gunicorn r-brms -aretomo minigmg py-gxformat2 r-brobdingnag -aretomo2 minimap2 py-gym r-broom -aretomo3 minimd py-h11 r-broom-helpers -argobots minio py-h2 r-bsgenome -argon2 miniocli py-h3 r-bsgenome-hsapiens-ucsc-hg19 -argp-standalone miniqmc py-h5glance r-bslib -args minisign py-h5io r-bsseq -argtable minismac2d py-h5netcdf r-bumphunter -aria2 minitri py-h5py r-bwstest -arkouda minivite py-h5sh r-c50 -arm-forge minixyce py-hacking r-ca -arm-kernels minizip py-hail r-cachem -armadillo minuit py-handy-archives r-cairo -armcimpi miopen-hip py-hatch r-callr -armcomputelibrary mira py-hatch-cython r-car -armpl-gcc miranda py-hatch-fancy-pypi-readme r-caracas -arpack-ng mirdeep2 py-hatch-jupyter-builder r-cardata -arrayfire mitofates py-hatch-nodejs-version r-caret -arrow mitos py-hatch-requirements-txt r-caretensemble -asagi mivisionx py-hatch-vcs r-caroline -ascent mixcr py-hatchet r-category -asciidoc mkfontdir py-hatchling r-catools -asciidoc-py3 mkfontscale py-hclust2 r-cca -asdcplib mlc-llm py-hdbscan r-ccp -asdf-cxx mlhka py-hdf5plugin r-cdcfluview -asio mlocate py-hdfs r-cellranger -aspa mlpack py-healpix r-champ -aspcud mlperf-deepcam py-healpy r-champdata -aspect mlst py-heapdict r-checkmate -aspell mmg py-heat r-checkpoint -aspell6-de mmseqs2 py-heavyball r-chemometrics -aspell6-en mmv py-hep-ml r-chipseq -aspell6-es moab py-hepdata-converter r-chron -aspera-cli mochi-margo py-hepdata-lib r-circlize -assimp mochi-thallium py-hepdata-validator r-circstats -astra model-angelo py-hepstats r-clarabel -astral model-traits py-hepunits r-class -astyle modeltest-ng py-heudiconv r-classint -at-spi2-atk modern-wheel py-hf-transfer r-cli -at-spi2-core modylas py-hf-xet r-clipr -atf mojitos py-hieroglyph r-clisymbols -atfl mokutil py-highspy r-clock -athena molcas py-hiredis r-clue -atk mold py-hist r-cluster -atlas molden py-histbook r-clustergeneration -atom-dft molgw py-histogrammar r-clusterprofiler -atompaw mongo-c-driver py-histoprint r-cmdstanr -atop mongo-cxx-driver py-hjson r-cner -attr mongodb-async-driver py-hmmlearn r-coda -audacious mono py-holland-backup r-codetools -audacity montage py-holoviews r-codex -audit-userspace moosefs py-horovod r-coin -augustus moreutils py-hpack r-colorspace -authd mosesdecoder py-hpbandster r-colourpicker -authselect mosh py-hpccm r-combinat -autoconf mosquitto py-hsluv r-commonmark -autoconf-archive mothur py-hstspreload r-complexheatmap -autodiff motif py-htgettoken r-compositions -autodock-gpu motioncor2 py-html2text r-compquadform -autodock-vina mount-point-attributes py-html5lib r-condop -autogen mozjpeg py-htmldate r-conflicted -automaded mozjs py-htmlgen r-conquer -automake mpark-variant py-htseq r-consrank -autossh mpas-model py-httpbin r-construct -avizo mpb py-httpcore r-contfrac -aws-ofi-nccl mpc py-httplib2 r-convevol -aws-ofi-rccl mpdecimal py-httpretty r-copula -aws-parallelcluster mpe2 py-httpstan r-corhmm -aws-sdk-cpp mpest py-httptools r-corpcor -awscli mpfi py-httpx r-corrplot -awscli-v2 mpfr py-huggingface-hub r-countrycode -axel mpi-bash py-humanfriendly r-covr -axl mpi-rockstar py-humanize r-cowplot -axom mpi-serial py-hvac r-cpp11 -azcopy mpi-sync-clocks py-hvplot r-crayon -babelflow mpi-test-suite py-hydra-core r-credentials -babelstream mpibenchmark py-hypercorn r-crosstalk -babeltrace mpibind py-hyperframe r-crul -babeltrace2 mpich py-hyperlink r-ctc -babl mpidiff py-hyperopt r-cubature -bacio mpifileutils py-hypothesis r-cubist -backupninja mpigraph py-ibm-cloud-sdk-core r-curl -backward-cpp mpilander py-ibm-watson r-cvxr -bam-readcount mpileaks py-ics r-d3r -bamaddrg mpip py-id r-dada2 -bamdst mpir py-identify r-data-table -bamtools mpitrampoline py-idna r-dbi -bamutil mpiwrapper py-idna-ssl r-dbplyr -banner mpix-launch-swift py-igor r-debugme -bannergrab mpl py-igor2 r-decipher -barrnap mppp py-igraph r-delayedarray -bart mpsolve py-igv-notebook r-delayedmatrixstats -barvinok mpt py-igwn-auth-utils r-deldir -bash mptensor py-ihm r-dendextend -bash-completion mrbayes py-illumina-utils r-densvis -bashtop mrbench py-ilmbase r-deoptim -bat mrchem py-imagecodecs r-deoptimr -batchedblas mrcpp py-imagecorruptions-imaug r-deriv -batctl mrnet py-imagehash r-desc -bats mrtrix3 py-imageio r-deseq -baurmc mruby py-imageio-ffmpeg r-deseq2 -bazel mscclpp py-imagesize r-desolve -bbcp mscgen py-imaug r-devtools -bbmap msgpack-c py-imbalanced-learn r-dexseq -bc mshadow py-imgaug r-diagram -bcache msmc py-iminuit r-diagrammer -bcftools msmc2 py-immutabledict r-dicekriging -bdftopcf msmpi py-immutables r-dichromat -bdii msolve py-importlib-metadata r-diffobj -bdsim msr-safe py-importlib-resources r-diffusionmap -bdw-gc mstk py-imutils r-digest -beagle mstore py-in-n-out r-diptest -beakerlib msvc py-incremental r-dir-expiry -bear mt-metis py-inflect r-dirichletmultinomial -beast-tracer mtn py-inheritance r-dismo -beast1 mui py-iniconfig r-distributional -beast2 mujoco py-iniparse r-diversitree -beatnik multicharge py-inquirer r-dmrcate -bedops multitail py-inquirerpy r-dnacopy -bedtools2 multitime py-inscriptis r-do-db -beforelight multiverso py-installer r-doby -benchmark mumax py-instrain r-domc -berkeley-db mummer py-intake r-doparallel -berkeleygw mummer4 py-intake-esm r-dorng -bertini mumps py-intbitset r-dose -bfs munge py-intel-openmp r-dosnow -bgen muparser py-intensity-normalization r-dotcall64 -bgpdump muparserx py-interface-meta r-downlit -bib2xhtml muscle py-interlap r-downloader -bigdft-atlab muscle5 py-intervaltree r-dplyr -bigdft-chess muse py-invoke r-dqrng -bigdft-core music py-iocapture r-dss -bigdft-futile musica py-iopath r-dt -bigdft-libabinit musl py-ipaddress r-dtplyr -bigdft-liborbs must py-ipdb r-dtw -bigdft-psolver muster py-ipycanvas r-dupradar -bigdft-spred mutationpp py-ipyevents r-dygraphs -bigdft-suite mvapich py-ipyfilechooser r-dynamictreecut -bigreqsproto mvapich-plus py-ipykernel r-e1071 -bigwhoop mvapich2 py-ipyleaflet r-earth -bind9 mxm py-ipympl r-ebseq -binder mxml py-ipyparallel r-ecosolver -binutils mxnet py-ipyrad r-ecp -bioawk mypaint-brushes py-ipython r-edger -biobambam2 mysql py-ipython-cluster-helper r-effects -biobloom mysql-connector-c py-ipython-genutils r-elemstatlearn -biopieces mysqlpp py-ipython-pygments-lexers r-ellipse -bird n2p2 py-ipytree r-ellipsis -bismark nacos py-ipyvtk-simple r-elliptic -bison nag py-ipyvue r-emmeans -bitgroomingz nalu py-ipyvuetify r-emmli -bitlbee nalu-wind py-ipywidgets r-energy -bitmap namd py-irpf90 r-enrichplot -bitsery nano py-isa-rwval r-ensembldb -blackhat nanoflann py-isal r-envstats -blake3 nanomsg py-iso8601 r-ergm -blaspp nanopb py-isodate r-estimability -blast-plus nasm py-isoduration r-europepmc -blast2go nauty py-isort r-evaluate -blat navi py-itables r-evd -blaze nb py-iterative-stats r-exactextractr -blis nbdkit py-itk r-exomecopy -bliss ncbi-magicblast py-itolapi r-exomedepth -blitz ncbi-rmblastn py-itsdangerous r-experimenthub -blktrace ncbi-toolkit py-jacobi r-expint -bloaty ncbi-vdb py-jaconv r-expm -blogbench nccl py-jamo r-factoextra -blt nccl-fastsocket py-janus r-factominer -bmake nccl-tests py-jaraco-classes r-fansi -bmi nccmp py-jaraco-context r-farver -bml ncdu py-jaraco-functools r-fastcluster -bohrium ncftp py-jarowinkler r-fastdigest -boinc-client ncio py-jarvis-util r-fastdummies -bolt ncl py-javaproperties r-fastica -bonniepp nco py-jax r-fastmap -bookleaf-cpp ncompress py-jaxlib r-fastmatch -boost ncurses py-jaxtyping r-fastmatrix -boostmplcartesianproduct ncview py-jcb r-fda -boringssl ncvis py-jdatetime r-fdb-infiniummethylation-hg18 -botan ndiff py-jdcal r-fdb-infiniummethylation-hg19 -bowtie ndzip py-jedi r-fds -bowtie2 neartree py-jeepney r-ff -boxlib neic-finitefault py-jellyfish r-fftwtools -bpp-core nek5000 py-jinja2 r-fgsea -bpp-phyl nekbone py-jinja2-cli r-fields -bpp-phyl-omics nekcem py-jinja2-humanize-extension r-filehash -bpp-popgen neko py-jinja2-time r-filelock -bpp-seq nekrs py-jiter r-findpython -bpp-seq-omics nektar py-jmespath r-fit-models -bpp-suite nektools py-jmp r-fitdistrplus -bracken nemsio py-joblib r-flashclust -brahma nemsiogfs py-jplephem r-flexclust -braker neo4j py-jproperties r-flexmix -branson neocmakelsp py-jprops r-fnn -breakdancer neofoam py-jpype1 r-fontawesome -bref3 neon py-jraph r-forcats -breseq neovim py-jsmin r-foreach -bricks nep py-json-get r-forecast -bridger neper py-json-tricks r-foreign -brigand nest py-json2html r-formatr -brltty net-snmp py-json5 r-formula -brotli netcdf-c py-jsonargparse r-fpc -brpc netcdf-cxx py-jsondiff r-fpcompare -brunsli netcdf-cxx4 py-jsonlines r-fracdiff -brynet netcdf-fortran py-jsonpatch r-fs -bsseeker2 netcdf95 py-jsonpath-ng r-functional -btllib netdata py-jsonpickle r-furrr -btop netgauge py-jsonpointer r-futile-logger -bubblewrap netgen py-jsonref r-futile-options -bucky netkit-ftp py-jsonschema r-future -buddy netlib-lapack py-jsonschema-specifications r-future-apply -bueno netlib-scalapack py-junit-xml r-gamlss -bufr netlib-xblas py-junit2html r-gamlss-data -bufr-query netpbm py-jupyter r-gamlss-dist -bulker netperf py-jupyter-client r-gamm4 -bump2version nettle py-jupyter-console r-gargle -bumpversion networkdirect py-jupyter-core r-gbm -busco neuron py-jupyter-events r-gbrd -busybox neve py-jupyter-leaflet r-gcrma -butter newt py-jupyter-lsp r-gdalutilities -butterflypack nextdenovo py-jupyter-packaging r-gdalutils -bwa nextflow py-jupyter-server r-gdata -bwtool nf-core-tools py-jupyter-server-mathjax r-gdsfmt -byacc nf-seqerakit py-jupyter-server-proxy r-geiger -byfl nf-tower-agent py-jupyter-server-terminals r-genefilter -byobu nf-tower-cli py-jupyter-telemetry r-genelendatabase -byte-lite nf-wave-cli py-jupyterhub r-genemeta -byte-unixbench nfft py-jupyterlab r-geneplotter -byteman nfs-ganesha py-jupyterlab-pygments r-generics -bzip2 nfs-utils py-jupyterlab-server r-genetics -c-ares nghttp2 py-jupyterlab-widgets r-genie3 -c-blosc nginx py-jupytext r-genomeinfodb -c-blosc2 ngmerge py-justext r-genomeinfodbdata -c-lime ngmlr py-jwcrypto r-genomicalignments -c-raft ngspice py-kaggle r-genomicfeatures -c3d nicstat py-kaldiio r-genomicranges -ca-certificates-mozilla nim py-kaleido r-gensa -cabana nimrod-aai py-kb-python r-geojsonsf -cabana-pd ninja py-keras r-geometries -cachefilesd ninja-fortran py-keras-applications r-geometry -caffe ninja-phylogeny py-keras-preprocessing r-geomorph -cairo nix py-keras2onnx r-geonames -cairomm njet py-kerberos r-geoquery -caliper nlcglib py-kerchunk r-geor -callflow nlohmann-json py-key-value-aio r-geosphere -callpath nlohmann-json-schema-validator py-keyboard r-gert -camellia nlopt py-keyring r-getopt -camp nmad py-keyrings-alt r-getoptlong -camx nn-c py-keystoneauth1 r-ggally -canal nnn py-kitchen r-ggbeeswarm -cans nnpack py-kiwisolver r-ggbio -cantera nnvm py-kmodes r-ggdendro -canu node-js py-knack r-ggforce -cap3 nopayloadclient py-kneaddata r-ggfun -capnproto normaliz py-kombu r-ggjoy -capstone notmuch py-kornia r-ggmap -cardioid npb py-kornia-rs r-ggnewscale -care npm py-kosh r-ggpattern -cargo-c npth py-krb5 r-ggplot2 -cargs nq py-kt-legacy r-ggplotify -casacore nrm py-kubernetes r-ggpubr -casacore-measures ns-3-dev py-kymatio r-ggraph -cask nseg py-lagom r-ggrastr -casper nsimd py-langcodes r-ggrepel -cassandra nsjail py-langsmith r-ggridges -cassini-headers nspr py-language-data r-ggsci -castep nss py-lap r-ggsignif -catch2 ntirpc py-laplace-torch r-ggstats -cbc ntl py-lark r-ggthemes -cbench ntpoly py-lark-parser r-ggtree -cbflib numactl py-laspy r-ggvis -cbindgen numamma py-latexcodec r-gh -cblas numap py-law r-gistr -cbqn numaprof py-lazy r-git2r -cbtf numdiff py-lazy-loader r-gitcreds -cbtf-argonavis nut py-lazy-object-proxy r-glimma -cbtf-argonavis-gui nvbandwidth py-lazy-property r-glmgampoi -cbtf-krell nvcomp py-lazyarray r-glmnet -cbtf-lanl nvdimmsim py-lcls-krtc r-globaloptions -cc65 nvhpc py-ldap3 r-globals -ccache nvidia-container-toolkit py-leather r-globaltest -cce nvidia-nsight-systems py-leidenalg r-glue -ccfits nvpl-blas py-lerc r-gmodels -ccls nvpl-common py-lfpykit r-gmp -ccs-qcd nvpl-fft py-lhsmdu r-go-db -cctools nvpl-lapack py-liac-arff r-goftest -cdbfasta nvpl-scalapack py-libclang r-gofuncr -cdd nvptx-tools py-libconf r-googleauthr -cddlib nvshmem py-libcst r-googledrive -cdecimal nvtop py-libensemble r-googlesheets4 -cdhit nvtx py-liblas r-googlevis -cdi nwchem py-librosa r-goplot -cdo nyancat py-librt r-gosemsim -cdt oc py-libsonata r-goseq -ceed ocaml py-lifelines r-gostats -celeritas ocamlbuild py-lightgbm r-gower -cellpose occa py-lightly r-gparotation -cellranger oci-systemd-hook py-lightly-utils r-gplots -centrifuge ocl-icd py-lightning r-graph -cepgen oclgrind py-lightning-api-access r-graphlayouts -cereal oclint py-lightning-cloud r-grbase -ceres-solver oclock py-lightning-fabric r-gridbase -cernlib octa py-lightning-lite r-gridextra -cfitsio octave py-lightning-uq-box r-gridgraphics -cgal octave-arduino py-lightning-utilities r-gridpattern -cgdb octave-control py-lightpipes r-gsa -cgdcbxd octave-gsl py-ligo-segments r-gsalib -cget octave-instrctl py-lil-aretomo r-gseabase -cgl octave-io py-line-profiler r-gsl -cgm octave-optim py-linear-operator r-gsodr -cgns octave-quaternion py-linear-tree r-gson -cgsi-gsoap octave-signal py-linecache2 r-gss -chaco octave-splines py-lineenhancer r-gstat -chafa octave-statistics py-linkchecker r-gsubfn -chai octave-struct py-linkify-it-py r-gtable -chameleon octave-symbolic py-lit r-gtools -changa octopus py-litdata r-gtrellis -channelflow odc py-littleutils r-gviz -chaparral odgi py-lizard r-gwmodel -chapel of-catalyst py-llama-cpp-python r-hardhat -chaplin of-precice py-llnl-sina r-haven -charliecloud ollama py-llvmlite r-hdf5array -charmpp ome-common-cpp py-lmdb r-hdf5r -chatterbug ome-files-cpp py-lmfit r-hdo-db -check ome-model py-lmodule r-hdrcde -chemfiles omega-h py-localcider r-here -chexmix omm py-locket r-hexbin -chez-scheme omm-bundle py-lockfile r-hh -chgcentre omnictl py-logilab-common r-highr -chlorop omniperf py-logistro r-hmisc -chombo omnitrace py-logmuse r-hms -chrony ompss py-logomaker r-hoardr -chrpath ompss-2 py-loguru r-htmltable -cimfomfa ompt-openmp py-loky r-htmltools -cinch oneapi-igc py-loompy r-htmlwidgets -circe2 oneapi-level-zero py-looseversion r-httpcode -circos onednn py-louie r-httpuv -cistem oniguruma py-lpips r-httr -citcoms onnx py-lru-dict r-httr2 -cityhash ont-guppy py-lscsoft-glue r-humaniformat -civetweb oommf py-lsprotocol r-hwriter -cjson oomph py-luigi r-hydrogof -ck op2-dsl py-lupa r-hydrotsm -clamav opa-psm2 py-lvis r-hypergeo -clamr opam py-lws r-hypergraph -clapack opari2 py-lxml r-ica -clara opdilib py-lz4 r-ids -claude-code open-iscsi py-lzstring r-ieugwasr -claw open-isns py-m2r r-igraph -clblast open3d py-macholib r-illumina450probevariants-db -cleaveland4 openal-soft py-machotools r-illuminahumanmethylation450kanno-ilmn12-hg19 -cleverleaf openbabel py-macs2 r-illuminahumanmethylation450kmanifest -clfft openblas py-macs3 r-illuminahumanmethylationepicanno-ilm10b4-hg19 -clhep opencarp py-maestrowf r-illuminahumanmethylationepicmanifest -cli11 opencascade py-magicgui r-illuminaio -clinfo opencl-c-headers py-mahotas r-imager -clingo opencl-clhpp py-mailchecker r-impute -clingo-bootstrap opencl-headers py-make r-influencer -clingo-bootstrap-pgo opencl-icd-loader py-makefun r-ini -cln opencoarrays py-mako r-inline -cloc opencolorio py-mapbox-earcut r-insight -cloog opencv py-mapclassify r-interactivedisplaybase -cloverleaf opendatadetector py-mariadb r-interp -cloverleaf-ref opendx py-marisa-trie r-intervals -cloverleaf3d openexr py-markdown r-inum -clp openfast py-markdown-include r-ipred -clustal-omega openfdtd py-markdown-it-py r-iranges -clustalw openfoam py-markdown2 r-irdisplay -cmake openfoam-org py-markov-clustering r-irkernel -cmaq openfpgaloader py-markovify r-irlba -cmark openfst py-markupsafe r-isdparser -cmdlime opengl py-marshmallow r-islr -cmdstan openglu py-matminer r-iso -cminpack openimagedenoise py-matplotlib r-isoband -cmocka openimageio py-matplotlib-inline r-isva -cmockery openipmi py-matplotlib-scalebar r-iterators -cmor openjdk py-maturin r-iterpc -cni-plugins openjpeg py-mayavi r-jade -cnmem openkim-models py-mbstrdecoder r-janitor -cnpy openldap py-mccabe r-jaspar2018 -cntk openlibm py-md-environ r-jomo -cntk1bitsgd openloops py-mda-xdrlib r-jpeg -cnvnator openmc py-mdahole2 r-jquerylib -codar-cheetah openmm py-mdanalysis r-jsonify -code-server openmolcas py-mdanalysistests r-jsonlite -codec2 openmpi py-mdi r-kableextra -codecov openmx py-mdit-py-plugins r-kegggraph -codee opennurbs py-mdocfile r-keggrest -codes openpa py-mdurl r-kernlab -codipack openpbs py-meautility r-kernsmooth -coevp openpmd-api py-mechanize r-kknn -cohmm openradioss-engine py-medaka r-klar -cohomcalg openradioss-starter py-meldmd r-knitr -coin3d openrasmol py-melissa-core r-kpmt -coinhsl openresty py-memelite r-ks -coinmp openscenegraph py-memory-profiler r-ksamples -coinutils openslide py-memprof r-labeling -collectd openslp py-memray r-labelled -collier openspeedshop py-mendeleev r-lambda-r -colm openspeedshop-utils py-mercantile r-laplacesdemon -colordiff openssh py-mergedeep r-lars -comd openssl py-merlin r-later -comet opensta py-meshio r-lattice -comgr openstf py-meshpy r-latticeextra -commons-lang opensubdiv py-meson-python r-lava -commons-lang3 opentsdb py-metaphlan r-lavaan -commons-logging openturns py-metasv r-lazyeval -compadre openvdb py-metatensor-core r-ldheatmap -compiler-wrapper openvkl py-metatensor-learn r-leafem -composable-kernel openwsman py-metatensor-operations r-leaflet -compose ophidia-analytics-framework py-metatensor-torch r-leaflet-providers -compositeproto ophidia-io-server py-metatomic-torch r-leafpop -composyx ophidia-primitives py-metatrain r-leaps -conda4aarch64 ophidia-server py-metis r-learnbayes -conduit opium py-metomi-isodatetime r-leiden -conmon optional-lite py-metomi-rose r-lfe -connect-proxy optipng py-metpy r-lhs -conquest optix-dev py-metric-learn r-libcoin -conserver opus py-metrics r-libpressio -console-bridge or-tools py-mffpy r-lidr -constype oracle-instant-client py-mg-rast-tools r-lifecycle -consul oras py-mgmetis r-limma -cool orbit2 py-microsoft-aurora r-limsolve -coordgen orc py-mido r-linprog -coral orca py-mikado r-list -corenlp orca-faccts py-mike r-listenv -coreutils orfm py-minio r-lme4 -corset orientdb py-minisom r-lmertest -cosbench orthofiller py-minkowskiengine r-lmtest -cosign orthofinder py-minrpc r-lobstr -cosimio orthomcl py-misk r-locfit -cosma osg-ca-certs py-misopy r-log4r -cosmoflow-benchmark osi py-mistletoe r-loo -cosmomc osmctools py-mistune r-lpsolve -cosp2 osmesa py-mizani r-lpsolveapi -costa osmosis py-mkdocs r-lsei -costo ospray py-mkdocs-autorefs r-lubridate -cotter osqp py-mkdocs-jupyter r-lumi -countdown ossp-uuid py-mkdocs-material r-lwgeom -covfie osu-micro-benchmarks py-mkdocs-material-extensions r-magic -cowsay otf py-mkdocstrings r-magick -cp2k otf-cpt py-mkdocstrings-python r-magrittr -cpat otf2 py-ml-collections r-makecdfenv -cpio ovito py-ml-dtypes r-maldiquant -cplex oxide-rs py-mlflow r-manipulatewidget -cpmd p11-kit py-mlperf-logging r-mapplots -cpp-argparse p3dfft3 py-mlxtend r-mapproj -cpp-httplib p4est py-mmcv r-maps -cpp-logger p7zip py-mmengine r-maptools -cpp-termcolor pacbio-daligner py-mmtf-python r-mapview -cppad pacbio-damasker py-mne r-markdown -cppcheck pacbio-dazz-db py-mne-bids r-marray -cppcodec pacbio-dextractor py-mo-pack r-mass -cppcoro pace py-moarchiving r-mathjaxr -cppgsl pacifica-cli py-mock r-matlab -cpprestsdk packmol py-model-index r-matr -cpptrace pacparser py-modelcif r-matrix -cppunit pacvim py-modepy r-matrixgenerics -cppzmq paddle py-modin r-matrixmodels -cpr padicotm py-modisco r-matrixstats -cprnc pagit py-modred r-mclogit -cpu-features pagmo py-modules-gui r-mclust -cpuinfo pagmo2 py-moltemplate r-mcmc -cqrlib paintor py-monai r-mcmcglmm -cquery pajeng py-monkeytype r-mcmcpack -cracklib pal py-monotonic r-mco -cradl palace py-monty r-mda -cram palisade-development py-more-itertools r-memisc -cray-fftw paml py-morph-tool r-memoise -cray-libsci panda py-morphio r-memuse -cray-mpich pandaseq py-morphosamplers r-mendelianrandomization -cray-mvapich2 pandoc py-motmetrics r-mergemaid -cray-pmi pandoramonitoring py-mouseinfo r-meta -creduce pandorapfa py-moviepy r-metadat -crmc pandorasdk py-mpi4jax r-metafor -croc pango py-mpi4py r-metap -cromwell pangolin py-mpld3 r-metapod -cromwell-womtool pangomm py-mpldock r-methylumi -cronie papi py-mplhep r-mgcv -crosstool-ng papyrus py-mplhep-data r-mgraster -crow paraconf py-mpmath r-mice -crtm paradiseo py-mrcfile r-microbenchmark -crtm-fix parafeed py-msal r-mime -crunch parallel py-msal-extensions r-minfi -crux-toolkit parallel-hashmap py-msgpack r-miniui -cry parallel-netcdf py-msgpack-numpy r-minqa -cryodrgn parallelio py-msrest r-misc3d -cryoef parallelmergetree py-msrestazure r-missmethyl -cryptopp paraview py-mui4py r-mitml -cryptsetup pareval py-multi-imbalance r-mitools -csa-c parflow py-multi-key-dict r-mixtools -cscope parmetis py-multidict r-mlbench -csdp parmgridgen py-multiecho r-mlinterfaces -csvtk parmmg py-multipledispatch r-mlr -ctffind parquet-format py-multiprocess r-mlrmbo -ctpl parsec py-multiqc r-mmwrweek -ctre parsimonator py-multiurl r-mnormt -cub parsplice py-mumps4py r-mockery -cuba parthenon py-munch r-modelmetrics -cubature partons py-munkres r-modelr -cube partons-elementary-utils py-murmurhash r-modeltools -cube-blade partons-numa py-mutagen r-mpm -cubelib pass py-mx r-mr-raps -cubew passt py-mxfold2 r-mrinstruments -cubist pasta py-myhdl r-mrmix -cublasmp pastix py-mypy r-mrpresso -cuda patch py-mypy-extensions r-mscoreutils -cuda-memtest patchelf py-mysql-connector-python r-msnbase -cudd patchutils py-mysqlclient r-multcomp -cudnn pathfinder py-myst-parser r-multcompview -cudss pax-utils py-namex r-multicool -cufflinks pbbam py-nanobind r-multitaper -cufftmp pblat py-nanoget r-multtest -cunit pbmpi py-nanomath r-munsell -cups pbwt py-nanoplot r-mutoss -curl pbzip2 py-nanostat r-mvtnorm -cusolvermp pciutils py-nanotime r-mzid -cusparselt pcl py-nanotron r-mzr -cusz pcma py-napari r-nada -cutensor pcre py-napari-console r-nanotime -cutlass pcre2 py-napari-plugin-engine r-ncbit -cvector pcsclite py-napari-plugin-manager r-ncdf4 -cvise pdal py-napari-svg r-network -cvs pdc py-nara-wpe r-networkd3 -cxi-driver pdf2svg py-narwhals r-neuralnet -cxxopts pdftk py-natsort r-nfactors -cxxtest pdi py-nbclassic r-nimble -cyrus-sasl pdiplugin-decl-hdf5 py-nbclient r-nleqslv -czmq pdiplugin-decl-netcdf py-nbconvert r-nlme -daemonize pdiplugin-mpi py-nbdime r-nloptr -dakota pdiplugin-pycall py-nbformat r-nmf -daligner pdiplugin-serialize py-nbmake r-nmof -dalton pdiplugin-set-value py-nbqa r-nnet -damageproto pdiplugin-trace py-nbsphinx r-nnls -damaris pdiplugin-user-code py-nbstripout r-nonnest2 -damask pdsh py-nbval r-nor1mix -damask-grid pdt py-nc-time-axis r-nortest -damask-mesh pegtl py-ncbi-genome-download r-np -damselfly pelican py-ndg-httpsclient r-npsurv -daos pennant py-ndindex r-numderiv -darshan-runtime percept py-neo r-oligoclasses -darshan-util percolator py-neo4j r-openssl -dash percona-server py-neobolt r-openxlsx -datamash perfstubs py-neotime r-optimparallel -dataspaces perl py-neovim-remote r-optimx -datatransferkit perl-acme-damn py-neptune-client r-optparse -date perl-algorithm-c3 py-nest-asyncio r-ordinal -dateutils perl-algorithm-diff py-nestle r-org-hs-eg-db -dav-sdk perl-alien-build py-netaddr r-organismdbi -davix perl-alien-build-plugin-download-gitlab py-netcdf4 r-osqp -dbcsr perl-alien-libxml2 py-netifaces r-packrat -dbow2 perl-any-uri-escape py-netket r-pacman -dbus perl-apache-logformat-compiler py-netpyne r-paleotree -dbus-glib perl-app-cmd py-networkit r-pamr -dbxtool perl-appconfig py-networkx r-pan -dcap perl-archive-zip py-neuralgcm r-parallelly -dcm2niix perl-array-utils py-neurokit2 r-parallelmap -dcmtk perl-b-cow py-neurolab r-paramhelpers -dctz perl-b-hooks-endofscope py-neurom r-party -dd4hep perl-b-keywords py-neurora r-partykit -ddc perl-bignum py-neurotools r-patchwork -ddd perl-bio-asn1-entrezgene py-nexus-sdk r-pathview -dealii perl-bio-bigfile py-nexusforge r-pbapply -dealii-parameter-gui perl-bio-cluster py-nglview r-pbdzmq -debbuild perl-bio-db-hts py-ngs-tools r-pbivnorm -debugedit perl-bio-ensembl py-nh3 r-pbkrtest -decentralized-internet perl-bio-ensembl-funcgen py-nibabel r-pcamethods -deconseq-standalone perl-bio-ensembl-io py-nilearn r-pcapp -deconwolf perl-bio-ensembl-variation py-nipype r-pegas -dedisp perl-bio-eutilities py-nitransforms r-pepxmltab -deepmdkit perl-bio-searchio-hmmer py-niworkflows r-permute -dejagnu perl-bio-variation py-nltk r-pfam-db -delly2 perl-bioperl py-node-semver r-phangorn -delphes perl-bit-vector py-nodeenv r-phantompeakqualtools -delta perl-bsd-resource py-non-regression-test-tools r-pheatmap -demuxlet perl-cache-cache py-nose r-philentropy -deno perl-cache-memcached py-nose-cov r-phylobase -denovogear perl-cairo py-nose2 r-phyloseq -detray perl-canary-stability py-nosexcover r-phylostratr -dfelibs perl-capture-tiny py-notebook r-phytools -dftbplus perl-carp py-notebook-shim r-picante -dftd3-lib perl-carp-assert py-npe2 r-piggyback -dftd4 perl-carp-clan py-nptyping r-pillar -dftfe perl-catalyst-action-renderview py-npx r-pinfsc50 -dhpmm-f perl-catalyst-action-rest py-ntlm-auth r-pixmap -dhtest perl-catalyst-component-instancepercontext py-ntplib r-pkgbuild -dia perl-catalyst-devel py-nugraph r-pkgcache -dia-umpire-se perl-catalyst-plugin-cache py-nuitka r-pkgconfig -dialign perl-catalyst-plugin-configloader py-num2words r-pkgdepends -dialign-tx perl-catalyst-plugin-static-simple py-numba r-pkgdown -diamond perl-catalyst-runtime py-numba4jax r-pkgload -dicom3tools perl-catalyst-view-json py-numbagg r-pkgmaker -diffmark perl-cgi py-numcodecs r-pki -diffsplice perl-cgi-simple py-numdifftools r-pl94171 -difftastic perl-cgi-struct py-numexpr r-plogr -diffutils perl-chart-gnuplot py-numexpr3 r-plot3d -digitrounding perl-chi py-numkit r-plotly -dihydrogen perl-chi-driver-memcached py-numl r-plotmo -dimemas perl-class-accessor py-numpy r-plotrix -dineof perl-class-accessor-grouped py-numpy-groupies r-pls -ding-libs perl-class-accessor-lvalue py-numpy-indexed r-plyr -dire perl-class-c3 py-numpy-quaternion r-pmcmr -direnv perl-class-c3-adopt-next py-numpy-stl r-pmcmrplus -discotec perl-class-c3-componentised py-numpydoc r-png -discovar perl-class-data-inheritable py-nvidia-dali r-polspline -discovardenovo perl-class-inspector py-nvidia-ml-py r-polyclip -disktype perl-class-load py-nvidia-ml-py3 r-polynom -dislin perl-class-load-xs py-nvidia-modulus r-pool -distbench perl-class-method-modifiers py-nvidia-nvcomp r-poorman -distcc perl-class-singleton py-nvidia-nvimagecodec r-popgenome -diy perl-class-tiny py-nvidia-nvjpeg2k r-popvar -dla-future perl-clone py-nvidia-nvtiff r-posterior -dla-future-fortran perl-clone-choose py-nvidia-physicsnemo r-powerlaw -dlb perl-clone-pp py-nvitop r-prabclus -dlib perl-common-sense py-nvtx r-pracma -dlpack perl-compress-bzip2 py-oauth2client r-praise -dmd perl-compress-lzo py-oauthlib r-preprocesscore -dmidecode perl-compress-raw-bzip2 py-obspy r-prettydoc -dmlc-core perl-compress-raw-zlib py-ocnn r-prettyunits -dmtcp perl-config-any py-odc-geo r-proc -dmxproto perl-config-general py-odfpy r-processx -dnsmap perl-config-inifiles py-ogb r-prodlim -dnsmasq perl-config-simple py-okada-wrapper r-profmem -dnstop perl-config-tiny py-olcf-velocity r-profvis -dnstracer perl-context-preserve py-olefile r-progress -docbook-xml perl-contextual-return py-olmoearth-pretrain-minimal r-progressr -docbook-xsl perl-convert-nls-date-format py-omegaconf r-proj -dock perl-cookie-baker py-onnx r-proj4 -doctest perl-cpan-meta-check py-onnx-opcounter r-projpred -dolfinx-mpc perl-cpanel-json-xs py-onnxconverter-common r-promises -dorado perl-css-minifier-xs py-onnxmltools r-protgenerics -dorian3d-dlib perl-data-dump py-onnxruntime r-proto -dos2unix perl-data-dumper py-ont-fast5-api r-proxy -dosfstools perl-data-dumper-concise py-opcodes r-pryr -dotconf perl-data-optlist py-open-clip-torch r-ps -dotnet-core-sdk perl-data-predicate py-openai r-pscbs -double-batched-fft-library perl-data-stag py-openai-whisper r-pspline -double-conversion perl-data-uuid py-openapi-schema-pydantic r-psych -doxygen perl-data-visitor py-opencensus r-ptw -dpdk perl-date-exception py-opencensus-context r-purrr -dplasma perl-date-manip py-opencv-python r-pvclust -dpmjet perl-date-utils py-opendatalab r-qqconf -draco perl-datetime py-openidc-client r-qs -dracut perl-datetime-format-builder py-openmc r-qtl -dramsim2 perl-datetime-format-iso8601 py-openmesh r-quadprog -dramsim3 perl-datetime-format-mysql py-openmim r-quantmod -dri2proto perl-datetime-format-oracle py-openpmd-validator r-quantreg -dri3proto perl-datetime-format-pg py-openpmd-viewer r-quantro -drill perl-datetime-format-strptime py-openpyxl r-questionr -drishti perl-datetime-locale py-openslide-python r-quickjsr -dropwatch perl-datetime-timezone py-opentelemetry-api r-quickplot -druid perl-db-file py-opentelemetry-exporter-prometheus r-qvalue -ds perl-dbd-mysql py-opentelemetry-instrumentation r-r-cache -dsdp perl-dbd-oracle py-opentelemetry-sdk r-r-methodss3 -dsfmt perl-dbd-pg py-opentelemetry-semantic-conventions r-r-oo -dsqss perl-dbd-sqlite py-opentree r-r-utils -dsrc perl-dbi py-opentuner r-r6 -dssp perl-dbix-class py-opppy r-radialmr -dtc perl-devel-checklib py-ops r-ragg -dtcmp perl-devel-cover py-opt-einsum r-rainbow -dtf perl-devel-cycle py-optax r-randomfields -duckdb perl-devel-globaldestruction py-optree r-randomfieldsutils -duperemove perl-devel-overloadinfo py-optuna r-randomforest -dust perl-devel-size py-or-tools r-randomglm -dwz perl-devel-stacktrace py-oracledb r-ranger -dxt-explorer perl-devel-stacktrace-ashtml py-orbax-checkpoint r-rann -dyninst perl-devel-symdump py-ordered-set r-rapidjsonr -dysco perl-digest-jhash py-orderly-set r-rapiserialize -e2fsprogs perl-digest-md5 py-orjson r-rappdirs -e3sm-kernels perl-digest-md5-file py-os-service-types r-raster -e3sm-scorpio perl-digest-sha1 py-oset r-rbgl -e4s-alc perl-dist-checkconflicts py-oslo-config r-rbibutils -e4s-cl perl-email-abstract py-oslo-i18n r-rbokeh -ea-utils perl-email-address-xs py-oslo-serialization r-rcmdcheck -eagle perl-email-date-format py-oslo-utils r-rcolorbrewer -earlyoom perl-email-messageid py-osqp r-rcpp -easi perl-email-mime py-outdated r-rcppannoy -easybuild perl-email-mime-contenttype py-overpy r-rcpparmadillo -easyloggingpp perl-email-mime-encodings py-overrides r-rcppblaze -ebms perl-email-sender py-owlrl r-rcppcctz -ecbuild perl-email-simple py-owslib r-rcppcnpy -eccodes perl-email-stuffer py-oyaml r-rcppdate -eccodes-cosmo-resources perl-encode-locale py-p2j r-rcppde -ecdsautils perl-error py-pacifica-downloader r-rcppeigen -ecflow perl-eval-closure py-pacifica-namespace r-rcppensmallen -eckit perl-exception-class py-pacifica-uploader r-rcppgsl -eclipse-gcj-parser perl-exporter-auto py-packaging r-rcpphnsw -ecmwf-atlas perl-exporter-lite py-pager r-rcppml -ecos perl-exporter-tiny py-paho-mqtt r-rcppparallel -ecoslim perl-extutils-config py-palettable r-rcppprogress -ecp-data-vis-sdk perl-extutils-depends py-pamela r-rcpproll -ecp-proxy-apps perl-extutils-helpers py-panaroo r-rcpptoml -ectrans perl-extutils-installpaths py-pandas r-rcppziggurat -ed perl-extutils-makemaker py-pandas-datareader r-rcurl -editline perl-extutils-pkgconfig py-pandas-stubs r-rda -editorconfig perl-ffi-checklib py-pandera r-rdpack -editres perl-file-changenotify py-pandocfilters r-readbitmap -edm4hep perl-file-chdir py-panedr r-readr -eem perl-file-copy-recursive py-panel r-readxl -efivar perl-file-find-rule py-papermill r-reams -egl perl-file-grep py-paralleltask r-recipes -eigen perl-file-homedir py-param r-reformulas -eigenexa perl-file-listing py-parameterized r-registry -elasticsearch perl-file-pushd py-paramiko r-rematch -elastix perl-file-remove py-paramz r-rematch2 -elbencho perl-file-sharedir py-parasail r-remotes -elfio perl-file-sharedir-install py-parmed r-renv -elfutils perl-file-slurp py-parse r-reordercluster -elk perl-file-slurp-tiny py-parse-type r-reportingtools -elmerfem perl-file-slurper py-parsedatetime r-repr -elpa perl-file-spec py-parsimonious r-reprex -elsd perl-file-temp py-parsl r-reproducible -elsdc perl-file-which py-parsley r-require -elsi perl-filesys-notify-simple py-parso r-reshape -emacs perl-font-ttf py-partd r-reshape2 -ember perl-forks py-particle r-restfulr -emblmygff3 perl-fth py-paste r-reticulate -emboss perl-gd py-pastedeploy r-rex -embree perl-gdgraph py-pastel r-rfast -enca perl-gdgraph-histogram py-pastml r-rferns -enchant perl-gdtextutil py-patch r-rgdal -energyplus perl-getopt-argvfile py-patch-ng r-rgenoud -ensmallen perl-getopt-long-descriptive py-path-py r-rgeos -entrezdirect perl-getopt-tabular py-pathlib-abc r-rgexf -entt perl-graph py-pathlib2 r-rgl -environment-modules perl-graph-readwrite py-pathml r-rgooglemaps -enzo perl-graphviz py-pathos r-rgraphviz -enzyme perl-gzip-faster py-pathsimanalysis r-rhdf5 -eospac perl-hash-merge py-pathspec r-rhdf5filters -epic perl-hash-moreutils py-pathtools r-rhdf5lib -epics-base perl-hash-multivalue py-pathvalidate r-rhmmer -epics-ca-gateway perl-heap py-pathy r-rhtslib -epics-pcas perl-hook-lexwrap py-patool r-rinside -epics-snmp perl-html-parser py-patsy r-rio -eprosima-fastcdr perl-html-tagset py-pauvre r-rjags -eprosima-fastdds perl-html-template py-pbr r-rjava -epsic perl-http-body py-pdb-tools r-rjson -eq-r perl-http-cookiejar py-pdbfixer r-rjsonio -er perl-http-cookies py-pdequinox r-rlang -erf perl-http-daemon py-pdf2image r-rlas -erfa perl-http-date py-pdm-backend r-rle -erlang perl-http-entity-parser py-pdm-pep517 r-rlist -ermod perl-http-headers-fast py-pdoc3 r-rmariadb -erne perl-http-message py-peachpy r-rmarkdown -es-shell perl-http-multipartparser py-peakutils r-rminer -esmf perl-http-negotiate py-pebble r-rmpfr -espanso perl-http-parser-xs py-peft r-rmpi -essl perl-http-request-ascgi py-pelicanfs r-rms -estarlight perl-http-server-simple py-pem r-rmutil -esys-particle perl-http-tiny py-pendulum r-rmysql -etcd perl-import-into py-pennylane r-rnaseqmap -ethminer perl-inline py-pennylane-lightning r-rncl -ethtool perl-inline-c py-pennylane-lightning-kokkos r-rnexml -etsf-io perl-io-all py-pep517 r-rngtools -eve perl-io-compress py-pep8 r-rnoaa -evemu perl-io-html py-pep8-naming r-robust -everytrace perl-io-prompt py-perfdump r-robustbase -everytrace-example perl-io-sessiondata py-performance r-roc -evieext perl-io-socket-ssl py-periodictable r-rocr -evtgen perl-io-string py-petastorm r-rodbc -exabayes perl-io-stringy py-petname r-rook -exaca perl-io-tty py-petsc4py r-rots -exactextract perl-ipc-run py-pexpect r-roxygen2 -exago perl-ipc-run3 py-pfzy r-rpart -examl perl-ipc-sharelite py-pgzip r-rpart-plot -exampm perl-ipc-system-simple py-phanotate r-rpmm -exasp2 perl-javascript-minifier-xs py-phonenumbers r-rpostgres -exawind perl-json py-phonopy r-rpostgresql -exaworks perl-json-any py-photutils r-rprojroot -exchcxx perl-json-maybexs py-phydms r-rpsychi -exciting perl-json-xs py-phylophlan r-rrblup -exempi perl-kyotocabinet py-pickle5 r-rrcov -exiv2 perl-libwww-perl py-pickleshare r-rrpp -exmcutils perl-libxml-perl py-picmistandard r-rsamtools -exo perl-lingua-en-inflect py-picrust2 r-rsconnect -exodusii perl-list-compare py-pid r-rsnns -exonerate perl-list-moreutils py-pika r-rsolnp -exonerate-gff3 perl-list-moreutils-xs py-pillow r-rspectra -expat perl-list-someutils py-pillow-simd r-rsqlite -expect perl-log-any py-pint r-rstan -express perl-log-any-adapter-callback py-pint-xarray r-rstantools -exprtk perl-log-dispatch py-pip r-rstatix -extrae perl-log-dispatch-filerotate py-pipcl r-rstudioapi -exuberant-ctags perl-log-log4perl py-pipdeptree r-rsubread -eza perl-logger-simple py-piper r-rsvd -eztrace perl-lwp-mediatypes py-pipits r-rtracklayer -f2c perl-lwp-protocol-https py-pispino r-rtsne -f3d perl-mailtools py-pivy r-runit -f77-zmq perl-math-bezier py-pkgconfig r-runjags -f90cache perl-math-bigint py-pkginfo r-ruv -fabtests perl-math-bigrat py-pkgutil-resolve-name r-rvcheck -fabulous perl-math-cdf py-plac r-rversions -faircmakemodules perl-math-cephes py-plaid r-rvest -fairlogger perl-math-matrixreal py-planar r-rviennacl -fairmq perl-math-round py-planet r-rzmq -fairroot perl-math-symbolic py-planetary-computer r-s2 -fairsoft-bundle perl-math-vecstat py-platformdirs r-s4vectors -fairsoft-config perl-mce py-plotext r-s7 -faiss perl-memory-process py-plotille r-samr -fakechroot perl-metacpan-client py-plotly r-sandwich -faketime perl-mime-types py-plotnine r-sass -fakexrandr perl-mni-perllib py-pluggy r-satellite -falco perl-mock-config py-plum-dispatch r-scaledmatrix -falcon perl-module-build py-ply r-scales -fann perl-module-build-tiny py-pmtiles r-scater -faodel perl-module-corelist py-pmw r-scattermore -fargparse perl-module-find py-pmw-patched r-scatterpie -fasd perl-module-implementation py-pockets r-scatterplot3d -fast-float perl-module-install py-poetry r-scdblfinder -fast-global-file-status perl-module-mask py-poetry-core r-scran -fasta perl-module-pluggable py-poetry-dynamic-versioning r-scrime -fastani perl-module-runtime py-poetry-plugin-export r-scs -fastdb perl-module-runtime-conflicts py-poetry-plugin-tweak-dependencies-version r-sctransform -fastdfs perl-module-scandeps py-polars r-scuttle -fastjar perl-module-util py-pomegranate r-sdmtools -fastjet perl-mojolicious py-pooch r-segmented -fastjson perl-moo py-portalocker r-selectr -fastmath perl-moose py-portend r-seqinr -fastme perl-moosex-emulate-class-accessor-fast py-portpicker r-seqlogo -fastor perl-moosex-getopt py-postcactus r-servr -fastp perl-moosex-methodattributes py-poster r-sessioninfo -fastphase perl-moosex-role-parameterized py-pot r-sets -fastplong perl-moox-types-mooselike py-pox r-seurat -fastq-scan perl-moox-types-mooselike-numeric py-poxy r-seuratobject -fastq-screen perl-mozilla-ca py-poyo r-sf -fastqc perl-mro-compat py-ppft r-sfheaders -fastqvalidator perl-namespace-autoclean py-pprintpp r-sfsmisc -fasttext perl-namespace-clean py-pre-commit r-sftime -fasttransforms perl-net-cidr-lite py-preshed r-shadowtext -fasttree perl-net-http py-pretrainedmodels r-shape -fastx-toolkit perl-net-ip py-pretty-errors r-shiny -faust perl-net-scp-expect py-prettytable r-shinydashboard -fbgemm perl-net-server py-priority r-shinyfiles -fca perl-net-server-ss-prefork py-profilehooks r-shinyfiletree -fcgi perl-net-ssleay py-proglog r-shinyjs -fckit perl-number-compare py-progress r-shinystan -fd perl-number-format py-progressbar2 r-shinythemes -fdb perl-object-insideout py-progressbar33 r-shinywidgets -fds perl-package-deprecationmanager py-projectq r-shortread -fdupes perl-package-stash py-prokaryote r-siggenes -feh perl-package-stash-xs py-prometheus-client r-signac -fenics perl-package-variant py-prometheus-flask-exporter r-simpleaffy -fenics-basix perl-padwalker py-promise r-singlecellexperiment -fenics-dolfinx perl-parallel-forkmanager py-prompt-toolkit r-sitmo -fenics-ufcx perl-params-util py-propcache r-sm -feq-parse perl-params-validate py-properscoring r-smoof -fermi perl-params-validationcompiler py-proto-plus r-sn -fermikit perl-parse-recdescent py-protobuf r-snakecase -fermisciencetools perl-parse-yapp py-protoc-gen-swagger r-snow -ferret perl-parselex py-prov r-snowfall -feynhiggs perl-parsetemplate py-proxystore r-snprelate -ffb perl-path-class py-prwlock r-snpstats -fflas-ffpack perl-path-tiny py-psalg r-som -ffmpeg perl-pathtools py-psana r-somaticsignatures -ffr perl-pdf-api2 py-psij-python r-sourcetools -ffsb perl-pegex py-psmon r-sp -ffte perl-perl-critic py-pspamm r-spacetime -fftw perl-perl-critic-moose py-psutil r-spades -fftx perl-perl-tidy py-psyclone r-spades-addins -fgsl perl-perl-unsafe-signals py-psycopg2 r-spades-core -fiat perl-perl-version py-psygnal r-spades-tools -fides perl-perl4-corelibs py-ptyprocess r-spam -figcone perl-perl6-slurp py-pubchempy r-sparsem -figlet perl-perlio-gzip py-pudb r-sparsematrixstats -figtree perl-perlio-utf8-strict py-pulp r-spatial -file perl-plack py-pulsar-galaxy-lib r-spatialeco -filebench perl-plack-middleware-assets py-pure-eval r-spatialpack -filo perl-plack-middleware-crossorigin py-pure-sasl r-spatialreg -filtlong perl-plack-middleware-deflater py-puremagic r-spatstat -fimpute perl-plack-middleware-fixmissingbodyinredirect py-py r-spatstat-core -finch perl-plack-middleware-methodoverride py-py-cpuinfo r-spatstat-data -findbugs perl-plack-middleware-removeredundantbody py-py-spy r-spatstat-explore -findutils perl-plack-middleware-reverseproxy py-py-tes r-spatstat-geom -fio perl-plack-test-externalserver py-py2bit r-spatstat-linnet -fipscheck perl-pod-coverage py-py2neo r-spatstat-model -fish perl-pod-parser py-py4j r-spatstat-random -fixesproto perl-pod-spell py-py6s r-spatstat-sparse -fj perl-posix-strftime-compiler py-pyabel r-spatstat-univar -fjcontrib perl-ppi py-pyaestro r-spatstat-utils -fl perl-ppix-quotelike py-pyahocorasick r-spdata -flac perl-ppix-regexp py-pyamg r-spdep -flamegraph perl-ppix-utils py-pyaml r-speedglm -flamemaster perl-proc-daemon py-pyaml-env r-spem -flann perl-proc-processtable py-pyani r-splancs -flap perl-readonly py-pyarrow r-splines2 -flash perl-readonly-xs py-pyasn1 r-splitstackshape -flashdimmsim perl-ref-util py-pyasn1-modules r-sqldf -flatbuffers perl-regexp-common py-pyassimp r-squarem -flatcc perl-role-tiny py-pyautogui r-squash -flcl perl-rose-datetime py-pybedtools r-sseq -flecsi perl-rose-db py-pybids r-stabledist -flecsph perl-rose-db-object py-pybigwig r-stanheaders -fleur perl-rose-object py-pybind11 r-stargazer -flex perl-safe-isa py-pybind11-stubgen r-stars -flexi perl-scalar-list-utils py-pybktree r-statmod -flexiblas perl-scalar-util-numeric py-pybobyqa r-statnet-common -flibcpp perl-scope-guard py-pybrain r-stringfish -flink perl-search-elasticsearch py-pybtex r-stringi -flint perl-sereal py-pybtex-docutils r-stringr -flit perl-sereal-decoder py-pybv r-strucchange -fltk perl-sereal-encoder py-pycairo r-strucchangercpp -fluidnumerics-self perl-server-starter py-pycares r-styler -flume perl-set-intervaltree py-pycbc r-subplex -flux perl-set-intspan py-pycgns r-summarizedexperiment -flux-core perl-set-object py-pychecker r-suppdists -flux-pmix perl-set-scalar py-pycifrw r-survey -flux-python perl-soap-lite py-pyclibrary r-survival -flux-sched perl-sort-naturally py-pycm r-sva -flux-security perl-specio py-pycmd r-svglite -fluxbox perl-spiffy py-pycocotools r-sys -fmi4cpp perl-sql-abstract py-pycodestyle r-systemfonts -fms perl-sql-abstract-classic py-pycollada r-tarifx -fmt perl-sql-reservedwords py-pycompadre r-taxizedb -foam-extend perl-sql-translator py-pyconify r-tclust -foldseek perl-star-fusion py-pycorenlp r-teachingdemos -folly perl-starman py-pycortex r-tensor -font-util perl-statistics-basic py-pycosat r-tensora -fontcacheproto perl-statistics-descriptive py-pycparser r-terra -fontconfig perl-statistics-pca py-pycrypto r-tester -fontsproto perl-stream-buffered py-pycryptodome r-testit -fonttosfnt perl-strictures py-pycryptodomex r-testthat -foonathan-memory perl-string-approx py-pyct r-textshaping -form perl-string-crc32 py-pycubexr r-tfbstools -formetis perl-string-format py-pycuda r-tfisher -fortrilinos perl-string-numeric py-pycurl r-tfmpvalue -fortuno perl-string-rewriteprefix py-pydantic r-th-data -fossil perl-sub-exporter py-pydantic-compat r-threejs -foundationdb perl-sub-exporter-progressive py-pydantic-core r-tibble -fox perl-sub-identify py-pydantic-extra-types r-tictoc -fp16 perl-sub-install py-pydantic-settings r-tidycensus -fpart perl-sub-name py-pydantic-tes r-tidygraph -fpc perl-sub-quote py-pydap r-tidyr -fpchecker perl-sub-uplevel py-pydata-sphinx-theme r-tidyselect -fping perl-svg py-pydatalog r-tidytree -fplll perl-swissknife py-pydeface r-tidyverse -fplo perl-sys-sigaction py-pydeprecate r-tiff -fpm perl-task-weaken py-pydeps r-tigris -fpocket perl-template-toolkit py-pydevtool r-timechange -fpzip perl-term-ansicolor-markup py-pydftracer r-timedate -fq perl-term-readline-gnu py-pydicom r-tinytex -fqtrim perl-term-table py-pydispatcher r-tinytiger -fr-hit perl-termreadkey py-pydmd r-tmixclust -fraggenescan perl-test-base py-pydocstyle r-tmvnsim -freebayes perl-test-class py-pydoe r-topgo -freecad perl-test-cleannamespaces py-pydoe2 r-treeio -freefem perl-test-deep py-pydot r-triebeard -freeglut perl-test-diaginc py-pydot2 r-trimcluster -freeimage perl-test-differences py-pydotplus r-truncdist -freeipmi perl-test-exception py-pydub r-truncnorm -freesasa perl-test-fatal py-pyeda r-trust -freesurfer perl-test-file py-pyedr r-tseries -freetype perl-test-file-contents py-pyee r-tsne -freexl perl-test-file-sharedir py-pyelftools r-ttr -fribidi perl-test-json py-pyem r-tweenr -frobby perl-test-leaktrace py-pyenchant r-twosamplemr -frontier-client perl-test-longstring py-pyepsg r-txdb-hsapiens-ucsc-hg18-knowngene -frontistr perl-test-memory-cycle py-pyerfa r-txdb-hsapiens-ucsc-hg19-knowngene -frugally-deep perl-test-mockobject py-pyeventsystem r-tximeta -fseq perl-test-mocktime py-pyface r-tximport -fsl perl-test-more py-pyfaidx r-tximportdata -fslsfonts perl-test-most py-pyfasta r-tzdb -fstobdf perl-test-needs py-pyfastaq r-ucminf -fstrack perl-test-nowarnings py-pyfftw r-udunits2 -ftgl perl-test-object py-pyfiglet r-units -ftjam perl-test-output py-pyfits r-upsetr -ftk perl-test-perl-critic py-pyfive r-urca -ftobjectlibrary perl-test-pod py-pyflakes r-urlchecker -ftxui perl-test-pod-coverage py-pyfr r-urltools -fujitsu-fftw perl-test-requires py-pygame r-usethis -fujitsu-frontistr perl-test-requiresinternet py-pygdal r-utf8 -fujitsu-mpi perl-test-sharedfork py-pygdbmi r-uuid -fujitsu-ssl2 perl-test-subcalls py-pygelf r-uwot -fullock perl-test-tcp py-pygeos r-v8 -func perl-test-time py-pygetwindow r-variantannotation -functionalplus perl-test-time-hires py-pygit2 r-varselrf -funhpc perl-test-trap py-pygithub r-vcd -funwave perl-test-warn py-pyglet r-vcfr -fuse-overlayfs perl-test-warnings py-pygments r-vctrs -fusion-io perl-test-weaken py-pygments-pytest r-vegan -fvtkhdf perl-test-without-module py-pygmsh r-vfs -fwq perl-test-xml py-pygmt r-vgam -fxdiv perl-test-xml-simple py-pygobject r-vioplot -fxt perl-test-xpath py-pygps r-vipor -fyba perl-test-yaml py-pygpu r-viridis -fzf perl-test2-plugin-nowarnings py-pygraphviz r-viridislite -g2 perl-test2-suite py-pygresql r-visnetwork -g2c perl-text-csv py-pygrib r-vroom -g2o perl-text-csv-xs py-pygtrie r-vsn -g2tmpl perl-text-diff py-pyh5md r-waldo -g4abla perl-text-format py-pyhdf r-watermelon -g4adept perl-text-glob py-pyheadtail r-webshot -g4channeling perl-text-nsp py-pyhmmer r-wgcna -g4emlow perl-text-simpletable py-pyhull r-whisker -g4ensdfstate perl-text-soundex py-pyicu r-withr -g4hepem perl-text-unidecode py-pyinstrument r-wk -g4incl perl-thread-queue py-pyinstrument-cext r-writexl -g4ndl perl-threads py-pyisemail r-wru -g4neutronxs perl-throwable py-pyjnius r-xde -g4nudexlib perl-tie-ixhash py-pyjwt r-xfun -g4particlexs perl-tie-toobject py-pyke r-xgboost -g4photonevaporation perl-time-clock py-pykerberos r-xlconnect -g4pii perl-time-duration py-pykml r-xlconnectjars -g4radioactivedecay perl-time-duration-parse py-pykokkos-base r-xlsx -g4realsurface perl-time-hires py-pykwalify r-xlsxjars -g4saiddata perl-time-piece py-pylab-sdk r-xmapbridge -g4tendl perl-timedate py-pylatex r-xml -g4urrpt perl-tk py-pyld r-xml2 -g4vg perl-tree-simple py-pylev r-xnomial -gadap perl-tree-simple-visitorfactory py-pylibjpeg-libjpeg r-xopen -gamess-ri-mp2-miniapp perl-try-tiny py-pylibjpeg-openjpeg r-xtable -gams perl-type-tiny py-pylibjpeg-rle r-xts -gapbs perl-types-serialiser py-pylibmagic r-xvector -gapcloser perl-universal-can py-pylikwid r-yaimpute -gapfiller perl-universal-isa py-pylint r-yaml -garcon perl-uri py-pylint-gitlab r-yapsa -garfieldpp perl-uri-encode py-pylith r-yaqcaffy -gasnet perl-uri-find py-pylops r-yarn -gatb-core perl-uri-ws py-pymatgen r-yulab-utils -gate perl-want py-pymatreader r-zcompositions -gatepet2stir perl-www-form-urlencoded py-pymbolic r-zeallot -gatetools perl-www-robotrules py-pymc3 r-zip -gatk perl-xml-dom py-pymdown-extensions r-zlibbioc -gau2grid perl-xml-dom-xpath py-pymeeus r-zoo -gaudi perl-xml-filter-buffertext py-pyminifier r3d -gaussian perl-xml-hash-xs py-pymol rabbitmq -gaussian-view perl-xml-libxml py-pymongo rabbitmq-c -gauxc perl-xml-libxslt py-pymoo racket -gawk perl-xml-namespacesupport py-pymorph racon -gbl perl-xml-parser py-pympler raft -gblocks perl-xml-parser-lite py-pymsgbox ragel -gcc perl-xml-quote py-pymummer raja -gcc-runtime perl-xml-regexp py-pymumps raja-perf -gccmakedep perl-xml-sax py-pymupdf ramulator -gccxml perl-xml-sax-base py-pymupdf-fonts randfold -gchp perl-xml-sax-writer py-pymysql random123 -gcta perl-xml-semanticdiff py-pynacl randrproto -gdal perl-xml-simple py-pynio range-v3 -gdb perl-xml-twig py-pynisher rank-run -gdbm perl-xml-writer py-pynn rankstr -gdk-pixbuf perl-xml-xpath py-pynndescent rapidjson -gdl perl-xml-xpathengine py-pynpm raptor2 -gdrcopy perl-yaml py-pynrrd rarpd -geant3 perl-yaml-libyaml py-pynucleus rasdaemon -geant4 perl-yaml-syck py-pynumpress rasqal -geant4-data perl-yaml-tiny py-pynvim ratel -geant4-vmc pestpp py-pynvml ravel -geany petaca py-pynvtx raxml -gearshifft petsc py-pyodbc raxml-ng -gegelati pexsi py-pyogrio ray -gegl pfapack py-pyomo rayleigh -gem5 pfft py-pyopencl raylib -gemma pfind py-pyopengl rccl -gemmlowp pflare py-pyopenssl rccl-tests -genemark-et pflask py-pypar rclone -generalbrokenlines pflogger py-pyparsing rdc -generate-ninja pflotran py-pypdf rdkit -generax pfunit py-pypdf2 rdma-core -genesis pgdspider py-pypeflow rdp-classifier -genfit pgplot py-pypeg2 rdptools -gengeo ph5concat py-pyperclip re2 -gengetopt phantompeakqualtools py-pyperf re2c -genie pharokka py-pypinfo readfq -genomefinisher phast py-pypinyin readline -genometools phasta py-pypistats realm -genomeworks phist py-pypng recola -genrich phoenix py-pyppeteer recola-sm -geode photos py-pyprecice recon -geoip-api-c photos-f py-pyprof2html recorder -geomodel photospline py-pyproj recordproto -geos php py-pyproject-hooks redis -getorganelle phrap-crossmatch-swat py-pyproject-metadata redis-ai -gettext phred py-pyproject-parser redis-plus-plus -gexiv2 phylip py-pypulse reditools -gfal2 phylobayesmpi py-pyqi redland -gfal2-util phyluce py-pyqt-builder redland-bindings -gfan picard py-pyqt4 redset -gffcompare picsar py-pyqt5 redundans -gffread picsarlite py-pyqt5-sip reframe -gflags pidx py-pyqt6 regale -gfsio pig py-pyqt6-sip regcm -gftl pigz py-pyqtgraph regenie -gftl-shared pika py-pyquaternion regtools -ggml pika-algorithms py-pyreadline relax -gh pilercr py-pyrect relion -ghex pilon py-pyrevolve remhos -ghost pindel py-pyrfr rempi -ghostscript pinentry py-pyro-api rename -ghostscript-fonts pinfo py-pyro-ppl rendercheck -giblib pioman py-pyro4 renderproto -giflib pipework py-pyroaring repeatafterme -gimp pipx py-pyrocko repeatmasker -ginac piranha py-pyrodigal repeatmodeler -ginkgo pism py-pyrodigal-gv repeatscout -giraph pixman py-pyrometheus reprimand -git pixz py-pyrr resolve -git-annex pkg-config py-pyrsistent resourceproto -git-fat-git pkgconf py-pysam restic -git-filter-repo pktools py-pyscaf revbayes -git-imerge planck-likelihood py-pyscf revocap-coupler -git-lfs plantuml py-pyscipopt revocap-refiner -gitconddb plasma py-pyscreeze rgb -givaro plink py-pyseer rhash -gl2ps plink-ng py-pyserial rinetd -glab plink2 py-pysftp ripgrep -glew plog py-pyshacl riscv-gnu-toolchain -glfmultiples ploticus py-pyshp rivet -glfw plplot py-pyside2 rkcommon -glib plsm py-pysimdjson rkt-base -glib-bootstrap plumed py-pysindy rkt-cext-lib -glib-networking ply py-pysmartdl rkt-compiler-lib -glibc pmdk py-pysmiles rkt-dynext-lib -glibmm pmemkv py-pysocks rkt-racket-lib -glimmer pmerge py-pysolar rkt-rackunit-lib -glm pmgr-collective py-pyspark rkt-scheme-lib -global pmix py-pyspellchecker rkt-testing-util-lib -globalarrays pmlib py-pyspice rkt-zo-lib -globus-callout pnfft py-pyspnego rlwrap -globus-common pngquant py-pyspoa rmats -globus-ftp-client pngwriter py-pyspod rmgdft -globus-ftp-control pnmpi py-pysqlite3 rmlab -globus-gass-copy poamsa py-pystac rna-seqc -globus-gass-transfer pocl py-pystac-client rnaquast -globus-gsi-callback podio py-pystache rnaz -globus-gsi-cert-utils podman py-pystan rng-tools -globus-gsi-credential podman-compose py-pysurfer rngstreams -globus-gsi-openssl-error poke py-pytablewriter rnpletal -globus-gsi-proxy-core polymake py-pytailf roary -globus-gsi-proxy-ssl polyml py-pytaridx rocal -globus-gsi-sysconfig polypolish py-pytecplot rocalution -globus-gss-assist poorjit py-pytesseract rocblas -globus-gssapi-error poplddecay py-pytest rocdecode -globus-gssapi-gsi poppler py-pytest-aiohttp rocfft -globus-io poppler-data py-pytest-allclose rocjpeg -globus-openssl-module popt py-pytest-arraydiff rocketmq -globus-xio porta py-pytest-astropy rocksdb -globus-xio-gsi-driver portage py-pytest-astropy-header rockstar -globus-xio-pipe-driver portcullis py-pytest-asyncio rocm-bandwidth-test -globus-xio-popen-driver ports-of-call py-pytest-benchmark rocm-clang-ocl -glog possvm py-pytest-cache rocm-cmake -gloo postgis py-pytest-check-links rocm-core -glow postgresql py-pytest-cmake rocm-dbgapi -glpk povray py-pytest-cov rocm-debug-agent -glproto powerapi py-pytest-cpp rocm-device-libs -gluegen powertop py-pytest-datadir rocm-examples -glusterfs ppl py-pytest-doctestplus rocm-gdb -glvis pplacer py-pytest-fail-slow rocm-opencl -glx ppopen-appl-amr-fdm py-pytest-filter-subpackage rocm-openmp-extras -gmake ppopen-appl-bem py-pytest-flake8 rocm-smi-lib -gmap-gsnap ppopen-appl-bem-at py-pytest-flakes rocm-tensile -gmic ppopen-appl-dem-util py-pytest-forked rocm-validation-suite -gmime ppopen-appl-fdm py-pytest-html rocminfo -gmodel ppopen-appl-fdm-at py-pytest-httpbin rocmlir -gmp ppopen-appl-fem py-pytest-isort rocprim -gmsh ppopen-appl-fvm py-pytest-lazy-fixture rocprofiler-compute -gmt ppopen-at py-pytest-memray rocprofiler-compute-viewer -gmtsar ppopen-math-mp py-pytest-metadata rocprofiler-dev -gnat ppopen-math-vis py-pytest-mock rocprofiler-register -gnds pprof py-pytest-mpi rocprofiler-sdk -gnina prank py-pytest-mypy rocprofiler-systems -gnome-common precice py-pytest-openfiles rocpydecode -gnuconfig predixy py-pytest-parallel rocrand -gnupg premake-core py-pytest-pep8 rocshmem -gnuplot presentproto py-pytest-pylint rocsolver -gnuradio preseq py-pytest-qt rocsparse -gnutls pressio-log py-pytest-random-order rocthrust -go pressio-ops py-pytest-regtest roctracer-dev -go-bootstrap pressio-rom py-pytest-remotedata roctracer-dev-api -go-md2man presto py-pytest-reportlog rocwmma -go-sh prettier py-pytest-retry rodinia -goaccess price py-pytest-runner roms -gobject-introspection prime95 py-pytest-socket root -goblin-hmc-sim primer3 py-pytest-subprocess roounfold -gocryptfs prinseq-lite py-pytest-timeout rosco -goimports printproto py-pytest-workflow rose -goma prism py-pytest-xdist ross -gomplate prmon py-python-benedict routinator -google-cloud-cli prng py-python-bioformats routino -google-cloud-cpp probconsrna py-python-box rpcsvc-proto -google-crc32c procenv py-python-calamine rpm -googletest process-in-process py-python-certifi-win32 rpp -gopls procps py-python-constraint rr -gosam-contrib procps-ng py-python-crfsuite rrdtool -goshimmer prod-util py-python-daemon rsbench -gotcha prodigal py-python-dateutil rsem -gource professor py-python-deprecated rsl -gpcnet profugusmc py-python-discovery rstart -gperf proj py-python-docs-theme rstudio -gperftools prokka py-python-docx rsync -gpgme prometheus py-python-dotenv rsyslog -gpi-2 prometheus-cpp py-python-editor rt-tests -gpi-space prophecy4f py-python-engineio rtags -gplates proteowizard py-python-fmask rtax -gprofng-gui protobuf py-python-fsutil rtmpdump -gprolog protobuf-c py-python-gitlab ruby -gptl proxymngr py-python-hostlist ruby-asciidoctor -gptune prrte py-python-igraph ruby-charlock-holmes -gpu-burn pruners-ninja py-python-javabridge ruby-erubis -gpuscout ps-lite py-python-jenkins ruby-gist -gqrx psalg py-python-jose ruby-gnuplot -gr-osmosdr psblas py-python-json-logger ruby-hpricot -grabix pscmc py-python-keystoneclient ruby-mustache -grace psi4 py-python-ldap ruby-narray -grackle psimd py-python-levenshtein ruby-rake -gradle psipred py-python-libsbml ruby-rdiscount -grads pslib py-python-logstash ruby-ronn -grafana psm py-python-louvain ruby-rubyinline -graph500 psmc py-python-lsp-jsonrpc ruby-svn2git -graphblast psrcat py-python-lsp-ruff ruby-terminal-table -graphicsmagick psrchive py-python-lsp-server ruby-thor -graphite2 psrdada py-python-lzo ruby-tmuxinator -graphlib pstreams py-python-magic ruby-unicode-display-width -graphmap pthreadpool py-python-mapnik ruby-xdg -graphviz pueue py-python-markdown-math ruby-zentest -grass pugixml py-python-memcached runc -graylog2-server puk py-python-multipart rust -green-mbpt pukabi py-python-mumps rust-bindgen -green-seet pulseaudio py-python-oauth2 rust-bootstrap -greenx pumgen py-python-picard rust-clap -grep pumi py-python-pptx s4pred -grib-util purify py-python-ptrace s5cmd -gribjump pv py-python-rapidjson sabre -grid pvm py-python-slugify saga-gis -gridlab-d pwgen py-python-socketio sage -gridtools pxz py-python-sotools sailfish -grnboost py-3to2 py-python-subunit salmon -groff py-4suite-xml py-python-swiftclient salmon-tddft -gromacs py-a2wsgi py-python-utils salome-configuration -gromacs-chain-coordinate py-abcpy py-python-xlib salome-medcoupling -gromacs-swaxs py-abipy py-python-xmp-toolkit saltfm -grpc py-about-time py-python3-openid sam2p -gsettings-desktop-schemas py-absl-py py-python3-xlib sambamba -gsi-ncdiag py-accelerate py-pythonqwt samblaster -gsibec py-accessible-pygments py-pythonsollya samrai -gsl py-accimage py-pythran samtools -gsl-lite py-acme-tiny py-pytimeparse samurai -gslib py-acres py-pytng sandbox -gsoap py-adal py-pytokens sandia-micro-benchmarks -gspell py-adb-enhanced py-pytoml sartre -gtfsort py-addict py-pytools sarus -gtk-doc py-adios py-pytorch-gradual-warmup-lr satsuma2 -gtkmm py-adios4dolfinx py-pytorch-lightning savanna -gtkorvo-atl py-advancedhtmlparser py-pytorch-sphinx-theme saws -gtkorvo-cercs-env py-aenum py-pytorch-warmup sbcl -gtkorvo-dill py-affine py-pyts sbcl-bootstrap -gtkorvo-enet py-agate py-pytuq sblim-sfcc -gtkplus py-agate-dbf py-pytweening sbml -gtksourceview py-agate-excel py-pytz sbp -gts py-agate-sql py-pyu2f sbt -guacamole-client py-ahpy py-pyudev scafacos -guacamole-server py-aiobotocore py-pyugrid scala -guidance py-aiocontextvars py-pyupgrade scalasca -guile py-aiodns py-pyusb scale -gunrock py-aiofiles py-pyutilib scallop -gurobi py-aiohappyeyeballs py-pyuwsgi scalpel -gvproxy py-aiohttp py-pyvcf scan-for-matches -gxsview py-aiohttp-cors py-pyvips scantailor -gzip py-aioitertools py-pyvista scc -h2database py-aiojobs py-pyvistaqt sccache -h5bench py-aioredis py-pyviz-comms scine-core -h5cpp py-aiosignal py-pyvolve scine-database -h5hut py-aiosqlite py-pywavelets scine-molassembler -h5part py-aiowebdav2 py-pywcs scine-qcmaquis -h5utils py-alabaster py-pywin32 scine-readuct -h5z-zfp py-albucore py-pywinpty scine-serenity -haccabana py-alembic py-pyworld scine-sparrow -hacckernels py-alive-progress py-pyxlsb scine-utilities -hackrf-host py-alpaca-eval py-pyyaml scine-xtb -hadoop py-alpaca-farm py-pyyaml-env-tag scipoptsuite -hadoop-xrootd py-alphafold py-pyzmq scitokens-cpp -hal py-altair py-qdldl scnlib -half py-altgraph py-qiskit-aer scons -halide py-amici py-qiskit-ibm-provider scorecard -hama py-amityping py-qiskit-nature scorep -hammer py-amplpy py-qiskit-terra scorpio -hapcut2 py-ampltools py-qmtest scotch -hapdip py-amqp py-qpsolvers scr -haploview py-amrex py-qpth screen -haproxy py-angel py-qrcode scripts -hard py-aniso8601 py-qsymm scrnsaverproto -hardlink py-anndata py-qtawesome scrot -harfbuzz py-annexremote py-qtconsole scs -harminv py-annotated-types py-qtpy sctk -hashcat py-annoy py-quantiphy sdl2 -haveged py-ansi2html py-quantities sdl2-image -hazelcast py-ansible py-quantum-blackbird sdl2-ttf -hbase py-ansimarkup py-quantum-xir sdsl-lite -hbm-dramsim2 py-ansiwrap py-quart seacas -hc py-antimeridian py-quast seacr -hcoll py-antipickle py-quaternionic seal -hdf py-antlr4-python3-runtime py-qudida sed -hdf-eos2 py-antspyx py-queryablelist sedacs -hdf-eos5 py-anuga py-querystring-parser seissol -hdf5 py-anvio py-questionary selalib -hdf5-blosc py-anybadge py-qutip semiprof -hdf5-vfd-gds py-anyio py-qutip-qip sendme -hdf5-vol-async py-anytree py-rachis sensei -hdf5-vol-cache py-anywidget py-radiant-mlhub sentencepiece -hdf5-vol-daos py-apache-libcloud py-radical-entk sentieon-genomics -hdf5-vol-external-passthrough py-apache-tvm-ffi py-radical-gtod sepp -hdf5-vol-log py-apebench py-radical-pilot seq-gen -hdfview py-apex py-radical-saga seqan -healpix-cxx py-apeye py-radical-utils seqfu -heaptrack py-apeye-core py-ranger-fm seqkit -heasoft py-apipkg py-rapidfuzz seqprep -heffte py-apispec py-rapidfuzz-capi seqtk -heimdall py-app-model py-rarfile serenity -helib py-appdirs py-rassumfrassum serenity-libint -helics py-applicationinsights py-rasterio serf -helm py-appnope py-rasterstats serialbox -help2man py-apprise py-ratelim sessreg -henson py-apptools py-ratelimiter setserial -hepmc py-apscheduler py-raven setxkbmap -hepmc3 py-arcgis py-ray sfcgal -hepmcanalysis py-arch py-rbtools sfcio -heppdt py-archspec py-rdflib sfml -heputils py-arcp py-rdflib-jsonld sga -hermes py-argcomplete py-rdt sgpp -hermes-shm py-argh py-reacton shadow -herwig3 py-argon2-cffi py-readchar shadowenv -herwigpp py-argon2-cffi-bindings py-readme-renderer shamrock -hevea py-argparse-dataclass py-recommonmark shapeit -heyoka py-argparse-manpage py-redis shapeit4 -hh-suite py-args py-referencing shapelib -hibench py-arkouda py-refgenconf shapemapper -hicolor-icon-theme py-arm-pyart py-refgenie shared-mime-info -hicops py-arpeggio py-regex shark -hicup py-arrow py-regionmask shc -highfive py-art py-regions sheenbidi -highway py-arviz py-reindent shellcheck -highwayhash py-asciitree py-relion shengbte -hiop py-asdf py-relion-blush sherpa -hip py-asdf-astropy py-relion-classranker shiro -hip-tensor py-asdf-coordinates-schemas py-repligit shocklibs -hip-tests py-asdf-standard py-reportlab shoremap -hipace py-asdf-transform-schemas py-reportseff shortstack -hipblas py-asdf-unit-schemas py-repoze-lru showfont -hipblas-common py-asdfghjkl py-reproject shred -hipblaslt py-ase py-requests shtns -hipcc py-asgi-lifespan py-requests-cache shtools -hipcub py-asgiref py-requests-file shuffile -hipdnn py-asn1crypto py-requests-ftp sicer2 -hipfft py-aspy-yaml py-requests-futures sickle -hipfort py-asserts py-requests-kerberos sicm -hipify-clang py-ast-serialize py-requests-mock siesta -hiprand py-asteval py-requests-ntlm sigcpp -hipsolver py-astor py-requests-oauthlib sigio -hipsparse py-astpretty py-requests-toolbelt signalp -hipsparselt py-astroid py-requests-unixsocket signify -hipsycl py-astropy py-requirements-parser silo -hiptt py-astropy-healpix py-reretry simde -hiredis py-astropy-helpers py-resampy simdjson -hisat2 py-astropy-iers-data py-resize-right simgrid -hisea py-asttokens py-resolvelib simmetrix-simmodsuite -hive py-astunparse py-responses simple-dftd3 -hivex py-async-generator py-resultsfile simplemoc -hmmer py-async-lru py-retry simsipm -hohqmesh py-async-timeout py-retry-decorator simul -homer py-asyncio py-retrying simulationio -hoomd-blue py-asyncpg py-retworkx sina -hoppet py-asynctest py-rfc3339-validator singular-factory -hotspot py-atomicwrites py-rfc3986 singularity-eos -hp2p py-atpublic py-rfc3986-validator singularity-hpc -hpc-beeflow py-atropos py-rfc3987-syntax singularityce -hpcc py-ats py-rich sio -hpccg py-attmap py-rich-argparse sionlib -hpcg py-attrs py-rich-click sirius -hpckit py-audioread py-rio-pmtiles sjpeg -hpctoolkit py-auditwheel py-rios skilion-onedrive -hpcviewer py-authlib py-rioxarray skopeo -hpcx-mpi py-autocfg py-rise sl -hpddm py-autodocsumm py-river slang -hpgmg py-autograd py-rmm slate -hping py-autograd-gamma py-rnc2rng sleef -hpl py-automat py-robocrys slepc -hpx py-autopep8 py-robotframework slf4j -hpx-kokkos py-autoray py-rocrate slirp4netns -hpx5 py-autoreject py-roifile sloccount -hsa-amd-aqlprofile py-auxlib py-roman-numerals slurm -hsa-rocr-dev py-avro py-roman-numerals-py slurm-drmaa -hsakmt py-avro-json-serializer py-rope smalt -hsakmt-roct py-avro-python3 py-rosdep smartdenovo -hsf-cmaketools py-awesome-slugify py-rosdistro smartmontools -hssp py-awkward py-rosinstall smee-client -hstr py-awkward-cpp py-rosinstall-generator smof -hto4l py-awkward0 py-rospkg smproxy -htop py-awscrt py-rotary-embedding-torch snakemake -htslib py-ax-platform py-rouge-score snap -http-get py-azote py-routes snap-berkeley -http-load py-azure-batch py-rpds-py snap-korf -http-parser py-azure-cli-command-modules-nspkg py-rply snappy -http-ping py-azure-cli-core py-rpy2 snbone -http-post py-azure-cli-nspkg py-rsa sniffles -httpd py-azure-cli-telemetry py-rsatoolbox snpeff -httperf py-azure-common py-rseqc snphylo -httpie py-azure-core py-rst2pdf snptest -httping py-azure-cosmos py-rtoml soapdenovo-trans -httpress py-azure-datalake-store py-rtree soapdenovo2 -hub py-azure-functions-devops-build py-ruamel-ordereddict socat -hudi py-azure-graphrbac py-ruamel-yaml soci -hugo py-azure-identity py-ruamel-yaml-clib sofa-c -hunspell py-azure-keyvault py-ruamel-yaml-jinja2 sollya -hw-probe py-azure-keyvault-certificates py-rucio-clients solr -hwdata py-azure-keyvault-keys py-ruff somatic-sniper -hwloc py-azure-keyvault-nspkg py-rustworkx sombrero -hwmalloc py-azure-keyvault-secrets py-rx sonlib -hybpiper py-azure-loganalytics py-s3cmd sopt -hybrid-lambda py-azure-mgmt-advisor py-s3fs soqt -hybridsim py-azure-mgmt-apimanagement py-s3transfer sortmerna -hycom py-azure-mgmt-appconfiguration py-sacrebleu sos -hydra py-azure-mgmt-applicationinsights py-sacremoses sosflow -hydrogen py-azure-mgmt-authorization py-safe-netrc source-highlight -hypar py-azure-mgmt-batch py-safetensors sourmash -hyperfine py-azure-mgmt-batchai py-salib sowing -hyperqueue py-azure-mgmt-billing py-sarif-tools sox -hyperscan py-azure-mgmt-botservice py-scandir sp -hyphen py-azure-mgmt-cdn py-scanpy spaceranger -hyphy py-azure-mgmt-cognitiveservices py-schema spack -hypre py-azure-mgmt-compute py-schema-salad spack-configs-dav-sdk -hypre-cmake py-azure-mgmt-consumption py-scientificpython spack-configs-facilities -hypredrive py-azure-mgmt-containerinstance py-scifem spack-configs-tools-sdk -hztool py-azure-mgmt-containerregistry py-scikit-build spades -i3 py-azure-mgmt-containerservice py-scikit-build-core span-lite -ibm-databroker py-azure-mgmt-core py-scikit-fmm spark -ibmisc py-azure-mgmt-cosmosdb py-scikit-fuzzy sparse -icarus py-azure-mgmt-datalake-analytics py-scikit-image sparsehash -iceauth py-azure-mgmt-datalake-store py-scikit-learn sparskit -icedtea py-azure-mgmt-datamigration py-scikit-learn-extra sparta -icet py-azure-mgmt-deploymentmanager py-scikit-matter spath -icey py-azure-mgmt-devtestlabs py-scikit-optimize spatialdata -ico py-azure-mgmt-dns py-scikit-sparse spatter -icon py-azure-mgmt-eventgrid py-scikits-odes spdk -icu4c py-azure-mgmt-eventhub py-scine-chemoton spdlog -id3lib py-azure-mgmt-hdinsight py-scine-puffin specfem3d-globe -idba py-azure-mgmt-imagebuilder py-scinum spectra -idg py-azure-mgmt-iotcentral py-scipy spectre -idl py-azure-mgmt-iothub py-scitokens spectrum-mpi -iegenlib py-azure-mgmt-iothubprovisioningservices py-scooby speex -ignite py-azure-mgmt-keyvault py-scoop speexdsp -igprof py-azure-mgmt-kusto py-scp sperr -igraph py-azure-mgmt-loganalytics py-screed spfft -igv py-azure-mgmt-managedservices py-scs spglib -igvtools py-azure-mgmt-managementgroups py-sdmetrics sph2pipe -ike-scan py-azure-mgmt-maps py-sdnotify spherepack -ilmbase py-azure-mgmt-marketplaceordering py-sdv sphexa -ima-evm-utils py-azure-mgmt-media py-seaborn spindle -imagemagick py-azure-mgmt-monitor py-secretstorage spiner -imake py-azure-mgmt-msi py-seekpath spiral-package-fftx -imath py-azure-mgmt-netapp py-segmentation-models-pytorch spiral-package-hcol -imgui py-azure-mgmt-network py-selenium spiral-package-jit -imlib2 py-azure-mgmt-nspkg py-semantic-version spiral-package-mpi -imod py-azure-mgmt-policyinsights py-semver spiral-package-simt -imp py-azure-mgmt-privatedns py-send2trash spiral-software -impalajit py-azure-mgmt-rdbms py-sentencepiece spla -improved-rdock py-azure-mgmt-recoveryservices py-sentry-sdk spm -impute2 py-azure-mgmt-recoveryservicesbackup py-seqeval spot -indicators py-azure-mgmt-redhatopenshift py-sequence-models sprng -infernal py-azure-mgmt-redis py-seriate sqlcipher -influxdb py-azure-mgmt-relay py-serpent sqlite -iniparser py-azure-mgmt-reservations py-session-info sqlite-jdbc -inputproto py-azure-mgmt-resource py-setproctitle sqlitebrowser -integratorxx py-azure-mgmt-search py-setupmeta sqoop -intel-gpu-tools py-azure-mgmt-security py-setuptools squashfs -intel-gtpin py-azure-mgmt-servicebus py-setuptools-cpp squashfs-mount -intel-llvm py-azure-mgmt-servicefabric py-setuptools-git squashfuse -intel-mlc py-azure-mgmt-signalr py-setuptools-git-versioning squid -intel-mpi-benchmarks py-azure-mgmt-sql py-setuptools-reproducible sra-tools -intel-oneapi-advisor py-azure-mgmt-sqlvirtualmachine py-setuptools-rust sratoolkit -intel-oneapi-ccl py-azure-mgmt-storage py-setuptools-scm srcml -intel-oneapi-compilers py-azure-mgmt-trafficmanager py-setuptools-scm-git-archive srcml-identifier-getter-tool -intel-oneapi-compilers-classic py-azure-mgmt-web py-sfepy srilm -intel-oneapi-dal py-azure-multiapi-storage py-sgp4 srm-ifce -intel-oneapi-dnn py-azure-nspkg py-sh sse2neon -intel-oneapi-dpct py-azure-storage-blob py-shap sshfs -intel-oneapi-dpl py-azure-storage-common py-shapely sshpass -intel-oneapi-inspector py-azure-storage-nspkg py-shellescape ssht -intel-oneapi-ipp py-b2luigi py-shellingham ssmtp -intel-oneapi-ippcp py-babel py-shiboken2 sspace-longread -intel-oneapi-itac py-backcall py-shippinglabel sspace-standard -intel-oneapi-mkl py-backoff py-shortbred sst-core -intel-oneapi-mpi py-backpack-for-pytorch py-shortuuid sst-dumpi -intel-oneapi-runtime py-backports-abc py-shroud sst-elements -intel-oneapi-tbb py-backports-cached-property py-shtab sst-macro -intel-oneapi-vpl py-backports-entry-points-selectable py-simpervisor sst-transports -intel-oneapi-vtune py-backports-lzma py-simple-slurm stacks -intel-pin py-backports-os py-simpleeval staden-io-lib -intel-tbb py-backports-ssl-match-hostname py-simplegeneric star -intel-xed py-backports-tarfile py-simplejson star-ccm-plus -interproscan py-backports-tempfile py-simplekml starlight -intltool py-backports-weakref py-simpletraj starpu -ioapi py-backports-zoneinfo py-simpy starship -ior py-bagit py-simsimd startup-notification -iotaa py-bagit-profile py-singledispatchmethod stat -iozone py-bakta py-sip stata -ip py-bandit py-six stc -ipcalc py-barectf py-skl2onnx stdexec -iperf2 py-basemap py-slepc4py steps -iperf3 py-bash-kernel py-slicer stinger -ipm py-basis-set-exchange py-slurm-pipeline storm -ipopt py-batchspawner py-smac stow -iproute2 py-bayesian-optimization py-smart-open strace -iptraf-ng py-bcbio-gff py-smartredis stream -iq-tree py-bcolz py-smartsim stress -irep py-bcrypt py-smartypants stress-ng -isa-l py-bdbag py-smmap stressapptest -isa-l-crypto py-beaker py-smolagents string-view-lite -isaac py-beancount py-smote-variants stringtie -isaac-server py-beartype py-snakemake-executor-plugin-azure-batch stripack -isc-dhcp py-beautifulsoup4 py-snakemake-executor-plugin-cluster-generic structure -iscdtoolbox-commons py-beniget py-snakemake-executor-plugin-cluster-sync strumpack -iscdtoolbox-elasticity py-bibtexparser py-snakemake-executor-plugin-drmaa su2 -isescan py-bidict py-snakemake-executor-plugin-flux sublime-text -isl py-bids-validator py-snakemake-executor-plugin-googlebatch subread -iso-codes py-bids-validator-deno py-snakemake-executor-plugin-kubernetes subversion -isoquant py-bidscoin py-snakemake-executor-plugin-slurm suite-sparse -ispc py-bidskit py-snakemake-executor-plugin-slurm-jobstep sumaclust -istio py-bidsschematools py-snakemake-executor-plugin-tes sumo -itensor py-bigdft py-snakemake-interface-common sundials -itk py-bigfloat py-snakemake-interface-executor-plugins suntans -itstool py-billiard py-snakemake-interface-logger-plugins superchic -itsx py-binary py-snakemake-interface-report-plugins superlu -iwyu py-binaryornot py-snakemake-interface-scheduler-plugins superlu-dist -jacamar-ci py-bintrees py-snakemake-interface-storage-plugins superlu-mt -jackcess py-binwalk py-snakemake-storage-plugin-azure supermagic -jafka py-biobb-common py-snakemake-storage-plugin-fs surfer -jags py-biobb-gromacs py-snakemake-storage-plugin-ftp survey -jali py-biobb-io py-snakemake-storage-plugin-gcs sw4 -jansi py-biobb-model py-snakemake-storage-plugin-http sw4lite -jansi-native py-biobb-structure-checking py-snakemake-storage-plugin-pelican swan -jansson py-biobb-structure-utils py-snakemake-storage-plugin-rucio swap-assembler -jasper py-bioblend py-snakemake-storage-plugin-s3 swarm -javafx py-biom-format py-snakemake-storage-plugin-sftp swfft -jbigkit py-biomine py-snakemake-storage-plugin-zenodo swftools -jblob py-biopandas py-snakeviz swiftsim -jchronoss py-biopython py-snappy swig -jdk py-biosppy py-sncosmo swipl -jedi-cmake py-biotite py-sniffio syclomatic -jellyfish py-biotraj py-snoop symengine -jemalloc py-bitarray py-snowballstemmer symlinks -jetty-project py-bitshuffle py-snuggs sympack -jhpcn-df py-bitstring py-sobol-seq sympol -jimtcl py-bitstruct py-social-auth-core sys-sage -jline3 py-black py-sonlib sysbench -jmol py-blake3 py-sortedcollections syscalc -jogl py-bleach py-sortedcontainers sysfsutils -jonquil py-blessed py-soundfile sysget -jose py-blessings py-soupsieve sysstat -jpegoptim py-blight py-soyclustering systemc -jq py-blinker py-spacy systemd -json-c py-blis py-spacy-legacy systemtap -json-cwx py-blosc py-spacy-loggers sz -json-fortran py-blosc2 py-spacy-models-en-core-web-sm sz-cpp -json-glib py-blosum py-spacy-models-en-vectors-web-lg sz3 -jsoncons py-bluepyefe py-sparse szauto -jsoncpp py-bluepyemodel py-spatialist szx -jsonnet py-bluepyopt py-spatialite t8code -jstorm py-bmap-tools py-spatialpandas tabix -jube py-bmtk py-spdlog tajo -judy py-bokeh py-spectra talass -jujutsu py-boltons py-spectral talloc -julea py-boom-boot-manager py-speech-recognition talosctl -julia py-boost-histogram py-spefile tamaas -jump py-boto py-spgl1 tandem -junit4 py-boto3 py-spglib tangram -just py-botocore py-spherical tantan -justbuild py-botorch py-sphericart tar -jwt-cpp py-bottle py-sphericart-torch targetp -jxrlib-debian py-bottleneck py-sphinx task -k8 py-bqplot py-sphinx-argparse taskd -kadath py-braceexpand py-sphinx-autodoc-typehints taskflow -kafka py-brain-indexer py-sphinx-basic-ng tasmanian -kagen py-branca py-sphinx-book-theme tassel -kahip py-bravado py-sphinx-bootstrap-theme tau -kaiju py-bravado-core py-sphinx-click tauola -kakoune py-breakseq2 py-sphinx-copybutton tb-lmto -kakoune-lsp py-breathe py-sphinx-design tbl2asn -kaks-calculator py-brian py-sphinx-fortran tblite -kaldi py-brian2 py-sphinx-gallery tcl -kalign py-brotli py-sphinx-github-changelog tcl-bwidget -kallisto py-brotlipy py-sphinx-immaterial tcl-itcl -karma py-bsddb3 py-sphinx-jinja2-compat tcl-tcllib -kassiopeia py-build py-sphinx-multiversion tcl-tclxml -kbd py-bx-python py-sphinx-prompt tcl-togl -kbproto py-cachecontrol py-sphinx-removed-in tclap -kcov py-cached-property py-sphinx-rtd-dark-mode tcoffee -kdiff3 py-cachetools py-sphinx-rtd-theme tcpdump -kea py-cachey py-sphinx-tabs tcptrace -kealib py-cachy py-sphinx-theme-builder tcsh -keepalived py-cairocffi py-sphinx-toolbox tdengine -keepassxc py-cairosvg py-sphinxautomodapi tealeaf -kenlm py-caliper-reader py-sphinxcontrib-applehelp tecio -kentutils py-callmonitor py-sphinxcontrib-bibtex teckit -keyutils py-calver py-sphinxcontrib-devhelp tecplot -khmer py-cantoolz py-sphinxcontrib-htmlhelp telegraf -kibana py-carputils py-sphinxcontrib-issuetracker telocal -kicad py-cartopy py-sphinxcontrib-jquery tempestextremes -kim-api py-casadi py-sphinxcontrib-jsmath tempestremap -kinesis py-catalogue py-sphinxcontrib-mermaid templight -kineto py-catkin-pkg py-sphinxcontrib-moderncmakedomain templight-tools -kitty py-cattrs py-sphinxcontrib-napoleon tempo -kmergenie py-cbor2 py-sphinxcontrib-plantuml tengine -kmod py-cclib py-sphinxcontrib-programoutput tensorflow-serving-client -knem py-cdo py-sphinxcontrib-qthelp tensorpipe -kokkos py-cdsapi py-sphinxcontrib-serializinghtml termcap -kokkos-fft py-cekit py-sphinxcontrib-spelling terminalimageviewer -kokkos-kernels py-celery py-sphinxcontrib-tikz tesseract -kokkos-nvcc-wrapper py-cellprofiler py-sphinxcontrib-trio test-drive -kokkos-tools py-cellprofiler-core py-sphinxcontrib-websupport tests-sos -koliop py-centrosome py-sphinxemoji testu01 -kraken py-cerberus py-sphobjinv tetgen -kraken2 py-certifi py-spykeutils tethex -krakenuniq py-certipy py-spython tetranscripts -krb5 py-cf-units py-sqlalchemy texi2html -krims py-cf-xarray py-sqlalchemy-migrate texinfo -kripke py-cffconvert py-sqlalchemy-stubs texlive -kubectl py-cffi py-sqlalchemy-utils texstudio -kubernetes py-cfgrib py-sqlitedict textparser -kumi py-cfgv py-sqlparse tfel -kvasir-mpl py-cftime py-srsly the-platinum-searcher -kvtree py-cgen py-sseclient the-silver-searcher -kylin py-chai py-sshtunnel theia-ide -kynema py-chai-lab py-sspilib thepeg -kynema-driver py-chainer py-stack-data thermo4pfm -kynema-fmb py-chainforgecodegen py-starfile thesis -kynema-sgf py-chainmap py-starlette thornado-mini -kynema-ugf py-chalice py-starlette-context thrift -kyotocabinet py-chardet py-starsessions thrust -ladot py-charm4py py-stashcp thunar -laghos py-charset-normalizer py-statmorph thunar-volman -lame py-chart-studio py-statsmodels tidy-html5 -lammps py-cheap-repr py-stdlib-list tig -lammps-example-plugin py-checkm-genome py-stestr tiled-mm -landsfcutil py-cheetah3 py-stevedore time -lanl-cmake-modules py-chemfiles py-stomp-py timedatex -lapackpp py-chemiscope py-stopit timemory -last py-cheroot py-storm timew -lastz py-cherrypy py-stratify tini -laszip py-chex py-strawberryfields tinker -latex2html py-choreographer py-streamlit tiny-tensor-compiler -latte py-chronyk py-stringzilla tinycbor -launchmon py-ci-info py-striprtf tinygltf -laynii py-ci-sdr py-stsci-distutils tinyobjloader -lazygit py-cig-pythia py-stui tinyxml -lazyten py-cinema-lib py-submitit tinyxml2 -lbann py-cinemasci py-subrosa tioga -lbfgspp py-circus py-subword-nmt tippecanoe -lbxproxy py-citeproc-py py-supermercado tiptop -lc-framework py-clarabel py-superqt tiramisu -lcals py-clean-text py-supervisor tix -lcc py-cleo py-svgpath tixi -lcgenv py-click py-svgpathtools tk -lci py-click-didyoumean py-svgutils tkrzw -lcio py-click-option-group py-svgwrite tl-expected -lcms py-click-plugins py-swagger-spec-validator tldd -lcov py-click-repl py-symengine tmalign -ldak py-cligj py-symfit tmhmm -ldc py-clikit py-sympy tmscore -ldc-bootstrap py-climate py-syned tmux -ldsc py-climax py-sysrsync tnftp -lean4 py-clint py-systemd-python tofu-ls -legion py-clip-anytorch py-tabledata tomcat -lemon py-clipboard py-tables toml-f -leptonica py-cloudauthz py-tabulate toml11 -lerc py-cloudbridge py-tatsu tomlplusplus -less py-cloudpathlib py-tblib topaz -lesstif py-cloudpickle py-tbparse topaz-3dem -leveldb py-clustershell py-tcolorpy topcom -lfortran py-cma py-tempita tophat -lftp py-cmaes py-templateflow torch-scatter -lhapdf py-cmake-format py-tempora torque -lhapdf5 py-cmake-parser py-tenacity totalview -lhapdfsets py-cmocean py-tensorboard toybox -libabigail py-cmseq py-tensorboard-data-server tpm2-tss -libaec py-cmsml py-tensorboard-plugin-wit tracer -libaio py-cmyt py-tensorboardx tracy -libao py-coapthon3 py-tensorflow tracy-client -libapplewm py-coca-pytorch py-tensorflow-datasets tramonto -libapreq2 py-coclust py-tensorflow-estimator transabyss -libarchive py-codebasin py-tensorflow-hub transdecoder -libasr py-codecarbon py-tensorflow-metadata transferbench -libassuan py-codechecker py-tensorflow-probability transposome -libatasmart py-codepy py-tensorly transrate -libatomic-ops py-codespell py-tensorstore transset -libavif py-coherent-licensed py-termcolor trapproto -libbacktrace py-coilmq py-termgraph tree -libbeagle py-colabtools py-terminado tree-sitter -libbeato py-colorama py-terminaltables treelite -libbeef py-colorcet py-tern treesub -libbigwig py-colorclass py-tesorter trexio -libbinio py-colored py-testfixtures trf -libblastrampoline py-colored-traceback py-testinfra triangle -libbsd py-coloredlogs py-testpath trident -libbson py-colorful py-testrepository trilinos -libbytesize py-colorio py-testresources trilinos-catalyst-ioss-adapter -libcanberra py-colorlog py-testscenarios trimal -libcap py-colorlover py-testtools trimgalore -libcap-ng py-colormath py-tetoolkit trimmomatic -libcatalyst py-colorpy py-text-unidecode trinity -libceed py-colorspacious py-textblob trinotate -libcerf py-colossalai py-texttable trivy -libcgroup py-colour py-textual trnascan-se -libcifpp py-comm py-textual-fspicker trng -libcint py-common py-textual-plotext trompeloeil -libcircle py-commonmark py-textwrap3 truchas -libconfig py-conan py-textx tskit -libconfuse py-conda-inject py-tf-keras tsne-cuda -libcroco py-conda-souschef py-tf2onnx tulip -libctl py-confection py-tfdlpack tumbler -libcudf py-configargparse py-theano turbine -libcuml py-configobj py-thewalrus turbomole -libcumlprims py-configparser py-thinc turbovnc -libcxi py-configspace py-thop turnserver -libcxxwrap-julia py-confluent-kafka py-threadpoolctl twm -libcyaml py-connectionpool py-throttler tycho2 -libdaemon py-consolekit py-tidynamics typescript -libdap4 py-constantly py-tifffile typhon -libdatrie py-contextily py-tiktoken typhonio -libdc1394 py-contextlib2 py-tilelang typos -libde265 py-contexttimer py-timezonefinder typst -libdeflate py-continuum py-timm ucc -libdicom py-contourpy py-tinyarray uchardet -libdisplay-info py-contrib py-tinycss2 ucsc-bedclip -libdistributed py-control py-tinydb ucsc-bedgraphtobigwig -libdivsufsort py-convertdate py-tinyrecord ucx -libdmx py-convokit py-tld udunits -libdrm py-cookiecutter py-tldextract ufo-core -libdwarf py-coolname py-tmtools ufo-filters -libeatmydata py-copulas py-tokenize-rt ufs-utils -libecpint py-corner py-tokenizers ufs-weather-model -libedit py-correctionlib py-toml uftrace -libefence py-corrfunc py-tomli umap -libelf py-counter py-tomli-w umesimd -libemos py-courlan py-tomlkit umoci -libepoxy py-cov-core py-tomopy umpire -libestr py-coverage py-toolz unblur -libev py-coveralls py-topiary-asr uncrustify -libevdev py-cppheaderparser py-toposort unibilium -libevent py-cppy py-torch unifdef -libevpath py-cramjam py-torch-c-dlpack-ext unifyfs -libexif py-crashtest py-torch-cluster unigen -libfabric py-crc32c py-torch-fidelity unison -libfastcommon py-crcmod py-torch-geometric units -libfastjson py-croniter py-torch-harmonics units-llnl -libffi py-crossmap py-torch-nvidia-apex unittest-cpp -libffs py-cryolobm py-torch-scatter universal -libfirefly py-cryptography py-torch-sparse universal-ctags -libfive py-css-parser py-torch-spex unixodbc -libflame py-cssselect py-torch-spline-conv unqlite -libfms py-cssselect2 py-torchaudio unrar -libfontenc py-cssutils py-torchbenchmark unuran -libfort py-csvkit py-torchdata unzip -libfs py-ctgan py-torchdiffeq upcxx -libftdi py-cuda-bindings py-torchfile upp -libfuse py-cuda-core py-torchgeo uqtk -libfyaml py-cuda-pathfinder py-torchmeta uriparser -libgain py-cudf py-torchmetrics usalign -libgcrypt py-cufflinks py-torchseg usbutils -libgd py-cuml py-torchsummary usearch -libgdsii py-cupy py-torchtext userspace-rcu -libgee py-current py-torchtoolbox ut -libgeopm py-currentscape py-torchvision utf8cpp -libgeopmd py-curryreader py-tornado utf8proc -libgeotiff py-curvlinops-for-pytorch py-tox uthash -libgff py-custodian py-toyplot util-linux -libgit2 py-custom-inherit py-toytree util-linux-uuid -libgit2-glib py-cutadapt py-tpot util-macros -libgpg-error py-cvxopt py-tqdm uvw -libgpiod py-cvxpy py-traceback2 uwtools -libgpuarray py-cwl-upgrader py-trafilatura vacuumms -libgridxc py-cwl-utils py-trainax vala -libgssglue py-cwltool py-traitlets valgrind -libgta py-cx-oracle py-traits valijson -libgtextutils py-cycler py-traitsui vampirtrace -libgtop py-cykhash py-traittypes vapor -libgudev py-cylc-flow py-trame vardictjava -libhandy py-cylc-rose py-trame-client variorum -libharu py-cylp py-trame-common varnish-cache -libhbaapi py-cymem py-trame-server varscan -libheif py-cyordereddict py-trame-vtk vasp -libhio py-cython py-trame-vuetify vbfnlo -libhugetlbfs py-cython-bbox py-transformer-engine vbz-compression -libiberty py-cyvcf2 py-transformers vc -libibumad py-d2to1 py-transforms3d vcftools -libical py-dace py-transonic vcsh -libicd py-dacite py-tree vde -libice py-dadi py-tree-math vdt -libiconv py-dalib py-tree-sitter veccore -libid3tag py-damask py-tree-sitter-c vecgeom -libidl py-darshan py-treehash veclibfort -libidn py-dasbus py-treelib vecmem -libidn2 py-dash py-triangle vectorclass-version2 -libimagequant py-dash-bootstrap-components py-trieregex vegas2 -libimobiledevice py-dash-svg py-trimesh velero -libinih py-dask py-triton veloc -libint py-dask-awkward py-trl velvet -libisal py-dask-expr py-trojanzoo-sphinx-theme velvetoptimiser -libiscsi py-dask-glm py-trove-classifiers vep -libjpeg py-dask-histogram py-trx-python vep-cache -libjpeg-turbo py-dask-jobqueue py-tuiview verdict -libjson py-dask-ml py-tuspy verible -libjwt py-dask-mpi py-tuswsgi verilator -libjxl py-dask-sphinx-theme py-tweedledum verrou -libkcapi py-databricks-cli py-twine vesta -libkml py-dataclasses py-twisted vfkit -libksba py-dataclasses-json py-ty vgm -liblas py-datacube py-typed-ast videoproto -liblbfgs py-datalad py-typeguard viennarna -liblbxutil py-datalad-container py-typepy viewres -libleidenalg py-datalad-deprecated py-typer vifi -liblockfile py-datalad-hirni py-types-dataclasses vigra -liblognorm py-datalad-metadata-model py-types-geopandas vim -liblouis py-datalad-metalad py-types-pkg-resources vir-simd -libluv py-datalad-neuroimaging py-types-psutil virtualgl -liblzf py-datalad-webapp py-types-python-dateutil visit -libmacaroons py-dataproperty py-types-pytz visit-cgns -libmad py-datasets py-types-pyyaml visit-ffp -libmatheval py-datashader py-types-requests visit-mfem -libmaus2 py-datatrove py-types-setuptools visit-silo -libmaxminddb py-dateparser py-types-shapely visit-unv -libmbim py-dateutils py-types-tqdm viskores -libmcfp py-datrie py-types-typed-ast vite -libmcrypt py-dbf py-types-urllib3 vizglow -libmd py-dbfread py-typesentry vmatch -libmesh py-dcm2bids py-typeshed-client vmc -libmetalink py-dcmstack py-typing-extensions vmd -libmetatensor py-deap py-typing-inspect volk -libmetatensor-torch py-debtcollector py-typing-inspection voms -libmetatomic-torch py-debugpy py-typish voropp -libmicrodns py-decorator py-tzdata votca -libmicrohttpd py-deepdiff py-tzlocal vpfft -libmmtf-cpp py-deepecho py-ubiquerg vpic -libmng py-deephyper py-uc-micro-py vsearch -libmnl py-deepmerge py-ucsf-pyem vsftpd -libmo-unpack py-deepsig-biocomp py-ucx-py vt -libmodbus py-deepspeed py-uhi vtable-dumper -libmolgrid py-deeptools py-ujson vtk -libmonitor py-deeptoolsintervals py-ultralytics vtk-h -libmpdclient py-defusedxml py-umalqurra vtk-m -libmypaint py-deisa py-umap-learn vvtest -libnbc py-deisa-core py-umi-tools w3emc -libndp py-deisa-dask py-uncertainties w3m -libnet py-demjson py-uncertainty-toolbox w3nco -libnetfilter-conntrack py-dendropy py-unfoldnd wannier90 -libnetfilter-cthelper py-deprecat py-unicycler warpx -libnetfilter-cttimeout py-deprecated py-unidecode wasi-sdk-prebuilt -libnetfilter-queue py-deprecation py-unittest2py3k watch -libnetworkit py-deprecation-alias py-universal-pathlib wayland -libnfnetlink py-derivative py-unshare wayland-protocols -libnfs py-descartes py-unyt wcs -libnfsidmap py-devito py-update-checker wcslib -libnftnl py-devlib py-uproot webbench -libnids py-dgl py-uproot3 weechat -libnl py-dh-scikit-optimize py-uproot3-methods weighttp -libnotify py-diagnostic py-uqinn wget -libnova py-dict2css py-uri-template wgl -libnrm py-dictdiffer py-uritemplate wgrib2 -libnsl py-dictobj py-url-normalize wgsim -libogg py-dill py-urllib3 which -liboldx py-dinosaur py-urllib3-secure-extra whip -libopts py-dipy py-urwid whizard -libp11 py-dirtyjson py-us wi4mpi -libpam py-disbatch py-userpath win-file -libpaper py-discover py-usgs win-gpg -libpcap py-diskcache py-utils win-sdk -libpciaccess py-dist-meta py-uv win-wdk -libpfm4 py-distance py-uv-build winbison -libpipeline py-distlib py-uv-dynamic-versioning windowswmproto -libplist py-distributed py-uvicorn wiredtiger -libpmemobj-cpp py-distro py-uvloop wireshark -libpng py-django py-uvw wise2 -libpostal py-dlcpar py-uwsgi wonton -libpressio py-dm-haiku py-uxarray wordnet -libpressio-adios1 py-dm-tree py-validate-pyproject wps -libpressio-adios2 py-dnaio py-validators wrf -libpressio-dataset py-dnspython py-vascpy wrf-io -libpressio-errorinjector py-docker py-vcf-kit wrk -libpressio-jit py-dockerpy-creds py-vcrpy wsmancli -libpressio-nvcomp py-docket py-vcstool wt -libpressio-opt py-docopt py-vcstools wtdbg2 -libpressio-predict py-docopt-ng py-vcversioner wxparaver -libpressio-rmetric py-docstring-parser py-vector wxpropgrid -libpressio-sperr py-docstring-to-markdown py-vector-quantize-pytorch wxwidgets -libpressio-tools py-docutils py-vermin x11perf -libpressio-tthresh py-docutils-stubs py-vermouth-martinize x264 -libproxy py-dogpile-cache py-versioneer xabclib -libpsl py-doit py-versioneer-518 xalan-c -libpsm3 py-dolfinx-mpc py-versioningit xapian-core -libpsml py-dom-toml py-verspec xauth -libpspio py-domdf-python-tools py-vesin xbacklight -libpthread-stubs py-dominate py-vine xbae -libpulsar py-donfig py-virtualenv xbiff -libqglviewer py-dotmap py-virtualenv-clone xbitmaps -libqrencode py-dotnetcore2 py-virtualenvwrapper xbraid -libquo py-downhill py-visdom xcalc -libraqm py-doxypypy py-vispy xcb-demo -libraw1394 py-dpath py-vl-convert-python xcb-proto -librdkafka py-drep py-voluptuous xcb-util -librelp py-drmaa py-vsc-base xcb-util-cursor -libreproc py-dryscrape py-vsc-install xcb-util-errors -libressl py-duecredit py-vsts xcb-util-image -libristra py-dulwich py-vsts-cd-manager xcb-util-keysyms -librmm py-dunamai py-wadler-lindig xcb-util-renderutil -librom py-dvc py-waitress xcb-util-wm -librsb py-dxchange py-walinuxagent xcb-util-xrm -librsvg py-dxfile py-wand xcdf -librtlsdr py-dynaconf py-wandb xcfun -librttopo py-dynim py-warcio xclip -libsakura py-earth2mip py-warlock xclipboard -libsamplerate py-earthengine-api py-wasabi xclock -libseccomp py-easybuild-easyblocks py-watchdog xcmiscproto -libsecret py-easybuild-easyconfigs py-watchfiles xcmsdb -libsegfault py-easybuild-framework py-waterdynamics xcompmgr -libsharp py-eccodes py-waves xconsole -libshm py-ecdsa py-wcsaxes xcrysden -libsigcpp py-ecmwf-opendata py-wcwidth xcursor-themes -libsignal-protocol-c py-ecmwflibs py-webargs xcursorgen -libsigsegv py-ecos py-webcolors xdbedizzy -libsixel py-edam-ontology py-webdataset xdelta -libslirp py-edffile py-webdavclient3 xditview -libsm py-edfio py-webencodings xdm -libsmeagol py-edflib-python py-webkit-server xdmf3 -libsndfile py-editables py-weblogo xdotool -libsodium py-editdistance py-webob xdpyinfo -libsolv py-edlib py-websocket-client xdriinfo -libspatialindex py-eeglabio py-websockets xedit -libspatialite py-eerepr py-werkzeug xeniumranger -libspiro py-efel py-wesanderson xerces-c -libsplash py-efficientnet-pytorch py-wget xeus -libspng py-eg py-whatshap xev -libssh py-eigenpy py-wheel xextproto -libssh2 py-einconv py-whenever xeyes -libstdcompat py-einops py-whey xf86bigfontproto -libsvm py-elastic-transport py-whey-pth xf86dga -libszip py-elasticsearch py-whichcraft xf86dgaproto -libtar py-elasticsearch-dsl py-whoosh xf86driproto -libtasn1 py-elecsolver py-widgetsnbextension xf86miscproto -libtermkey py-elephant py-wids xf86rushproto -libthai py-elevation py-wigners xf86vidmodeproto -libtheora py-ema-pytorch py-win-unicode-console xfce4-appfinder -libtiff py-email-validator py-wincertstore xfce4-core -libtirpc py-embedding-reader py-word2number xfce4-panel -libtlx py-emcee py-wordcloud xfce4-session -libtomlc99 py-emoji py-workload-automation xfce4-settings -libtommath py-empy py-wradlib xfconf -libtool py-entrypoints py-wrapt xfd -libtorrent py-enum-tools py-wsproto xfdesktop -libtraceevent py-envisage py-wstool xfindproxy -libtree py-ephem py-wub xfontsel -libuecc py-eprosima-fastdds py-wurlitzer xforms -libunistring py-epydoc py-ww xfs -libunwind py-equation py-wxflow xfsdump -liburcu py-equinox py-wxmplot xfsinfo -liburing py-espresso py-wxpython xfsprogs -libusb py-espressopp py-x-clip xfwm4 -libusbmuxd py-et-xmlfile py-x21 xfwp -libuser py-ete3 py-xanadu-cloud-client xgamma -libuv py-etelemetry py-xarray xgboost -libuv-julia py-etils py-xarray-regrid xgc -libva py-eval-type-backport py-xarray-tensorstore xhmm -libvdwxc py-evaluate py-xattr xhost -libverto py-eventlet py-xcdat xictools -libvips py-evodiff py-xdot xineramaproto -libvorbis py-ewah-bool-utils py-xenv xinit -libvori py-exarl py-xesmf xinput -libvpx py-exceptiongroup py-xgboost xios -libvterm py-execnet py-xgcm xkbcomp -libwebp py-executing py-xhistogram xkbdata -libwebsockets py-exhale py-xlrd xkbevd -libwhich py-exifread py-xlsxwriter xkbprint -libwindowswm py-exodus-bundler py-xlwt xkbutils -libwmf py-expandvars py-xmlplain xkeyboard-config -libwnck py-expecttest py-xmlrunner xkill -libx11 py-exponax py-xmltodict xl -libxau py-extension-helpers py-xonsh xload -libxaw py-extras py-xopen xlogo -libxaw3d py-ez-setup py-xpyb xlsatoms -libxc py-f90nml py-xskillscore xlsclients -libxcb py-f90wrap py-xtb xlsfonts -libxcomposite py-fabric py-xvfbwrapper xmag -libxcrypt py-fabric3 py-xxhash xman -libxcursor py-fair-esm py-xyzservices xmessage -libxcvt py-fairscale py-yacman xmh -libxdamage py-faker py-yacs xmlf90 -libxdmcp py-fakeredis py-yahmm xmlrpc-c -libxevie py-falcon py-yajl xmlto -libxext py-fallocate py-yamlreader xmodmap -libxfce4ui py-fastai py-yapf xmore -libxfce4util py-fastaindex py-yarl xnedit -libxfixes py-fastapi py-yaspin xnnpack -libxfont py-fastapi-utils py-yolk3k xolotl -libxfont2 py-fastavro py-your xorg-cf-files -libxfontcache py-fastcache py-youtube-dl xorg-docs -libxft py-fastcluster py-yq xorg-gtest -libxi py-fastcore py-yt xorg-server -libxinerama py-fastcov py-yt-dlp xorg-sgml-doctools -libxkbcommon py-fastdownload py-yt-dlp-ejs xorgproto -libxkbfile py-fastdtw py-yte xphelloworld -libxkbui py-fasteners py-ytopt xplor-nih -libxml2 py-fastfold py-ytopt-autotune xplsprinters -libxmu py-fastjsonschema py-z3-solver xpmem -libxp py-fastobo py-zarr xpr -libxpm py-fastpath py-zc-buildout xprehashprinterlist -libxpresent py-fastprogress py-zc-lockfile xprop -libxprintapputil py-fastremap py-zensical xproperty -libxprintutil py-fastrlock py-zfit xproto -libxrandr py-fasttext-numpy2 py-zfit-interface xproxymanagementprotocol -libxrender py-fasttext-numpy2-wheel py-zfit-physics xqilla -libxres py-faust-cchardet py-zict xrandr -libxscrnsaver py-fava py-zipfile-deflate64 xrdb -libxshmfence py-fenics-basix py-zipp xrdcl-record -libxslt py-fenics-dijitso py-zipstream-new xrefresh -libxsmm py-fenics-dolfinx py-zope-event xrootd -libxstream py-fenics-ffc py-zope-interface xrx -libxt py-fenics-ffcx py-zstandard xsbench -libxtrap py-fenics-fiat py-zxcvbn xscope -libxtst py-fenics-instant pygmo xsd -libxv py-fenics-ufl pypy xsdk -libxvmc py-fenics-ufl-legacy pypy-bootstrap xset -libxxf86dga py-ffmpy pyrefly xsetmode -libxxf86misc py-fief-client pystring xsetpointer -libxxf86vm py-file-magic pythia6 xsetroot -libyaml py-filecheck pythia8 xsimd -libyogrt py-filelock python xsm -libzip py-filemagic python-venv xstdcmap -libzmq py-filetype q-e-sirius xtb -liftoff py-filterpy qb3 xtcdata -liggghts py-find-libpython qca xtensor -lighttpd py-findlibs qcachegrind xtensor-blas -ligra py-fiona qcat xtensor-python -likwid py-fire qctool xterm -lima py-fireworks qd xtl -linaro-forge py-fiscalyear qemacs xtrans -linkphase3 py-fisher qemu xtrap -linktest py-fits-tools qgis xts -linsys-v py-fitsio qgraf xv -linux-external-modules py-fitter qhull xvidtune -linux-headers py-fixtures qjson xvinfo -linux-pam py-flake8 qmcpack xwd -linux-perf py-flake8-import-order qmd-progress xwidgets -lis py-flake8-polyfill qnnpack xwininfo -listres py-flaky qorts xwud -litestream py-flameprof qoz xxd-standalone -lizard py-flash-attn qpdf xxdiff -lksctp-tools py-flask qperf xxhash -llama-cpp py-flask-babel qrmumps xyce -llhttp py-flask-compress qrupdate xz -llvm py-flask-cors qscintilla yade -llvm-amdgpu py-flask-paginate qt yafyaml -llvm-doe py-flask-restful qt-5compat yajl -llvm-openmp py-flask-socketio qt-base yaksa -llvm-openmp-ompt py-flask-sqlalchemy qt-creator yambo -lm-sensors py-flatbuffers qt-declarative yaml-cpp -lmbench py-flatten-dict qt-quick3d yamlfmt -lmdb py-flawfinder qt-quicktimeline yara -lmod py-flax qt-shadertools yarn -lndir py-flexcache qt-svg yasm -lodepng py-flexmock qt-tools ycruncher -log4c py-flexparser qtgraph ycsb -log4cplus py-flexx qthreads yoda -log4cpp py-flit qtkeychain yorick -log4cxx py-flit-core qtltools yosys -logrotate py-flit-scm qualimap yq -logstash py-flox quandary yyjson -loki py-flufl-lock quantum-espresso z-checker -looptools py-fluiddyn quartz z3 -lordec py-fluidfft qucs zabbix -lorene py-fluidfft-builder quda zerosum -lp-solve py-fluidfft-fftw quest zfp -lrose-core py-fluidfft-fftwmpi quickjs zfs -lrslib py-fluidfft-mpi-with-fftw quicksilver ziatest -lrzip py-fluidfft-p3dfft quo-vadis zig -lsd py-fluidfft-pfft quota zip -lsf py-fluidsim qwt zipkin -lshw py-fluidsim-core qwtpolar zlib -lsof py-flye r zlib-ng -lsquic py-fn-py r-a4 zoltan -lsscsi py-folium r-a4base zookeeper -ltp py-fonttools r-a4classif zookeeper-benchmark -ltr-retriever py-ford r-a4core zopfli -ltrace py-formatizer r-a4preproc zoxide -lua py-formulaic r-a4reporting zpares -lua-bit32 py-fortls r-abadata zpp -lua-bitlib py-fortran-language-server r-abaenrichment zsh -lua-ffi py-fortranformat r-abind zstd -lua-lpeg py-fparser r-absseq zstr -lua-luafilesystem py-fprettify r-acde zuo -lua-luajit py-fqdn r-acepack zycore-c -lua-luajit-openresty py-fracridge r-acgh zydis -lua-luaposix py-fraction r-acme zziplib -==> 8900 packages +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/providers-mpi.out b/outputs/basics/providers-mpi.out index 399020d8e..a9d1b18e2 100644 --- a/outputs/basics/providers-mpi.out +++ b/outputs/basics/providers-mpi.out @@ -1,7 +1,8 @@ $ spack providers mpi mpi: -- no arch / no compilers --------------------------------------- -cray-mpich@:8 fujitsu-mpi mpi-serial mpich@:1.2 mpich@:4.3 mpitrampoline mpt@3: mvapich-plus mvapich2@2.3: openmpi@:1.2 openmpi@1.7.5:1.10.7 -cray-mpich@9: hpcx-mpi mpich@:1.0 mpich@:3.1 mpich@5: mpt msmpi mvapich2 nmad openmpi@1.3:1.7.2 openmpi@2.0.0: -cray-mvapich2 intel-oneapi-mpi mpich@:1.1 mpich@:3.2 mpilander mpt@1: mvapich mvapich2@2.1: nvhpc openmpi@1.7.3:1.7.4 spectrum-mpi +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/tcl-zlib-clang.out b/outputs/basics/tcl-zlib-clang.out index b047feecf..7a76a127c 100644 --- a/outputs/basics/tcl-zlib-clang.out +++ b/outputs/basics/tcl-zlib-clang.out @@ -4,4 +4,4 @@ $ spack install tcl ^zlib-ng@2.0.7 %clang [+] kie72sp zlib-ng@2.0.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-kie72sp5o6k6qp7wr4dg7ccq5xdoadfg (0s) [ ] 53i7gbs tcl@8.6.17 fetching from build cache (0s) [ ] 53i7gbs tcl@8.6.17 relocating (0s) -[+] 53i7gbs tcl@8.6.17 /home/spack/spack/opt/spack/linux-x86_64_v3/tcl-8.6.17-53i7gbsb6wbhk55vv62jpqudomfmw6f7 (0s) +[+] 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/trilinos-hdf5.out b/outputs/basics/trilinos-hdf5.out index 6218b08b2..1efdd78ee 100644 --- a/outputs/basics/trilinos-hdf5.out +++ b/outputs/basics/trilinos-hdf5.out @@ -1,4 +1,4 @@ $ spack install trilinos +hdf5 ^mpich [ ] 3sqhxga trilinos@17.1.1 fetching from build cache (0s) [ ] 3sqhxga trilinos@17.1.1 relocating (0s) -[+] 3sqhxga trilinos@17.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/trilinos-17.1.1-3sqhxgauqbdivdlcr6gdh2km37fiky5j (1s) +[+] 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 5b5db451d..0b1eab196 100644 --- a/outputs/basics/trilinos.out +++ b/outputs/basics/trilinos.out @@ -3,11 +3,11 @@ $ spack install trilinos [ ] kpwomw3 kokkos@5.1.1 fetching from build cache (0s) [ ] kpwomw3 kokkos@5.1.1 relocating (0s) [ ] 7kdghmr openblas@0.3.33 relocating (0s) -[+] kpwomw3 kokkos@5.1.1 /home/spack/spack/opt/spack/linux-x86_64_v3/kokkos-5.1.1-kpwomw3oxg75uzjlwi2j62ncy7uq356m (0s) +[+] 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 (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 (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/versions-zlib.out b/outputs/basics/versions-zlib.out index 21cc94a3a..9c2fe3b16 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.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 + 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.1 2.3.0-rc2 2.3.0-rc1 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 d053d97e7..d25cf6b56 100644 --- a/outputs/basics/zlib-2.0.7.out +++ b/outputs/basics/zlib-2.0.7.out @@ -3,6 +3,6 @@ $ spack install zlib-ng@2.0.7 [ ] xm76mt3 gcc-runtime@15.2.0 fetching from build cache (0s) [ ] xm76mt3 gcc-runtime@15.2.0 relocating (0s) [+] xm76mt3 gcc-runtime@15.2.0 /home/spack/spack/opt/spack/linux-x86_64_v3/gcc-runtime-15.2.0-xm76mt35elmqwrjdlibzhngqkiqnyq4p (0s) -[ ] aeoqp4e zlib-ng@2.0.7 fetching from build cache (1s) -[ ] aeoqp4e zlib-ng@2.0.7 relocating (1s) -[+] aeoqp4e zlib-ng@2.0.7 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.0.7-aeoqp4ey2pntuxsbajc5hwovr5l4qy2l (1s) +[ ] 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-gcc-14.out b/outputs/basics/zlib-gcc-14.out index db37d5406..b2a9605c2 100644 --- a/outputs/basics/zlib-gcc-14.out +++ b/outputs/basics/zlib-gcc-14.out @@ -1,4 +1,4 @@ $ spack install zlib-ng %gcc@14 [ ] slhcf4i zlib-ng@2.3.3 fetching from build cache (0s) [ ] slhcf4i zlib-ng@2.3.3 relocating (0s) -[+] slhcf4i zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-slhcf4ikhifycngjjlz2hyjkx24qi5md (0s) +[+] 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 index 518ab2ec3..e17bb56a4 100644 --- a/outputs/basics/zlib-ipo.out +++ b/outputs/basics/zlib-ipo.out @@ -1,4 +1,4 @@ $ spack install zlib-ng +ipo -[ ] 6l3ycpy zlib-ng@2.3.3 fetching from build cache (1s) -[ ] 6l3ycpy zlib-ng@2.3.3 relocating (1s) -[+] 6l3ycpy zlib-ng@2.3.3 /home/spack/spack/opt/spack/linux-x86_64_v3/zlib-ng-2.3.3-6l3ycpy4crfl6ry4jax3p6crw3byw5oa (1s) +[ ] 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/tutorial_basics.rst b/tutorial_basics.rst index 02254a9c0..02c3587d2 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -32,7 +32,7 @@ All examples and outputs are based on an Ubuntu 26.04 Docker image. Setting Up Spack ---------------- -Spack is ready to use immediately -- there is no separate build or install step. +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 @@ -157,12 +157,12 @@ Here we build ``zlib-ng`` in debug mode through its ``build_type`` variant. :language: spec Some variants are *conditional*: the indented ``when`` lines in the ``spack info`` output mark them. -Here ``build_type``, ``generator``, and ``ipo`` are available only ``when build_system=cmake`` -- that is, when zlib-ng is built with CMake instead of Autotools. +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`` -- written like ``cflags="-O3"`` (quote values containing spaces) -- and its compiler wrappers inject them into the right commands. + 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. ^^^^^^^^^^^^^^^^^^^ @@ -170,7 +170,7 @@ Direct Dependencies ^^^^^^^^^^^^^^^^^^^ The ``%`` sigil specifies a direct dependency of the package we're installing. -The most common direct dependency is a compiler -- every package built from source needs one -- so that is what we will use ``%`` for here. +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``: @@ -180,7 +180,7 @@ This time we'll build it with Clang instead, using ``%clang``: 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. -**The spec syntax is recursive** -- any syntax we can specify for the "root" package we can also use for a dependency. +**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/zlib-gcc-14.out @@ -236,7 +236,8 @@ Virtual Dependencies Let's move on to a more complicated package. ``hdf5`` is a good example: it depends on ``mpi``, but ``mpi`` is not an ordinary package. -It is a *virtual package* -- an interface that several real packages provide -- and Spack handles dependencies on such interfaces through "virtual dependencies". +It is a *virtual package*: an interface that several real packages provide. +Spack handles dependencies on such interfaces through "virtual dependencies". By default ``hdf5`` builds against ``openmpi``: @@ -351,7 +352,8 @@ Let's install Trilinos again, this time reusing the HDF5 we built with MPICH: .. literalinclude:: outputs/basics/trilinos-hdf5.out :language: spec -Only ``trilinos`` itself was installed -- the rest of the graph, including our MPICH-based ``hdf5``, was already present and reused. +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/trilinos-find-mpich.out @@ -395,7 +397,7 @@ To remove it anyway, use ``--force`` (or ``-f``) to delete just that package and .. literalinclude:: outputs/basics/uninstall-r-needed.out :language: spec -Spack refuses to uninstall a package when the spec is ambiguous -- when it matches more than one installed package: +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 From 96dd1d28dc9d198bf38cb5a4b1e5580bd49c8a77 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Thu, 18 Jun 2026 16:37:06 +0200 Subject: [PATCH 23/26] Minor style fixes --- tutorial_basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial_basics.rst b/tutorial_basics.rst index 02c3587d2..f6c243a99 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -352,7 +352,7 @@ Let's install Trilinos again, this time reusing the HDF5 we built with MPICH: .. literalinclude:: outputs/basics/trilinos-hdf5.out :language: spec -Only ``trilinos`` itself was installed. +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``: From 0fac538181f14b89ee9fe7e2e59db706a933e448 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Fri, 19 Jun 2026 08:26:08 +0200 Subject: [PATCH 24/26] Address review --- tutorial_basics.rst | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tutorial_basics.rst b/tutorial_basics.rst index f6c243a99..222adba11 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -12,14 +12,15 @@ This tutorial will provide a step-by-step guide for installing software with Spa A few fundamental ideas underpin everything that follows: -1. Spack builds software either from source or from prebuilt binaries. -2. Spack keeps every configuration of a package isolated from every other, so many versions, compilers, and build options can coexist on the same machine. -3. Each configuration is identified by a hash of its full provenance. +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, highlighting the versatility of Spack's spec syntax and the flexibility it offers users. +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. @@ -61,9 +62,8 @@ 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 @@ -120,13 +120,13 @@ Each kind of constraint has its own sigil, which the subsections below introduce Versions ^^^^^^^^ -We can install multiple versions of the same package side by side. +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 -We select one with the ``@`` sigil: +We specify versions with the ``@`` sigil: .. literalinclude:: outputs/basics/zlib-2.0.7.out :language: spec @@ -199,7 +199,7 @@ The ``tcl`` package depends on ``zlib-ng``, so let's preview how Spack would bui :language: spec This is the *concretized* spec: Spack has filled in every dependency, along with its version, variants, and compiler. -In the output, ``[+]`` marks specs already installed, ``[e]`` those provided externally by the system, and ``[b]`` those available in a cache but not yet installed. +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. @@ -429,7 +429,7 @@ The ``gcc@16`` compiler is immediately available to use: :language: spec :lines: 1-2 -We won't need this compiler in the next chapter, so we'll uninstall it for now. +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 From 8f70bdf31f085f8c30be8b68d2d81dba2634eb0c Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Fri, 19 Jun 2026 08:33:29 +0200 Subject: [PATCH 25/26] Don't use "realistic" --- tutorial_basics.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tutorial_basics.rst b/tutorial_basics.rst index 222adba11..91f161400 100644 --- a/tutorial_basics.rst +++ b/tutorial_basics.rst @@ -331,11 +331,11 @@ It can also show the path to which a package was installed using the ``-p`` flag .. _basics-tutorial-trilinos: -------------------- -A Realistic Example -------------------- +-------------------------------- +Trilinos: A More Complex Example +-------------------------------- -Now that we know the spec syntax and how to query installations, let's put them to work on a realistic package. +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 @@ -344,7 +344,7 @@ 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. Only a handful are new here, though: the rest of that large graph was already installed earlier in the tutorial, so Spack reuses those builds instead of repeating them. Installing a package this complex by hand can take an experienced user days or weeks. -Although we've done a binary installation for the tutorial, a source installation of Trilinos using Spack takes about 3 hours (depending on the system), but only 20 seconds of programmer time. +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 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: From 5ab18b8bff51611527498db5d01b1b144aa8636b Mon Sep 17 00:00:00 2001 From: Alec Scott Date: Fri, 19 Jun 2026 11:45:17 -0700 Subject: [PATCH 26/26] Remove old output files after merge with main Signed-off-by: Alec Scott --- outputs/basics/find-ldf-2.out | 1262 ------------------------------ outputs/basics/find-ldf.out | 121 --- outputs/basics/find-lf.out | 24 - outputs/basics/hdf5-hl-mpi.out | 177 ----- outputs/basics/tcl-zlib-hash.out | 14 - outputs/basics/tcl.out | 20 - outputs/basics/zlib-gcc-10.out | 25 - 7 files changed, 1643 deletions(-) delete mode 100644 outputs/basics/find-ldf-2.out delete mode 100644 outputs/basics/find-ldf.out delete mode 100644 outputs/basics/find-lf.out delete mode 100644 outputs/basics/hdf5-hl-mpi.out delete mode 100644 outputs/basics/tcl-zlib-hash.out delete mode 100644 outputs/basics/tcl.out delete mode 100644 outputs/basics/zlib-gcc-10.out diff --git a/outputs/basics/find-ldf-2.out b/outputs/basics/find-ldf-2.out deleted file mode 100644 index 4d859eb4a..000000000 --- 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 f3922460c..000000000 --- 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.out b/outputs/basics/find-lf.out deleted file mode 100644 index ce88928af..000000000 --- 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/hdf5-hl-mpi.out b/outputs/basics/hdf5-hl-mpi.out deleted file mode 100644 index d42dbabc8..000000000 --- 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/tcl-zlib-hash.out b/outputs/basics/tcl-zlib-hash.out deleted file mode 100644 index 842d5e681..000000000 --- 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 d66e0b502..000000000 --- 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/zlib-gcc-10.out b/outputs/basics/zlib-gcc-10.out deleted file mode 100644 index 66ff524f5..000000000 --- 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]