Gentoo Archives: gentoo-commits

From: Devan Franchini <twitch153@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/layman:master commit in: /
Date: Mon, 02 May 2016 03:30:55
Message-Id: 1462159695.0a7e9ea8476a7fb805033eacd4ebc8e96fe5b00b.twitch153@gentoo
1 commit: 0a7e9ea8476a7fb805033eacd4ebc8e96fe5b00b
2 Author: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 2 03:28:15 2016 +0000
4 Commit: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
5 CommitDate: Mon May 2 03:28:15 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/layman.git/commit/?id=0a7e9ea8
7
8 setup.py: Adds DB_MODULES to use_defaults to include them in the dist tarball
9
10 setup.py | 1 +
11 1 file changed, 1 insertion(+)
12
13 diff --git a/setup.py b/setup.py
14 index 140aacb..2649410 100755
15 --- a/setup.py
16 +++ b/setup.py
17 @@ -36,6 +36,7 @@ SYNC_PLUGINS = {
18 'sync-plugin-portage': 'portage.sync.modules.laymansync',
19 }
20
21 +use_defaults = ' '.join(list(DB_PLUGINS))
22 # get the USE from the environment, default to all selectable modules
23 # split them so we don't get substring matches
24 USE = os.environ.get("USE", use_defaults).split()