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 40BAD138A1A for ; Sun, 8 Feb 2015 03:48:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80B27E0B25; Sun, 8 Feb 2015 03:48:56 +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 244B7E0B25 for ; Sun, 8 Feb 2015 03:48:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E6FB43407C9 for ; Sun, 8 Feb 2015 03:48:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C765114B3 for ; Sun, 8 Feb 2015 03:48:53 +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: <1423367080.8b9f365238cb372fd104f640d6471ae4b93da352.twitch153@gentoo> Subject: [gentoo-commits] proj/layman:master commit in: layman/config_modules/makeconf/ X-VCS-Repository: proj/layman X-VCS-Files: layman/config_modules/makeconf/makeconf.py X-VCS-Directories: layman/config_modules/makeconf/ X-VCS-Committer: twitch153 X-VCS-Committer-Name: Devan Franchini X-VCS-Revision: 8b9f365238cb372fd104f640d6471ae4b93da352 X-VCS-Branch: master Date: Sun, 8 Feb 2015 03:48:53 +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: 3cd8a663-7383-4607-955a-df65ce3529f5 X-Archives-Hash: b074ee684270639e0bf9af10b5d02b16 commit: 8b9f365238cb372fd104f640d6471ae4b93da352 Author: Devan Franchini gentoo org> AuthorDate: Sun Feb 8 03:42:40 2015 +0000 Commit: Devan Franchini gentoo org> CommitDate: Sun Feb 8 03:44:40 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=8b9f3652 makeconf.py: Rewrites overlay names to make.conf If make.conf is not present on the system and layman-updater is ran then the presently installed overlays will be written to the make.conf file. --- layman/config_modules/makeconf/makeconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layman/config_modules/makeconf/makeconf.py b/layman/config_modules/makeconf/makeconf.py index 6a6890c..bb12bc9 100644 --- a/layman/config_modules/makeconf/makeconf.py +++ b/layman/config_modules/makeconf/makeconf.py @@ -255,7 +255,7 @@ class ConfigHandler: self.extra.append(o) else: - self.overlays = [] + self.overlays = [self.db[i] for i in self.db] self.data = 'PORTDIR_OVERLAY="\n"\n' self.extra = [i for i in self.extra