summaryrefslogtreecommitdiff
path: root/src/backend/uninstall.py
blob: 2537b746dc29ec7d6614378d5c44e60b6d772357 (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() == 0:
        portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname))
        portageExec.wait()
        sisyphus.database.syncLocal()
    else:
        sys.exit("\nYou need root permissions to do this, exiting!\n")