Age | Commit message (Collapse) | Author | Files | Lines |
|
(#39000)
|
|
* netcdf-fortran: add version 4.6.1
* netcdf-fortran: fix the 'check' method
|
|
* bfs: add new package
* Remove redundant set to PREFIX during build
|
|
* quickjs: make Makefile use correct compiler
* added lto variant and better handling of compilers
* quickjs: correct style
* quickjs: correct style for flake8
|
|
|
|
Co-authored-by: Thomas Briffard <thomas.briffard@michelin.com>
|
|
|
|
|
|
(#39058)
|
|
|
|
pkg-config and pkgconf are providers.
|
|
* py-jaxlib: add conflict for missing cuda cuda_arch specification
* Update var/spack/repos/builtin/packages/py-jaxlib/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
* py-jaxlib: conflict missing cuda_arch value when with cuda
* Update var/spack/repos/builtin/packages/py-jaxlib/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
---------
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
|
|
* openfoam: add versions 2306, 2212_230612 (patch), 2212
* Fix syntax error
---------
Co-authored-by: Mark Olesen <Mark.Olesen@esi-group.com>
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
|
|
* py-sqlalchemy: add 2.0.19
* [@spackbot] updating style on behalf of manuelakuhn
* Add py-cython and py-greenlet and fix dependency type
* Fix typo
|
|
|
|
(#39003)
* legion: Missing Python dependency. Fix variant dependencies. Remove TLS.
* Update Python version bound and add NumPy dependency.
* Update requires syntax.
|
|
* added quickjs package
* edited style of quickjs package
|
|
|
|
|
|
|
|
|
|
* proj: fix building with GCC 13
apply upstream patch from 7.2 branch
* proj: checksum 9.2.1
* proj: fix sha256 of patch
thank you, @adamjstewart
|
|
Co-authored-by: Marc Schouler <marc.schouler@inria.fr>
|
|
Signed-off-by: Samuel K. Gutierrez <samuel@lanl.gov>
|
|
* nag: append build number to the version
* nag: add version 7.1.7125
* nag: deprecate unavailable versions
|
|
|
|
|
|
aarch64 (#38865)
|
|
|
|
* pin protobuf
* explicitly select python interpreter
* remove python pin
|
|
|
|
|
|
* tinygltf: new versions and release branch
for each minor release available, the newest patch release has been added
---------
Co-authored-by: aumuell <aumuell@users.noreply.github.com>
|
|
- drop use_xcode = True, as this would lead to an attempt install Xcode (#34064)
- don't automatically build Qt Location with +opengl, as this is
still broken
This built sucessfully with qt@5.15.10+opengl+dbus+phonon on ventura/arm without
Xcode installed (only command line tools) - I did not check with Xcode installed.
|
|
|
|
* [py-wasabi] added version 1.1.2
* [py-wasabi] flake8
* [py-wasabi]
- added dependency on py-colorama
- updated homepage
* [py-wasabi] removed python check for py-colorama
* [@spackbot] updating style on behalf of qwertos
---------
Co-authored-by: qwertos <qwertos@users.noreply.github.com>
|
|
|
|
|
|
* Add new feq-parse version
* Swap 2.0.0 for 2.0.1 - resolves feq-parse build failure
|
|
|
|
Use curly braces instead of quotes to enclose value or text in Tcl
modulefile. Within curly braces Tcl special characters like [, ] or $
are treated verbatim whereas they are evaluated within quotes.
Curly braces is Tcl recommended way to enclose verbatim content [1].
Note: if curly braces charaters are used within content, they must be
balanced. This point has been checked against current repository and no
unbalanced curly braces has been spotted.
Fixes #24243
[1] https://wiki.tcl-lang.org/page/Tcl+Minimal+Escaping+Style
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* [py-colorama] added version 0.4.6
* [py-colorama] limited py-setuptools dependency
|
|
|
|
A LazyReference object is a reference to an attribute of a
lazily evaluated singleton. Its only purpose is to let developers
use shorter names to refer to such attribute.
This class does more harm than good, as it obfuscates the fact
that we are using the attribute of a global object. Also, it can easily
go out of sync with the singleton it refers to if, for instance, the
singleton is updated but the references are not.
This commit removes the LazyReference class entirely, and access
the attributes explicitly passing through the global value to which
they are attached.
|