diff options
author | 2023-10-23 20:03:27 +0300 | |
---|---|---|
committer | 2023-10-23 20:03:27 +0300 | |
commit | 2f939c3e9366a4c8858892c5252b23e2f08d2447 (patch) | |
tree | 43be12aa74235744728d38c6ece04b86e6e54fb4 /src | |
parent | examples/verify_at_done: add new helper tool to collect done AT bugs (diff) | |
download | pkgcore-2f939c3e9366a4c8858892c5252b23e2f08d2447.tar.gz pkgcore-2f939c3e9366a4c8858892c5252b23e2f08d2447.tar.bz2 pkgcore-2f939c3e9366a4c8858892c5252b23e2f08d2447.zip |
eclassdoc: remove @BUGREPORTS tag
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/pkgcore/ebuild/eclass.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/pkgcore/ebuild/eclass.py b/src/pkgcore/ebuild/eclass.py index 66e07766a..4612d0b33 100644 --- a/src/pkgcore/ebuild/eclass.py +++ b/src/pkgcore/ebuild/eclass.py @@ -218,7 +218,6 @@ class EclassBlock(ParseEclassDoc): "@PROVIDES:": ("raw_provides", False, self._tag_inline_list, ()), "@MAINTAINER:": ("maintainers", True, self._tag_multiline_args, None), "@AUTHOR:": ("authors", False, self._tag_multiline_args, None), - "@BUGREPORTS:": ("bugreports", False, self._tag_multiline_str, None), "@DESCRIPTION:": ("description", False, self._tag_multiline_str, None), "@EXAMPLE:": ("example", False, self._tag_multiline_str, None), "@SUPPORTED_EAPIS:": ("supported_eapis", False, self._supported_eapis, ()), @@ -642,10 +641,10 @@ class EclassDoc(AttrDict): rst.extend(_rst_header("-", "Maintainers")) rst.append("\n".join(f"| {x}" for x in self.maintainers)) rst.append("") - if self.bugreports: - rst.extend(_rst_header("-", "Bug Reports")) - rst.append(self.bugreports) - rst.append("") + + rst.extend(_rst_header("-", "Reporting Bugs")) + rst.append("Please report bugs via https://bugs.gentoo.org/") + rst.append("") return "\n".join(rst) |