Description
In Linux distributions it's common to have strict rules around sources, for example it's not uncommon for packages to be built in an environment without networking so that it can be proven that the list of sources is accurate for license compliance, source mirroring is complete, etc.
The use of external/fetch_sources.py
and external/vulkan-validationlayer/src/scripts/update_deps.py
makes this almost impossible, because it's very difficult to download the right sources in advance for mirroring/archiving, and then put them in the right place for a build that works in a non-networking environment.
Have you considered using git submodules as an alternative to these scripts? They're integrated into git, can automatically update when needed, and a single clone of this repository can fetch all of the dependencies at once.
Activity