#!/bin/bash if [ -z "${LAMMPS_CACHING_DIR}" ] then export LAMMPS_CACHING_DIR=$HOME/.cache/lammps echo "environment variable LAMMPS_CACHING_DIR not set" echo "Using default $LAMMPS_CACHING_DIR as cache directory..." else echo "Using $LAMMPS_CACHING_DIR as cache directory..." fi if test -n "$BASH" ; then script=$BASH_SOURCE else script=$0 fi SCRIPT_DIR="$(dirname "$(realpath "$script")")" CACHE_SCRIPTS_DIR="${SCRIPT_DIR}/scripts" export GITHUB_PROXY_DIR="$LAMMPS_CACHING_DIR/github" export LOGGING_DIR="$LAMMPS_CACHING_DIR/logs" export PIP_CACHE_DIR="$LAMMPS_CACHING_DIR/pip" export HTTP_CACHE_DIR="$LAMMPS_CACHING_DIR/http" if [ ! -d "${GITHUB_PROXY_DIR}" ] then echo "GitHub proxy directory missing" return fi if [ ! -d "${LOGGING_DIR}" ] then echo "Logging directory missing" return fi if [ ! -d "${PIP_CACHE_DIR}" ] then echo "pip cache directory missing" return fi if [ ! -d "${HTTP_CACHE_DIR}" ] then echo "HTTP cache directory missing" return fi echo "##############################################################################" echo "Setting up LAMMPS offline compilation environment" echo "##############################################################################" source "${CACHE_SCRIPTS_DIR}/use_git_cache.sh" source "${CACHE_SCRIPTS_DIR}/use_pip_cache.sh" source "${CACHE_SCRIPTS_DIR}/use_http_cache.sh" echo "##############################################################################" echo echo "Prepend the following CMake options to your builds:" echo echo "-D LAMMPS_DOWNLOADS_URL=\${HTTP_CACHE_URL} -C \"\${LAMMPS_HTTP_CACHE_CONFIG}\"" echo echo "or" echo echo "-D LAMMPS_DOWNLOADS_URL=${HTTP_CACHE_URL} -C \"${LAMMPS_HTTP_CACHE_CONFIG}\"" echo echo "pip installations and git clones (from https://) are automatically redirected" echo echo Use 'deactivate_caches' to revert changes echo echo "##############################################################################" function deactivate_caches { deactivate_http_cache deactivate_pip_cache deactivate_git_cache unset -f deactivate_http_cache unset -f deactivate_pip_cache unset -f deactivate_git_cache }