Skip to content
Snippets Groups Projects
  1. Oct 21, 2023
  2. Oct 20, 2023
  3. Oct 19, 2023
    • dependabot[bot]'s avatar
    • dependabot[bot]'s avatar
    • dependabot[bot]'s avatar
    • dependabot[bot]'s avatar
    • Adam J. Stewart's avatar
      py-rasterio: add v1.3.9 (#40621) · fa4d5ee9
      Adam J. Stewart authored
      fa4d5ee9
    • Cody Balos's avatar
    • Harmen Stoppels's avatar
      Improve setup build / run / test environment (#35737) · 72b36ac1
      Harmen Stoppels authored
      This adds a `SetupContext` class which is responsible for setting
      package.py module globals, and computing the changes to environment
      variables for the build, test or run context.
      
      The class uses `effective_deptypes` which takes a list of specs (e.g. single
      item of a spec to build, or a list of environment roots) and a context
      (build, run, test), and outputs a flat list of specs that affect the
      environment together with a flag in what way they do so. This list is
      topologically ordered from root to leaf, so that one can be assured that
      dependents override variables set by dependencies, not the other way
      around.
      
      This is used to replace the logic in `modifications_from_dependencies`,
      which has several issues: missing calls to `setup_run_environment`, and
      the order in which operations are applied.
      
      Further, it should improve performance a bit in certain cases, since
      `effective_deptypes` run in O(v + e) time, whereas `spack env activate`
      currently can take up to O(v^2 + e) time due to loops over roots. Each
      edge in the DAG is visited once by calling `effective_deptypes` with
      `env.concrete_roots()`.
      
      By marking and propagating flags through the DAG, this commit also fixes
      a bug where Spack wouldn't call `setup_run_environment` for runtime
      dependencies of link dependencies. And this PR ensures that Spack
      correctly sets up the runtime environment of direct build dependencies.
      
      Regarding test dependencies: in a build context they are are build-time
      test deps, whereas in a test context they are install-time test deps.
      Since there are no means to distinguish the build/install type test deps,
      they're both.
      
      Further changes:
      
      - all `package.py` module globals are guaranteed to be set before any of the
        `setup_(dependent)_(run|build)_env` functions is called
      - traversal order during setup: first the group of externals, then the group
        of non-externals, with specs in each group traversed topological (dependencies
        are setup before dependents)
      - modules: only ever call `setup_dependent_run_environment` of *direct* link/run
         type deps
      - the marker in `set_module_variables_for_package` is dropped, since we should
        call the method once per spec. This allows us to set only a cheap subset of
        globals on the module: for example it's not necessary to compute the expensive
        `cmake_args` and w/e if the spec under consideration is not the root node to be
        built.
      - `spack load`'s `--only` is deprecated (it has no effect now), and `spack load x`
        now means: do everything that's required for `x` to work at runtime, which
        requires runtime deps to be setup -- just like `spack env activate`.
      - `spack load` no longer loads build deps (of build deps) ...
      - `spack env activate` on partially installed or broken environments: this is all
        or nothing now. If some spec errors during setup of its runtime env, you'll only
        get the unconditional variables + a warning that says the runtime changes for
        specs couldn't be applied.
      - Remove traversal in upward direction from `setup_dependent_*` in packages.
        Upward traversal may iterate to specs that aren't children of the roots
        (e.g. zlib / python have hundreds of dependents, only a small fraction is
        reachable from the roots. Packages should only modify the direct dependent
        they receive as an argument)
      72b36ac1
    • Harmen Stoppels's avatar
      spack checksum: restore ability to select top n (#40531) · 79896ee8
      Harmen Stoppels authored
      The ability to select the top N versions got removed in the checksum overhaul,
      cause initially numbers were used for commands.
      
      Now that we settled on characters for commands, let's make numbers pick the top
      N again.
      79896ee8
    • Vanessasaurus's avatar
    • Harmen Stoppels's avatar
      libvorbis: drop -force_cpusubtype_ALL flag (#40616) · 3f594e86
      Harmen Stoppels authored
      This flag was only relevant when targeting powerpc from apple-clang,
      which we don't do. The flag is removed from apple-clang@15. Let's drop
      it unconditionally.
      3f594e86
    • Scott Wittenburg's avatar
      gitlab ci: Rework how mirrors are configured (#39939) · 46c1a8e4
      Scott Wittenburg authored
      Improve how mirrors are used in gitlab ci, where we have until now thought
      of them as only a string.
      
      By configuring ci mirrors ahead of time using the proposed mirror templates,
      and by taking advantage of the expressiveness that spack now has for mirrors,
      this PR will allow us to easily switch the protocol/url we use for fetching
      binary dependencies.
      
      This change also deprecates some gitlab functionality and marks it for
      removal in Spack 0.23:
      
          - arguments to "spack ci generate":
              * --buildcache-destination
              * --copy-to
          - gitlab configuration options:
              * enable-artifacts-buildcache
              * temporary-storage-url-prefix
      46c1a8e4
    • Satish Balay's avatar
      petsc: add variant +sycl (#40562) · b2d3e01f
      Satish Balay authored
      * petsc: add variant +sycl
      
      * petsc: add in gmake as dependency - so that consistent make gets used between petsc and slepc builds [that can have different env for each of the builds]
      b2d3e01f
    • Harmen Stoppels's avatar
      68163998
    • Massimiliano Culpo's avatar
      ASP-based solver: single Spec instance per dag hash (#39590) · a1ca1a94
      Massimiliano Culpo authored
      Reused specs used to be referenced directly into the built spec.
      
      This might cause issues like in issue 39570 where two objects in
      memory represent the same node, because two reused specs were
      loaded from different sources but referred to the same spec
      by DAG hash.
      
      The issue is solved by copying concrete specs to a dictionary keyed
      by dag hash.
      a1ca1a94
    • Tamara Dahlgren's avatar
    • Aiden Grossman's avatar
Loading