Change the documentation for revdep-rebuild --library.
authorPaul Varner <fuzzyray@gentoo.org>
Mon, 6 Feb 2012 16:20:23 +0000 (10:20 -0600)
committerPaul Varner <fuzzyray@gentoo.org>
Mon, 6 Feb 2012 16:20:23 +0000 (10:20 -0600)
Change the help output and man page to reflect that --library will
unconditionally rebuild the packages with the named library.

bin/revdep-rebuild.sh
man/revdep-rebuild.1
pym/gentoolkit/revdep_rebuild/rebuild.py

index 538e101185875641354d75f8d76925d11194131a..50bc0707599358a22252298fcfbf68fc3cd73ed3 100755 (executable)
@@ -180,9 +180,9 @@ Broken reverse dependency rebuilder.
   -h, --help           Print this usage
   -i, --ignore         Ignore temporary files from previous runs
   -k, --keep-temp      Do not delete temporary files on exit
-  -L, --library NAME   Emerge existing packages that use the library with NAME
-      --library=NAME   NAME can be a full path to the library or a basic
-                       regular expression (man grep)
+  -L, --library NAME   Unconditionally emerge existing packages that use the
+      --library=NAME   library with NAME. NAME can be a full path to the
+                       library or a basic regular expression (man grep)
   -l, --no-ld-path     Do not set LD_LIBRARY_PATH
   -o, --no-order       Do not check the build order
                        (Saves time, but may cause breakage.)
index d82949b672b995af7a1bcf694fcad01c2f65b805..8c31a458d1777f6867fadfb497193d63256618bd 100644 (file)
@@ -27,7 +27,7 @@ Delete temporary files from previous runs.
 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.
 .TP 
 .B \-\-library NAME | \-L NAME
-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).)
+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).)
 .TP 
 .B \-l | \-\-no\-ld\-path
 Do not set LD_LIBRARY_PATH. \fBNote:\fR Using this option will cause revdep\-rebuild to report some false positives.
index fe00069953c6223e99c8c09e5e477b664f26acbd..80ba542f612cbd12e23d72756ae503d5009589f7 100644 (file)
@@ -56,9 +56,9 @@ def print_usage():
   -h, --help            Print this usage
   -i, --ignore          Ignore temporary files from previous runs
                         (also won't create any)
-  -L, --library NAME    Emerge existing packages that use
-                        the library with NAME
-       --library=NAME   NAME can be a full or partial library name
+  -L, --library NAME    Unconditionally emerge existing packages that use
+      --library=NAME    the library with NAME. NAME can be a full or partial
+                        library name
   -l, --no-ld-path      Do not set LD_LIBRARY_PATH
   -o, --no-order        Do not check the build order
                         (Saves time, but may cause breakage.)