From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BBE8B138334 for ; Sat, 11 May 2019 22:43:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99303E077D; Sat, 11 May 2019 22:43:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 73C41E077D for ; Sat, 11 May 2019 22:43:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB6C93440B9 for ; Sat, 11 May 2019 22:43:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A5A95549 for ; Sat, 11 May 2019 22:43:07 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1557614529.43ecd536e7b8ad2af343288fe2e6d919f8edf5aa.vdupras@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: pym/gentoolkit/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/dependencies.py X-VCS-Directories: pym/gentoolkit/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 43ecd536e7b8ad2af343288fe2e6d919f8edf5aa X-VCS-Branch: master Date: Sat, 11 May 2019 22:43:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c72eb57f-3457-4b39-afbc-968f96ccbc6f X-Archives-Hash: 8befb87c055d4bf6c69f13d7a654a7b9 commit: 43ecd536e7b8ad2af343288fe2e6d919f8edf5aa Author: Virgil Dupras gentoo org> AuthorDate: Sat May 11 22:42:09 2019 +0000 Commit: Virgil Dupras gentoo 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 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(