Toolchain: Download ELPA and PLUMED from cp2k.org (#5583)

This commit is contained in:
SY Wang 2026-07-12 23:35:05 +08:00 committed by GitHub
parent c835e6b7b6
commit d4bfb39614
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 6 deletions

View file

@ -41,9 +41,7 @@ case "${with_elpa}" in
echo "elpa-${elpa_ver} is already installed, skipping it."
else
require_env MATH_LIBS
# retrieve_package "${elpa_sha256}" "elpa-${elpa_ver}.tar.gz"
download_pkg_from_urlpath "${elpa_sha256}" "elpa-${elpa_ver}.tar.gz" \
https://elpa.mpcdf.mpg.de/software/tarball-archive/Releases/${elpa_ver}
retrieve_package "${elpa_sha256}" "elpa-${elpa_ver}.tar.gz"
echo "Installing from scratch into ${pkg_install_dir}"
[ -d elpa-${elpa_ver} ] && rm -rf elpa-${elpa_ver}
tar -xzf elpa-${elpa_ver}.tar.gz

View file

@ -29,9 +29,7 @@ case "$with_plumed" in
if verify_checksums "${install_lock_file}"; then
echo "plumed-${plumed_ver} is already installed, skipping it."
else
# retrieve_package "${plumed_sha256}" "${plumed_pkg}"
download_pkg_from_urlpath "${plumed_sha256}" "${plumed_pkg}" \
https://github.com/plumed/plumed2/releases/download/v${plumed_ver}
retrieve_package "${plumed_sha256}" "${plumed_pkg}"
echo "Installing from scratch into ${pkg_install_dir}"
[ -d plumed-${plumed_ver} ] && rm -rf plumed-${plumed_ver}
tar -xzf ${plumed_pkg}