blob: b874738f944132dbb091072f2fd0bc1893cde8db (
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
|
#!/usr/bin/python3
import atexit
import io
import subprocess
import sys
import sisyphus.checkEnvironment
import sisyphus.killPortage
import sisyphus.syncDatabase
def cliExec(pkgname):
if sisyphus.checkEnvironment.root():
portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname))
portageExec.wait()
sisyphus.syncDatabase.localTable()
else:
sys.exit("\nYou need root permissions to do this, exiting!\n")
def cliExecForce(pkgname):
if sisyphus.checkEnvironment.root():
portageExec = subprocess.Popen(['emerge', '--quiet', '--unmerge', '--ask'] + list(pkgname))
portageExec.wait()
sisyphus.syncDatabase.localTable()
else:
sys.exit("\nYou need root permissions to do this, exiting!\n")
def guiExec(pkgname):
portageExec = subprocess.Popen(['emerge', '--depclean'] + pkgname, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
# kill portage if the program dies or it's terminated by the user
atexit.register(sisyphus.killPortage.start, portageExec)
for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"):
print(portageOutput.rstrip())
portageExec.wait()
sisyphus.syncDatabase.localTable()
|