From 14bef5becfebbd128830de2e5dc24dc564472c76efe5509e0249588e881d5e75 Mon Sep 17 00:00:00 2001 From: Egbert Eich Date: Tue, 7 Nov 2023 17:15:00 +0000 Subject: [PATCH 1/3] Accepting request 1123507 from home:bmwiedemann:branches:network:cluster Update to version 0.20.3 with the following changes: * Bug fixes: + Fix a bug where spack mirror set-url would drop configured connection info + Fix a minor issue with package hash computation for Python 3.12 + Improve escaping in Tcl module files + Make repo cache work on repositories with zero mtime + Ignore errors for newer, incompatible buildcache version + Print an error when git is required, but missing + Ensure missing build dependencies get installed when using spack install --overwrite + Fix an issue where Spack freezes when the build process unexpectedly exits + Fix a bug where installation failures cause an unrelated NameError to be thrown + Fix an issue where Spack package versions would be incorrectly derived from git tags + Fix a bug triggered when file locking fails internally + Prevent "spack external find" to error out when a directory cannot be accessed + Fix multiple performance regressions in environments + Add more ignored modules to pyproject.toml for mypy * Features: + Spack now supports Python 3.12 rebased Fix-error-during-documentation-build-due-to-recursive-module-inclusion.patch OBS-URL: https://build.opensuse.org/request/show/1123507 OBS-URL: https://build.opensuse.org/package/show/network:cluster/spack?expand=0&rev=86 --- ...ld-due-to-recursive-module-inclusion.patch | 15 +++++-------- spack-0.20.1.tar.gz | 3 --- spack-0.20.3.tar.gz | 3 +++ spack.changes | 22 +++++++++++++++++++ spack.spec | 2 +- 5 files changed, 32 insertions(+), 13 deletions(-) delete mode 100644 spack-0.20.1.tar.gz create mode 100644 spack-0.20.3.tar.gz diff --git a/Fix-error-during-documentation-build-due-to-recursive-module-inclusion.patch b/Fix-error-during-documentation-build-due-to-recursive-module-inclusion.patch index 14520ee..155c927 100644 --- a/Fix-error-during-documentation-build-due-to-recursive-module-inclusion.patch +++ b/Fix-error-during-documentation-build-due-to-recursive-module-inclusion.patch @@ -10,13 +10,13 @@ Signed-off-by: Egbert Eich lib/spack/spack/environment/environment.py | 4 ++++ 1 file changed, 4 insertions(+) -diff --git a/lib/spack/spack/environment/environment.py b/lib/spack/spack/environment/environment.py -index a4312df6dc..10bfbd2a4d 100644 ---- a/lib/spack/spack/environment/environment.py -+++ b/lib/spack/spack/environment/environment.py -@@ -41,6 +41,10 @@ +Index: spack-0.20.3/lib/spack/spack/environment/environment.py +=================================================================== +--- spack-0.20.3.orig/lib/spack/spack/environment/environment.py ++++ spack-0.20.3/lib/spack/spack/environment/environment.py +@@ -40,6 +40,10 @@ import spack.stage + import spack.store import spack.subprocess_context - import spack.traverse import spack.user_environment as uenv +try: + import spack.user_environment as uenv @@ -25,6 +25,3 @@ index a4312df6dc..10bfbd2a4d 100644 import spack.util.cpus import spack.util.environment import spack.util.hash --- -2.40.1 - diff --git a/spack-0.20.1.tar.gz b/spack-0.20.1.tar.gz deleted file mode 100644 index afd24bc..0000000 --- a/spack-0.20.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:141be037b56e4b095840a95ac51c428c29dad078f7f88140ae6355b2a1b32dc3 -size 9691502 diff --git a/spack-0.20.3.tar.gz b/spack-0.20.3.tar.gz new file mode 100644 index 0000000..ece1a34 --- /dev/null +++ b/spack-0.20.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7deaa2f51502ff6f84f79845d8bd23202b0524f7669d3f779bd2049bc43e177 +size 9691976 diff --git a/spack.changes b/spack.changes index 4a7ac7a..aee8a4b 100644 --- a/spack.changes +++ b/spack.changes @@ -1,3 +1,25 @@ +------------------------------------------------------------------- +Mon Nov 6 08:04:55 UTC 2023 - Bernhard Wiedemann + +- Update to version 0.20.3 with the following changes: + * Bug fixes: + + Fix a bug where spack mirror set-url would drop configured connection info + + Fix a minor issue with package hash computation for Python 3.12 + + Improve escaping in Tcl module files + + Make repo cache work on repositories with zero mtime + + Ignore errors for newer, incompatible buildcache version + + Print an error when git is required, but missing + + Ensure missing build dependencies get installed when using spack install --overwrite + + Fix an issue where Spack freezes when the build process unexpectedly exits + + Fix a bug where installation failures cause an unrelated NameError to be thrown + + Fix an issue where Spack package versions would be incorrectly derived from git tags + + Fix a bug triggered when file locking fails internally + + Prevent "spack external find" to error out when a directory cannot be accessed + + Fix multiple performance regressions in environments + + Add more ignored modules to pyproject.toml for mypy + * Features: + + Spack now supports Python 3.12 + ------------------------------------------------------------------- Tue Sep 12 05:32:46 UTC 2023 - Egbert Eich diff --git a/spack.spec b/spack.spec index 464d9ff..93775fe 100644 --- a/spack.spec +++ b/spack.spec @@ -46,7 +46,7 @@ ExclusiveArch: do_not_build # non oss packages %define spack_trigger_external cuda-nvcc Name: spack -Version: 0.20.1 +Version: 0.20.3 Release: 0 Summary: Package manager for HPC systems License: Apache-2.0 AND MIT AND Python-2.0 AND BSD-3-Clause From e5dc7fb6c4028edbd639952738d8ff719947264d26240a60cb3793b0d9d4e05e Mon Sep 17 00:00:00 2001 From: Egbert Eich Date: Tue, 7 Nov 2023 17:28:18 +0000 Subject: [PATCH 2/3] + Fix a bug where `spack mirror set-url` would drop configured connection info. + Fix a minor issue with package hash computation for Python 3.12. + Improve escaping in Tcl module files. + Make repo cache work on repositories with zero mtime. + Ignore errors for newer, incompatible buildcache version. + Print an error when git is required, but missing. + Ensure missing build dependencies get installed when using `spack install --overwrite`. + Fix an issue where Spack freezes when the build process unexpectedly exits. + Fix a bug where installation failures cause an unrelated `NameError` to be thrown. + Fix an issue where Spack package versions would be incorrectly derived from git tags. + Fix a bug triggered when file locking fails internally. + Prevent `spack external find` to error out when a directory cannot be accessed. + Fix multiple performance regressions in environments. + Add more ignored modules to `pyproject.toml` for mypy. + Spack now supports Python 3.12. OBS-URL: https://build.opensuse.org/package/show/network:cluster/spack?expand=0&rev=87 --- spack.changes | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/spack.changes b/spack.changes index aee8a4b..be7fb15 100644 --- a/spack.changes +++ b/spack.changes @@ -3,22 +3,28 @@ Mon Nov 6 08:04:55 UTC 2023 - Bernhard Wiedemann - Update to version 0.20.3 with the following changes: * Bug fixes: - + Fix a bug where spack mirror set-url would drop configured connection info - + Fix a minor issue with package hash computation for Python 3.12 - + Improve escaping in Tcl module files - + Make repo cache work on repositories with zero mtime - + Ignore errors for newer, incompatible buildcache version - + Print an error when git is required, but missing - + Ensure missing build dependencies get installed when using spack install --overwrite - + Fix an issue where Spack freezes when the build process unexpectedly exits - + Fix a bug where installation failures cause an unrelated NameError to be thrown - + Fix an issue where Spack package versions would be incorrectly derived from git tags - + Fix a bug triggered when file locking fails internally - + Prevent "spack external find" to error out when a directory cannot be accessed - + Fix multiple performance regressions in environments - + Add more ignored modules to pyproject.toml for mypy + + Fix a bug where `spack mirror set-url` would drop configured + connection info. + + Fix a minor issue with package hash computation for Python 3.12. + + Improve escaping in Tcl module files. + + Make repo cache work on repositories with zero mtime. + + Ignore errors for newer, incompatible buildcache version. + + Print an error when git is required, but missing. + + Ensure missing build dependencies get installed when using + `spack install --overwrite`. + + Fix an issue where Spack freezes when the build process + unexpectedly exits. + + Fix a bug where installation failures cause an unrelated + `NameError` to be thrown. + + Fix an issue where Spack package versions would be incorrectly + derived from git tags. + + Fix a bug triggered when file locking fails internally. + + Prevent `spack external find` to error out when a directory + cannot be accessed. + + Fix multiple performance regressions in environments. + + Add more ignored modules to `pyproject.toml` for mypy. * Features: - + Spack now supports Python 3.12 + + Spack now supports Python 3.12. ------------------------------------------------------------------- Tue Sep 12 05:32:46 UTC 2023 - Egbert Eich From 1a9b753af024b7688cb66a6a9de84b90bc823bd643a9bf7d72676449f9ac6148 Mon Sep 17 00:00:00 2001 From: Egbert Eich Date: Tue, 7 Nov 2023 17:37:45 +0000 Subject: [PATCH 3/3] + Add more ignored modules to `pyproject.toml` for `mypy`. OBS-URL: https://build.opensuse.org/package/show/network:cluster/spack?expand=0&rev=88 --- spack.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spack.changes b/spack.changes index be7fb15..add6b13 100644 --- a/spack.changes +++ b/spack.changes @@ -22,7 +22,7 @@ Mon Nov 6 08:04:55 UTC 2023 - Bernhard Wiedemann + Prevent `spack external find` to error out when a directory cannot be accessed. + Fix multiple performance regressions in environments. - + Add more ignored modules to `pyproject.toml` for mypy. + + Add more ignored modules to `pyproject.toml` for `mypy`. * Features: + Spack now supports Python 3.12.