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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DAED0158086 for ; Mon, 8 Nov 2021 11:21:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 366AA2BC0DB; Mon, 8 Nov 2021 11:21:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A02EE2BC0DB for ; Mon, 8 Nov 2021 11:21:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 69ECB342D8A for ; Mon, 8 Nov 2021 11:21:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B08C6156 for ; Mon, 8 Nov 2021 11:21:30 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1636370481.2ba8711020cb0d0227cc47df9042f687e90abf35.mgorny@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: genrdeps-index.py X-VCS-Directories: / X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2ba8711020cb0d0227cc47df9042f687e90abf35 X-VCS-Branch: master Date: Mon, 8 Nov 2021 11:21:30 +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: 26790454-a215-48f7-9c75-757f5ecf8420 X-Archives-Hash: fbbb868feda595c03959fd1fc92c416f commit: 2ba8711020cb0d0227cc47df9042f687e90abf35 Author: Michał Górny gentoo org> AuthorDate: Mon Nov 8 11:21:21 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Nov 8 11:21:21 2021 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=2ba87110 genrdeps-index: Add idepend support Signed-off-by: Michał Górny gentoo.org> genrdeps-index.py | 1 + 1 file changed, 1 insertion(+) diff --git a/genrdeps-index.py b/genrdeps-index.py index 1dc958b..32a0d12 100755 --- a/genrdeps-index.py +++ b/genrdeps-index.py @@ -25,6 +25,7 @@ DepTuple = collections.namedtuple('DepTuple', ('cpv', 'blocks', 'use')) GROUPS = ( ('bdepend', 'bindex'), ('depend', 'dindex'), + ('idepend', 'iindex'), ('pdepend', 'pindex'), ('rdepend', 'rindex'), )