diff options
author | Alessandro Barbieri <lssndrbarbieri@gmail.com> | 2021-07-26 02:00:40 +0200 |
---|---|---|
committer | Alessandro Barbieri <lssndrbarbieri@gmail.com> | 2021-07-26 02:00:40 +0200 |
commit | bc754961bb3e38e7d8a58cc39381982e06fa1ff9 (patch) | |
tree | 173bbbd817887f0ddf0daaae27f868c2c94e4fa8 /CONTRIBUTING.md | |
parent | README.md: add link to the python eclass guide (diff) | |
download | guru-bc754961bb3e38e7d8a58cc39381982e06fa1ff9.tar.gz guru-bc754961bb3e38e7d8a58cc39381982e06fa1ff9.tar.bz2 guru-bc754961bb3e38e7d8a58cc39381982e06fa1ff9.zip |
CONTRIBUTING.md: change bullet list to code
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c796af744..e79a78787 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -33,21 +33,23 @@ Please don't use symlinks in the repository (e.g. foobar-x.y.z.ebuild -> foobar- Sometimes a upstream lists dependencies which are considered deprecated. If possible, packages should **not** depend on these deprecated dependencies. Reasons a dependency might be deprecated is that it is too old, unmaintained, or the features it adds are not useful to Gentoo. You can find an overview of the currently deprecated dependencies and the reason they are deprecated in `$(portageq get_repo_path / gentoo)/profiles/package.deprecated`. `repoman -dx full` will warn you if your package depends on a deprecated dependency. For Python packages there are some additional (test) dependencies that are considered undesirable or not useful, but are not considered deprecated. You can find an overview of those [here](https://dev.gentoo.org/~mgorny/python-guide/distutils.html#enabling-tests) and in the list below: -- dev-python/black -- dev-python/check-manifest -- dev-python/coverage -- dev-python/docutils -- dev-python/flake8 -- dev-python/isort -- dev-python/mypy -- dev-python/multilint -- dev-python/pep8 -- dev-python/pycodestyle -- dev-python/pytest-cov -- dev-python/pytest-runner -- dev-python/readme_renderer -- dev-python/tox -- dev-python/twine +``` +dev-python/black +dev-python/check-manifest +dev-python/coverage +dev-python/docutils +dev-python/flake8 +dev-python/isort +dev-python/mypy +dev-python/multilint +dev-python/pep8 +dev-python/pycodestyle +dev-python/pytest-cov +dev-python/pytest-runner +dev-python/readme_renderer +dev-python/tox +dev-python/twine +``` - #### Licenses of bundled libraries |