summaryrefslogtreecommitdiff
path: root/src/frontend/gui/development.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/gui/development.py')
-rwxr-xr-xsrc/frontend/gui/development.py16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/frontend/gui/development.py b/src/frontend/gui/development.py
index ede83a4..2c3a66b 100755
--- a/src/frontend/gui/development.py
+++ b/src/frontend/gui/development.py
@@ -37,7 +37,21 @@ class Development(QtWidgets.QMainWindow):
def load_packages(self):
with sqlite3.connect('/var/lib/sisyphus/db/sisyphus.db') as db:
cursor=db.cursor()
- cursor.execute('''SELECT * from remote_packages''')
+ 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
+ WHERE a.name IN
+ ('notepadqq',
+ 'qt-creator')
+ ''')
rows = cursor.fetchall()
for row in rows: