Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/grss:master commit in: /
Date: Mon, 06 Jul 2015 19:57:48
Message-Id: 1436212802.8b091dc01c96d36036ebcaef12342b2790213829.blueness@gentoo
1 commit: 8b091dc01c96d36036ebcaef12342b2790213829
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 6 20:00:02 2015 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 6 20:00:02 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=8b091dc0
7
8 grsup: change to -D to download all binpkgs.
9
10 grsup | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13 diff --git a/grsup b/grsup
14 index d956af9..5362d46 100755
15 --- a/grsup
16 +++ b/grsup
17 @@ -97,7 +97,7 @@ def usage(rc=1):
18 usage = """
19 usage: grsup [pkg(s)] : update @world or pkg(s) if given
20 grsup [-r|-d] pkg(s) : re-install or delete pkg(s)
21 - grsup -C : download all @world pkgs, don't install
22 + grsup -D : download all @world pkgs, don't install
23 grsup -k kernel : install 'kernel' version, or 'latest'
24 grsup -h : print this help
25 """
26 @@ -136,7 +136,7 @@ def main():
27 args = ['-C', '-q']
28 args.extend(myfiles)
29 exclude += 1
30 - elif o == '-C':
31 + elif o == '-D':
32 if len(myfiles) > 0:
33 usage()
34 args = ['-g', '-e', '-f', '-q', '@world']