s/coderefinery/dev-cafe/; closes #244

This commit is contained in:
Radovan Bast 2018-06-20 17:10:31 +02:00
parent ebf3264642
commit e12b47e287
55 changed files with 114 additions and 114 deletions

View File

@ -11,4 +11,4 @@
- Dan Jonsson (idea for configuration file approach which preceded YAML solution) - Dan Jonsson (idea for configuration file approach which preceded YAML solution)
For a list of all the contributions, For a list of all the contributions,
see https://github.com/coderefinery/autocmake/contributors. see https://github.com/dev-cafe/autocmake/contributors.

View File

@ -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) [![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) [![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. A CMake plugin composer.
Licensed under [BSD-3](../master/LICENSE). Licensed under [BSD-3](../master/LICENSE).

View File

@ -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 The module reference documentation is generated from the module sources using
``#.rst:`` tags (compare for instance ``#.rst:`` tags (compare for instance
http://autocmake.readthedocs.io/en/latest/module-reference.html#cc-cmake with 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 Please note that the lines following ``# autocmake.yml configuration::`` are
understood by the ``update.py`` script to infer autocmake.yml code from the understood by the ``update.py`` script to infer autocmake.yml code from the
documentation. As an example consider 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``, Here, ``update.py`` will infer the configurations for ``docopt``, ``export``,
and ``define``. and ``define``.

View File

@ -5,7 +5,7 @@ Testing Autocmake
You will need to install `pytest <http://pytest.org/>`__. You will need to install `pytest <http://pytest.org/>`__.
Check also the `Travis <https://github.com/coderefinery/autocmake/blob/master/.travis.yml>`__ Check also the `Travis <https://github.com/dev-cafe/autocmake/blob/master/.travis.yml>`__
build and test recipe for other requirements. build and test recipe for other requirements.
Your contributions and changes should preserve the test set and be PEP8 conform. 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. For more options, see the ``py.test`` flags.
This test set is run upon each push to the central repository. This test set is run upon each push to the central repository.
See also the `Travis <https://travis-ci.org/coderefinery/autocmake/builds>`__ See also the `Travis <https://travis-ci.org/dev-cafe/autocmake/builds>`__
build and test history. build and test history.

View File

@ -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 $ mkdir cmake # does not have to be called "cmake" - take the name you prefer
$ cd cmake $ 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 $ virtualenv venv
$ source venv/bin/activate $ source venv/bin/activate
$ pip install pyyaml $ 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:: 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 This creates (or updates) the following files (an existing ``autocmake.yml`` is
not overwritten by the script):: not overwritten by the script)::

View File

@ -19,7 +19,7 @@ below::
- C - C
- CXX - CXX
url_root: https://github.com/coderefinery/autocmake/raw/master/ url_root: https://github.com/dev-cafe/autocmake/raw/master/
modules: modules:
- compilers: - 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:: 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 First we make sure that the ``update.py`` script is up-to-date and that it has access
to all libraries it needs:: 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``. 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 This can be done with the ``fetch`` option. This is for instance done by the
``git_info.cmake`` module (see ``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 If ``fetch`` is invoked in ``autocmake.yml``, then the fetched file is placed
under ``downloaded/``. If ``fetch`` is invoked from within a CMake module 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 The lines following ``# autocmake.yml configuration::`` are
understood by the ``update.py`` script to infer ``autocmake.yml`` code from the understood by the ``update.py`` script to infer ``autocmake.yml`` code from the
documentation. As an example consider 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``, Here, ``update.py`` will infer the configurations for ``docopt``, ``export``,
and ``define``. and ``define``.

View File

@ -48,10 +48,10 @@ settings imported by a sourced module.
As an example consider the Boost module which defines and uses As an example consider the Boost module which defines and uses
interpolation variables ``major``, ``minor``, ``patch``, and ``components``, see 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.: 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 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, If you think that your customization will be useful for other users as well,
you may consider contributing the changes directly to 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. contributions. But we also strive for generality and portability.

View File

@ -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 $ mkdir cmake # does not have to be called "cmake" - take the name you prefer
$ cd cmake $ 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 $ python update.py --self
Now from top-level our file tree looks like this:: 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 - Fortran
- C - C
url_root: https://github.com/coderefinery/autocmake/raw/master/ url_root: https://github.com/dev-cafe/autocmake/raw/master/
modules: modules:
- compilers: - compilers:

View File

@ -138,7 +138,7 @@ can include the latter in ``autocmake.yml`` using::
- my_sources: - my_sources:
- source: - 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 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:: targets in a custom module in a local file and include it like this::

View File

@ -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``, variables like this (observe how we interpolate ``url_root``, ``major``,
``minor``, ``patch``, and ``components`` in this example):: ``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 major: 1
minor: 48 minor: 48
patch: 0 patch: 0

View File

@ -21,10 +21,10 @@ rather fetch an older version, for example with the hash ``abcd123``. To
achieve this, instead of:: achieve this, instead of::
- my_feature: - 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 pin the version to ``abcd123`` (you do not need to specify the full Git hash, a unique
beginning will do):: beginning will do)::
- my_feature: - 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

View File

@ -73,7 +73,7 @@ def main():
if s_out != '': if s_out != '':
output.append('\n\n%s' % file_name) output.append('\n\n%s' % file_name)
output.append('-'*len(file_name)) output.append('-'*len(file_name))
output.append('`[Source code] <https://github.com/coderefinery/autocmake/blob/master/modules/%s>`__' % full_file_name) output.append('`[Source code] <https://github.com/dev-cafe/autocmake/blob/master/modules/%s>`__' % full_file_name)
output.append(s_out) output.append(s_out)
with open(os.path.join(THIS_DIR, 'module-reference.rst'), 'w') as f: with open(os.path.join(THIS_DIR, 'module-reference.rst'), 'w') as f:

View File

@ -1,7 +1,7 @@
import glob import glob
license_text = '''# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md license_text = '''# (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
''' '''

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #
@ -15,7 +15,7 @@
# - minor: 59 # - minor: 59
# - patch: 0 # - patch: 0
# - components: "chrono;timer;system" # - 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. # Cross-dependencies between required components are not checked for.
# For example, Boost.Timer depends on Boost.Chrono and Boost.System thus you # For example, Boost.Timer depends on Boost.Chrono and Boost.System thus you
@ -51,7 +51,7 @@
# #
# autocmake.yml configuration:: # autocmake.yml configuration::
# #
# url_root: https://github.com/coderefinery/autocmake/raw/master/ # url_root: https://github.com/dev-cafe/autocmake/raw/master/
# major: 1 # major: 1
# minor: 48 # minor: 48
# patch: 0 # patch: 0

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
# Build Boost # Build Boost
# This is not Windows-friendly! # This is not Windows-friendly!

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
# Clean-up # Clean-up
add_custom_command( add_custom_command(

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # 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 # Run bootstrap.sh to configure the build. We will install in ${PROJECT_BINARY_DIR}/boost
# This is not Windows-friendly! # This is not Windows-friendly!

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
# Install Boost # Install Boost
add_custom_command( add_custom_command(

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
# Install Boost # Install Boost
# This is not Windows-friendly! # This is not Windows-friendly!

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
# Unpack Boost # Unpack Boost
add_custom_command( add_custom_command(

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # 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 # 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 # user-config.jam file. MPI_SENT will be the command we append

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
include(CheckIncludeFile) include(CheckIncludeFile)

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
include(CheckFunctionExists) include(CheckFunctionExists)

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #
@ -10,7 +10,7 @@
# #
# autocmake.yml configuration:: # autocmake.yml configuration::
# #
# url_root: https://github.com/coderefinery/autocmake/raw/master/ # url_root: https://github.com/dev-cafe/autocmake/raw/master/
# fetch: # fetch:
# - "%(url_root)modules/git_info/git_info.h.in" # - "%(url_root)modules/git_info/git_info.h.in"

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #
@ -13,7 +13,7 @@
# #
# autocmake.yml configuration:: # 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]." # docopt: "--accelerate Find and link to ACCELERATE [default: False]."
# define: "'-DENABLE_ACCELERATE={0}'.format(arguments['--accelerate'])" # define: "'-DENABLE_ACCELERATE={0}'.format(arguments['--accelerate'])"
# fetch: # fetch:

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #
@ -13,7 +13,7 @@
# #
# autocmake.yml configuration:: # 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]." # docopt: "--cblas Find and link to CBLAS [default: False]."
# define: "'-DENABLE_CBLAS={0}'.format(arguments['--cblas'])" # define: "'-DENABLE_CBLAS={0}'.format(arguments['--cblas'])"
# fetch: # fetch:

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #
@ -13,7 +13,7 @@
# #
# autocmake.yml configuration:: # 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]." # docopt: "--lapacke Find and link to LAPACKE [default: False]."
# define: "'-DENABLE_LAPACKE={0}'.format(arguments['--lapacke'])" # define: "'-DENABLE_LAPACKE={0}'.format(arguments['--lapacke'])"
# fetch: # fetch:

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -1,5 +1,5 @@
# (c) https://github.com/coderefinery/autocmake/blob/master/AUTHORS.md # (c) https://github.com/dev-cafe/autocmake/blob/master/AUTHORS.md
# licensed under BSD-3: https://github.com/coderefinery/autocmake/blob/master/LICENSE # licensed under BSD-3: https://github.com/dev-cafe/autocmake/blob/master/LICENSE
#.rst: #.rst:
# #

View File

@ -9,7 +9,7 @@ if sys.version_info[0] == 2 and sys.version_info[1] < 7:
sys.exit(-1) 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(): def licensing_info():