From 206c993e45c39e60eceae1f66c69d39903ab9266 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 30 Oct 2022 20:02:58 +0000 Subject: space functions a bit --- src/backend/uninstall.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/backend/uninstall.py') diff --git a/src/backend/uninstall.py b/src/backend/uninstall.py index d219b47..be1a1e3 100644 --- a/src/backend/uninstall.py +++ b/src/backend/uninstall.py @@ -8,6 +8,7 @@ import sisyphus.checkenv import sisyphus.killemerge import sisyphus.syncdb + def start(pkgname): if sisyphus.checkenv.root(): portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname)) @@ -16,6 +17,7 @@ def start(pkgname): else: sys.exit("\nYou need root permissions to do this, exiting!\n") + def fstart(pkgname): if sisyphus.checkenv.root(): portageExec = subprocess.Popen(['emerge', '--quiet', '--unmerge', '--ask'] + list(pkgname)) @@ -24,6 +26,7 @@ def fstart(pkgname): else: sys.exit("\nYou need root permissions to do this, exiting!\n") + def startx(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 -- cgit v1.2.3