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 C65861393DD for ; Fri, 27 Jun 2014 04:08:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAF13E0B1C; Fri, 27 Jun 2014 04:08:03 +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 6053AE0B1C for ; Fri, 27 Jun 2014 04:07:53 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CA363340169 for ; Fri, 27 Jun 2014 04:07:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id CC3701918D for ; Fri, 27 Jun 2014 04:07:49 +0000 (UTC) From: "Devan Franchini" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Devan Franchini" Message-ID: <1403149797.037f63818987de89e601bbed75b1248bb43f6c89.twitch153@gentoo> Subject: [gentoo-commits] proj/layman:gsoc2014 commit in: layman/ X-VCS-Repository: proj/layman X-VCS-Files: layman/argsparser.py X-VCS-Directories: layman/ X-VCS-Committer: twitch153 X-VCS-Committer-Name: Devan Franchini X-VCS-Revision: 037f63818987de89e601bbed75b1248bb43f6c89 X-VCS-Branch: gsoc2014 Date: Fri, 27 Jun 2014 04:07:49 +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: 1c382358-9b51-4090-9cb9-0ab71b0372d4 X-Archives-Hash: 1ccb61d97a9a57463b5595477832139f commit: 037f63818987de89e601bbed75b1248bb43f6c89 Author: Devan Franchini gentoo org> AuthorDate: Tue Jun 17 21:32:41 2014 +0000 Commit: Devan Franchini gentoo org> CommitDate: Thu Jun 19 03:49:57 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=037f6381 argsparser.py: Adds --storage cli option --- layman/argsparser.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/layman/argsparser.py b/layman/argsparser.py index f868cca..ff5d67f 100644 --- a/layman/argsparser.py +++ b/layman/argsparser.py @@ -196,6 +196,13 @@ class ArgsParser(BareConfig): help = 'Path to aditional overlay.xml files [default: ' '%s].' % (self.defaults['overlay_defs'] %self.defaults)) + path_opts.add_argument('-z', + '--storage', + action = 'store', + default = '/var/lib/layman', + help = 'Directory path to user for layman overlay inst' + 'allation location [default: /var/lib/layman].') + #----------------------------------------------------------------- # Output Options