Gentoo Archives: gentoo-commits

From: Paul Varner <fuzzyray@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: pym/gentoolkit/revdep_rebuild/, man/, bin/
Date: Mon, 06 Feb 2012 16:23:15
Message-Id: 04e5656fe2f8b93b28ebb716275f10d8061cd45f.fuzzyray@gentoo
1 commit: 04e5656fe2f8b93b28ebb716275f10d8061cd45f
2 Author: Paul Varner <fuzzyray <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 6 16:20:23 2012 +0000
4 Commit: Paul Varner <fuzzyray <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 6 16:20:23 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoolkit.git;a=commit;h=04e5656f
7
8 Change the documentation for revdep-rebuild --library.
9
10 Change the help output and man page to reflect that --library will
11 unconditionally rebuild the packages with the named library.
12
13 ---
14 bin/revdep-rebuild.sh | 6 +++---
15 man/revdep-rebuild.1 | 2 +-
16 pym/gentoolkit/revdep_rebuild/rebuild.py | 6 +++---
17 3 files changed, 7 insertions(+), 7 deletions(-)
18
19 diff --git a/bin/revdep-rebuild.sh b/bin/revdep-rebuild.sh
20 index 538e101..50bc070 100755
21 --- a/bin/revdep-rebuild.sh
22 +++ b/bin/revdep-rebuild.sh
23 @@ -180,9 +180,9 @@ Broken reverse dependency rebuilder.
24 -h, --help Print this usage
25 -i, --ignore Ignore temporary files from previous runs
26 -k, --keep-temp Do not delete temporary files on exit
27 - -L, --library NAME Emerge existing packages that use the library with NAME
28 - --library=NAME NAME can be a full path to the library or a basic
29 - regular expression (man grep)
30 + -L, --library NAME Unconditionally emerge existing packages that use the
31 + --library=NAME library with NAME. NAME can be a full path to the
32 + library or a basic regular expression (man grep)
33 -l, --no-ld-path Do not set LD_LIBRARY_PATH
34 -o, --no-order Do not check the build order
35 (Saves time, but may cause breakage.)
36
37 diff --git a/man/revdep-rebuild.1 b/man/revdep-rebuild.1
38 index d82949b..8c31a45 100644
39 --- a/man/revdep-rebuild.1
40 +++ b/man/revdep-rebuild.1
41 @@ -27,7 +27,7 @@ Delete temporary files from previous runs.
42 Force revdep\-rebuild not to delete temporary files after it successfully rebuilds packages. This option will NOT prevent revdep\-rebuild from deleting inconsistent or out\-of\-date temporary files.
43 .TP
44 .B \-\-library NAME | \-L NAME
45 -Search for reverse dependencies for a particular library or group of libraries, rather than every library on the system. Emerge packages that use the named library. NAME can be a full path to a library or basic regular expression. (See regex(7).)
46 +Search for reverse dependencies for a particular library or group of libraries, rather than every library on the system. This option will unconditionally emerge packages that use the named library. \fBNote:\fR This option is used to force packages using the named library to be rebuilt even if they are not broken. NAME can be a full path to a library or basic regular expression. (See regex(7).)
47 .TP
48 .B \-l | \-\-no\-ld\-path
49 Do not set LD_LIBRARY_PATH. \fBNote:\fR Using this option will cause revdep\-rebuild to report some false positives.
50
51 diff --git a/pym/gentoolkit/revdep_rebuild/rebuild.py b/pym/gentoolkit/revdep_rebuild/rebuild.py
52 index fe00069..80ba542 100644
53 --- a/pym/gentoolkit/revdep_rebuild/rebuild.py
54 +++ b/pym/gentoolkit/revdep_rebuild/rebuild.py
55 @@ -56,9 +56,9 @@ def print_usage():
56 -h, --help Print this usage
57 -i, --ignore Ignore temporary files from previous runs
58 (also won't create any)
59 - -L, --library NAME Emerge existing packages that use
60 - the library with NAME
61 - --library=NAME NAME can be a full or partial library name
62 + -L, --library NAME Unconditionally emerge existing packages that use
63 + --library=NAME the library with NAME. NAME can be a full or partial
64 + library name
65 -l, --no-ld-path Do not set LD_LIBRARY_PATH
66 -o, --no-order Do not check the build order
67 (Saves time, but may cause breakage.)