summaryrefslogtreecommitdiff
path: root/src/backend/binhost.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-06-06 16:22:04 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-06-06 16:22:04 +0100
commitac0efd1bd6c703147bd8d3caedf489fab87d6131 (patch)
treee6af981b6e90be35447dbb88dd276a4d8ff2d47e /src/backend/binhost.py
parent49e6ab19aa461151132dfb4f1cf962d4ef403c66 (diff)
big rewrite : split the backend in smaller pieces, rework the cli frontend to work with the new backend ... gui frontend wip
Diffstat (limited to 'src/backend/binhost.py')
-rw-r--r--src/backend/binhost.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/backend/binhost.py b/src/backend/binhost.py
new file mode 100644
index 0000000..5bcf20c
--- /dev/null
+++ b/src/backend/binhost.py
@@ -0,0 +1,15 @@
+#!/usr/bin/python3
+
+import subprocess
+import io
+
+def getURL():
+ binhostURL = []
+ portageExec = subprocess.Popen(['emerge', '--info', '--verbose'], stdout=subprocess.PIPE)
+
+ for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"):
+ if "PORTAGE_BINHOST" in portageOutput.rstrip():
+ binhostURL = str(portageOutput.rstrip().split("=")[1].strip('\"'))
+
+ portageExec.wait()
+ return binhostURL