diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-09-29 19:24:42 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-09-29 19:24:42 +0100 |
commit | 149aa4106287cfc8916c713dceb03d616ab19df3 (patch) | |
tree | c6f58c7b08aec1e12f43832cbb9f61a3b64dc15e /src/frontend/cli/sisyphus-cli.py | |
parent | ff1c49138ddea22d8b4c1ab23c5c01ce03c180b4 (diff) |
backend : change the way we call portage; cli-frontend : no longer expose auto options
Diffstat (limited to 'src/frontend/cli/sisyphus-cli.py')
-rwxr-xr-x | src/frontend/cli/sisyphus-cli.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py index 1fb179c..c6d3e3c 100755 --- a/src/frontend/cli/sisyphus-cli.py +++ b/src/frontend/cli/sisyphus-cli.py @@ -10,24 +10,14 @@ PKGLIST = sys.argv[2:] if "__main__" == __name__: if "install" in sys.argv[1:]: sisyphus_pkg_install(PKGLIST) - elif "auto-install" in sys.argv[1:]: - sisyphus_pkg_auto_install(PKGLIST) elif "uninstall" in sys.argv[1:]: sisyphus_pkg_uninstall(PKGLIST) - elif "auto-uninstall" in sys.argv[1:]: - sisyphus_pkg_auto_uninstall(PKGLIST) elif "force-uninstall" in sys.argv[1:]: sisyphus_pkg_force_uninstall(PKGLIST) - elif "auto-force-uninstall" in sys.argv[1:]: - sisyphus_pkg_auto_force_uninstall(PKGLIST) elif "remove-orphans" in sys.argv[1:]: sisyphus_pkg_remove_orphans() - elif "auto-remove-orphans" in sys.argv[1:]: - sisyphus_pkg_auto_remove_orphans() elif "upgrade" in sys.argv[1:]: sisyphus_pkg_system_upgrade() - elif "auto-upgrade" in sys.argv[1:]: - sisyphus_pkg_auto_system_upgrade() elif "search" in sys.argv[1:]: sisyphus_pkg_search(PKGLIST) elif "update" in sys.argv[1:]: |