summaryrefslogtreecommitdiff
path: root/portato/backend/portage/settings.py
blob: 4e7a347af17e274200ab0bb882ddc7b3283fbb55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
#
# File: portato/backend/portage/settings.py
# This file is part of the Portato-Project, a graphical portage-frontend.
#
# Copyright (C) 2006-2007 René 'Necoro' Neumann
# This is free software.  You may redistribute copies of it under the terms of
# the GNU General Public License version 2.
# There is NO WARRANTY, to the extent permitted by law.
#
# Written by René 'Necoro' Neumann <necoro@necoro.net>

from __future__ import absolute_import

import os
import portage
from threading import Lock

class PortageSettings:
	"""Encapsulation of the portage settings.
	
	@ivar settings: portage settings
	@ivar settingslock: a simple Lock
	@ivar trees: a dictionary of the trees
	@ivar porttree: shortcut to C{trees[root]["porttree"]}
	@ivar vartree: shortcut to C{trees[root]["vartree"]}
	@ivar virtuals: shortcut to C{trees[root]["virtuals"]}"""

	def __init__ (self):
		"""Initializes the instance. Calls L{load()}."""
		self.settingslock = Lock()
		self.load()
		
	def load(self):
		"""(Re)loads the portage settings and sets the variables."""

		kwargs = {}
		for k, envvar in (("config_root", "PORTAGE_CONFIGROOT"), ("target_root", "ROOT")):
			kwargs[k] = os.environ.get(envvar, None)
		self.trees = portage.create_trees(trees=None, **kwargs)

		self.settings = self.trees["/"]["vartree"].settings

		for myroot in self.trees:
			if myroot != "/":
				self.settings = self.trees[myroot]["vartree"].settings
				break

		self.settings.unlock()

		root = self.settings["ROOT"]

		self.porttree = self.trees[root]["porttree"]
		self.vartree  = self.trees[root]["vartree"]
		self.virtuals = self.trees[root]["virtuals"]
		
		portage.settings = None # we use our own one ...
05f32be2720db9261c67da658c4c&follow=1'>edit: Quote editor so tests work in spaced directories.Jason A. Donenfeld1-1/+1 2014-05-10reencryption: Properly escape input to sedJason A. Donenfeld1-1/+1 2014-05-10git: use secure tmp directoryJason A. Donenfeld1-4/+11 2014-05-10configure git to decrypt gpg files automaticallySamuel Le Thiec1-0/+5 - usefull for git commands showing diff, e.g.: pass git log -p - from what I can see, not 'cleartext' temporary files are created 2014-05-08completion: add new generate flagsJason A. Donenfeld3-2/+7 2014-05-08inplace: mutually exclusive with forceJason A. Donenfeld2-3/+3 2014-05-08usage: tab to spacesJason A. Donenfeld1-1/+1 2014-05-08generate: use nice ansi colors instead.Jason A. Donenfeld1-3/+2 Revert "Mute git-commit messages to make pass insert readable" This reverts commit f30ce6374d554e704162d5fa8e49acd9c6fd0ecc. I decided I like the git output. Instead highlight generated passwords using nice terminal output instead. 2014-05-08zsh: posix compatible sed fix for zsh-completionJason A. Donenfeld1-1/+1 This reverts commit 56381287a16792b4c6410f07db68e02f3574c213, and further fixes things. 2014-05-07Implement interactive init functionSvend Sorensen1-0/+8 2014-05-07Implement interactive rename functionSvend Sorensen1-0/+7 2014-05-07Reorder interactive function to match order of helper functionsSvend Sorensen1-13/+13 2014-05-07Make edit helper function name consistent with other helpersSvend Sorensen1-1/+1 2014-05-07Factor out password completing-read functionSvend Sorensen1-4/+8 2014-05-07Add dash to Package-RequiresSvend Sorensen1-1/+1 2014-05-06Force sane sort order.Jason A. Donenfeld1-2/+2 2014-05-06generate: add --in-place optionJason A. Donenfeld4-9/+33