├── .ci └── test-project │ ├── README.md │ ├── packages │ ├── magictestlib.tar.gz │ ├── magictestlib │ │ └── package.py │ ├── magictestlib_cached │ │ └── package.py │ └── uberenv-magictestlib │ │ ├── package.py │ │ └── uberenv-magictestlib.tar.gz │ ├── repo.yaml │ ├── spack_configs │ ├── darwin │ │ └── spack.yaml │ ├── linux_ubuntu_22 │ │ └── spack.yaml │ └── toss_4_x86_64_ib │ │ └── spack.yaml │ └── uberenv_configs │ ├── dev-build.json │ ├── install.json │ └── uberenv-pkg.json ├── .github └── workflows │ ├── linux.yml │ └── macos.yml ├── .gitignore ├── .gitlab-ci.yml ├── .readthedocs.yml ├── LICENSE ├── Makefile ├── README.md ├── RELEASE-NOTES.md ├── deprecated_uberenv.py ├── docs ├── requirements.txt └── sphinx │ ├── conf.py │ └── index.rst ├── gen_spack_env_script.py └── uberenv.py /.ci/test-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.ci/test-project/README.md -------------------------------------------------------------------------------- /.ci/test-project/packages/magictestlib.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.ci/test-project/packages/magictestlib.tar.gz -------------------------------------------------------------------------------- /.ci/test-project/packages/magictestlib/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.ci/test-project/packages/magictestlib/package.py -------------------------------------------------------------------------------- /.ci/test-project/packages/magictestlib_cached/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.ci/test-project/packages/magictestlib_cached/package.py -------------------------------------------------------------------------------- /.ci/test-project/packages/uberenv-magictestlib/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.ci/test-project/packages/uberenv-magictestlib/package.py -------------------------------------------------------------------------------- /.ci/test-project/packages/uberenv-magictestlib/uberenv-magictestlib.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.ci/test-project/packages/uberenv-magictestlib/uberenv-magictestlib.tar.gz -------------------------------------------------------------------------------- /.ci/test-project/repo.yaml: -------------------------------------------------------------------------------- 1 | repo: 2 | namespace: magictestlib 3 | -------------------------------------------------------------------------------- /.ci/test-project/spack_configs/darwin/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.ci/test-project/spack_configs/darwin/spack.yaml -------------------------------------------------------------------------------- /.ci/test-project/spack_configs/linux_ubuntu_22/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.ci/test-project/spack_configs/linux_ubuntu_22/spack.yaml -------------------------------------------------------------------------------- /.ci/test-project/spack_configs/toss_4_x86_64_ib/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.ci/test-project/spack_configs/toss_4_x86_64_ib/spack.yaml -------------------------------------------------------------------------------- /.ci/test-project/uberenv_configs/dev-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.ci/test-project/uberenv_configs/dev-build.json -------------------------------------------------------------------------------- /.ci/test-project/uberenv_configs/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.ci/test-project/uberenv_configs/install.json -------------------------------------------------------------------------------- /.ci/test-project/uberenv_configs/uberenv-pkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.ci/test-project/uberenv_configs/uberenv-pkg.json -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/RELEASE-NOTES.md -------------------------------------------------------------------------------- /deprecated_uberenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/deprecated_uberenv.py -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/docs/sphinx/conf.py -------------------------------------------------------------------------------- /docs/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/docs/sphinx/index.rst -------------------------------------------------------------------------------- /gen_spack_env_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/gen_spack_env_script.py -------------------------------------------------------------------------------- /uberenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/uberenv/HEAD/uberenv.py --------------------------------------------------------------------------------