Gentoo Archives: gentoo-commits

From: Wiktor W Brodlo <wiktor@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/anaconda:master commit in: gentoo/
Date: Tue, 05 Jul 2011 13:23:04
Message-Id: 2462eb350b6852a97ed0395443b954a0584ae5db.wiktor@gentoo
1 commit: 2462eb350b6852a97ed0395443b954a0584ae5db
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Tue Jul 5 13:22:33 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Tue Jul 5 13:22:33 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=2462eb35
7
8 gentoo/utils.py: emerge -1 the config helpers
9
10 ---
11 gentoo/utils.py | 12 ++++++------
12 1 files changed, 6 insertions(+), 6 deletions(-)
13
14 diff --git a/gentoo/utils.py b/gentoo/utils.py
15 index 4dd6590..f557c0c 100644
16 --- a/gentoo/utils.py
17 +++ b/gentoo/utils.py
18 @@ -1058,21 +1058,21 @@ class GentooInstall:
19 subprocess.call(["cp", "--recursive", "/usr/portage", self._root+"/usr/"])
20 # We need some packages from anaconda-overlay but ideally they should be added to portage
21 self._progress.set_fraction(0.5)
22 - subprocess.call(["cp", "--recursive", "/anaconda-overlay", self._root+"/usr/portage"])
23 + subprocess.call(["cp", "--recursive", "/anaconda-overlay/*", self._root+"/usr/portage/"])
24 self._progress.set_fraction(1)
25
26 def install_setup_tools(self):
27 self._progress.set_fraction(0.0)
28 self._progress.set_text(_("Installing configuration helpers"))
29 - self.install_package("system-config-date")
30 + self.install_package("-1 system-config-date")
31 self._progress.set_fraction(0.2)
32 - self.install_package("system-config-keyboard")
33 + self.install_package("-1 system-config-keyboard")
34 self._progress.set_fraction(0.4)
35 - self.install_package("system-config-users")
36 + self.install_package("-1 system-config-users")
37 self._progress.set_fraction(0.6)
38 - self.install_package("keyboard-configuration-helpers")
39 + self.install_package("-1 keyboard-configuration-helpers")
40 self._progress.set_fraction(0.8)
41 - self.install_package("language-configuration-helpers")
42 + self.install_package("-1 language-configuration-helpers")
43 self._progress.set_fraction(1.0)
44
45 def set_profile(self):