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 6DEFE1381F3 for ; Fri, 2 Aug 2013 10:34:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7353E096C; Fri, 2 Aug 2013 10:34:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 37F47E096C for ; Fri, 2 Aug 2013 10:34:45 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C83433EBB3 for ; Fri, 2 Aug 2013 10:34:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id BEABCE5467 for ; Fri, 2 Aug 2013 10:34:41 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1375438909.6efa8bdd1923b472dab2895823ab975009a94d2f.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/argutil.py X-VCS-Directories: roverlay/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 6efa8bdd1923b472dab2895823ab975009a94d2f X-VCS-Branch: master Date: Fri, 2 Aug 2013 10:34:41 +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: 1ffa9eb9-3c5d-4def-bd33-0efefa57cc7f X-Archives-Hash: c0c8639c8c3e97b342aa94193606b260 commit: 6efa8bdd1923b472dab2895823ab975009a94d2f Author: André Erdmann mailerd de> AuthorDate: Fri Aug 2 10:21:49 2013 +0000 Commit: André Erdmann mailerd de> CommitDate: Fri Aug 2 10:21:49 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=6efa8bdd roverlay/argutil: --sync-imports --sync-imports: fetch src when importing ebuilds even if --nosync is given --- roverlay/argutil.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/roverlay/argutil.py b/roverlay/argutil.py index 1f9a0bf..0f0b593 100644 --- a/roverlay/argutil.py +++ b/roverlay/argutil.py @@ -337,6 +337,16 @@ def get_parser ( command_map, default_config_file, default_command='create' ): ) arg ( + '--sync-imports', + default=None, dest='sync_imported', + help=( + 'allow fetching src files for imported ebuilds even if sync ' + 'is forbidden' + ), + action='store_true', + ) + + arg ( '--force-distroot', help="always use / as repo distdir.", **opt_in @@ -499,6 +509,7 @@ def parse_argv ( command_map, **kw ): target_uid = p.target_uid, target_gid = p.target_gid, dump_stats = p.dump_stats, + sync_imported = p.sync_imported, )