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 EF17A13838B for ; Tue, 30 Sep 2014 00:46:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0492E0930; Tue, 30 Sep 2014 00:46:56 +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 3EC6EE0930 for ; Tue, 30 Sep 2014 00:46:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 159C53402E6 for ; Tue, 30 Sep 2014 00:46:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E47E5F9 for ; Tue, 30 Sep 2014 00:46:53 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1412037744.af6fa72adecf92d60a4d84f02d839da41e82fa33.dol-sen@gentoo> Subject: [gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/sync/modules/git/, pym/portage/sync/modules/websync/, ... X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/sync/modules/cvs/__init__.py pym/portage/sync/modules/git/__init__.py pym/portage/sync/modules/rsync/__init__.py pym/portage/sync/modules/websync/__init__.py X-VCS-Directories: pym/portage/sync/modules/git/ pym/portage/sync/modules/websync/ pym/portage/sync/modules/rsync/ pym/portage/sync/modules/cvs/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: af6fa72adecf92d60a4d84f02d839da41e82fa33 X-VCS-Branch: plugin-sync Date: Tue, 30 Sep 2014 00:46:53 +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: 7003b279-d761-4bee-92a9-8edd757160c6 X-Archives-Hash: 6d65111e4f7c307d46927cbdf058770f commit: af6fa72adecf92d60a4d84f02d839da41e82fa33 Author: Brian Dolbec gentoo org> AuthorDate: Mon Apr 21 18:25:55 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Tue Sep 30 00:42:24 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=af6fa72a sync/modules/*: Remove unused func_parameters in module_spec --- pym/portage/sync/modules/cvs/__init__.py | 10 ---------- pym/portage/sync/modules/git/__init__.py | 10 ---------- pym/portage/sync/modules/rsync/__init__.py | 10 ---------- pym/portage/sync/modules/websync/__init__.py | 10 ---------- 4 files changed, 40 deletions(-) diff --git a/pym/portage/sync/modules/cvs/__init__.py b/pym/portage/sync/modules/cvs/__init__.py index e1e0920..fd3b12a 100644 --- a/pym/portage/sync/modules/cvs/__init__.py +++ b/pym/portage/sync/modules/cvs/__init__.py @@ -40,16 +40,6 @@ module_spec = { 'exists': 'Returns a boolean of whether the specified dir ' + 'exists and is a valid CVS repository', }, - 'func_parameters': { - 'kwargs': { - 'type': dict, - 'description': 'Standard python **kwargs parameter format' + - 'Please refer to the sync modules specs at ' + - '"https://wiki.gentoo.org:Project:Portage" for details', - 'required-keys': ['options', 'settings', 'logger', 'repo', - 'xterm_titles', 'spawn_kwargs'], - }, - }, 'validate_config': CheckCVSConfig, } } diff --git a/pym/portage/sync/modules/git/__init__.py b/pym/portage/sync/modules/git/__init__.py index 593e95d..304142e 100644 --- a/pym/portage/sync/modules/git/__init__.py +++ b/pym/portage/sync/modules/git/__init__.py @@ -24,16 +24,6 @@ module_spec = { 'exists': 'Returns a boolean of whether the specified dir ' + 'exists and is a valid Git repository', }, - 'func_parameters': { - 'kwargs': { - 'type': dict, - 'description': 'Standard python **kwargs parameter format' + - 'Please refer to the sync modules specs at ' + - '"https://wiki.gentoo.org:Project:Portage" for details', - 'required-keys': ['options', 'settings', 'logger', 'repo', - 'xterm_titles', 'spawn_kwargs'], - }, - }, 'validate_config': CheckSyncConfig, } } diff --git a/pym/portage/sync/modules/rsync/__init__.py b/pym/portage/sync/modules/rsync/__init__.py index ce1daa1..9e19d85 100644 --- a/pym/portage/sync/modules/rsync/__init__.py +++ b/pym/portage/sync/modules/rsync/__init__.py @@ -23,16 +23,6 @@ module_spec = { 'new': 'Creates the new repository at the specified location', 'exists': 'Returns a boolean if the specified directory exists', }, - 'func_parameters': { - 'kwargs': { - 'type': dict, - 'description': 'Standard python **kwargs parameter format' + - 'Please refer to the sync modules specs at ' + - '"https://wiki.gentoo.org:Project:Portage" for details', - 'required-keys': ['options', 'settings', 'logger', 'repo', - 'xterm_titles', 'spawn_kwargs'], - }, - }, 'validate_config': CheckSyncConfig, } } diff --git a/pym/portage/sync/modules/websync/__init__.py b/pym/portage/sync/modules/websync/__init__.py index 6251535..e93ee10 100644 --- a/pym/portage/sync/modules/websync/__init__.py +++ b/pym/portage/sync/modules/websync/__init__.py @@ -42,16 +42,6 @@ module_spec = { 'exists': 'Returns a boolean of whether the specified dir ' + 'exists and is a valid repository', }, - 'func_parameters': { - 'kwargs': { - 'type': dict, - 'description': 'Standard python **kwargs parameter format' + - 'Please refer to the sync modules specs at ' + - '"https://wiki.gentoo.org:Project:Portage" for details', - 'required-keys': ['options', 'settings', 'logger', 'repo', - 'xterm_titles', 'spawn_kwargs'], - }, - }, 'validate_config': CheckSyncConfig, }, }