X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 6E40EDC128E for ; Thu, 27 Jun 2013 19:29:10 +0000 (UTC) Received: from compute3.internal (compute3.nyi.mail.srv.osa [10.202.2.43]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id C522420AFA for ; Thu, 27 Jun 2013 15:29:04 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute3.internal (MEProxy); Thu, 27 Jun 2013 15:29:04 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id :in-reply-to:references; s=smtpout; bh=knsverg5ieQQ+ocYN1K+gwmum ro=; b=SYjqJD4rE+0xMduBQTIoVBjfCO83tw63a5RrrXzYCTr8NHqdFQzPbiIsL loSZ6IIg5keZ527KrEaVbqCalmq1e+Nv4e0G5klh8iZ5gB7rZhSHn1aUnrMSP+xe blTg3YJjganLFecPLnOkk6p4y1f6qT/msdIDJPxj/nXwpEIH4I= X-Sasl-enc: p9TOWuYzkuNr4oIjd1vGHuePb+dXa59xTJyEsmQYsSyB 1372361344 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id 8F271680456 for ; Thu, 27 Jun 2013 15:29:04 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 08/15] clarify "apk info -R" vs "apk search -R" Date: Thu, 27 Jun 2013 15:28:53 -0400 Message-Id: X-Mailer: git-send-email 1.8.3.1 In-Reply-To: References: X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- src/info.c | 2 +- src/search.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/info.c b/src/info.c index 6859268..578e118 100644 --- a/src/info.c +++ b/src/info.c @@ -421,7 +421,7 @@ static struct apk_option info_options[] = { { 'e', "installed", "Check if PACKAGE is installed" }, { 'W', "who-owns", "Print the package owning the specified file" }, { 'D', "depends", "List packages that the PACKAGE (directly) depends on" }, - { 'R', "rdepends", "List all packages (directly) depending on PACKAGE" }, + { 'R', "rdepends", "List all installed packages (directly) depending on PACKAGE" }, { 'r', NULL, "Synonym for -R (deprecated)" }, { 'P', "provides", "List virtual packages provided by PACKAGE" }, { 0x10000, "replaces", "List packages whom files PACKAGE might replace" }, diff --git a/src/search.c b/src/search.c index e5044a9..122affe 100644 --- a/src/search.c +++ b/src/search.c @@ -173,7 +173,7 @@ static struct apk_option search_options[] = { { 'd', "description", "Search package descriptions (implies -a)" }, { 'e', "exact", "Require exact match (instead of substring match)" }, { 'o', "origin", "Print origin package name instead of the subpackage" }, - { 'R', "rdepends", "Print reverse dependencies of package" }, + { 'R', "rdepends", "List all (installed and uninstalled) packages depending on PACKAGE" }, { 'r', NULL, "Synonym for -R (deprecated)" }, }; -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---