Laurens Van Houtven | 5a42298 | 2014-03-15 21:42:31 +0100 | [diff] [blame] | 1 | Contributing |
| 2 | ============ |
Laurens Van Houtven | 290aba1 | 2014-03-14 15:20:18 +0100 | [diff] [blame] | 3 | |
Laurens Van Houtven | 36a2665 | 2014-03-15 21:52:25 +0100 | [diff] [blame] | 4 | First of all, thank you for your interest in contributing to pyOpenSSL! |
Hynek Schlawack | 8fb864a | 2015-06-07 19:09:49 +0200 | [diff] [blame] | 5 | This project has no company backing its development therefore we're dependent on help by the community. |
| 6 | |
Laurens Van Houtven | 290aba1 | 2014-03-14 15:20:18 +0100 | [diff] [blame] | 7 | |
Laurens Van Houtven | 5a42298 | 2014-03-15 21:42:31 +0100 | [diff] [blame] | 8 | Filing bug reports |
| 9 | ------------------ |
Laurens Van Houtven | 290aba1 | 2014-03-14 15:20:18 +0100 | [diff] [blame] | 10 | |
Laurens Van Houtven | 36a2665 | 2014-03-15 21:52:25 +0100 | [diff] [blame] | 11 | Bug reports are very welcome. |
Hynek Schlawack | 8fb864a | 2015-06-07 19:09:49 +0200 | [diff] [blame] | 12 | Please file them on the GitHub issue tracker. |
Laurens Van Houtven | 36a2665 | 2014-03-15 21:52:25 +0100 | [diff] [blame] | 13 | Good bug reports come with extensive descriptions of the error and how to reproduce it. |
Jean-Paul Calderone | 0679a69 | 2014-03-16 10:17:09 -0400 | [diff] [blame] | 14 | Reporters are strongly encouraged to include an `short, self contained, correct example <http://www.sscce.org/>`_. |
Laurens Van Houtven | 290aba1 | 2014-03-14 15:20:18 +0100 | [diff] [blame] | 15 | |
Hynek Schlawack | 8fb864a | 2015-06-07 19:09:49 +0200 | [diff] [blame] | 16 | |
| 17 | Security |
| 18 | -------- |
| 19 | |
| 20 | If you feel that you found a security-relevant bug that you would prefer to discuss in private, please send us a GPG_-encrypted e-mail. |
| 21 | |
| 22 | The maintainer can be reached at hs@ox.cx and his GPG key ID is ``0xAE2536227F69F181`` (Fingerprint: ``C2A0 4F86 ACE2 8ADC F817 DBB7 AE25 3622 7F69 F181``). |
| 23 | Feel free to cross-check this information with Keybase_. |
| 24 | |
| 25 | |
Laurens Van Houtven | 5a42298 | 2014-03-15 21:42:31 +0100 | [diff] [blame] | 26 | Patches |
| 27 | ------- |
Laurens Van Houtven | 290aba1 | 2014-03-14 15:20:18 +0100 | [diff] [blame] | 28 | |
Hynek Schlawack | 8fb864a | 2015-06-07 19:09:49 +0200 | [diff] [blame] | 29 | All patches to pyOpenSSL should be submitted in the form of pull requests to the main pyOpenSSL repository, `pyca/pyopenssl`_. |
Laurens Van Houtven | 36a2665 | 2014-03-15 21:52:25 +0100 | [diff] [blame] | 30 | These pull requests should satisfy the following properties: |
Laurens Van Houtven | 290aba1 | 2014-03-14 15:20:18 +0100 | [diff] [blame] | 31 | |
Jean-Paul Calderone | 433d4bd | 2014-03-16 10:46:16 -0400 | [diff] [blame] | 32 | - The branch referenced should be a `feature branch`_ focusing on one particular improvement to pyOpenSSL. |
Jean-Paul Calderone | 0679a69 | 2014-03-16 10:17:09 -0400 | [diff] [blame] | 33 | Create different branches and different pull requests for unrelated features or bugfixes. |
Laurens Van Houtven | 36a2665 | 2014-03-15 21:52:25 +0100 | [diff] [blame] | 34 | - Code should follow `PEP 8`_, especially in the "do what code around you does" sense. |
Jean-Paul Calderone | 0679a69 | 2014-03-16 10:17:09 -0400 | [diff] [blame] | 35 | One notable way pyOpenSSL code differs, for example, is that there should be three empty lines between module-level elements,and two empty lines between class-level elements. |
Laurens Van Houtven | 36a2665 | 2014-03-15 21:52:25 +0100 | [diff] [blame] | 36 | Methods and functions are named in ``snake_case``. |
| 37 | Follow OpenSSL naming for callables whenever possible is preferred. |
Jean-Paul Calderone | 0679a69 | 2014-03-16 10:17:09 -0400 | [diff] [blame] | 38 | - Pull requests that introduce code must test all new behavior they introduce as well as for previously untested or poorly tested behavior that they touch. |
Laurens Van Houtven | 290aba1 | 2014-03-14 15:20:18 +0100 | [diff] [blame] | 39 | - Pull requests are not allowed to break existing tests. |
Laurens Van Houtven | 36a2665 | 2014-03-15 21:52:25 +0100 | [diff] [blame] | 40 | - Pull requests that introduce features or fix bugs should note those changes in the ``ChangeLog`` text file in the root of the repository. |
| 41 | They should also document the changes, both in docstrings and in the documentation in the ``doc/`` directory. |
Laurens Van Houtven | 290aba1 | 2014-03-14 15:20:18 +0100 | [diff] [blame] | 42 | |
Laurens Van Houtven | 36a2665 | 2014-03-15 21:52:25 +0100 | [diff] [blame] | 43 | Finally, pull requests must be reviewed before merging. |
| 44 | This process mirrors the `cryptography code review process`_. |
| 45 | Everyone can perform reviews; this is a very valuable way to contribute, and is highly encouraged. |
Laurens Van Houtven | 290aba1 | 2014-03-14 15:20:18 +0100 | [diff] [blame] | 46 | |
Hynek Schlawack | 8fb864a | 2015-06-07 19:09:49 +0200 | [diff] [blame] | 47 | Pull requests are merged by members of PyCA. |
| 48 | They should, of course, keep all the requirements detailed in this document as well as the ``pyca/cryptography`` merge requirements in mind. |
Laurens Van Houtven | 290aba1 | 2014-03-14 15:20:18 +0100 | [diff] [blame] | 49 | |
Hynek Schlawack | 8fb864a | 2015-06-07 19:09:49 +0200 | [diff] [blame] | 50 | The final responsibility for the reviewing of merged code lies with the person merging it. |
| 51 | Since pyOpenSSL is a sensitive project from a security perspective, reviewers are strongly encouraged to take this review and merge process very seriously. |
Laurens Van Houtven | 290aba1 | 2014-03-14 15:20:18 +0100 | [diff] [blame] | 52 | |
Hynek Schlawack | 8fb864a | 2015-06-07 19:09:49 +0200 | [diff] [blame] | 53 | |
| 54 | Finding Help |
| 55 | ------------ |
| 56 | |
| 57 | If you need any help with the contribution process, you'll find us hanging out at ``#cryptography-dev`` on Freenode_ IRC. |
| 58 | You can also ask questions on our `mailing list`_. |
| 59 | |
| 60 | Wherever we interact, we strive to follow the `Python Community Code of Conduct`_. |
| 61 | |
| 62 | |
| 63 | .. _GPG: http://en.wikipedia.org/wiki/GNU_Privacy_Guard |
| 64 | .. _Keybase: https://keybase.io/hynek |
| 65 | .. _pyca/pyopenssl: https://github.com/pyca/pyopenssl |
| 66 | .. _PEP 8: https://www.python.org/dev/peps/pep-0008/ |
Laurens Van Houtven | 5a42298 | 2014-03-15 21:42:31 +0100 | [diff] [blame] | 67 | .. _cryptography code review process: https://cryptography.io/en/latest/development/reviewing-patches/ |
Hynek Schlawack | 8fb864a | 2015-06-07 19:09:49 +0200 | [diff] [blame] | 68 | .. _feature branch: https://www.atlassian.com/git/tutorials/comparing-workflows/feature-branch-workflow |
| 69 | .. _freenode: https://freenode.net |
| 70 | .. _`mailing list`: https://mail.python.org/mailman/listinfo/cryptography-dev |
| 71 | .. _`Python Community Code of Conduct`: https://www.python.org/psf/codeofconduct/ |