diff options
author | David Robillard <d@drobilla.net> | 2020-04-02 20:51:37 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-04-02 20:53:37 +0200 |
commit | 9c750a5fd75b7b63032f8369cf63fbfdcdf0157f (patch) | |
tree | 7f4c65c28e6ba92be8bc7c6a23254d74eb97787f | |
parent | ac77923e2233547122343c9dcdb89be81bde896b (diff) | |
download | pugl-9c750a5fd75b7b63032f8369cf63fbfdcdf0157f.tar.gz pugl-9c750a5fd75b7b63032f8369cf63fbfdcdf0157f.tar.bz2 pugl-9c750a5fd75b7b63032f8369cf63fbfdcdf0157f.zip |
Switch to a submodule for autowaf and update to waf 2.0.19
-rw-r--r-- | .gitlab-ci.yml | 3 | ||||
-rw-r--r-- | .gitmodules | 3 | ||||
-rwxr-xr-x | waf | 27 | ||||
m--------- | waflib | 0 |
4 files changed, 33 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d1d166d..29dc8be 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,9 @@ stages: - build - deploy +variables: + GIT_SUBMODULE_STRATEGY: normal + .build_template: &build_definition stage: build diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..cc8b569 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "waflib"] + path = waflib + url = ../../drobilla/autowaf.git @@ -0,0 +1,27 @@ +#!/usr/bin/env python + +# Minimal waf script for projects that include waflib directly + +import sys +import inspect +import os + +try: + from waflib import Context, Scripting +except Exception as e: + sys.stderr.write('error: Failed to import waf (%s)\n' % e) + if os.path.exists('.git'): + sys.stderr.write("Are submodules up to date? " + "Try 'git submodule update --init --recursive'\n") + + sys.exit(1) + + +def main(): + script_path = os.path.abspath(inspect.getfile(inspect.getmodule(main))) + project_path = os.path.dirname(os.path.realpath(script_path)) + Scripting.waf_entry_point(os.getcwd(), Context.WAFVERSION, project_path) + + +if __name__ == '__main__': + main() diff --git a/waflib b/waflib new file mode 160000 +Subproject 569d532e011bcad1ac308391e6d00b1b28789c1 |