diff --git a/AUTHORS.md b/AUTHORS.md index 367dffd..0d22ece 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -11,4 +11,4 @@ - Dan Jonsson (idea for configuration file approach which preceded YAML solution) For a list of all the contributions, -see https://github.com/coderefinery/autocmake/contributors. +see https://github.com/dev-cafe/autocmake/contributors. diff --git a/README.md b/README.md index 34796b0..39b1ab2 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -[![Build Status](https://travis-ci.org/coderefinery/autocmake.svg?branch=master)](https://travis-ci.org/coderefinery/autocmake/builds) +[![Build Status](https://travis-ci.org/dev-cafe/autocmake.svg?branch=master)](https://travis-ci.org/dev-cafe/autocmake/builds) [![Documentation Status](https://readthedocs.org/projects/autocmake/badge/?version=latest)](http://autocmake.readthedocs.org) [![License](https://img.shields.io/badge/license-%20BSD--3-blue.svg)](../master/LICENSE) -![alt text](https://github.com/coderefinery/autocmake/raw/master/img/autocmake.png "Autocmake") +![alt text](https://github.com/dev-cafe/autocmake/raw/master/img/autocmake.png "Autocmake") A CMake plugin composer. Licensed under [BSD-3](../master/LICENSE). diff --git a/doc/contributors/doc.rst b/doc/contributors/doc.rst index 36d85cc..298df99 100644 --- a/doc/contributors/doc.rst +++ b/doc/contributors/doc.rst @@ -10,11 +10,11 @@ This documentation is refreshed upon each push to the central repository. The module reference documentation is generated from the module sources using ``#.rst:`` tags (compare for instance http://autocmake.readthedocs.io/en/latest/module-reference.html#cc-cmake with -https://github.com/coderefinery/autocmake/blob/master/modules/cc.cmake). +https://github.com/dev-cafe/autocmake/blob/master/modules/cc.cmake). Please note that the lines following ``# autocmake.yml configuration::`` are understood by the ``update.py`` script to infer autocmake.yml code from the documentation. As an example consider -https://github.com/coderefinery/autocmake/blob/master/modules/cc.cmake#L20-L26. +https://github.com/dev-cafe/autocmake/blob/master/modules/cc.cmake#L20-L26. Here, ``update.py`` will infer the configurations for ``docopt``, ``export``, and ``define``. diff --git a/doc/contributors/testing.rst b/doc/contributors/testing.rst index 99345c3..b2b3fc6 100644 --- a/doc/contributors/testing.rst +++ b/doc/contributors/testing.rst @@ -5,7 +5,7 @@ Testing Autocmake You will need to install `pytest `__. -Check also the `Travis `__ +Check also the `Travis `__ build and test recipe for other requirements. Your contributions and changes should preserve the test set and be PEP8 conform. @@ -23,5 +23,5 @@ You can also select individual tests, for example those with ``fc_blas`` string For more options, see the ``py.test`` flags. This test set is run upon each push to the central repository. -See also the `Travis `__ +See also the `Travis `__ build and test history. diff --git a/doc/developers/bootstrap.rst b/doc/developers/bootstrap.rst index 051535b..b089b29 100644 --- a/doc/developers/bootstrap.rst +++ b/doc/developers/bootstrap.rst @@ -12,7 +12,7 @@ infrastructure files which will be needed to build the project:: $ mkdir cmake # does not have to be called "cmake" - take the name you prefer $ cd cmake - $ wget https://github.com/coderefinery/autocmake/raw/master/update.py + $ wget https://github.com/dev-cafe/autocmake/raw/master/update.py $ virtualenv venv $ source venv/bin/activate $ pip install pyyaml @@ -20,7 +20,7 @@ infrastructure files which will be needed to build the project:: On the MS Windows system, you can use the PowerShell wget-replacement:: - $ Invoke-WebRequest https://github.com/coderefinery/autocmake/raw/master/update.py -OutFile update.py + $ Invoke-WebRequest https://github.com/dev-cafe/autocmake/raw/master/update.py -OutFile update.py This creates (or updates) the following files (an existing ``autocmake.yml`` is not overwritten by the script):: diff --git a/doc/developers/configuration.rst b/doc/developers/configuration.rst index ad67fff..d59e8c4 100644 --- a/doc/developers/configuration.rst +++ b/doc/developers/configuration.rst @@ -19,7 +19,7 @@ below:: - C - CXX - url_root: https://github.com/coderefinery/autocmake/raw/master/ + url_root: https://github.com/dev-cafe/autocmake/raw/master/ modules: - compilers: @@ -80,7 +80,7 @@ As a minimal example we take an ``autocmake.yml`` which only contains:: If you don't have the ``update.py`` script yet, you need to fetch it from the web:: - $ wget https://github.com/coderefinery/autocmake/raw/master/update.py + $ wget https://github.com/dev-cafe/autocmake/raw/master/update.py First we make sure that the ``update.py`` script is up-to-date and that it has access to all libraries it needs:: @@ -181,7 +181,7 @@ Fetching files without including them in CMakeLists.txt Sometimes you want to fetch a file without including it in ``CMakeLists.txt``. This can be done with the ``fetch`` option. This is for instance done by the ``git_info.cmake`` module (see -https://github.com/coderefinery/autocmake/blob/master/modules/git_info/git_info.cmake#L10-L13). +https://github.com/dev-cafe/autocmake/blob/master/modules/git_info/git_info.cmake#L10-L13). If ``fetch`` is invoked in ``autocmake.yml``, then the fetched file is placed under ``downloaded/``. If ``fetch`` is invoked from within a CMake module @@ -235,6 +235,6 @@ for many core modules which come with own options once you have sourced them. The lines following ``# autocmake.yml configuration::`` are understood by the ``update.py`` script to infer ``autocmake.yml`` code from the documentation. As an example consider -https://github.com/coderefinery/autocmake/blob/master/modules/cc.cmake#L20-L26. +https://github.com/dev-cafe/autocmake/blob/master/modules/cc.cmake#L20-L26. Here, ``update.py`` will infer the configurations for ``docopt``, ``export``, and ``define``. diff --git a/doc/developers/customizing-modules.rst b/doc/developers/customizing-modules.rst index 5122396..a338d2f 100644 --- a/doc/developers/customizing-modules.rst +++ b/doc/developers/customizing-modules.rst @@ -48,10 +48,10 @@ settings imported by a sourced module. As an example consider the Boost module which defines and uses interpolation variables ``major``, ``minor``, ``patch``, and ``components``, see -https://github.com/coderefinery/autocmake/blob/master/modules/boost/boost.cmake#L52-L55. +https://github.com/dev-cafe/autocmake/blob/master/modules/boost/boost.cmake#L52-L55. The recommended way to customize these is in ``autocmake.yml``, e.g.: -https://github.com/coderefinery/autocmake/blob/master/test/boost_libs/cmake/autocmake.yml#L12-L17. +https://github.com/dev-cafe/autocmake/blob/master/test/boost_libs/cmake/autocmake.yml#L12-L17. Create own CMake modules @@ -65,5 +65,5 @@ Contribute customizations to the "standard library" If you think that your customization will be useful for other users as well, you may consider contributing the changes directly to -https://github.com/coderefinery/autocmake/. We very much encourage such +https://github.com/dev-cafe/autocmake/. We very much encourage such contributions. But we also strive for generality and portability. diff --git a/doc/developers/example.rst b/doc/developers/example.rst index 4d6f21d..79c9c87 100644 --- a/doc/developers/example.rst +++ b/doc/developers/example.rst @@ -25,7 +25,7 @@ Now we create ``cmake/`` and fetch ``update.py``:: $ mkdir cmake # does not have to be called "cmake" - take the name you prefer $ cd cmake - $ wget https://github.com/coderefinery/autocmake/raw/master/update.py + $ wget https://github.com/dev-cafe/autocmake/raw/master/update.py $ python update.py --self Now from top-level our file tree looks like this:: @@ -60,7 +60,7 @@ Now we edit ``cmake/autocmake.yml`` to look like this:: - Fortran - C - url_root: https://github.com/coderefinery/autocmake/raw/master/ + url_root: https://github.com/dev-cafe/autocmake/raw/master/ modules: - compilers: diff --git a/doc/developers/faq.rst b/doc/developers/faq.rst index de123dd..925fa4d 100644 --- a/doc/developers/faq.rst +++ b/doc/developers/faq.rst @@ -138,7 +138,7 @@ can include the latter in ``autocmake.yml`` using:: - my_sources: - source: - - https://github.com/coderefinery/autocmake/raw/master/modules/src.cmake + - https://github.com/dev-cafe/autocmake/raw/master/modules/src.cmake If you really do not like to do it this way, you can describe your sources and targets in a custom module in a local file and include it like this:: diff --git a/doc/developers/interpolation.rst b/doc/developers/interpolation.rst index 1a2dff8..9f85966 100644 --- a/doc/developers/interpolation.rst +++ b/doc/developers/interpolation.rst @@ -8,7 +8,7 @@ In a custom extension to the YAML specification you can define and reuse variables like this (observe how we interpolate ``url_root``, ``major``, ``minor``, ``patch``, and ``components`` in this example):: - url_root: https://github.com/coderefinery/autocmake/raw/master/ + url_root: https://github.com/dev-cafe/autocmake/raw/master/ major: 1 minor: 48 patch: 0 diff --git a/doc/developers/updating-modules.rst b/doc/developers/updating-modules.rst index 834aeb7..fa184e5 100644 --- a/doc/developers/updating-modules.rst +++ b/doc/developers/updating-modules.rst @@ -21,10 +21,10 @@ rather fetch an older version, for example with the hash ``abcd123``. To achieve this, instead of:: - my_feature: - - source: https://github.com/coderefinery/autocmake/raw/master/modules/foo.cmake + - source: https://github.com/dev-cafe/autocmake/raw/master/modules/foo.cmake pin the version to ``abcd123`` (you do not need to specify the full Git hash, a unique beginning will do):: - my_feature: - - source: https://github.com/coderefinery/autocmake/raw/abcd123/modules/foo.cmake + - source: https://github.com/dev-cafe/autocmake/raw/abcd123/modules/foo.cmake diff --git a/doc/extract_rst.py b/doc/extract_rst.py index 436a168..6dc8c74 100644 --- a/doc/extract_rst.py +++ b/doc/extract_rst.py @@ -73,7 +73,7 @@ def main(): if s_out != '': output.append('\n\n%s' % file_name) output.append('-'*len(file_name)) - output.append('`[Source code] `__' % full_file_name) + output.append('`[Source code] `__' % full_file_name) output.append(s_out) with open(os.path.join(THIS_DIR, 'module-reference.rst'), 'w') as f: diff --git a/modules/attach-license-header.py b/modules/attach-license-header.py index 43e12b3..ab3adf3 100644 --- a/modules/attach-license-header.py +++ b/modules/attach-license-header.py @@ -1,7 +1,7 @@ import glob -license_text = '''# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +license_text = '''# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE ''' diff --git a/modules/boost/boost.cmake b/modules/boost/boost.cmake index cbfabfd..e7ada50 100644 --- a/modules/boost/boost.cmake +++ b/modules/boost/boost.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # @@ -15,7 +15,7 @@ # - minor: 59 # - patch: 0 # - components: "chrono;timer;system" -# - source: "https://github.com/coderefinery/autocmake/raw/master/modules/boost/boost.cmake" +# - source: "https://github.com/dev-cafe/autocmake/raw/master/modules/boost/boost.cmake" # # Cross-dependencies between required components are not checked for. # For example, Boost.Timer depends on Boost.Chrono and Boost.System thus you @@ -51,7 +51,7 @@ # # autocmake.yml configuration:: # -# url_root: https://github.com/coderefinery/autocmake/raw/master/ +# url_root: https://github.com/dev-cafe/autocmake/raw/master/ # major: 1 # minor: 48 # patch: 0 diff --git a/modules/boost/boost_build.cmake b/modules/boost/boost_build.cmake index c4b4c7e..bb3ef9a 100644 --- a/modules/boost/boost_build.cmake +++ b/modules/boost/boost_build.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE # Build Boost # This is not Windows-friendly! diff --git a/modules/boost/boost_cleanup.cmake b/modules/boost/boost_cleanup.cmake index bbe878f..ed165a7 100644 --- a/modules/boost/boost_cleanup.cmake +++ b/modules/boost/boost_cleanup.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE # Clean-up add_custom_command( diff --git a/modules/boost/boost_configure.cmake b/modules/boost/boost_configure.cmake index fdbe01a..7f3a2cc 100644 --- a/modules/boost/boost_configure.cmake +++ b/modules/boost/boost_configure.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE # Run bootstrap.sh to configure the build. We will install in ${PROJECT_BINARY_DIR}/boost # This is not Windows-friendly! diff --git a/modules/boost/boost_headers.cmake b/modules/boost/boost_headers.cmake index a8fad94..d33c351 100644 --- a/modules/boost/boost_headers.cmake +++ b/modules/boost/boost_headers.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE # Install Boost add_custom_command( diff --git a/modules/boost/boost_install.cmake b/modules/boost/boost_install.cmake index cfbb91c..1788321 100644 --- a/modules/boost/boost_install.cmake +++ b/modules/boost/boost_install.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE # Install Boost # This is not Windows-friendly! diff --git a/modules/boost/boost_unpack.cmake b/modules/boost/boost_unpack.cmake index 4bd3169..9ccd600 100644 --- a/modules/boost/boost_unpack.cmake +++ b/modules/boost/boost_unpack.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE # Unpack Boost add_custom_command( diff --git a/modules/boost/boost_userconfig.cmake b/modules/boost/boost_userconfig.cmake index 12ca4ff..875dcd5 100644 --- a/modules/boost/boost_userconfig.cmake +++ b/modules/boost/boost_userconfig.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE # To get boost to compile MPI we need to append "using mpi ;" to the end of the # user-config.jam file. MPI_SENT will be the command we append diff --git a/modules/cc.cmake b/modules/cc.cmake index ec1248c..9f4bff4 100644 --- a/modules/cc.cmake +++ b/modules/cc.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/ccache.cmake b/modules/ccache.cmake index 4a7dcc4..8177e1a 100644 --- a/modules/ccache.cmake +++ b/modules/ccache.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/code_coverage.cmake b/modules/code_coverage.cmake index 90406e2..d071b17 100644 --- a/modules/code_coverage.cmake +++ b/modules/code_coverage.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/custom_color_messages.cmake b/modules/custom_color_messages.cmake index fda4de5..8d68693 100644 --- a/modules/custom_color_messages.cmake +++ b/modules/custom_color_messages.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/cxx.cmake b/modules/cxx.cmake index 7ddc936..a7b7f94 100644 --- a/modules/cxx.cmake +++ b/modules/cxx.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/default_build_paths.cmake b/modules/default_build_paths.cmake index 0f4e7a2..9000882 100644 --- a/modules/default_build_paths.cmake +++ b/modules/default_build_paths.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/definitions.cmake b/modules/definitions.cmake index 6f38e2b..669c965 100644 --- a/modules/definitions.cmake +++ b/modules/definitions.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/export_header.cmake b/modules/export_header.cmake index 9072554..1f7695f 100644 --- a/modules/export_header.cmake +++ b/modules/export_header.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/fc.cmake b/modules/fc.cmake index 68a78bf..29149a4 100644 --- a/modules/fc.cmake +++ b/modules/fc.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/fc_optional.cmake b/modules/fc_optional.cmake index e7b8aa9..4786719 100644 --- a/modules/fc_optional.cmake +++ b/modules/fc_optional.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/find/find_include_files.cmake b/modules/find/find_include_files.cmake index 629df49..78c1260 100644 --- a/modules/find/find_include_files.cmake +++ b/modules/find/find_include_files.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE include(CheckIncludeFile) diff --git a/modules/find/find_libraries.cmake b/modules/find/find_libraries.cmake index 1d9c980..d4b202b 100644 --- a/modules/find/find_libraries.cmake +++ b/modules/find/find_libraries.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE include(CheckFunctionExists) diff --git a/modules/git_info/git_info.cmake b/modules/git_info/git_info.cmake index 6fa3f96..c70a494 100644 --- a/modules/git_info/git_info.cmake +++ b/modules/git_info/git_info.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # @@ -10,7 +10,7 @@ # # autocmake.yml configuration:: # -# url_root: https://github.com/coderefinery/autocmake/raw/master/ +# url_root: https://github.com/dev-cafe/autocmake/raw/master/ # fetch: # - "%(url_root)modules/git_info/git_info.h.in" diff --git a/modules/googletest.cmake b/modules/googletest.cmake index ab167b0..2239713 100644 --- a/modules/googletest.cmake +++ b/modules/googletest.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/int64.cmake b/modules/int64.cmake index 38b2aae..2eda08d 100644 --- a/modules/int64.cmake +++ b/modules/int64.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/math/accelerate.cmake b/modules/math/accelerate.cmake index e6daaa4..a195b7f 100644 --- a/modules/math/accelerate.cmake +++ b/modules/math/accelerate.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # @@ -13,7 +13,7 @@ # # autocmake.yml configuration:: # -# url_root: https://github.com/coderefinery/autocmake/raw/master/ +# url_root: https://github.com/dev-cafe/autocmake/raw/master/ # docopt: "--accelerate Find and link to ACCELERATE [default: False]." # define: "'-DENABLE_ACCELERATE={0}'.format(arguments['--accelerate'])" # fetch: diff --git a/modules/math/acml.cmake b/modules/math/acml.cmake index 2efabcb..b2c7361 100644 --- a/modules/math/acml.cmake +++ b/modules/math/acml.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/math/atlas.cmake b/modules/math/atlas.cmake index 1e13b06..9a3aebf 100644 --- a/modules/math/atlas.cmake +++ b/modules/math/atlas.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/math/blas.cmake b/modules/math/blas.cmake index 7ca3280..1f15703 100644 --- a/modules/math/blas.cmake +++ b/modules/math/blas.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/math/cblas.cmake b/modules/math/cblas.cmake index 16c4382..91bd0e7 100644 --- a/modules/math/cblas.cmake +++ b/modules/math/cblas.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # @@ -13,7 +13,7 @@ # # autocmake.yml configuration:: # -# url_root: https://github.com/coderefinery/autocmake/raw/master/ +# url_root: https://github.com/dev-cafe/autocmake/raw/master/ # docopt: "--cblas Find and link to CBLAS [default: False]." # define: "'-DENABLE_CBLAS={0}'.format(arguments['--cblas'])" # fetch: diff --git a/modules/math/goto.cmake b/modules/math/goto.cmake index 019c918..ec2db19 100644 --- a/modules/math/goto.cmake +++ b/modules/math/goto.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/math/lapack.cmake b/modules/math/lapack.cmake index 6bb376c..21de6e1 100644 --- a/modules/math/lapack.cmake +++ b/modules/math/lapack.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/math/lapacke.cmake b/modules/math/lapacke.cmake index d219089..d5320c4 100644 --- a/modules/math/lapacke.cmake +++ b/modules/math/lapacke.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # @@ -13,7 +13,7 @@ # # autocmake.yml configuration:: # -# url_root: https://github.com/coderefinery/autocmake/raw/master/ +# url_root: https://github.com/dev-cafe/autocmake/raw/master/ # docopt: "--lapacke Find and link to LAPACKE [default: False]." # define: "'-DENABLE_LAPACKE={0}'.format(arguments['--lapacke'])" # fetch: diff --git a/modules/math_libs.cmake b/modules/math_libs.cmake index 74e1062..19fd81e 100644 --- a/modules/math_libs.cmake +++ b/modules/math_libs.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/mpi.cmake b/modules/mpi.cmake index ec66ec9..433ce4a 100644 --- a/modules/mpi.cmake +++ b/modules/mpi.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/omp.cmake b/modules/omp.cmake index f63d8de..660fbe5 100644 --- a/modules/omp.cmake +++ b/modules/omp.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/profile.cmake b/modules/profile.cmake index dfad704..5fd06ab 100644 --- a/modules/profile.cmake +++ b/modules/profile.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/python_interpreter.cmake b/modules/python_interpreter.cmake index cab4781..065c9e3 100644 --- a/modules/python_interpreter.cmake +++ b/modules/python_interpreter.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/python_libs.cmake b/modules/python_libs.cmake index 9488be6..3984928 100644 --- a/modules/python_libs.cmake +++ b/modules/python_libs.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/safeguards.cmake b/modules/safeguards.cmake index 1aca842..ff5e648 100644 --- a/modules/safeguards.cmake +++ b/modules/safeguards.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/save_flags.cmake b/modules/save_flags.cmake index f57c852..58cf315 100644 --- a/modules/save_flags.cmake +++ b/modules/save_flags.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/src.cmake b/modules/src.cmake index 7ff22da..5e13017 100644 --- a/modules/src.cmake +++ b/modules/src.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/modules/version.cmake b/modules/version.cmake index 643d1e9..ea4b1a0 100644 --- a/modules/version.cmake +++ b/modules/version.cmake @@ -1,5 +1,5 @@ -# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md -# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE +# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md +# licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE #.rst: # diff --git a/update.py b/update.py index 66ad713..ce64f06 100644 --- a/update.py +++ b/update.py @@ -9,7 +9,7 @@ if sys.version_info[0] == 2 and sys.version_info[1] < 7: sys.exit(-1) -AUTOCMAKE_GITHUB_URL = 'https://github.com/coderefinery/autocmake/raw/master/' +AUTOCMAKE_GITHUB_URL = 'https://github.com/dev-cafe/autocmake/raw/master/' def licensing_info():