Gentoo Archives: gentoo-commits

From: Brian Dolbec <brian.dolbec@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/sync/modules/websync/, pym/portage/sync/modules/git/, ...
Date: Fri, 02 May 2014 23:13:48
Message-Id: 1399072157.3dbca60399503d7731a64874fe61fb00a639b1fd.dol-sen@gentoo
1 commit: 3dbca60399503d7731a64874fe61fb00a639b1fd
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 21 18:25:55 2014 +0000
4 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
5 CommitDate: Fri May 2 23:09:17 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=3dbca603
7
8 sync/modules/*: Remove unused func_parameters in module_spec
9
10 ---
11 pym/portage/sync/modules/cvs/__init__.py | 10 ----------
12 pym/portage/sync/modules/git/__init__.py | 10 ----------
13 pym/portage/sync/modules/rsync/__init__.py | 10 ----------
14 pym/portage/sync/modules/websync/__init__.py | 10 ----------
15 4 files changed, 40 deletions(-)
16
17 diff --git a/pym/portage/sync/modules/cvs/__init__.py b/pym/portage/sync/modules/cvs/__init__.py
18 index e1e0920..fd3b12a 100644
19 --- a/pym/portage/sync/modules/cvs/__init__.py
20 +++ b/pym/portage/sync/modules/cvs/__init__.py
21 @@ -40,16 +40,6 @@ module_spec = {
22 'exists': 'Returns a boolean of whether the specified dir ' +
23 'exists and is a valid CVS repository',
24 },
25 - 'func_parameters': {
26 - 'kwargs': {
27 - 'type': dict,
28 - 'description': 'Standard python **kwargs parameter format' +
29 - 'Please refer to the sync modules specs at ' +
30 - '"https://wiki.gentoo.org:Project:Portage" for details',
31 - 'required-keys': ['options', 'settings', 'logger', 'repo',
32 - 'xterm_titles', 'spawn_kwargs'],
33 - },
34 - },
35 'validate_config': CheckCVSConfig,
36 }
37 }
38
39 diff --git a/pym/portage/sync/modules/git/__init__.py b/pym/portage/sync/modules/git/__init__.py
40 index 593e95d..304142e 100644
41 --- a/pym/portage/sync/modules/git/__init__.py
42 +++ b/pym/portage/sync/modules/git/__init__.py
43 @@ -24,16 +24,6 @@ module_spec = {
44 'exists': 'Returns a boolean of whether the specified dir ' +
45 'exists and is a valid Git repository',
46 },
47 - 'func_parameters': {
48 - 'kwargs': {
49 - 'type': dict,
50 - 'description': 'Standard python **kwargs parameter format' +
51 - 'Please refer to the sync modules specs at ' +
52 - '"https://wiki.gentoo.org:Project:Portage" for details',
53 - 'required-keys': ['options', 'settings', 'logger', 'repo',
54 - 'xterm_titles', 'spawn_kwargs'],
55 - },
56 - },
57 'validate_config': CheckSyncConfig,
58 }
59 }
60
61 diff --git a/pym/portage/sync/modules/rsync/__init__.py b/pym/portage/sync/modules/rsync/__init__.py
62 index ce1daa1..9e19d85 100644
63 --- a/pym/portage/sync/modules/rsync/__init__.py
64 +++ b/pym/portage/sync/modules/rsync/__init__.py
65 @@ -23,16 +23,6 @@ module_spec = {
66 'new': 'Creates the new repository at the specified location',
67 'exists': 'Returns a boolean if the specified directory exists',
68 },
69 - 'func_parameters': {
70 - 'kwargs': {
71 - 'type': dict,
72 - 'description': 'Standard python **kwargs parameter format' +
73 - 'Please refer to the sync modules specs at ' +
74 - '"https://wiki.gentoo.org:Project:Portage" for details',
75 - 'required-keys': ['options', 'settings', 'logger', 'repo',
76 - 'xterm_titles', 'spawn_kwargs'],
77 - },
78 - },
79 'validate_config': CheckSyncConfig,
80 }
81 }
82
83 diff --git a/pym/portage/sync/modules/websync/__init__.py b/pym/portage/sync/modules/websync/__init__.py
84 index c5dc170..7d1586a 100644
85 --- a/pym/portage/sync/modules/websync/__init__.py
86 +++ b/pym/portage/sync/modules/websync/__init__.py
87 @@ -40,16 +40,6 @@ module_spec = {
88 'exists': 'Returns a boolean of whether the specified dir ' +
89 'exists and is a valid Git repository',
90 },
91 - 'func_parameters': {
92 - 'kwargs': {
93 - 'type': dict,
94 - 'description': 'Standard python **kwargs parameter format' +
95 - 'Please refer to the sync modules specs at ' +
96 - '"https://wiki.gentoo.org:Project:Portage" for details',
97 - 'required-keys': ['options', 'settings', 'logger', 'repo',
98 - 'xterm_titles', 'spawn_kwargs'],
99 - },
100 - },
101 'validate_config': CheckSyncConfig,
102 },
103 }