Gentoo Archives: gentoo-commits

From: "Devan Franchini (twitch153)" <twitch153@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/layman/files: layman-2.1.0-incorrect-import-make-conf-fix.patch
Date: Tue, 02 Sep 2014 22:07:03
Message-Id: 20140902220659.52FD148D5@oystercatcher.gentoo.org
1 twitch153 14/09/02 22:06:59
2
3 Added: layman-2.1.0-incorrect-import-make-conf-fix.patch
4 Log:
5 Adds patch to fix improper import for ConfigHandler, bug #521724
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A8C8FBCF)
8
9 Revision Changes Path
10 1.1 app-portage/layman/files/layman-2.1.0-incorrect-import-make-conf-fix.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/layman/files/layman-2.1.0-incorrect-import-make-conf-fix.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/layman/files/layman-2.1.0-incorrect-import-make-conf-fix.patch?rev=1.1&content-type=text/plain
14
15 Index: layman-2.1.0-incorrect-import-make-conf-fix.patch
16 ===================================================================
17 From 8f6005fcfb9d2012bba428863f89b6b9168c8226 Mon Sep 17 00:00:00 2001
18 From: Devan Franchini <twitch153@g.o>
19 Date: Thu, 22 May 2014 22:57:08 -0400
20 Subject: [PATCH] updater.py: Fixes incorrect import for make.conf class
21
22 X-Gentoo-Bug: 521724
23 X-Gentoo-Bug-URL: https://bugs.gentoo.org/521724
24 ---
25 layman/updater.py | 4 ++--
26 1 files changed, 2 insertions(+), 2 deletions(-)
27
28 diff --git a/layman/updater.py b/layman/updater.py
29 index 26aeed2..b2187e3 100644
30 --- a/layman/updater.py
31 +++ b/layman/updater.py
32 @@ -155,8 +155,8 @@ class Main(object):
33 self.output.info(" Creating layman's make.conf file")
34 # create layman's %(storage)s/make.conf
35 # so portage won't error
36 - from layman.makeconf import MakeConf
37 - maker = MakeConf(self.config, None)
38 + from layman.makeconf import ConfigHandler
39 + maker = ConfigHandler(self.config, None)
40 maker.write()
41
42
43 --
44 1.8.5.5