diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-01-30 14:41:20 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-01-30 14:41:20 +0000 |
commit | 515171c670ed6ae373002196b8cd3dd1154cd5cc (patch) | |
tree | 24c23352ea23f85f95cb065d200621949fd986c7 /src | |
parent | 1e64e01b293ecd775af05816cc3d299ebadb5960 (diff) |
ui : move package operations into the backend
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/__init__.py | 14 | ||||
-rw-r--r-- | src/backend/autoremove.py | 16 | ||||
-rw-r--r-- | src/backend/ebuildinstall.py (renamed from src/backend/installebuild.py) | 0 | ||||
-rw-r--r-- | src/backend/ebuildsearch.py (renamed from src/backend/searchebuild.py) | 0 | ||||
-rw-r--r-- | src/backend/ebuildupgrade.py (renamed from src/backend/upgradeebuild.py) | 0 | ||||
-rw-r--r-- | src/backend/forceuninstall.py (renamed from src/backend/uninstallforce.py) | 0 | ||||
-rw-r--r-- | src/backend/install.py (renamed from src/backend/installbinary.py) | 42 | ||||
-rw-r--r-- | src/backend/search.py (renamed from src/backend/searchbinary.py) | 0 | ||||
-rw-r--r-- | src/backend/uninstall.py | 16 | ||||
-rw-r--r-- | src/backend/upgrade.py (renamed from src/backend/upgradebinary.py) | 48 | ||||
-rwxr-xr-x | src/frontend/cli/sisyphus-cli.py | 14 | ||||
-rw-r--r-- | src/frontend/gui/sisyphus-gui.py | 113 |
12 files changed, 136 insertions, 127 deletions
diff --git a/src/backend/__init__.py b/src/backend/__init__.py index 59c927c..d868abb 100644 --- a/src/backend/__init__.py +++ b/src/backend/__init__.py @@ -6,23 +6,23 @@ from .cache import * from .check import * from .csvfiles import * from .database import * +from .ebuildinstall import * +from .ebuildsearch import * +from .ebuildupgrade import * from .filesystem import * -from .installbinary import * -from .installebuild import * +from .forceuninstall import * +from .install import * from .killportage import * from .metadata import * from .mirror import * from .rescue import * -from .searchbinary import * -from .searchebuild import * +from .search import * from .setjobs import * from .setprofile import * from .solvedeps import * from .spmsync import * from .sync import * from .sysinfo import * -from .uninstallforce import * from .uninstall import * from .update import * -from .upgradebinary import * -from .upgradeebuild import * +from .upgrade import * diff --git a/src/backend/autoremove.py b/src/backend/autoremove.py index 497d8e5..5c2ee7a 100644 --- a/src/backend/autoremove.py +++ b/src/backend/autoremove.py @@ -1,9 +1,12 @@ #!/usr/bin/python3 +import atexit +import io import subprocess +import sys import sisyphus.check import sisyphus.database -import sys +import sisyphus.killportage def start(): if sisyphus.check.root(): @@ -12,3 +15,14 @@ def start(): sisyphus.database.syncLocal() else: sys.exit("\nYou need root permissions to do this, exiting!\n") + +def startqt(): + portageExec = subprocess.Popen(['emerge', '--depclean'], stdout=subprocess.PIPE) + # kill portage if the program dies or it's terminated by the user + atexit.register(sisyphus.killportage.start, portageExec) + + for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): + print(portageOutput.rstrip()) + + portageExec.wait() + sisyphus.database.syncLocal() diff --git a/src/backend/installebuild.py b/src/backend/ebuildinstall.py index 27062bf..27062bf 100644 --- a/src/backend/installebuild.py +++ b/src/backend/ebuildinstall.py diff --git a/src/backend/searchebuild.py b/src/backend/ebuildsearch.py index c9b5862..c9b5862 100644 --- a/src/backend/searchebuild.py +++ b/src/backend/ebuildsearch.py diff --git a/src/backend/upgradeebuild.py b/src/backend/ebuildupgrade.py index 21add70..21add70 100644 --- a/src/backend/upgradeebuild.py +++ b/src/backend/ebuildupgrade.py diff --git a/src/backend/uninstallforce.py b/src/backend/forceuninstall.py index 11139f4..11139f4 100644 --- a/src/backend/uninstallforce.py +++ b/src/backend/forceuninstall.py diff --git a/src/backend/installbinary.py b/src/backend/install.py index d161a3c..cf6d55c 100644 --- a/src/backend/installbinary.py +++ b/src/backend/install.py @@ -1,15 +1,17 @@ #!/usr/bin/python3 +import atexit +import io import os import shutil import subprocess import sys -import io import wget import sisyphus.binhost import sisyphus.check import sisyphus.database import sisyphus.filesystem +import sisyphus.killportage import sisyphus.solvedeps import sisyphus.update @@ -66,3 +68,41 @@ def start(pkgname): sys.exit("\n" + "Invalid request;" " " + "Use" + " " + "'" + "sisyphus install" + " " + " ".join(pkgname) + " " + "--ebuild" + "'" + ";" + " " + "Quitting." + "\n") else: sys.exit("\nYou need root permissions to do this, exiting!\n") + +def startqt(pkgname): + binhostURL = sisyphus.binhost.getURL() + areBinaries,areSources,needsConfig = sisyphus.solvedeps.package.__wrapped__(pkgname) #undecorate + + os.chdir(sisyphus.filesystem.portageCacheDir) + print("\n" + "These are the binary packages that will be merged, in order:" + "\n\n" + " ".join(areBinaries) + "\n\n" + "Total:" + " " + str(len(areBinaries)) + " " + "binary package(s)" + "\n\n") + for index, binary in enumerate([package + '.tbz2' for package in areBinaries]): + print(">>> Fetching" + " " + binhostURL + binary) + wget.download(binhostURL + binary) + print("\n") + + subprocess.call(['qtbz2', '-x'] + binary.rstrip().split("/")[1].split()) + CATEGORY = subprocess.check_output(['qxpak', '-x', '-O'] + binary.rstrip().split("/")[1].replace('tbz2', 'xpak').split() + ['CATEGORY']) + + if os.path.exists(binary.rstrip().split("/")[1].replace('tbz2', 'xpak')): + os.remove(binary.rstrip().split("/")[1].replace('tbz2', 'xpak')) + + if os.path.isdir(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip())): + shutil.move(binary.rstrip().split("/")[1], os.path.join(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip()), os.path.basename(binary.rstrip().split("/")[1]))) + else: + os.makedirs(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip())) + shutil.move(binary.rstrip().split("/")[1], os.path.join(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip()), os.path.basename(binary.rstrip().split("/")[1]))) + + if os.path.exists(binary.rstrip().split("/")[1]): + os.remove(binary.rstrip().split("/")[1]) + + portageExec = subprocess.Popen(['emerge', '--usepkg', '--usepkgonly', '--rebuilt-binaries', '--misspell-suggestion=n', '--fuzzy-search=n'] + pkgname, stdout=subprocess.PIPE) + # kill portage if the program dies or it's terminated by the user + atexit.register(sisyphus.killportage.start, portageExec) + + for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): + if not "These are the packages that would be merged, in order:" in portageOutput.rstrip(): + if not "Calculating dependencies" in portageOutput.rstrip(): + print(portageOutput.rstrip()) + + portageExec.wait() + sisyphus.database.syncLocal() diff --git a/src/backend/searchbinary.py b/src/backend/search.py index b52c3c6..b52c3c6 100644 --- a/src/backend/searchbinary.py +++ b/src/backend/search.py diff --git a/src/backend/uninstall.py b/src/backend/uninstall.py index 8da7e79..9d76067 100644 --- a/src/backend/uninstall.py +++ b/src/backend/uninstall.py @@ -1,9 +1,12 @@ #!/usr/bin/python3 +import atexit +import io import subprocess +import sys import sisyphus.check import sisyphus.database -import sys +import sisyphus.killportage def start(pkgname): if sisyphus.check.root(): @@ -12,3 +15,14 @@ def start(pkgname): sisyphus.database.syncLocal() else: sys.exit("\nYou need root permissions to do this, exiting!\n") + +def startqt(pkgname): + portageExec = subprocess.Popen(['emerge', '--depclean'] + pkgname, stdout=subprocess.PIPE) + # kill portage if the program dies or it's terminated by the user + atexit.register(sisyphus.killportage.start, portageExec) + + for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): + print(portageOutput.rstrip()) + + portageExec.wait() + sisyphus.database.syncLocal() diff --git a/src/backend/upgradebinary.py b/src/backend/upgrade.py index 9b14868..06839f6 100644 --- a/src/backend/upgradebinary.py +++ b/src/backend/upgrade.py @@ -1,15 +1,17 @@ #!/usr/bin/python3 +import atexit +import io import os import shutil import subprocess import sys -import io import wget import sisyphus.binhost import sisyphus.check import sisyphus.database import sisyphus.filesystem +import sisyphus.killportage import sisyphus.solvedeps import sisyphus.update @@ -66,3 +68,47 @@ def start(): sys.exit("\n" + "Invalid request;" " " + "Use" + " " + "'" + "sisyphus upgrade --ebuild" + "'" + ";" + " " + "Quitting." + "\n") else: sys.exit("\nYou need root permissions to do this, exiting!\n") + +def startqt() + binhostURL = sisyphus.binhost.getURL() + areBinaries,areSources,needsConfig = sisyphus.solvedeps.world.__wrapped__() #undecorate + + if not len(areSources) == 0: + print("\n" + "Source package(s) found in the mix;" + " " + "Use sisyphus CLI:" + " " + "'" + "sisyphus upgrade --ebuild" + "'" + " " + "to perform the upgrade;" + " " + "Aborting." + "\n") + else: + if not len(areBinaries) == 0: + os.chdir(sisyphus.filesystem.portageCacheDir) + print("\n" + "These are the binary packages that will be merged, in order:" + "\n\n" + " ".join(areBinaries) + "\n\n" + "Total:" + " " + str(len(areBinaries)) + " " + "binary package(s)" + "\n\n") + for index, binary in enumerate([package + '.tbz2' for package in areBinaries]): + print(">>> Fetching" + " " + binhostURL + binary) + wget.download(binhostURL + binary) + print("\n") + + subprocess.call(['qtbz2', '-x'] + binary.rstrip().split("/")[1].split()) + CATEGORY = subprocess.check_output(['qxpak', '-x', '-O'] + binary.rstrip().split("/")[1].replace('tbz2', 'xpak').split() + ['CATEGORY']) + + if os.path.exists(binary.rstrip().split("/")[1].replace('tbz2', 'xpak')): + os.remove(binary.rstrip().split("/")[1].replace('tbz2', 'xpak')) + + if os.path.isdir(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip())): + shutil.move(binary.rstrip().split("/")[1], os.path.join(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip()), os.path.basename(binary.rstrip().split("/")[1]))) + else: + os.makedirs(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip())) + shutil.move(binary.rstrip().split("/")[1], os.path.join(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip()), os.path.basename(binary.rstrip().split("/")[1]))) + + if os.path.exists(binary.rstrip().split("/")[1]): + os.remove(binary.rstrip().split("/")[1]) + + portageExec = subprocess.Popen(['emerge', '--update', '--deep', '--newuse', '--usepkg', '--usepkgonly', '--rebuilt-binaries', '--backtrack=100', '--with-bdeps=y', '--misspell-suggestion=n', '--fuzzy-search=n', '@world'], stdout=subprocess.PIPE) + # kill portage if the program dies or it's terminated by the user + atexit.register(sisyphus.killportage.start, portageExec) + + for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): + if not "These are the packages that would be merged, in order:" in portageOutput.rstrip(): + if not "Calculating dependencies" in portageOutput.rstrip(): + print(portageOutput.rstrip()) + + portageExec.wait() + sisyphus.database.syncLocal() + else: + print("\n" + "No package upgrades found; Quitting." + "\n") diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py index e69a547..5c87698 100755 --- a/src/frontend/cli/sisyphus-cli.py +++ b/src/frontend/cli/sisyphus-cli.py @@ -97,12 +97,12 @@ def search(package: List[str] = typer.Argument(...), cat, pn = package[0].split('/') else: cat, pn = '', package[0] - sisyphus.searchbinary.start(filter.value, cat, pn, desc, quiet) + sisyphus.search.start(filter.value, cat, pn, desc, quiet) else: if not package: raise typer.Exit('No search term provided, try: sisyphus search --help') else: - sisyphus.searchebuild.start(package) + sisyphus.ebuildsearch.start(package) @app.command("install") def install(pkgname: List[str], ebuild: bool = typer.Option(False, "--ebuild", "-e")): @@ -124,9 +124,9 @@ def install(pkgname: List[str], ebuild: bool = typer.Option(False, "--ebuild", " You can use the --ebuild option even if you don't want to install any ebuild(source) packages; It will fall back to binary packages only. """ if not ebuild: - sisyphus.installbinary.start(pkgname) + sisyphus.install.start(pkgname) else: - sisyphus.installebuild.start(pkgname) + sisyphus.ebuildinstall.start(pkgname) @app.command("uninstall") def uninstall(pkgname: List[str], force: bool = typer.Option(False, "--force", "-f")): @@ -163,7 +163,7 @@ def uninstall(pkgname: List[str], force: bool = typer.Option(False, "--force", " if not force: sisyphus.uninstall.start(pkgname) else: - sisyphus.uninstallforce.start(pkgname) + sisyphus.forceuninstall.start(pkgname) @app.command("autoremove") def autoremove(): @@ -203,9 +203,9 @@ def upgrade(ebuild: bool = typer.Option(False, "--ebuild", "-e")): You can use the --ebuild option even if you don't have any ebuild(source) packages installed; It will fall back to binary packages only. """ if not ebuild: - sisyphus.upgradebinary.start() + sisyphus.upgrade.start() else: - sisyphus.upgradeebuild.start() + sisyphus.ebuildupgrade.start() @app.command("spmsync") def spmsync(): diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index fa2b057..8930f6c 100644 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -1,13 +1,7 @@ #!/usr/bin/python3 -import os import sys -import subprocess import sqlite3 -import io -import atexit -import wget -import shutil import sisyphus from collections import OrderedDict from PyQt5 import QtCore, QtGui, QtWidgets, uic @@ -398,125 +392,26 @@ class MainWorker(QtCore.QObject): def startInstall(self): self.started.emit() pkgname = Sisyphus.pkgname - - binhostURL = sisyphus.binhost.getURL() - areBinaries,areSources,needsConfig = sisyphus.solvedeps.package.__wrapped__(pkgname) #undecorate - - os.chdir(sisyphus.filesystem.portageCacheDir) - self.workerOutput.emit("\n" + "These are the binary packages that will be merged, in order:" + "\n\n" + " ".join(areBinaries) + "\n\n" + "Total:" + " " + str(len(areBinaries)) + " " + "binary package(s)" + "\n\n") - for index, binary in enumerate([package + '.tbz2' for package in areBinaries]): - self.workerOutput.emit(">>> Fetching" + " " + binhostURL + binary) - wget.download(binhostURL + binary) - self.workerOutput.emit("\n") - - subprocess.call(['qtbz2', '-x'] + binary.rstrip().split("/")[1].split()) - CATEGORY = subprocess.check_output(['qxpak', '-x', '-O'] + binary.rstrip().split("/")[1].replace('tbz2', 'xpak').split() + ['CATEGORY']) - - if os.path.exists(binary.rstrip().split("/")[1].replace('tbz2', 'xpak')): - os.remove(binary.rstrip().split("/")[1].replace('tbz2', 'xpak')) - - if os.path.isdir(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip())): - shutil.move(binary.rstrip().split("/")[1], os.path.join(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip()), os.path.basename(binary.rstrip().split("/")[1]))) - else: - os.makedirs(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip())) - shutil.move(binary.rstrip().split("/")[1], os.path.join(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip()), os.path.basename(binary.rstrip().split("/")[1]))) - - if os.path.exists(binary.rstrip().split("/")[1]): - os.remove(binary.rstrip().split("/")[1]) - - portageExec = subprocess.Popen(['emerge', '--usepkg', '--usepkgonly', '--rebuilt-binaries', '--misspell-suggestion=n', '--fuzzy-search=n'] + pkgname, stdout=subprocess.PIPE) - - # kill portage if the program dies or it's terminated by the user - atexit.register(sisyphus.killportage.start, portageExec) - - for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): - if not "These are the packages that would be merged, in order:" in portageOutput.rstrip(): - if not "Calculating dependencies" in portageOutput.rstrip(): - self.workerOutput.emit(portageOutput.rstrip() + "\n") - - portageExec.wait() - sisyphus.database.syncLocal() + sisyphus.install.startqt(pkgname) self.finished.emit() @QtCore.pyqtSlot() def startUninstall(self): self.started.emit() pkgname = Sisyphus.pkgname - portageExec = subprocess.Popen(['emerge', '--depclean'] + pkgname, stdout=subprocess.PIPE) - - # kill portage if the program dies or it's terminated by the user - atexit.register(sisyphus.killportage.start, portageExec) - - for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): - self.workerOutput.emit(portageOutput.rstrip() + "\n") - - portageExec.wait() - sisyphus.database.syncLocal() + sisyphus.uninstall.startqt(pkgname) self.finished.emit() @QtCore.pyqtSlot() def startUpgrade(self): self.started.emit() - - binhostURL = sisyphus.binhost.getURL() - areBinaries,areSources,needsConfig = sisyphus.solvedeps.world.__wrapped__() #undecorate - - if not len(areSources) == 0: - self.workerOutput.emit("\n" + "Source package upgrades detected; Use sisyphus CLI to perform the upgrade; Aborting." + "\n") - else: - if not len(areBinaries) == 0: - self.workerOutput.emit("\n" + "These are the binary packages that will be merged, in order:" + "\n\n" + " ".join(areBinaries) + "\n\n" + "Total:" + " " + str(len(areBinaries)) + " " + "binary package(s)" + "\n\n") - os.chdir(sisyphus.filesystem.portageCacheDir) - for index, binary in enumerate([package + '.tbz2' for package in areBinaries]): - self.workerOutput.emit(">>> Fetching" + " " + binhostURL + binary) - wget.download(binhostURL + binary) - self.workerOutput.emit("\n") - - subprocess.call(['qtbz2', '-x'] + binary.rstrip().split("/")[1].split()) - CATEGORY = subprocess.check_output(['qxpak', '-x', '-O'] + binary.rstrip().split("/")[1].replace('tbz2', 'xpak').split() + ['CATEGORY']) - - if os.path.exists(binary.rstrip().split("/")[1].replace('tbz2', 'xpak')): - os.remove(binary.rstrip().split("/")[1].replace('tbz2', 'xpak')) - - if os.path.isdir(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip())): - shutil.move(binary.rstrip().split("/")[1], os.path.join(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip()), os.path.basename(binary.rstrip().split("/")[1]))) - else: - os.makedirs(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip())) - shutil.move(binary.rstrip().split("/")[1], os.path.join(os.path.join(sisyphus.filesystem.portageCacheDir, CATEGORY.decode().strip()), os.path.basename(binary.rstrip().split("/")[1]))) - - if os.path.exists(binary.rstrip().split("/")[1]): - os.remove(binary.rstrip().split("/")[1]) - - portageExec = subprocess.Popen(['emerge', '--update', '--deep', '--newuse', '--usepkg', '--usepkgonly', '--rebuilt-binaries', '--backtrack=100', '--with-bdeps=y', '--misspell-suggestion=n', '--fuzzy-search=n', '@world'], stdout=subprocess.PIPE) - - # kill portage if the program dies or it's terminated by the user - atexit.register(sisyphus.killportage.start, portageExec) - - for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): - if not "These are the packages that would be merged, in order:" in portageOutput.rstrip(): - if not "Calculating dependencies" in portageOutput.rstrip(): - self.workerOutput.emit(portageOutput.rstrip() + "\n") - - portageExec.wait() - sisyphus.database.syncLocal() - else: - self.workerOutput.emit("\n" + "No package upgrades found; Quitting." + "\n") - + sisyphus.upgrade.startqt() self.finished.emit() @QtCore.pyqtSlot() def startAutoremove(self): self.started.emit() - portageExec = subprocess.Popen(['emerge', '--depclean'], stdout=subprocess.PIPE) - - # kill portage if the program dies or it's terminated by the user - atexit.register(sisyphus.killportage.start, portageExec) - - for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): - self.workerOutput.emit(portageOutput.rstrip() + "\n") - - portageExec.wait() - sisyphus.database.syncLocal() + sisyphus.autoremove.startqt() self.finished.emit() |