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 9B6D0138D19 for ; Tue, 14 Jul 2015 13:40:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 206B7E0899; Tue, 14 Jul 2015 13:40:36 +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 B20D8E0899 for ; Tue, 14 Jul 2015 13:40:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9CB0B3409EF for ; Tue, 14 Jul 2015 13:40:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F753729 for ; Tue, 14 Jul 2015 13:40:32 +0000 (UTC) From: "Devan Franchini" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Devan Franchini" Message-ID: <1436881286.a4d4a032db98ee94210aef10b22986fc56457d27.twitch153@gentoo> Subject: [gentoo-commits] proj/layman:master commit in: / X-VCS-Repository: proj/layman X-VCS-Files: setup.py X-VCS-Directories: / X-VCS-Committer: twitch153 X-VCS-Committer-Name: Devan Franchini X-VCS-Revision: a4d4a032db98ee94210aef10b22986fc56457d27 X-VCS-Branch: master Date: Tue, 14 Jul 2015 13:40:32 +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: f6922f84-193d-4afa-984d-8f20e2249d61 X-Archives-Hash: adb3c22df9175ce7615b5b09310a771a commit: a4d4a032db98ee94210aef10b22986fc56457d27 Author: Devan Franchini gentoo org> AuthorDate: Tue Jul 14 13:41:26 2015 +0000 Commit: Devan Franchini gentoo org> CommitDate: Tue Jul 14 13:41:26 2015 +0000 URL: https://gitweb.gentoo.org/proj/layman.git/commit/?id=a4d4a032 setup.py: Adds db_modules packages to list of install packages setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index aa8b37b..e923bc9 100755 --- a/setup.py +++ b/setup.py @@ -84,7 +84,9 @@ setup( 'http://git.overlays.gentoo.org/gitweb/?p=proj/layman.git;a=summary', packages = ['layman', 'layman.config_modules', 'layman.config_modules.makeconf', 'layman.config_modules.reposconf', - 'layman.overlays', 'layman.overlays.modules', + 'layman.db_modules', 'layman.db_modules.json_db', + 'layman.db_modules.xml_db', 'layman.overlays', + 'layman.overlays.modules', ] + modules, scripts = ['bin/layman', 'bin/layman-overlay-maker', 'bin/layman-mounter', 'bin/layman-updater'],