aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2019-06-05 09:51:54 +0200
committerFabian Groffen <grobian@gentoo.org>2019-06-05 09:51:54 +0200
commitd79b3814bebca3a23c4e4e850047381b7a2b7d65 (patch)
tree19ff388699edc8cda101ba41308191ecbeea4851
parentqlop: fix -U and -t interaction (diff)
downloadportage-utils-d79b3814.tar.gz
portage-utils-d79b3814.tar.bz2
portage-utils-d79b3814.zip
TODO: add some things/ideas
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
-rw-r--r--TODO.md9
-rw-r--r--qdepends.c2
2 files changed, 10 insertions, 1 deletions
diff --git a/TODO.md b/TODO.md
index e32cbfed..14bd6eb1 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 4e6fd436..f2ae1119 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 |