summaryrefslogtreecommitdiff
path: root/src/backend/binhost.py
blob: 3de4fca7a1bd2de1be302c3aca89e2a3be782449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/python3

import io
import subprocess

def start():
    isBinhost = []
    portageExec = subprocess.Popen(['emerge', '--info', '--verbose'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
    stdout, stderr = portageExec.communicate()

    for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"):
        if "PORTAGE_BINHOST" in portageOutput.rstrip():
            isBinhost = str(portageOutput.rstrip().split("=")[1].strip('\"'))

    return isBinhost