aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md25
1 files changed, 15 insertions, 10 deletions
diff --git a/README.md b/README.md
index 59692a7..8400c68 100644
--- a/README.md
+++ b/README.md
@@ -2,9 +2,10 @@
| What | How |
| -------- | --------------------------------------------------------- |
-| HOMEPAGE | https://wiki.gentoo.org/wiki/Portage-utils |
-| GIT | git clone git://anongit.gentoo.org/proj/portage-utils.git |
+| HOMEPAGE | https://wiki.gentoo.org/wiki/Q\_applets |
+| GIT | https://anongit.gentoo.org/git/proj/portage-utils.git |
| VIEWVCS | https://gitweb.gentoo.org/proj/portage-utils.git/ |
+| GITHUB | https://github.com/gentoo/portage-utils |
| STATUS | [![Build Status](https://travis-ci.org/gentoo/portage-utils.svg?branch=master)](https://travis-ci.org/gentoo/portage-utils) [![Coverity Status](https://scan.coverity.com/projects/9213/badge.svg)](https://scan.coverity.com/projects/gentoo-portage-utils) |
portage-utils is a small set of utilities for working with Portage, Gentoo
@@ -18,40 +19,41 @@ Alternatively, run `configure` followed by `make`.
## Helping out
-There's a large [TODO](./TODO.md) list with various ideas for improvements.
+There's a large [TODO](./TODO.md) list with various ideas for
+improvements. File a bug on Gentoo's Bugzilla, or use Github's issues
+and pull requests.
There's also a [HACKING](./HACKING.md) doc to help you get started.
## Examples
-* find elf files linking to old openssl<br>
+* find elf files linking to old openssl (using app-misc/pax-utils)<br>
`qlist -ao | scanelf -BqgN libssl.so.0.9.6 -f -`
-* print a package.use<br>
+* produce a package.use file for currently installed packages<br>
`qlist -UCq | grep ' ' > package.use`
* find orphan files not owned by any package in /lib and /usr/lib<br>
`qfile -o {,/usr}/lib/*`
* get PORTDIR<br>
- `DEBUG=: ./q -Ch 2>&1 | grep ^PORTDIR | awk '{print $3}`
+ `env DEBUG=: q -Ch 2>&1 | grep ^PORTDIR | awk '{print $3}`
* Verify all packages<br>
- `qcheck -a`
+ `qcheck`
## Contact
### Bugs
Please file bugs at:
- https://bugs.gentoo.org/enter_bug.cgi?product=Portage%20Development&format=guided
-
-Use Component of "Third-Party Tools".
+ https://bugs.gentoo.org/enter_bug.cgi?product=Portage%20Development&component=Tools&format=guided
### Developers
* solar@gentoo.org
* vapier@gentoo.org
+* grobian@gentoo.org
## Notes
@@ -59,6 +61,9 @@ Use Component of "Third-Party Tools".
Having your PORTDIR and VDB on the right file system helps dramatically
+Nowadays this should rarely matter, but on smaller scale (embedded) or
+older hardware, consider the following.
+
IDE raid with PORTDIR on reiserfs:
```sh