diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-06-24 14:26:11 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-06-24 14:26:11 +0100 |
commit | 2faa4c83dbaca3958feb092c9776f016a0133e8f (patch) | |
tree | 2152532c590416e5bad3cb1a4856a4082ef26127 /frontend/cli/sisyphus-cli.py | |
parent | 5c4a755787dab0847a669ce355a64a7cad827b91 (diff) |
sisyphus-cli, ported to python3...yawza
Diffstat (limited to 'frontend/cli/sisyphus-cli.py')
-rwxr-xr-x | frontend/cli/sisyphus-cli.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/frontend/cli/sisyphus-cli.py b/frontend/cli/sisyphus-cli.py new file mode 100755 index 0000000..3d4fb3a --- /dev/null +++ b/frontend/cli/sisyphus-cli.py @@ -0,0 +1,33 @@ +#!/usr/bin/python3 + +import sys +import subprocess +from libsisyphus import * + +check_if_srcmode() + +if "__main__" == __name__: + if "install" in sys.argv[1:]: + sisyphus_pkg_install() + elif "uninstall" in sys.argv[1:]: + sisyphus_pkg_uninstall() + elif "force-uninstall" in sys.argv[1:]: + sisyphus_pkg_force_uninstall() + elif "remove-orphans" in sys.argv[1:]: + sisyphus_pkg_remove_orphans() + elif "upgrade" in sys.argv[1:]: + sisyphus_pkg_system_upgrade() + elif "auto-install" in sys.argv[1:]: + sisyphus_pkg_auto_install() + elif "auto-uninstall" in sys.argv[1:]: + sisyphus_pkg_auto_uninstall() + elif "auto-force-uninstall" in sys.argv[1:]: + sisyphus_pkg_auto_force_uninstall() + elif "auto-remove-orphans" in sys.argv[1:]: + sisyphus_pkg_auto_remove_orphans() + elif "auto-upgrade" in sys.argv[1:]: + sisyphus_pkg_auto_system_upgrade() + elif "search" in sys.argv[1:]: + sisyphus_pkg_search() + elif "update" in sys.argv[1:]: + sisyphus_pkg_system_update() |