void-packages/CONTRIBUTING.md

107 lines
5.8 KiB
Markdown
Raw Normal View History

2014-12-10 16:11:09 +00:00
# Contributing to void-packages
void-packages is the backbone of the Void Linux distribution. It contains all the definitions to build packages from source.
2014-12-10 16:11:09 +00:00
This document describes how you, as a contributor, can help with adding packages, correcting bugs and adding features to void-packages.
2014-12-10 16:11:09 +00:00
## Getting your packages into Void by yourself
2014-12-10 16:11:09 +00:00
If you really want to get a package into Void Linux, we recommend you package it yourself.
We provide a [comprehensive Manual](https://github.com/void-linux/void-packages/blob/master/Manual.md)
on how to create new packages. There's also a
[manual for xbps-src](https://github.com/void-linux/void-packages/blob/master/README.md), which is used
2014-12-10 16:11:09 +00:00
to build package files from templates.
For this guide, we assume you have basic knowledge about [git](http://git-scm.org), as well as a [GitHub Account](http://github.com).
2014-12-10 16:11:09 +00:00
Please note that we do not accept any packages containing non-release versions, such as specific git- or svn-revisions anymore.
### Creating a new template
2014-12-10 16:11:09 +00:00
You can use the helper tool `xnew`, from the [xtools](https://github.com/chneukirchen/xtools) package, to create new templates:
$ xnew pkgname subpkg1 subpkg2 ...
2014-12-10 16:11:09 +00:00
Templates must have the name `void-packages/srcpkgs/<pkgname>/template`, where `pkgname` is the same as the `pkgname` variable in the template.
2014-12-10 16:11:09 +00:00
For deeper insights on the contents of template files, please read the [manual](https://github.com/void-linux/void-packages/blob/master/Manual.md), and be sure to browse the existing template files in the `srcpkgs` directory of this repository for concrete examples.
When you've finished working on the template file, please check it with `xlint` helper from the [xtools](https://github.com/chneukirchen/xtools) package:
$ xlint template
If `xlint` reports any issues, resolve them before committing.
2014-12-10 16:11:09 +00:00
### Committing your changes
2014-12-10 16:11:09 +00:00
Once you have built your template file or files, the commit message should have one of the following forms:
2014-12-10 16:11:09 +00:00
* for new packages, use ```New package: <pkgname>-<version>``` ([example](https://github.com/void-linux/void-packages/commit/176d9655429188aac10cd229827f99b72982ab10)).
2014-12-10 16:11:09 +00:00
* for package updates, use ```<pkgname>: update to <version>.``` ([example](https://github.com/void-linux/void-packages/commit/b6b82dcbd4aeea5fc37a32e4b6a8dd8bd980d5a3)).
2014-12-10 16:11:09 +00:00
* for template modifications without a version change, use ```<pkgname>: <reason>``` ([example](https://github.com/void-linux/void-packages/commit/8b68d6bf1eb997cd5e7c095acd040e2c5379c91d)).
2014-12-10 16:11:09 +00:00
If you want to describe your changes in more detail, add an empty line followed by those details ([example](https://github.com/void-linux/void-packages/commit/f1c45a502086ba1952f23ace9084a870ce437bc6)).
2014-12-10 16:11:09 +00:00
For further information, please consult the [manual](https://github.com/void-linux/void-packages/blob/master/Manual.md).
2014-12-10 16:11:09 +00:00
`xbump`, available in the [xtools](https://github.com/chneukirchen/xtools) package, can be used to commit a new or updated package:
$ xbump <pkgname> <git commit options>
`xbump` will use `git commit` to commit the changes with the appropriate commit message. For more fine-grained control over the commit, specific options can be passed to `git commit` by adding them after the package name.
2014-12-10 16:11:09 +00:00
After committing your changes, please check that the package builds successfully. From the top level directory of your local copy of the `void-packages` repository, run:
$ ./xbps-src pkg <pkgname>
Your package must build successfully for at least x86, but we recommend trying to build for armv* as well, e.g.:
$ ./xbps-src -a armv7l pkg <pkgname>
For further details, see the output of `./xbps-src -h`.
### Starting a pull request
2014-12-10 16:11:09 +00:00
Once you have successfully built the package, you can start a pull request.
2014-12-10 16:11:09 +00:00
Most pull requests should only contain a single package and dependencies which are not part of void-packages yet.
2014-12-10 16:11:09 +00:00
If you make updates to packages containing a soname bump you also need to revbump all packages that are dependant. Those
packages should also be part of the same pull request.
When you make changes to your pull request, please *do not close and reopen your pull request*. Instead, just forcibly git push, overwriting any old commits. Closing and opening your pull requests repeatedly spams the Void maintainers.
2018-06-18 19:02:13 +00:00
#### Travis
2014-12-10 16:11:09 +00:00
Once you have started a pull request, you will get instant feedback from Travis. It will check if the templates you have changed
comply with the our guidelines. At the moment not all packages comply with the rules, so if you update a package, it may happen that Travis reports errors about places you haven't touched. Please feel free to fix those errors too.
2014-12-10 16:11:09 +00:00
#### Review
2014-12-10 16:11:09 +00:00
Most of the time your pull request will contain mistakes. It's nothing bad, it just happens.
2014-12-10 16:11:09 +00:00
Reviewers will comment on your pull request and point out which changes are needed before the template can be included.
2014-12-10 16:11:09 +00:00
We recommend having only a single commit for pull request, so if you need to make changes in commits but already have a pull request, use the following commands:
$ git add <file>
$ git commit --amend
$ git push -f
#### Closing the pull request
2014-12-10 16:11:09 +00:00
Once you have applied all requested changes, the reviewers will merge your request.
2014-12-10 16:11:09 +00:00
If the pull request becomes inactive for some days, the reviewers may or may not warn you when they are about to close it.
If it stays inactive further, it will be closed.
2014-12-10 16:11:09 +00:00
Please abstain from temporarily closing a pull request while revising the templates. Instead, leave a comment on the PR describing what still needs work, or add "[WIP]" to the PR title. Only close your pull request if you're sure you don't want your changes to be included.
2014-12-10 16:11:09 +00:00
#### Publishing the package
2014-12-10 16:11:09 +00:00
2019-01-20 10:07:05 +00:00
Once the reviewers have merged the pull request, our [build server](http://build.voidlinux.org) is automatically triggered and builds
all packages in the pull request for all supported platforms. Upon completion, the packages are available to all Void Linux users.