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

import subprocess
import sisyphus.check
import sisyphus.database
import sys

def start(pkgname):
    if sisyphus.check.root():
        portageExec = subprocess.Popen(['emerge', '--quiet', '--unmerge', '--ask'] + list(pkgname))
        portageExec.wait()
        sisyphus.database.syncLocal()
    else:
        sys.exit("\nYou need root permissions to do this, exiting!\n")