From 12b9f9aed11c4fd43bc535e766637182676a752b Mon Sep 17 00:00:00 2001 From: Matt Selsky Date: Sun, 8 Jul 2018 14:53:13 -0400 Subject: [PATCH] Update GitHub URLs for GitLab equivalents --- DEVEL | 4 ++-- README.md | 4 ++-- docs/sphinx/_templates/indexcontent.html | 2 +- docs/sphinx/tools.rst | 2 +- docs/sphinx/tutorial.rst | 2 +- waflib/extras/use_config.py | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/DEVEL b/DEVEL index fa7dda6d..0ea19fa6 100644 --- a/DEVEL +++ b/DEVEL @@ -1,4 +1,4 @@ -Waf 2.0 is on https://github.com/waf-project/waf +Waf 2.0 is on https://gitlab.com/ita1024/waf ------------------------------------------------ waflib the core library @@ -30,7 +30,7 @@ General coding guidelines Pull requests ------------- -See https://github.com/waf-project/waf +See https://gitlab.com/ita1024/waf When implementing complex features, please add examples in the showcase folder demos/ for modules under waflib/Tools, under tests/ for platform-independent unit tests, diff --git a/README.md b/README.md index 84742b87..a7d9224a 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ Waf is a Python-based framework for configuring, compiling and installing applic Waf is used in particular by innovative companies such as [Avalanche Studios](http://www.avalanchestudios.se) and by open-source projects such as [RTEMS](https://www.rtems.org/). Learn more about Waf by reading [The Waf Book](https://waf.io/book/). -For researchers and build system writers, Waf also provides a framework for creating [custom build systems](https://github.com/waf-project/waf/tree/master/build_system_kit) and [package distribution systems](https://github.com/waf-project/waf/tree/master/playground/distnet/README.rst). +For researchers and build system writers, Waf also provides a framework for creating [custom build systems](https://gitlab.com/ita1024/waf/tree/master/build_system_kit) and [package distribution systems](https://gitlab.com/ita1024/waf/blob/master/playground/distnet/README.rst). -Download the project from our page on [waf.io](https://waf.io/) or from a mirror on [freehackers.org](http://www.freehackers.org/~tnagy/release/), consult the [manual](https://waf.io/book/), the [API documentation](https://waf.io/apidocs/) and the [showcases](https://github.com/waf-project/waf/tree/master/demos) and [experiments](https://github.com/waf-project/waf/tree/master/playground). +Download the project from our page on [waf.io](https://waf.io/) or from a mirror on [freehackers.org](http://www.freehackers.org/~tnagy/release/), consult the [manual](https://waf.io/book/), the [API documentation](https://waf.io/apidocs/) and the [showcases](https://gitlab.com/ita1024/waf/tree/master/demos) and [experiments](https://gitlab.com/ita1024/waf/tree/master/playground). ## HOW TO CREATE THE WAF SCRIPT diff --git a/docs/sphinx/_templates/indexcontent.html b/docs/sphinx/_templates/indexcontent.html index 313b9006..0fcb0178 100644 --- a/docs/sphinx/_templates/indexcontent.html +++ b/docs/sphinx/_templates/indexcontent.html @@ -49,7 +49,7 @@ - diff --git a/docs/sphinx/tools.rst b/docs/sphinx/tools.rst index 04ba52db..6f3dc29d 100644 --- a/docs/sphinx/tools.rst +++ b/docs/sphinx/tools.rst @@ -132,7 +132,7 @@ The next tools provide support for code generators used in C and C++ projects. Other compilers and tools ------------------------- -.. _extras: https://github.com/waf-project/waf/tree/master/waflib/extras +.. _extras: https://gitlab.com/ita1024/waf/tree/master/waflib/extras The following tools provide support for specific compilers or configurations. More tools are present in the extras_ folder, although they are not documented and as stable as the default tools. diff --git a/docs/sphinx/tutorial.rst b/docs/sphinx/tutorial.rst index d7544e7a..23d2f9dc 100644 --- a/docs/sphinx/tutorial.rst +++ b/docs/sphinx/tutorial.rst @@ -165,7 +165,7 @@ The declaration can be made more user-friendly by binding new methods to the con bld.enterprise_program(source='main.c', target='app') The support code may be turned into a Waf tool by moving it to a separate file. -To ease the deployment, the new Waf tool can even be added to the waf file (see https://github.com/waf-project/waf/blob/master/README#L10). +To ease the deployment, the new Waf tool can even be added to the waf file (see https://gitlab.com/ita1024/waf/blob/master/README.md#L20). Conclusion ---------- diff --git a/waflib/extras/use_config.py b/waflib/extras/use_config.py index 71df793a..ef5129f2 100644 --- a/waflib/extras/use_config.py +++ b/waflib/extras/use_config.py @@ -52,7 +52,7 @@ import os local_repo = '' """Local repository containing additional Waf tools (plugins)""" -remote_repo = 'https://raw.githubusercontent.com/waf-project/waf/master/' +remote_repo = 'https://gitlab.com/ita1024/waf/raw/master/' """ Remote directory containing downloadable waf tools. The missing tools can be downloaded by using::