aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'repoman/lib/repoman/modules/scan/depend/__init__.py')
-rw-r--r--repoman/lib/repoman/modules/scan/depend/__init__.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/repoman/lib/repoman/modules/scan/depend/__init__.py b/repoman/lib/repoman/modules/scan/depend/__init__.py
new file mode 100644
index 000000000..c3cc0ddeb
--- /dev/null
+++ b/repoman/lib/repoman/modules/scan/depend/__init__.py
@@ -0,0 +1,34 @@
+# Copyright 2015-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+doc = """Depend plug-in module for repoman.
+Performs Dependency checks on ebuilds."""
+__doc__ = doc[:]
+
+
+module_spec = {
+ 'name': 'depend',
+ 'description': doc,
+ 'provides':{
+ 'profile-module': {
+ 'name': "profile",
+ 'sourcefile': "profile",
+ 'class': "ProfileDependsChecks",
+ 'description': doc,
+ 'functions': ['check'],
+ 'func_desc': {
+ },
+ 'mod_kwargs': ['qatracker', 'portdb', 'profiles', 'options',
+ 'repo_metadata', 'repo_settings', 'include_arches', 'caches',
+ 'repoman_incrementals', 'env', 'have', 'dev_keywords'
+ ],
+ 'func_kwargs': {
+ 'ebuild': (None, None),
+ 'pkg': (None, None),
+ },
+ 'module_runsIn': ['ebuilds'],
+ },
+ },
+ 'version': 1,
+}
+