While Chimera is not made of only cports
, most people will probably want
to contribute here.
First you will need to fork this repository on GitHub. This is not different from any other project.
We suggest to avoid using GitHub's web editor for contributions, especially for templates, since those need testing. Therefore, if you do not know at least the basics of Git, use some of the public resources to get familiar.
Also read USING_GIT.md
if you are unfamiliar with Git.
Once you have that, clone your fork and prepare the changes.
Whether you are creating a new template or modifying an existing one, you
should follow the manual (see Packaging.md
) which should be able to answer
all or at least most questions.
Always ensure to follow the expected style and other basics to make the reviewer's job easier.
Generally, you should have one commit per template. The commits should be atomic, i.e. every commit should build on its own. When you have a batch of templates and they depend on each other, order your commits properly.
Using a correct commit message is also important:
- New packages should use
category/pkgname: new package
. For example,main/coolproject: new package
. - Updates should similarly use
category/pkgname: update to <version>
. - Non-update changes to templates should use
category/pkgname: custom message
. - Removals should use
category/pkgname: remove
. - Changes to
cbuild
should usecbuild: custom message
. - Changes to other parts should use the same format but relating to the thing
they change, e.g. for
Packaging.md
changes it'spackaging: ...
and so on. - Changes to multiple things in a category should use
*
, e.g. foruser/foo
anduser/bar
changes it'suser/*
, and for a global cleanup*/*: title
may be used.
Commit messages as well as things such as package descriptions should be written in American English and be grammatically correct.
It is your responsibility to verify that submitted changes do build. If the CI fails, fix any issues that you are capable of fixing yourself.
Once you have committed your changes, create a GitHub pull request. The best
way to do that is to push your changes into a custom branch. When you git push
into that branch, the command line will offer you a link to create your PR.
If there are any issues with your PR, a reviewer will point them out and possibly suggest changes. Follow any review instructions until the changes are approved.
There is no CLA in Chimera, likewise there is no copyright assignment or any such thing.
Congratulations! At this point, your changes should have made them into the repository. As always, do not hesitate to join us in one of our communication channels if anything is unclear.