#-*- codding:UTF-8 -*- #!/usr/bin/env python import os, sys, json from utils import load_config class PortageConfig(): def __init__(self): self.Config = load_config() self.TargetParse =['USE', 'USE_EXPAN', 'VIDEO_CARDS', 'ACCEPT_CHOSTS', 'ACCEPT_LICENSE','CCACHE_DIR', 'CCACHE_SIZE', 'EMERGE_DEFAULT_OPTS', 'CFLAGS', 'CXXFLAGS', 'MAKEOPTS'] self.MakeConfig={} def getLines(self, filename): if os.path.exists(filename): with open (filename, 'r') as f: lines = f.read().split("\n") else: print("path is not Found") return lines def parseMakeConf(self): StateBox = 'Null' Lines = self.getLines(self.Config['Portage']['make.conf']) for line in Lines: if not line.startswith('#') and len(line.split("="))>1: line.replace('"', "") if StateBox == 'Null' and not line.endswith('"'): StateBox = line.split('=')[0] self.MakeConfig[StateBox] =[] self.MakeConfig[StateBox] = line.split('=')[1].split(" ") for i in line.split('=')[1].split(" "): self.MakeConfig[split('=')[0]].append(i) elif StateBox !='Null' and not line.endswith('"'): StateBox = line.split('=')[1] for i in line.split('=')[1].split(" "): self.MakeConfig[line.split('=')[0]].append(i) elif StateBox == 'Null' and line.endswith('"'): #line.replace('"', "") self.MakeConfig[line.split('=')[0]] = line.split('="')[1].split(" ") print(self.MakeConfig) def parsePackageUse(self): Lines = self.getlines(self.Config.Portage['package.use']) def parsePackageMasks(self): Lines = self.getlines(self.Config.Portage['package.mask']) def parsePackageKeywords(self): Lines = self.getlines(self.Config.Portage['package.keywords']) if __name__ == '__main__': test = PortageConfig() test.parseMakeConf()