From c7a67a79b821c213817e4f544f2a259b741fc9fc Mon Sep 17 00:00:00 2001 From: Gilbert Brietzke Date: Tue, 16 Jul 2019 12:30:10 +0200 Subject: [PATCH] add comment on why fetching package via git --- var/spack/repos/builtin/packages/asagi/package.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/var/spack/repos/builtin/packages/asagi/package.py b/var/spack/repos/builtin/packages/asagi/package.py index 9e1c709ec40..b725b7f6429 100644 --- a/var/spack/repos/builtin/packages/asagi/package.py +++ b/var/spack/repos/builtin/packages/asagi/package.py @@ -15,8 +15,12 @@ class Asagi(CMakePackage): homepage = "https://github.com/TUM-I5/ASAGI" git = "https://github.com/TUM-I5/ASAGI.git" + # fetching the package via git with submodules + # is preferred satisfy internal-dependencies version('1.0.1', commit='f633f96931ae00805f599078d5a1a6a830881554', submodules=True, preferred=True) + # fetching the package via git with submodules + # is preferred satisfy internal-dependencies version('1.0', commit='f67250798b435c308b9a1e7516f916f7855534ec', submodules=True)