add comment on why fetching package via git

This commit is contained in:
Gilbert Brietzke 2019-07-16 12:30:10 +02:00
parent aa2bd0f27b
commit c7a67a79b8

View File

@ -15,8 +15,12 @@ class Asagi(CMakePackage):
homepage = "https://github.com/TUM-I5/ASAGI" homepage = "https://github.com/TUM-I5/ASAGI"
git = "https://github.com/TUM-I5/ASAGI.git" 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', version('1.0.1', commit='f633f96931ae00805f599078d5a1a6a830881554',
submodules=True, preferred=True) submodules=True, preferred=True)
# fetching the package via git with submodules
# is preferred satisfy internal-dependencies
version('1.0', commit='f67250798b435c308b9a1e7516f916f7855534ec', version('1.0', commit='f67250798b435c308b9a1e7516f916f7855534ec',
submodules=True) submodules=True)