Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage-utils:master commit in: /
Date: Thu, 02 May 2019 16:09:08
Message-Id: 1556813312.b5fa36f7d557e8a30ca8edae69c3f187777c6727.grobian@gentoo
1 commit: b5fa36f7d557e8a30ca8edae69c3f187777c6727
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 2 16:08:32 2019 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Thu May 2 16:08:32 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=b5fa36f7
7
8 README: update somewhat
9
10 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
11
12 README.md | 31 ++++---------------------------
13 1 file changed, 4 insertions(+), 27 deletions(-)
14
15 diff --git a/README.md b/README.md
16 index 8400c68..bfb6341 100644
17 --- a/README.md
18 +++ b/README.md
19 @@ -2,7 +2,7 @@
20
21 | What | How |
22 | -------- | --------------------------------------------------------- |
23 -| HOMEPAGE | https://wiki.gentoo.org/wiki/Q\_applets |
24 +| HOMEPAGE | https://wiki.gentoo.org/wiki/Q_applets |
25 | GIT | https://anongit.gentoo.org/git/proj/portage-utils.git |
26 | VIEWVCS | https://gitweb.gentoo.org/proj/portage-utils.git/ |
27 | GITHUB | https://github.com/gentoo/portage-utils |
28 @@ -14,8 +14,8 @@ of information. The focus is on size and speed, so everything is in C.
29
30 ## Building
31
32 -Just run `make`. This should work on any recent Linux system.
33 -Alternatively, run `configure` followed by `make`.
34 +Run `configure` followed by `make`. If you're using git-sources, run
35 +autoreconf first to get various timestamps correct.
36
37 ## Helping out
38
39 @@ -28,7 +28,7 @@ There's also a [HACKING](./HACKING.md) doc to help you get started.
40 ## Examples
41
42 * find elf files linking to old openssl (using app-misc/pax-utils)<br>
43 - `qlist -ao | scanelf -BqgN libssl.so.0.9.6 -f -`
44 + `qlist -Cao | scanelf -BqgN libssl.so.0.9.6 -f -`
45
46 * produce a package.use file for currently installed packages<br>
47 `qlist -UCq | grep ' ' > package.use`
48 @@ -54,26 +54,3 @@ Please file bugs at:
49 * solar@g.o
50 * vapier@g.o
51 * grobian@g.o
52 -
53 -## Notes
54 -
55 -### Speed is everything.
56 -
57 -Having your PORTDIR and VDB on the right file system helps dramatically
58 -
59 -Nowadays this should rarely matter, but on smaller scale (embedded) or
60 -older hardware, consider the following.
61 -
62 -IDE raid with PORTDIR on reiserfs:
63 -
64 -```sh
65 -$ q -r
66 -q: Finished 20655 entries in 1.990951 seconds
67 -```
68 -
69 -IDE raid with PORTDIR on ext3:
70 -
71 -```sh
72 -$ q -r
73 -q: Finished 20655 entries in 203.664252 seconds
74 -```