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 CBDED138334 for ; Wed, 5 Jun 2019 07:57:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DD08E0905; Wed, 5 Jun 2019 07:57:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E8DA4E0905 for ; Wed, 5 Jun 2019 07:57:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D88CD345743 for ; Wed, 5 Jun 2019 07:57:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 85DB4566 for ; Wed, 5 Jun 2019 07:57:47 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1559721114.d79b3814bebca3a23c4e4e850047381b7a2b7d65.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: TODO.md qdepends.c X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: d79b3814bebca3a23c4e4e850047381b7a2b7d65 X-VCS-Branch: master Date: Wed, 5 Jun 2019 07:57:47 +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: f29ecacd-8fc9-46df-b421-06587c2e9ae8 X-Archives-Hash: 85440a004fa6eeecba3bf3a4568d0c0e commit: d79b3814bebca3a23c4e4e850047381b7a2b7d65 Author: Fabian Groffen gentoo org> AuthorDate: Wed Jun 5 07:51:54 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Wed Jun 5 07:51:54 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=d79b3814 TODO: add some things/ideas Signed-off-by: Fabian Groffen gentoo.org> TODO.md | 9 +++++++++ qdepends.c | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/TODO.md b/TODO.md index e32cbfe..14bd6eb 100644 --- a/TODO.md +++ b/TODO.md @@ -63,6 +63,8 @@ - add -S/-v/-R behavior like qlist #574934 - bring back -k? (but seems solved by using qlist -IF%{SLOT} pkg) +- -Qt acts weird (if not, incorrect) +- -v should lookup whether packages are installed for || cases/colouring # qpkg @@ -88,3 +90,10 @@ # qmanifest - use openat in most places + +# qlop +- guestimate runtime based on best-matching pkg (e.g. with gcc) +- calculate or take some "smooth" factor just added on top of the + guestimate alternative to current time jumping +- display excess time (+12:05) when overrunning guestimate to indicate + longer run than last guestimate diff --git a/qdepends.c b/qdepends.c index 4e6fd43..f2ae111 100644 --- a/qdepends.c +++ b/qdepends.c @@ -322,7 +322,7 @@ int qdepends_main(int argc, char **argv) } if ((state.qmode & ~(QMODE_REVERSE | QMODE_INSTALLED | QMODE_TREE)) == 0) { - /* default mode of operation: -qau (also for just -Q) */ + /* default mode of operation: -drpb (also for just -Q) */ state.qmode |= QMODE_DEPEND | QMODE_RDEPEND | QMODE_PDEPEND |