diff options
author | Patrick Steinhardt <ps@pks.im> | 2018-08-30 12:16:40 +0200 |
---|---|---|
committer | Patrick Steinhardt <ps@pks.im> | 2018-08-30 12:16:59 +0200 |
commit | 2e0f926e1cf1bad7a1d20277e0ce43a3b782d13f (patch) | |
tree | c94652bb0afd030606c6850f7d620c35dfb6751c /docs | |
parent | 5b0258add926c9d17c88984d4aaf085e2a091919 (diff) | |
download | libgit2-2e0f926e1cf1bad7a1d20277e0ce43a3b782d13f.tar.gz |
docs: clarify and include licenses of dependencies
While our contribution guide tries to make clear the licenses that apply
to libgit2, it does not make clear that different licenses apply to our
bundled dependencies. Make this clear by listing each dependency
together with the licenses that they are governed by. Furthermore,
bundle the complete license texts next to the code they apply to.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contributing.md | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/docs/contributing.md b/docs/contributing.md index 870abf657..21e42b1d9 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -6,13 +6,22 @@ your help. ## Licensing By contributing to libgit2, you agree to release your contribution under -the terms of the license. Except for the `examples` directory, all code -is released under the [GPL v2 with linking exception](COPYING). +the terms of the license. Except for the `examples` and the +`deps` directories, all code is released under the [GPL v2 with +linking exception](../COPYING). The `examples` code is governed by the -[CC0 Public Domain Dedication](examples/COPYING), so that you may copy +[CC0 Public Domain Dedication](../examples/COPYING), so that you may copy from them into your own application. +The bundled dependencies in the `deps` directories are governed +by the following licenses: + +- http-parser is licensed under [MIT license](../deps/http-parser/COPYING) +- regex is governed by [LGPL v2.1+ license](../deps/regex/COPYING) +- winhttp is governed by [LGPL v2.1+](../deps/winhttp/COPYING.LGPL) and [GPL v2 with linking exception](../deps/winhttp/COPYING.GPL) +- zlib is governed by [zlib license](../deps/zlib/COPYING) + ## Discussion & Chat We hang out in the |