commit: 43ecd536e7b8ad2af343288fe2e6d919f8edf5aa Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org> AuthorDate: Sat May 11 22:42:09 2019 +0000 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org> CommitDate: Sat May 11 22:42:09 2019 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=43ecd536
Include BDEPEND in dep checks Bug: https://bugs.gentoo.org/685538 Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org> pym/gentoolkit/dependencies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/gentoolkit/dependencies.py b/pym/gentoolkit/dependencies.py index bb9ab0b..8536369 100644 --- a/pym/gentoolkit/dependencies.py +++ b/pym/gentoolkit/dependencies.py @@ -100,7 +100,7 @@ class Dependencies(Query): def get_all_depends(self, **kwargs): """Get the contents of ?DEPEND and parse it with self.parser.""" - env_vars = ('DEPEND', 'PDEPEND', 'RDEPEND') + env_vars = ('DEPEND', 'PDEPEND', 'RDEPEND', 'BDEPEND') return self._get_depend(env_vars, **kwargs) def graph_depends(
