void-packages/CONTRIBUTING.md
Alexis 103da6edeb Multiple changes to CONTRIBUTING.md.
* Describe using `xbps-src pkg` to check that a package builds.
* Move mention of `xlint` to the 'Creating ...' section.
* Remove reference to GitHub reporting new PRs on IRC.
* Fix grammar and typos.
* Improve readability.
2020-03-03 11:57:20 +01:00

5.8 KiB

Contributing to void-packages

void-packages is the backbone of the Void Linux distribution. It contains all the definitions to build packages from source.

This document describes how you, as a contributor, can help with adding packages, correcting bugs and adding features to void-packages.

Getting your packages into Void by yourself

If you really want to get a package into Void Linux, we recommend you package it yourself.

We provide a comprehensive Manual on how to create new packages. There's also a manual for xbps-src, which is used to build package files from templates.

For this guide, we assume you have basic knowledge about git, as well as a GitHub Account.

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

You can use the helper tool xnew, from the xtools package, to create new templates:

$ xnew pkgname subpkg1 subpkg2 ...

Templates must have the name void-packages/srcpkgs/<pkgname>/template, where pkgname is the same as the pkgname variable in the template.

For deeper insights on the contents of template files, please read the manual, 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 package:

$ xlint template

If xlint reports any issues, resolve them before committing.

Committing your changes

Once you have built your template file or files, the commit message should have one of the following forms:

  • for new packages, use New package: <pkgname>-<version> (example).

  • for package updates, use <pkgname>: update to <version>. (example).

  • for template modifications without a version change, use <pkgname>: <reason> (example).

If you want to describe your changes in more detail, add an empty line followed by those details (example).

For further information, please consult the manual.

xbump, available in the 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.

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

Once you have successfully built the package, you can start a pull request.

Most pull requests should only contain a single package and dependencies which are not part of void-packages yet.

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.

Travis

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.

Review

Most of the time your pull request will contain mistakes. It's nothing bad, it just happens.

Reviewers will comment on your pull request and point out which changes are needed before the template can be included.

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

Once you have applied all requested changes, the reviewers will merge your request.

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.

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.

Publishing the package

Once the reviewers have merged the pull request, our build server 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.