From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RuRLW-0008FS-C4 for garchives@archives.gentoo.org; Mon, 06 Feb 2012 16:23:15 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 253CEE0632; Mon, 6 Feb 2012 16:23:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id DA321E0632 for ; Mon, 6 Feb 2012 16:23:06 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B8841B4065 for ; Mon, 6 Feb 2012 16:23:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 310D680043 for ; Mon, 6 Feb 2012 16:23:05 +0000 (UTC) From: "Paul Varner" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Varner" Message-ID: <04e5656fe2f8b93b28ebb716275f10d8061cd45f.fuzzyray@gentoo> Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: pym/gentoolkit/revdep_rebuild/, man/, bin/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: bin/revdep-rebuild.sh man/revdep-rebuild.1 pym/gentoolkit/revdep_rebuild/rebuild.py X-VCS-Directories: pym/gentoolkit/revdep_rebuild/ man/ bin/ X-VCS-Committer: fuzzyray X-VCS-Committer-Name: Paul Varner X-VCS-Revision: 04e5656fe2f8b93b28ebb716275f10d8061cd45f Date: Mon, 6 Feb 2012 16:23:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 6c4115ee-bd24-4908-b252-f3abdfcb4098 X-Archives-Hash: b894377f90649413fd1485b1074f0e62 commit: 04e5656fe2f8b93b28ebb716275f10d8061cd45f Author: Paul Varner gentoo org> AuthorDate: Mon Feb 6 16:20:23 2012 +0000 Commit: Paul Varner gentoo org> CommitDate: Mon Feb 6 16:20:23 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoolkit.gi= t;a=3Dcommit;h=3D04e5656f Change the documentation for revdep-rebuild --library. Change the help output and man page to reflect that --library will unconditionally rebuild the packages with the named library. --- bin/revdep-rebuild.sh | 6 +++--- man/revdep-rebuild.1 | 2 +- pym/gentoolkit/revdep_rebuild/rebuild.py | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bin/revdep-rebuild.sh b/bin/revdep-rebuild.sh index 538e101..50bc070 100755 --- a/bin/revdep-rebuild.sh +++ b/bin/revdep-rebuild.sh @@ -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 wit= h NAME - --library=3DNAME NAME can be a full path to the library or a bas= ic - regular expression (man grep) + -L, --library NAME Unconditionally emerge existing packages that use= the + --library=3DNAME library with NAME. NAME can be a full path to t= he + 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.) diff --git a/man/revdep-rebuild.1 b/man/revdep-rebuild.1 index d82949b..8c31a45 100644 --- a/man/revdep-rebuild.1 +++ b/man/revdep-rebuild.1 @@ -27,7 +27,7 @@ Delete temporary files from previous runs. Force revdep\-rebuild not to delete temporary files after it successfull= y rebuilds packages. This option will NOT prevent revdep\-rebuild from de= leting inconsistent or out\-of\-date temporary files. .TP=20 .B \-\-library NAME | \-L NAME -Search for reverse dependencies for a particular library or group of lib= raries, 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 lib= raries, rather than every library on the system. This option will uncondi= tionally emerge packages that use the named library. \fBNote:\fR This opt= ion 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 reg= ular expression. (See regex(7).) .TP=20 .B \-l | \-\-no\-ld\-path Do not set LD_LIBRARY_PATH. \fBNote:\fR Using this option will cause rev= dep\-rebuild to report some false positives. diff --git a/pym/gentoolkit/revdep_rebuild/rebuild.py b/pym/gentoolkit/re= vdep_rebuild/rebuild.py index fe00069..80ba542 100644 --- a/pym/gentoolkit/revdep_rebuild/rebuild.py +++ b/pym/gentoolkit/revdep_rebuild/rebuild.py @@ -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=3DNAME NAME can be a full or partial library name + -L, --library NAME Unconditionally emerge existing packages that us= e + --library=3DNAME the library with NAME. NAME can be a full or p= artial + 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.)