From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1427050-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D79C5158094 for <garchives@archives.gentoo.org>; Fri, 12 Aug 2022 16:07:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 013ACE07C9; Fri, 12 Aug 2022 16:07:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D07CDE07C9 for <gentoo-commits@lists.gentoo.org>; Fri, 12 Aug 2022 16:07:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D2893341022 for <gentoo-commits@lists.gentoo.org>; Fri, 12 Aug 2022 16:07:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 049C3568 for <gentoo-commits@lists.gentoo.org>; Fri, 12 Aug 2022 16:07:04 +0000 (UTC) From: "Zac Medico" <zmedico@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" <zmedico@gentoo.org> Message-ID: <1660320347.b7c3656f8c356b20675abf90df37b24ab8b8eeb5.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: man/ X-VCS-Repository: proj/portage X-VCS-Files: man/emerge.1 X-VCS-Directories: man/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: b7c3656f8c356b20675abf90df37b24ab8b8eeb5 X-VCS-Branch: master Date: Fri, 12 Aug 2022 16:07:04 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0606ee7f-3758-4ea6-959d-401da0a6a77a X-Archives-Hash: f42f83a67646c9aa902967c5c9deb16d commit: b7c3656f8c356b20675abf90df37b24ab8b8eeb5 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org> AuthorDate: Wed Aug 10 12:57:23 2022 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Fri Aug 12 16:05:47 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=b7c3656f man/emerge.1: add clarification to -k and -K Both -k and -K imply --with-bdeps=n. While this is already noted under the documentation for --with-bdeps, a brief reminder under the documentation for -k and -K is useful. A user interested in binary packages might look under -k and -K first and miss the default behavior with respect to build time dependencies. Bug: https://bugs.gentoo.org/863422 Closes: https://github.com/gentoo/portage/pull/886 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org> Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> man/emerge.1 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/man/emerge.1 b/man/emerge.1 index 5ba88f3bc..4eaf073e2 100644 --- a/man/emerge.1 +++ b/man/emerge.1 @@ -1056,13 +1056,16 @@ Tells emerge to use binary packages (from $PKGDIR) if they are available, thus possibly avoiding some time\-consuming compiles. This option is useful for CD installs; you can export PKGDIR=/mnt/cdrom/packages and then use this option to have emerge "pull" binary packages from the CD in order to satisfy -dependencies. +dependencies. Note this option implies \fB\-\-with\-bdeps=n\fR. To include +build time dependencies, \fB\-\-with\-bdeps=y\fR must be specified explicitly. .TP .BR "\-\-usepkgonly [ y | n ]" ", " \-K Tells emerge to only use binary packages (from $PKGDIR). All the binary packages must be available at the time of dependency calculation or emerge will simply abort. Portage does not use ebuild repositories when calculating -dependency information so all masking information is ignored. +dependency information so all masking information is ignored. Like \fB\-k\fR +above, this option implies \fB\-\-with\-bdeps=n\fR. To include build time +dependencies, \fB\-\-with\-bdeps=y\fR must be specified explicitly. .TP .BR "\-\-usepkg\-exclude\-live [ y | n ]" Tells emerge to not install from binary packages for live ebuilds.