commit: 1df76f315f2f67be2263d46e00105d555588f42d
Author: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
AuthorDate: Mon May 2 03:28:15 2016 +0000
Commit: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
CommitDate: Mon May 2 03:44:19 2016 +0000
URL: https://gitweb.gentoo.org/proj/layman.git/commit/?id=1df76f31
setup.py: Adds DB_MODULES to use_defaults to include them in the dist tarball
setup.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/setup.py b/setup.py
index 140aacb..8cdb717 100755
--- a/setup.py
+++ b/setup.py
@@ -36,6 +36,7 @@ SYNC_PLUGINS = {
'sync-plugin-portage': 'portage.sync.modules.laymansync',
}
+use_defaults += ' ' + ' '.join(list(DB_PLUGINS))
# get the USE from the environment, default to all selectable modules
# split them so we don't get substring matches
USE = os.environ.get("USE", use_defaults).split()