1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
#!/usr/bin/python3
import sys, subprocess, sqlite3
from PyQt5 import QtCore, QtGui, QtWidgets, uic
from libsisyphus import *
class Sisyphus(QtWidgets.QMainWindow):
def __init__(self):
super(Sisyphus, self).__init__()
uic.loadUi('ui/sisyphus-gui.ui', self)
self.refresh_database()
self.centerOnScreen()
self.show()
self.load_packages()
self.input.returnPressed.connect(self.filter_database)
self.install.clicked.connect(self.install_package)
self.uninstall.clicked.connect(self.uninstall_package)
self.orphans.clicked.connect(self.remove_orphans)
self.upgrade.clicked.connect(self.upgrade_system)
self.abort.clicked.connect(self.exit_sisyphus)
def centerOnScreen(self):
resolution = QtWidgets.QDesktopWidget().screenGeometry()
self.move((resolution.width() / 2) - (self.frameSize().width() / 2),
(resolution.height() / 2) - (self.frameSize().height() / 2))
def install_package(self):
pkgname = self.database.item(self.database.currentRow(), 1).text()
subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-install'] + pkgname.split())
def uninstall_package(self):
pkgname = self.database.item(self.database.currentRow(), 1).text()
subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-uninstall'] + pkgname.split())
def remove_orphans(self):
subprocess.Popen(['xterm', '-e', 'sisyphus', 'remove-orphans'])
def upgrade_system(self):
subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-upgrade'])
def refresh_database(self):
sisyphus_pkg_system_update()
def exit_sisyphus(self):
self.close()
def filter_database(self):
items = self.database.findItems(self.input.text(), QtCore.Qt.MatchExactly)
if items:
for item in items:
results = ''.join('%d' % (item.row() + 0)).split()
coordinates = map(int, results)
for coordinate in coordinates:
self.database.setCurrentCell(coordinate, 0)
def load_packages(self):
with sqlite3.connect('/var/lib/sisyphus/db/sisyphus.db') as db:
cursor=db.cursor()
cursor.execute('''SELECT
a.category AS cat,
a.name AS pn,
a.version AS av,
i.version AS iv,
a.description AS descr
FROM remote_packages AS a
LEFT JOIN local_packages AS i
ON a.category = i.category
AND a.name = i.name
AND a.slot = i.slot
''')
rows = cursor.fetchall()
for row in rows:
inx = rows.index(row)
self.database.insertRow(inx)
self.database.setItem(inx, 0, QtWidgets.QTableWidgetItem(row[0]))
self.database.setItem(inx, 1, QtWidgets.QTableWidgetItem(row[1]))
self.database.setItem(inx, 2, QtWidgets.QTableWidgetItem(row[2]))
self.database.setItem(inx, 3, QtWidgets.QTableWidgetItem(row[3]))
self.database.setItem(inx, 4, QtWidgets.QTableWidgetItem(row[4]))
if __name__ == '__main__':
app = QtWidgets.QApplication(sys.argv)
window = Sisyphus()
sys.exit(app.exec_())
|