cmake/Source/kwsys/CONTRIBUTING.rst

50 lines
1.9 KiB
ReStructuredText
Raw Normal View History

2015-04-27 22:25:09 +02:00
Contributing to KWSys
*********************
2017-04-14 19:02:05 +02:00
Patches
=======
2015-04-27 22:25:09 +02:00
KWSys is kept in its own Git repository and shared by several projects
via copies in their source trees. Changes to KWSys should not be made
directly in a host project, except perhaps in maintenance branches.
2017-04-14 19:02:05 +02:00
KWSys uses `Kitware's GitLab Instance`_ to manage development and code review.
To contribute patches:
#. Fork the upstream `KWSys Repository`_ into a personal account.
#. Base all new work on the upstream ``master`` branch.
#. Run ``./SetupForDevelopment.sh`` in new local work trees.
#. Create commits making incremental, distinct, logically complete changes.
#. Push a topic branch to a personal repository fork on GitLab.
#. Create a GitLab Merge Request targeting the upstream ``master`` branch.
Once changes are reviewed, tested, and integrated to KWSys upstream then
copies of KWSys within dependent projects can be updated to get the changes.
2015-04-27 22:25:09 +02:00
2017-04-14 19:02:05 +02:00
.. _`Kitware's GitLab Instance`: https://gitlab.kitware.com
.. _`KWSys Repository`: https://gitlab.kitware.com/utils/kwsys
2015-04-27 22:25:09 +02:00
2017-04-14 19:02:05 +02:00
Code Style
==========
2015-04-27 22:25:09 +02:00
2023-05-23 16:38:00 +02:00
We use `clang-format`_ version **15** to define our style for C++ code in
2017-07-20 19:35:53 +02:00
the KWSys source tree. See the `.clang-format`_ configuration file for
our style settings. Use the `clang-format.bash`_ script to format source
code. It automatically runs ``clang-format`` on the set of source files
for which we enforce style. The script also has options to format only
a subset of files, such as those that are locally modified.
2015-04-27 22:25:09 +02:00
2024-07-09 14:46:46 +02:00
.. _`clang-format`: https://clang.llvm.org/docs/ClangFormat.html
2017-04-14 19:02:05 +02:00
.. _`.clang-format`: .clang-format
.. _`clang-format.bash`: clang-format.bash
2015-04-27 22:25:09 +02:00
License
=======
We do not require any formal copyright assignment or contributor license
agreement. Any contributions intentionally sent upstream are presumed
2015-11-17 17:22:37 +01:00
to be offered under terms of the OSI-approved BSD 3-clause License.
2015-04-27 22:25:09 +02:00
See `Copyright.txt`_ for details.
.. _`Copyright.txt`: Copyright.txt