Merge branch 'master' into 267-toolchain-for-ippl-opal-with-gcc-12-3-0

This commit is contained in:
2023-11-14 16:22:50 +01:00
20 changed files with 164 additions and 26 deletions

View File

@@ -4,3 +4,4 @@ ANSYS/2021R1 stable
ANSYS/2021R2 stable
ANSYS/2022R1 stable
ANSYS/2022R2 unstable
ANSYS/2023R2 unstable

View File

@@ -32,6 +32,8 @@ prepend-path PATH $PREFIX/$version/polyflow/bin
prepend-path PATH $PREFIX/$version/RSM/bin
prepend-path PATH $PREFIX/$version/SystemCoupling/bin
prepend-path PATH $PREFIX/$version/TurboGrid/bin
# 20.09.2023 add lumerical bin
prepend-path PATH $PREFIX/$version/lumerical/$version/bin
# 07.04.2020
prepend-path PATH $PREFIX/$version/Electronics/Linux64
prepend-path PATH $PREFIX/$version/Framework/bin/Linux64
@@ -50,5 +52,8 @@ prepend-path LD_LIBRARY_PATH $PREFIX/$version/CFX/tools/qwt-6.1.2/linx64/lib
prepend-path LD_LIBRARY_PATH $PREFIX/$version/CFX/tools/qwtpolar-1.1.1/linx64/lib
prepend-path LD_LIBRARY_PATH $PREFIX/$version/CFX/tools/xerces-3.2.2/linx64/lib
# Lumerical
prepend-path LD_LIBRARY_PATH $PREFIX/$version/lumerical/$version/lib/
# RSM
prepend-path PATH $PREFIX/$version/RSM/Config/tools/linux

31
Tools/redis/build Executable file
View File

@@ -0,0 +1,31 @@
#!/usr/bin/env modbuild
pbuild::add_to_group 'Tools'
pbuild::set_download_url \
"https://github.com/redis/redis/archive/${V_PKG}.tar.gz"
pbuild::compile_in_sourcetree
pbuild::install_docfiles \
00-RELEASENOTES \
BUGS \
CODE_OF_CONDUCT.md \
CONTRIBUTING.md \
COPYING \
INSTALL \
MANIFESTO \
README.md \
SECURITY.md \
TLS.md
pbuild::configure() { :; }
pbuild::install() {
make PREFIX="${PREFIX}" install
}
# Local Variables:
# mode: sh
# sh-basic-offset: 8
# tab-width: 8
# End:

View File

@@ -0,0 +1,2 @@
redis/7.0.12 stable

16
Tools/redis/modulefile Normal file
View File

@@ -0,0 +1,16 @@
#%Pmodule
module-whatis "open source, in-memory data store"
module-url "https://redis.io"
module-license "GNUPLOT_DIR/share/doc/redis/COPYING"
module-maintainer "Achim Gsell <achim.gsell@psi.ch>"
module-help "
Redis is an open source (BSD licensed), in-memory data structure store used
as a database, cache, message broker, and streaming engine. Redis provides
data structures such as strings, hashes, lists, sets, sorted sets with range
queries, bitmaps, hyperloglogs, geospatial indexes, and streams. Redis has
built-in replication, Lua scripting, LRU eviction, transactions, and different
levels of on-disk persistence, and provides high availability via Redis
Sentinel and automatic partitioning with Redis Cluster.
"