1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
|
Contributing
============
.. note:: **Abstract**
This document describes the development process of {kiwi}
and how you can be part of it. This description applies
to version |version|.
.. toctree::
:maxdepth: 1
contributing/kiwi_from_python
contributing/kiwi_plugin_architecture
contributing/scripts_testing
contributing/schema_extensions.rst
The Basics
----------
The core appliance builder is developed in Python and follows the test
driven development rules.
If you want to implement a bigger feature, consider opening an issue on
GitHub first to discuss the changes. Or join the discussion in the
``#kiwi`` channel on `Riot.im <https://about.riot.im>`_.
Fork the upstream repository
----------------------------
1. On GitHub, navigate to: https://github.com/OSInside/kiwi
2. In the top-right corner of the page, click :command:`Fork`.
Create a local clone of the forked repository
---------------------------------------------
.. code:: shell-session
$ git clone https://github.com/YOUR-USERNAME/kiwi
$ git remote add upstream https://github.com/OSInside/kiwi.git
Install Required Operating System Packages
------------------------------------------
{kiwi} requires additional packages at runtime which are not
provided by :command:`pip`. Those will be pulled in by installing
the following package:
* kiwi-systemdeps
The package is provided on the Open Build Service in the
`Virtualization:Appliances:Builder
<https://download.opensuse.org/repositories/Virtualization:/Appliances:/Builder>`__
project. For manual inspection of the packages
that are pulled in from the above kiwi-systemdeps package, please refer
to the `package/python-kiwi-spec-template` spec file from the checked
out Git repository.
Create a Python Virtual Development Environment
-----------------------------------------------
The following commands initializes and activates a development
environment for Python 3:
.. code:: shell-session
$ poetry install
The command above automatically creates the application script
called :command:`kiwi-ng`, which allows you to run {kiwi} from the
Python sources inside the virtual environment using Poetry:
.. code:: shell-session
$ poetry run kiwi-ng --help
Running the Unit Tests
----------------------
Before submitting your changes via a pull request, ensure that all tests
pass and that the code has the required test coverage via the command:
.. code:: shell-session
$ make check
$ make test
Create a Branch for each Feature or Bugfix
------------------------------------------
Code changes should be done in an extra Git branch. This allows for
creating GitHub pull requests in a clean way. See also: `Collaborating with
issues and pull requests
<https://help.github.com/en/categories/collaborating-with-issues-and-pull-requests>`_
.. code:: shell-session
$ git checkout -b my-topic-branch
Make and commit your changes.
.. note::
You can make multiple commits which is generally useful to
give your changes a clear structure and to allow us to better
review your work.
.. note::
Your work is important and must be signed to ensure the integrity of
the repository and the code. Thus we recommend to setup a signing key
as documented in :ref:`Signing_Git_Patches`.
.. code:: shell-session
$ git commit -S -a
Once everything is done, push your local branch to your forked repository and
create a pull request into the upstream repository.
.. code:: shell-session
$ git push origin my-topic-branch
Thank you much for contributing to {kiwi}. Your time and work effort is very
much appreciated!
Coding Style
------------
{kiwi} follows the general PEP8 guidelines with the following exceptions:
- We do not use free functions at all. Even utility functions must be part
of a class, but should be either prefixed with the `@classmethod` or
`@staticmethod` decorators (whichever is more appropriate).
- Do not set module and class level variables, put these into the classes'
`__init__` method.
- The names of constants are not written in all capital letters.
Documentation
~~~~~~~~~~~~~
{kiwi} uses `Sphinx <https://www.sphinx-doc.org/en/master/>`_ for the API,
user documentation and manual pages
.. code:: shell-session
$ make docs
Document all your classes, methods, their parameters and their types using
the standard `reStructuredText
<https://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html>`_
syntax as supported by Sphinx, an example class is documented as follows:
.. code:: python
class Example:
"""
**Example class**
:param str param: A parameter
:param bool : Source file name to compress
:param list supported_zipper: List of supported compression tools
:attr Optional[str] attr: A class attribute
"""
def __init__(self, param, param_w_default=False):
self.attr = param if param_w_default else None
def method(self, param):
"""
A method that takes a parameter.
:param list param: a parameter
:return: whether param is very long
:rtype: bool
"""
return len(param) > 50
Try to stick to the following guidelines when documenting source code:
- Classes should be documented directly in their main docstring and not in
`__init__`.
- Document **every** function parameter and every public attribute
including their types.
- Only public methods should be documented, private methods don't have to,
unless they are complex and it is not easy to grasp what they do (which
should be avoided anyway).
Please also document any user-facing changes that you implementing
(e.g. adding a new build type) in the user documentation, which can be
found in `doc/source`. General documentation should be put into the
`working_with_kiwi/` subfolder, whereas documentation about more
specialized topics would belong into the `building/` subfolder.
Adhere to a line limit of 75 characters when writing the user facing
documentation [#f1]_.
Additional Information
----------------------
The following sections provides further information about the repository
integrity, version, package and documentation management.
.. _Signing_Git_Patches:
Signing Git Patches
~~~~~~~~~~~~~~~~~~~
To ensure the integrity of the repository and the code base, patches sent
for inclusion should be signed with a GPG key.
To prepare Git to sign commits, follow these instructions:
#. Create a key suitable for signing (it is not recommended to use
existing keys to not mix it with your email environment):
.. code:: shell-session
$ gpg2 --expert --full-gen-key
#. Either choose a RSA key for signing (option `(4)`) or an ECC key for
signing (option `(10)`). For a RSA key choose a key size of 4096 bits
and for a ECC key choose Curve 25519 (option `(1)`). Enter a reasonable
validity period (we recommend 2 to 5 years). Complete the key generation
by entering your name and email address.
#. Add the key ID to your git configuration, by running the following
:command:`git config` commands:
.. code:: shell-session
$ git config --local user.signingkey $YOUR_SIGN_KEY_ID
$ git config --local commit.gpgSign true
Omitting the flag `--local` will make these settings global for all
repositories (they will be added to :file:`~/.gitconfig`). You can find
your signkey's ID via:
.. code:: shell-session
$ gpg2 --list-keys --keyid-format long $YOUR_EMAIL
pub rsa4096/AABBCCDDEEFF0011 2019-04-26 [S] [expires: 2021-04-16]
AAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBB
uid [ultimate] YOU <$YOUR_EMAIL>
The key's ID in this case would be `AABBCCDDEEFF0011`. Note that your
signkey will have only a `[S]` after the creation date, not a `[SC]`
(then you are looking at your ordinary GPG key that can also encrypt).
Bumping the Version
~~~~~~~~~~~~~~~~~~~
The {kiwi} project follows the `Semantic Versioning <https://semver.org>`_
scheme. We use the :command:`bumpversion` tool for consistent versioning.
Follow these instructions to bump the major, minor, or patch part of the
{kiwi} version. Ensure that your repository is clean (i.e. no modified and
unknown files exist) beforehand running :command:`bumpversion`.
* For backwards-compatible bug fixes:
.. code:: shell-session
$ bumpversion patch
* For additional functionality in a backwards-compatible manner. When
changed, the patch level is reset to zero:
.. code:: shell-session
$ bumpversion minor
* For incompatible API changes. When changed, the patch and minor
levels are reset to zero:
.. code:: shell-session
$ bumpversion major
Creating a RPM Package
~~~~~~~~~~~~~~~~~~~~~~
We provide a template for a RPM spec file in
:file:`package/python-kiwi-spec-template` alongside with a rpmlint
configuration file and an automatically updated
:file:`python-kiwi.changes`.
To create the necessary files to build a RPM package via `rpmbuild`, run:
.. code:: shell-session
$ make build
The sources are collected in the :file:`dist/` directory. These can be
directly build it with :command:`rpmbuild`, :command:`fedpkg`, or submitted
to the Open Build Service using :command:`osc`.
.. [#f1] Configure your editor to automatically break lines and/or reformat
paragraphs. For Emacs you can use `M-x set-fill-column RET 75` and
`M-x auto-fill-mode RET` for automatic filling of paragraphs in
conjunction with `M-x fill-paragraph` (usually bound to `M-q`) to
reformat a paragraph to adhere to the current column width. For
editing reStructuredText we recommend `rst-mode` (built-in to
Emacs since version `23.1`).
Vim users can set the text width via `:tw 75` and then use the
commands `gwip` or `gq`.
|