From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6DDFE138D0B for ; Mon, 6 Jul 2015 19:57:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 514EAE085E; Mon, 6 Jul 2015 19:57:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0267EE085E for ; Mon, 6 Jul 2015 19:57:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BBC7C340C01 for ; Mon, 6 Jul 2015 19:57:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CEBA873F for ; Mon, 6 Jul 2015 19:57:35 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1436212802.8b091dc01c96d36036ebcaef12342b2790213829.blueness@gentoo> Subject: [gentoo-commits] proj/grss:master commit in: / X-VCS-Repository: proj/grss X-VCS-Files: grsup X-VCS-Directories: / X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 8b091dc01c96d36036ebcaef12342b2790213829 X-VCS-Branch: master Date: Mon, 6 Jul 2015 19:57:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 31b3fbbd-87e5-4a4f-96b5-ef2192fc0f6e X-Archives-Hash: af8ed8bbe35d034ee756c03ac1a437bb commit: 8b091dc01c96d36036ebcaef12342b2790213829 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Jul 6 20:00:02 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Mon Jul 6 20:00:02 2015 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=8b091dc0 grsup: change to -D to download all binpkgs. grsup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grsup b/grsup index d956af9..5362d46 100755 --- a/grsup +++ b/grsup @@ -97,7 +97,7 @@ def usage(rc=1): usage = """ usage: grsup [pkg(s)] : update @world or pkg(s) if given grsup [-r|-d] pkg(s) : re-install or delete pkg(s) - grsup -C : download all @world pkgs, don't install + grsup -D : download all @world pkgs, don't install grsup -k kernel : install 'kernel' version, or 'latest' grsup -h : print this help """ @@ -136,7 +136,7 @@ def main(): args = ['-C', '-q'] args.extend(myfiles) exclude += 1 - elif o == '-C': + elif o == '-D': if len(myfiles) > 0: usage() args = ['-g', '-e', '-f', '-q', '@world']