From 2f939c3e9366a4c8858892c5252b23e2f08d2447 Mon Sep 17 00:00:00 2001 From: Arthur Zamarin Date: Mon, 23 Oct 2023 20:03:27 +0300 Subject: eclassdoc: remove @BUGREPORTS tag Signed-off-by: Arthur Zamarin --- src/pkgcore/ebuild/eclass.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src') 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) -- cgit v1.2.3-65-gdbad