commit: 7ca01e722d18ca04f728fbd4b3207bf2c3b2e182 Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net> AuthorDate: Mon Dec 20 21:52:42 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Dec 21 02:21:47 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ca01e72
vdr-plugin-2.eclass: fix content of @SUPPORTED_EAPIS The eclass variable @SUPPORTED_EAPIS does not contain EAPI 8, while the eclass itself supports EAPI 8. This leads to wrong warnings by pkgcheck. Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net> Closes: https://github.com/gentoo/gentoo/pull/23440 Signed-off-by: Sam James <sam <AT> gentoo.org> eclass/vdr-plugin-2.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/vdr-plugin-2.eclass b/eclass/vdr-plugin-2.eclass index 8964ecbaf741..c2f31003fd87 100644 --- a/eclass/vdr-plugin-2.eclass +++ b/eclass/vdr-plugin-2.eclass @@ -9,7 +9,7 @@ # Joerg Bornkessel <[email protected]> # Christian Ruppert <[email protected]> # (undisclosed contributors) -# @SUPPORTED_EAPIS: 5 6 7 +# @SUPPORTED_EAPIS: 5 6 7 8 # @BLURB: common vdr plugin ebuild functions # @DESCRIPTION: # Eclass for easing maintenance of vdr plugin ebuilds
