2012-12-12 13:12:27 -03:00
|
|
|
#! /usr/bin/python
|
2012-12-23 12:26:19 -03:00
|
|
|
# -*-coding:utf-8 -*-
|
2012-12-12 13:12:27 -03:00
|
|
|
|
2013-01-16 15:09:52 -03:00
|
|
|
from gi.repository import Gtk
|
2012-12-12 13:12:27 -03:00
|
|
|
|
|
|
|
import pyalpm
|
2013-02-06 12:09:43 -03:00
|
|
|
from collections import OrderedDict
|
2012-12-12 13:12:27 -03:00
|
|
|
from time import strftime, localtime
|
2012-12-29 11:06:44 -03:00
|
|
|
|
2013-01-16 15:09:52 -03:00
|
|
|
from pamac import config, common, transaction
|
2012-12-12 13:12:27 -03:00
|
|
|
|
|
|
|
interface = Gtk.Builder()
|
2013-01-06 15:10:13 -03:00
|
|
|
|
2013-02-10 11:59:53 -03:00
|
|
|
interface.add_from_file('/usr/share/pamac/gui/dialogs.glade')
|
|
|
|
ErrorDialog = interface.get_object('ErrorDialog')
|
|
|
|
WarningDialog = interface.get_object('WarningDialog')
|
|
|
|
QuestionDialog = interface.get_object('QuestionDialog')
|
|
|
|
ProgressWindow = interface.get_object('ProgressWindow')
|
|
|
|
progress_bar = interface.get_object('progressbar2')
|
|
|
|
progress_label = interface.get_object('progresslabel2')
|
|
|
|
action_icon = interface.get_object('action_icon')
|
|
|
|
ProgressCancelButton = interface.get_object('ProgressCancelButton')
|
2012-12-12 13:12:27 -03:00
|
|
|
|
2013-02-10 11:59:53 -03:00
|
|
|
interface.add_from_file('/usr/share/pamac/gui/manager.glade')
|
|
|
|
ManagerWindow = interface.get_object("ManagerWindow")
|
2012-12-12 13:12:27 -03:00
|
|
|
packages_list = interface.get_object('packages_list')
|
|
|
|
groups_list = interface.get_object('groups_list')
|
|
|
|
package_desc = interface.get_object('package_desc')
|
|
|
|
toggle = interface.get_object('cellrenderertoggle1')
|
|
|
|
search_entry = interface.get_object('search_entry')
|
|
|
|
tree2 = interface.get_object('treeview2_selection')
|
|
|
|
tree1 = interface.get_object('treeview1_selection')
|
|
|
|
installed_column = interface.get_object('installed_column')
|
|
|
|
name_column = interface.get_object('name_column')
|
2012-12-31 11:41:51 -03:00
|
|
|
ConfDialog = interface.get_object('ConfDialog')
|
|
|
|
transaction_sum = interface.get_object('transaction_sum')
|
2013-02-10 11:59:53 -03:00
|
|
|
sum_top_label = interface.get_object('sum_top_label')
|
|
|
|
sum_bottom_label = interface.get_object('sum_bottom_label')
|
2013-01-27 14:15:34 -03:00
|
|
|
ChooseDialog = interface.get_object('ChooseDialog')
|
|
|
|
choose_list = interface.get_object('choose_list')
|
2013-02-01 09:41:36 -03:00
|
|
|
choose_label = interface.get_object('choose_label')
|
2012-12-31 11:41:51 -03:00
|
|
|
|
2013-02-10 11:59:53 -03:00
|
|
|
interface.add_from_file('/usr/share/pamac/gui/updater.glade')
|
|
|
|
UpdaterWindow = interface.get_object("UpdaterWindow")
|
|
|
|
update_listore = interface.get_object('update_list')
|
|
|
|
update_label = interface.get_object('update_label')
|
|
|
|
|
2012-12-12 13:12:27 -03:00
|
|
|
installed_column.set_sort_column_id(1)
|
|
|
|
name_column.set_sort_column_id(0)
|
|
|
|
|
2013-01-27 14:15:34 -03:00
|
|
|
transaction.get_handle()
|
2012-12-12 13:12:27 -03:00
|
|
|
tmp_list = []
|
2013-01-27 14:15:34 -03:00
|
|
|
for repo in transaction.handle.get_syncdbs():
|
2012-12-12 13:12:27 -03:00
|
|
|
for name, pkgs in repo.grpcache:
|
|
|
|
if not name in tmp_list:
|
|
|
|
tmp_list.append(name)
|
|
|
|
tmp_list = sorted(tmp_list)
|
|
|
|
for name in tmp_list:
|
|
|
|
groups_list.append([name])
|
|
|
|
|
|
|
|
pkg_name_list = []
|
|
|
|
pkg_object_dict = {}
|
|
|
|
pkg_installed_dict = {}
|
|
|
|
list_dict = None
|
|
|
|
current_group = None
|
|
|
|
transaction_type = None
|
|
|
|
transaction_dict = {}
|
2013-02-10 11:59:53 -03:00
|
|
|
mode = None
|
2012-12-12 13:12:27 -03:00
|
|
|
|
|
|
|
def set_list_dict_search(*patterns):
|
|
|
|
global pkg_name_list
|
|
|
|
global pkg_object_dict
|
|
|
|
global pkg_installed_dict
|
|
|
|
pkg_name_list = []
|
|
|
|
pkg_object_dict = {}
|
|
|
|
pkg_installed_dict = {}
|
2013-01-27 14:15:34 -03:00
|
|
|
for db in transaction.handle.get_syncdbs():
|
2012-12-12 13:12:27 -03:00
|
|
|
for pkg_object in db.search(*patterns):
|
|
|
|
if not pkg_object.name in pkg_name_list:
|
|
|
|
pkg_name_list.append(pkg_object.name)
|
|
|
|
pkg_object_dict[pkg_object.name] = pkg_object
|
|
|
|
pkg_installed_dict[pkg_object.name] = False
|
2013-01-27 14:15:34 -03:00
|
|
|
for pkg_object in transaction.handle.get_localdb().search(*patterns):
|
2012-12-12 13:12:27 -03:00
|
|
|
if not pkg_object.name in pkg_name_list:
|
|
|
|
pkg_name_list.append(pkg_object.name)
|
|
|
|
pkg_installed_dict[pkg_object.name] = True
|
|
|
|
pkg_object_dict[pkg_object.name] = pkg_object
|
|
|
|
pkg_name_list = sorted(pkg_name_list)
|
|
|
|
|
|
|
|
def set_list_dict_group(group):
|
|
|
|
global pkg_name_list
|
|
|
|
global pkg_object_dict
|
|
|
|
global pkg_installed_dict
|
|
|
|
pkg_name_list = []
|
|
|
|
pkg_object_dict = {}
|
|
|
|
pkg_installed_dict = {}
|
2013-01-27 14:15:34 -03:00
|
|
|
for db in transaction.handle.get_syncdbs():
|
2012-12-12 13:12:27 -03:00
|
|
|
grp = db.read_grp(group)
|
|
|
|
if grp is not None:
|
|
|
|
name, pkg_list = grp
|
|
|
|
for pkg_object in pkg_list:
|
|
|
|
if not pkg_object.name in pkg_name_list:
|
|
|
|
pkg_name_list.append(pkg_object.name)
|
|
|
|
pkg_object_dict[pkg_object.name] = pkg_object
|
|
|
|
pkg_installed_dict[pkg_object.name] = False
|
2013-01-13 12:37:17 -03:00
|
|
|
db = config.pacman_conf.initialize_alpm().get_localdb()
|
2012-12-12 13:12:27 -03:00
|
|
|
grp = db.read_grp(group)
|
|
|
|
if grp is not None:
|
|
|
|
name, pkg_list = grp
|
|
|
|
for pkg_object in pkg_list:
|
|
|
|
if not pkg_object.name in pkg_name_list:
|
|
|
|
pkg_name_list.append(pkg_object.name)
|
|
|
|
pkg_installed_dict[pkg_object.name] = True
|
|
|
|
pkg_object_dict[pkg_object.name] = pkg_object
|
|
|
|
pkg_name_list = sorted(pkg_name_list)
|
|
|
|
|
|
|
|
def refresh_packages_list():
|
|
|
|
global packages_list
|
|
|
|
packages_list.clear()
|
|
|
|
if not pkg_name_list:
|
2013-01-26 12:10:11 -03:00
|
|
|
packages_list.append(["No package found", False, False])
|
2012-12-12 13:12:27 -03:00
|
|
|
else:
|
|
|
|
for name in pkg_name_list:
|
|
|
|
if name in config.holdpkg:
|
|
|
|
packages_list.append([name, pkg_installed_dict[name], False])
|
|
|
|
elif transaction_type is "install":
|
|
|
|
if pkg_installed_dict[name] is True:
|
|
|
|
packages_list.append([name, pkg_installed_dict[name], False])
|
|
|
|
elif name in transaction_dict.keys():
|
|
|
|
packages_list.append([name, True, True])
|
|
|
|
else:
|
|
|
|
packages_list.append([name, pkg_installed_dict[name], True])
|
|
|
|
elif transaction_type is "remove":
|
|
|
|
if pkg_installed_dict[name] is False:
|
|
|
|
packages_list.append([name, pkg_installed_dict[name], False])
|
|
|
|
elif name in transaction_dict.keys():
|
|
|
|
packages_list.append([name, False, True])
|
|
|
|
else:
|
|
|
|
packages_list.append([name, pkg_installed_dict[name], True])
|
|
|
|
else:
|
|
|
|
packages_list.append([name, pkg_installed_dict[name], True])
|
|
|
|
|
|
|
|
def set_packages_list():
|
|
|
|
global list_dict
|
|
|
|
if list_dict == "search":
|
|
|
|
search_strings_list = search_entry.get_text().split()
|
|
|
|
set_list_dict_search(*search_strings_list)
|
|
|
|
if list_dict == "group":
|
|
|
|
set_list_dict_group(current_group)
|
|
|
|
refresh_packages_list()
|
|
|
|
|
|
|
|
def set_desc(pkg, style):
|
|
|
|
"""
|
|
|
|
Args :
|
|
|
|
pkg_object -- the package to display
|
|
|
|
style -- 'local' or 'sync'
|
|
|
|
"""
|
|
|
|
|
|
|
|
if style not in ['local', 'sync', 'file']:
|
|
|
|
raise ValueError('Invalid style for package info formatting')
|
|
|
|
|
|
|
|
package_desc.clear()
|
|
|
|
|
|
|
|
if style == 'sync':
|
|
|
|
package_desc.append(['Repository:', pkg.db.name])
|
|
|
|
package_desc.append(['Name:', pkg.name])
|
|
|
|
package_desc.append(['Version:', pkg.version])
|
|
|
|
package_desc.append(['Description:', pkg.desc])
|
|
|
|
package_desc.append(['URL:', pkg.url])
|
|
|
|
package_desc.append(['Licenses:', ' '.join(pkg.licenses)])
|
|
|
|
package_desc.append(['Groups:', ' '.join(pkg.groups)])
|
|
|
|
package_desc.append(['Provides:', ' '.join(pkg.provides)])
|
|
|
|
package_desc.append(['Depends On:', ' '.join(pkg.depends)])
|
|
|
|
package_desc.append(['Optional Deps:', '\n'.join(pkg.optdepends)])
|
|
|
|
if style == 'local':
|
|
|
|
package_desc.append(['Required By:', ' '.join(pkg.compute_requiredby())])
|
|
|
|
package_desc.append(['Conflicts With:', ' '.join(pkg.conflicts)])
|
|
|
|
package_desc.append(['Replaces:', ' '.join(pkg.replaces)])
|
|
|
|
if style == 'sync':
|
2013-01-16 15:09:52 -03:00
|
|
|
package_desc.append(['Download Size:', common.format_size(pkg.size)])
|
2012-12-12 13:12:27 -03:00
|
|
|
if style == 'file':
|
2013-01-16 15:09:52 -03:00
|
|
|
package_desc.append(['Compressed Size:', common.format_size(pkg.size)])
|
|
|
|
package_desc.append(['Installed Size:', common.format_size(pkg.isize)])
|
2012-12-12 13:12:27 -03:00
|
|
|
package_desc.append(['Packager:', pkg.packager])
|
|
|
|
package_desc.append(['Architecture:', pkg.arch])
|
|
|
|
package_desc.append(['Build Date:', strftime("%a %d %b %Y %X %Z", localtime(pkg.builddate))])
|
|
|
|
|
|
|
|
if style == 'local':
|
|
|
|
package_desc.append(['Install Date:', strftime("%a %d %b %Y %X %Z", localtime(pkg.installdate))])
|
|
|
|
if pkg.reason == pyalpm.PKG_REASON_EXPLICIT:
|
|
|
|
reason = 'Explicitly installed'
|
|
|
|
elif pkg.reason == pyalpm.PKG_REASON_DEPEND:
|
|
|
|
reason = 'Installed as a dependency for another package'
|
|
|
|
else:
|
|
|
|
reason = 'N/A'
|
|
|
|
package_desc.append(['Install Reason:', reason])
|
|
|
|
if style != 'sync':
|
|
|
|
package_desc.append(['Install Script:', 'Yes' if pkg.has_scriptlet else 'No'])
|
|
|
|
if style == 'sync':
|
|
|
|
package_desc.append(['MD5 Sum:', pkg.md5sum])
|
|
|
|
package_desc.append(['SHA256 Sum:', pkg.sha256sum])
|
|
|
|
package_desc.append(['Signatures:', 'Yes' if pkg.base64_sig else 'No'])
|
|
|
|
|
|
|
|
if style == 'local':
|
|
|
|
if len(pkg.backup) == 0:
|
|
|
|
package_desc.append(['Backup files:', ''])
|
|
|
|
else:
|
|
|
|
package_desc.append(['Backup files:', '\n'.join(["%s %s" % (md5, file) for (file, md5) in pkg.backup])])
|
|
|
|
|
2012-12-31 11:41:51 -03:00
|
|
|
def set_transaction_sum():
|
|
|
|
transaction_sum.clear()
|
2013-01-20 13:38:33 -03:00
|
|
|
if transaction.to_remove:
|
|
|
|
transaction_sum.append(['To remove:', transaction.to_remove[0]])
|
2012-12-31 11:41:51 -03:00
|
|
|
i = 1
|
2013-01-20 13:38:33 -03:00
|
|
|
while i < len(transaction.to_remove):
|
|
|
|
transaction_sum.append([' ', transaction.to_remove[i]])
|
2012-12-31 11:41:51 -03:00
|
|
|
i += 1
|
2013-02-10 11:59:53 -03:00
|
|
|
sum_bottom_label.set_markup('')
|
2013-01-20 13:38:33 -03:00
|
|
|
if transaction.to_add:
|
2013-01-06 15:10:13 -03:00
|
|
|
installed = []
|
2013-01-16 15:09:52 -03:00
|
|
|
for pkg_object in config.pacman_conf.initialize_alpm().get_localdb().pkgcache:
|
2013-01-06 15:10:13 -03:00
|
|
|
installed.append(pkg_object.name)
|
2013-01-20 13:38:33 -03:00
|
|
|
transaction.to_update = sorted(set(installed).intersection(transaction.to_add))
|
|
|
|
to_remove_from_add = sorted(set(transaction.to_update).intersection(transaction.to_add))
|
2013-01-06 15:10:13 -03:00
|
|
|
for name in to_remove_from_add:
|
2013-01-20 13:38:33 -03:00
|
|
|
transaction.to_add.remove(name)
|
|
|
|
if transaction.to_add:
|
|
|
|
transaction_sum.append(['To install:', transaction.to_add[0]])
|
2012-12-31 11:41:51 -03:00
|
|
|
i = 1
|
2013-01-20 13:38:33 -03:00
|
|
|
while i < len(transaction.to_add):
|
|
|
|
transaction_sum.append([' ', transaction.to_add[i]])
|
2012-12-31 11:41:51 -03:00
|
|
|
i += 1
|
2013-02-10 11:59:53 -03:00
|
|
|
if mode == 'manager':
|
|
|
|
if transaction.to_update:
|
|
|
|
transaction_sum.append(['To update:', transaction.to_update[0]])
|
|
|
|
i = 1
|
|
|
|
while i < len(transaction.to_update):
|
|
|
|
transaction_sum.append([' ', transaction.to_update[i]])
|
|
|
|
i += 1
|
|
|
|
sum_bottom_label.set_markup('')
|
|
|
|
#sum_bottom_label.set_markup('<b>Total Download size: </b>'+common.format_size(totaldlcb))
|
|
|
|
sum_top_label.set_markup('<big><b>Transaction Summary</b></big>')
|
2012-12-31 11:41:51 -03:00
|
|
|
|
2013-01-20 13:38:33 -03:00
|
|
|
def handle_error(error):
|
|
|
|
global transaction_type
|
|
|
|
global transaction_dict
|
2013-02-10 11:59:53 -03:00
|
|
|
if error:
|
|
|
|
if not 'DBus.Error.NoReply' in str(error):
|
|
|
|
print('error',error)
|
|
|
|
transaction.ErrorDialog.format_secondary_text('Error:\n'+str(error))
|
|
|
|
response = transaction.ErrorDialog.run()
|
|
|
|
if response:
|
|
|
|
transaction.ErrorDialog.hide()
|
2013-01-20 13:38:33 -03:00
|
|
|
transaction.t_lock = False
|
|
|
|
transaction.Release()
|
|
|
|
transaction.ProgressWindow.hide()
|
2013-02-10 11:59:53 -03:00
|
|
|
if mode == 'manager':
|
|
|
|
transaction.to_add = []
|
|
|
|
transaction.to_remove = []
|
|
|
|
transaction_dict.clear()
|
|
|
|
transaction_type = None
|
2013-02-22 12:43:52 -03:00
|
|
|
transaction.update_db()
|
2013-02-10 11:59:53 -03:00
|
|
|
set_packages_list()
|
|
|
|
if mode == 'updater':
|
|
|
|
have_updates()
|
2013-01-30 14:37:41 -03:00
|
|
|
print('error',error)
|
2013-01-20 13:38:33 -03:00
|
|
|
|
|
|
|
def handle_reply(reply):
|
|
|
|
global transaction_type
|
|
|
|
global transaction_dict
|
2013-02-10 11:59:53 -03:00
|
|
|
if reply:
|
2013-01-30 14:37:41 -03:00
|
|
|
transaction.ErrorDialog.format_secondary_text('Error:\n'+str(reply))
|
2013-01-23 11:12:11 -03:00
|
|
|
response = transaction.ErrorDialog.run()
|
|
|
|
if response:
|
|
|
|
transaction.ErrorDialog.hide()
|
2013-01-20 13:38:33 -03:00
|
|
|
transaction.t_lock = False
|
|
|
|
transaction.Release()
|
|
|
|
transaction.ProgressWindow.hide()
|
|
|
|
transaction.to_add = []
|
|
|
|
transaction.to_remove = []
|
|
|
|
transaction_dict.clear()
|
2013-02-22 12:43:52 -03:00
|
|
|
transaction.update_db()
|
2013-01-30 14:37:41 -03:00
|
|
|
if (transaction_type == "install") or (transaction_type == "remove"):
|
|
|
|
transaction_type = None
|
|
|
|
set_packages_list()
|
|
|
|
else:
|
|
|
|
transaction_type = None
|
2013-02-10 11:59:53 -03:00
|
|
|
if have_updates():
|
|
|
|
if mode == 'manager':
|
|
|
|
do_sysupgrade()
|
2013-01-30 14:37:41 -03:00
|
|
|
|
|
|
|
def do_refresh():
|
|
|
|
"""Sync databases like pacman -Sy"""
|
|
|
|
if transaction.t_lock is False:
|
|
|
|
transaction.t_lock = True
|
|
|
|
transaction.progress_label.set_text('Refreshing...')
|
|
|
|
transaction.action_icon.set_from_file('/usr/share/pamac/icons/24x24/status/refresh-cache.png')
|
|
|
|
transaction.ProgressWindow.show_all()
|
|
|
|
while Gtk.events_pending():
|
|
|
|
Gtk.main_iteration()
|
|
|
|
transaction.Refresh(reply_handler = handle_reply, error_handler = handle_error, timeout = 2000*1000)
|
|
|
|
|
2013-02-10 11:59:53 -03:00
|
|
|
def have_updates():
|
|
|
|
do_syncfirst, updates = transaction.get_updates()
|
|
|
|
update_listore.clear()
|
|
|
|
update_label.set_justify(Gtk.Justification.CENTER)
|
|
|
|
if not updates:
|
|
|
|
update_listore.append(["", ""])
|
|
|
|
update_label.set_markup("<big><b>No update available</b></big>")
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
for pkg in updates:
|
|
|
|
pkgname = pkg.name+" "+pkg.version
|
|
|
|
update_listore.append([pkgname, common.format_size(pkg.size)])
|
|
|
|
update_label.set_markup("<big><b>Available updates</b></big>")
|
|
|
|
return True
|
|
|
|
|
|
|
|
def do_sysupgrade():
|
2013-01-30 14:37:41 -03:00
|
|
|
global transaction_type
|
|
|
|
"""Upgrade a system like pacman -Su"""
|
|
|
|
if transaction.t_lock is False:
|
|
|
|
transaction_type = "update"
|
2013-02-06 12:09:43 -03:00
|
|
|
do_syncfirst, updates = transaction.get_updates()
|
|
|
|
if updates:
|
|
|
|
transaction.to_add = []
|
|
|
|
transaction.to_remove = []
|
|
|
|
check_conflicts(updates)
|
2013-02-10 11:59:53 -03:00
|
|
|
if do_syncfirst:
|
|
|
|
for pkg in updates:
|
|
|
|
transaction.to_add.append(pkg.name)
|
2013-02-11 11:45:24 -03:00
|
|
|
if transaction.init_transaction(recurse = True, needed = True):
|
2013-02-06 12:09:43 -03:00
|
|
|
for pkgname in transaction.to_add:
|
|
|
|
transaction.Add(pkgname)
|
|
|
|
for pkgname in transaction.to_remove:
|
|
|
|
transaction.Remove(pkgname)
|
|
|
|
error = transaction.Prepare()
|
|
|
|
if error:
|
|
|
|
handle_error(error)
|
|
|
|
else:
|
|
|
|
transaction.get_to_remove()
|
|
|
|
transaction.get_to_add()
|
2013-01-30 14:37:41 -03:00
|
|
|
set_transaction_sum()
|
2013-02-10 11:59:53 -03:00
|
|
|
if mode == 'updater':
|
|
|
|
if len(transaction.to_add) + len(transaction.to_remove) != 0:
|
|
|
|
ConfDialog.show_all()
|
|
|
|
else:
|
|
|
|
finalize()
|
|
|
|
if mode == 'manager':
|
|
|
|
ConfDialog.show_all()
|
|
|
|
else:
|
|
|
|
if transaction.init_transaction(noconflicts = True):
|
|
|
|
error = transaction.Sysupgrade()
|
|
|
|
if error:
|
|
|
|
handle_error(error)
|
|
|
|
else:
|
|
|
|
for pkgname in transaction.to_add:
|
|
|
|
transaction.Add(pkgname)
|
|
|
|
for pkgname in transaction.to_remove:
|
|
|
|
transaction.Remove(pkgname)
|
|
|
|
error = transaction.Prepare()
|
|
|
|
if error:
|
|
|
|
handle_error(error)
|
|
|
|
else:
|
|
|
|
transaction.get_to_remove()
|
|
|
|
transaction.get_to_add()
|
|
|
|
set_transaction_sum()
|
|
|
|
if mode == 'updater':
|
|
|
|
if len(transaction.to_add) + len(transaction.to_remove) != 0:
|
|
|
|
ConfDialog.show_all()
|
|
|
|
else:
|
|
|
|
finalize()
|
|
|
|
if mode == 'manager':
|
|
|
|
ConfDialog.show_all()
|
|
|
|
|
|
|
|
def finalize():
|
|
|
|
transaction.progress_label.set_text('Preparing...')
|
|
|
|
transaction.action_icon.set_from_file('/usr/share/pamac/icons/24x24/status/setup.png')
|
|
|
|
transaction.progress_bar.set_text('')
|
|
|
|
transaction.ProgressWindow.show_all()
|
|
|
|
while Gtk.events_pending():
|
|
|
|
Gtk.main_iteration()
|
|
|
|
transaction.Commit(reply_handler = handle_reply, error_handler = handle_error, timeout = 2000*1000)
|
2013-01-20 13:38:33 -03:00
|
|
|
|
2013-02-06 12:09:43 -03:00
|
|
|
def check_conflicts(pkg_list):
|
|
|
|
depends = [pkg_list]
|
|
|
|
warning = ''
|
|
|
|
pkgs = transaction.handle.get_localdb().search('linux3')
|
|
|
|
installed_linux = []
|
|
|
|
for i in pkgs:
|
|
|
|
if len(i.name) == 7:
|
|
|
|
installed_linux.append(i.name)
|
|
|
|
for to_install in transaction.to_add:
|
|
|
|
if 'linux3' in to_install:
|
|
|
|
if len(to_install) == 7:
|
|
|
|
installed_linux.append(to_install)
|
|
|
|
i = 0
|
|
|
|
while depends[i]:
|
|
|
|
depends.append([])
|
|
|
|
for pkg in depends[i]:
|
|
|
|
for depend in pkg.depends:
|
|
|
|
provide = pyalpm.find_satisfier(transaction.localpkgs.values(), depend)
|
|
|
|
if provide:
|
|
|
|
print(i,'local',provide)
|
|
|
|
if provide.name != common.format_pkg_name(depend):
|
2013-02-11 11:45:24 -03:00
|
|
|
if '-modules' in depend:
|
2013-02-06 12:09:43 -03:00
|
|
|
for pkg in transaction.syncpkgs.values():
|
|
|
|
if not pkg.name in transaction.localpkgs.keys():
|
|
|
|
for name in pkg.provides:
|
|
|
|
for linux in installed_linux:
|
|
|
|
if linux in pkg.name:
|
|
|
|
if common.format_pkg_name(depend) == common.format_pkg_name(name):
|
2013-02-11 11:45:24 -03:00
|
|
|
if not pkg.name in transaction.to_add:
|
|
|
|
depends[i+1].append(pkg)
|
|
|
|
transaction.to_add.append(pkg.name)
|
2013-02-06 12:09:43 -03:00
|
|
|
else:
|
|
|
|
provide = pyalpm.find_satisfier(transaction.syncpkgs.values(), depend)
|
|
|
|
if provide:
|
|
|
|
print(i,'sync',provide)
|
|
|
|
if provide.name != common.format_pkg_name(depend):
|
2013-02-11 11:45:24 -03:00
|
|
|
if '-modules' in depend:
|
2013-02-06 12:09:43 -03:00
|
|
|
for pkg in transaction.syncpkgs.values():
|
|
|
|
if not pkg.name in transaction.localpkgs.keys():
|
|
|
|
for name in pkg.provides:
|
|
|
|
for linux in installed_linux:
|
|
|
|
if linux in pkg.name:
|
|
|
|
if common.format_pkg_name(depend) == common.format_pkg_name(name):
|
2013-02-11 11:45:24 -03:00
|
|
|
if not pkg.name in transaction.to_add:
|
|
|
|
depends[i+1].append(pkg)
|
|
|
|
transaction.to_add.append(pkg.name)
|
2013-01-30 14:37:41 -03:00
|
|
|
else:
|
2013-02-06 12:09:43 -03:00
|
|
|
to_add_to_depends = choose_provides(depend)
|
|
|
|
print(to_add_to_depends)
|
|
|
|
for pkg in to_add_to_depends:
|
2013-02-11 11:45:24 -03:00
|
|
|
if not pkg.name in transaction.to_add:
|
|
|
|
depends[i+1].append(pkg)
|
|
|
|
transaction.to_add.append(pkg.name)
|
2013-02-06 12:09:43 -03:00
|
|
|
else:
|
|
|
|
depends[i+1].append(provide)
|
|
|
|
for replace in pkg.replaces:
|
|
|
|
provide = pyalpm.find_satisfier(transaction.localpkgs.values(), replace)
|
|
|
|
if provide:
|
|
|
|
if provide.name != pkg.name:
|
|
|
|
if not provide.name in transaction.to_remove:
|
|
|
|
transaction.to_remove.append(provide.name)
|
|
|
|
if warning:
|
|
|
|
warning = warning+'\n'
|
|
|
|
warning = warning+provide.name+' will be replaced by '+pkg.name
|
|
|
|
for conflict in pkg.conflicts:
|
|
|
|
provide = pyalpm.find_satisfier(transaction.localpkgs.values(), conflict)
|
|
|
|
if provide:
|
|
|
|
if provide.name != pkg.name:
|
|
|
|
if not provide.name in transaction.to_remove:
|
|
|
|
transaction.to_remove.append(provide.name)
|
|
|
|
if warning:
|
|
|
|
warning = warning+'\n'
|
|
|
|
warning = warning+pkg.name+' conflicts with '+provide.name
|
|
|
|
provide = pyalpm.find_satisfier(depends[0], conflict)
|
|
|
|
if provide:
|
|
|
|
if not common.format_pkg_name(conflict) in transaction.to_remove:
|
|
|
|
if pkg.name in transaction.to_add and common.format_pkg_name(conflict) in transaction.to_add:
|
|
|
|
transaction.to_add.remove(common.format_pkg_name(conflict))
|
|
|
|
transaction.to_add.remove(pkg.name)
|
|
|
|
if warning:
|
|
|
|
warning = warning+'\n'
|
|
|
|
warning = warning+pkg.name+' conflicts with '+common.format_pkg_name(conflict)+'\nNone of them will be installed'
|
|
|
|
i += 1
|
|
|
|
for pkg in transaction.localpkgs.values():
|
|
|
|
for conflict in pkg.conflicts:
|
|
|
|
provide = pyalpm.find_satisfier(depends[0], conflict)
|
|
|
|
if provide:
|
|
|
|
if provide.name != pkg.name:
|
|
|
|
if not provide.name in transaction.to_remove:
|
|
|
|
transaction.to_remove.append(pkg.name)
|
|
|
|
if warning:
|
|
|
|
warning = warning+'\n'
|
|
|
|
warning = warning+provide.name+' conflicts with '+pkg.name
|
|
|
|
for pkg in transaction.syncpkgs.values():
|
|
|
|
for replace in pkg.replaces:
|
|
|
|
provide = pyalpm.find_satisfier(transaction.localpkgs.values(), replace)
|
|
|
|
if provide:
|
2013-02-22 12:43:52 -03:00
|
|
|
if not common.format_pkg_name(replace) in transaction.syncpkgs.keys():
|
|
|
|
if provide.name != pkg.name:
|
|
|
|
if not pkg.name in transaction.localpkgs.keys():
|
|
|
|
if common.format_pkg_name(replace) in transaction.localpkgs.keys():
|
|
|
|
if not provide.name in transaction.to_remove:
|
|
|
|
transaction.to_remove.append(provide.name)
|
|
|
|
if warning:
|
|
|
|
warning = warning+'\n'
|
|
|
|
warning = warning+provide.name+' will be replaced by '+pkg.name
|
|
|
|
if not pkg.name in transaction.to_add:
|
|
|
|
transaction.to_add.append(pkg.name)
|
2013-02-06 12:09:43 -03:00
|
|
|
print(transaction.to_add,transaction.to_remove)
|
|
|
|
if warning:
|
|
|
|
transaction.WarningDialog.format_secondary_text(warning)
|
|
|
|
response = transaction.WarningDialog.run()
|
|
|
|
if response:
|
|
|
|
transaction.WarningDialog.hide()
|
|
|
|
|
|
|
|
def choose_provides(name):
|
|
|
|
provides = OrderedDict()
|
|
|
|
already_add = []
|
|
|
|
for pkg in transaction.syncpkgs.values():
|
|
|
|
for provide in pkg.provides:
|
|
|
|
if common.format_pkg_name(name) == common.format_pkg_name(provide):
|
|
|
|
if not pkg.name in provides.keys():
|
|
|
|
provides[pkg.name] = pkg
|
|
|
|
if provides:
|
|
|
|
choose_label.set_markup('<b>{} is provided by {} packages.\nPlease choose the one(s) you want to install:</b>'.format(name,str(len(provides.keys()))))
|
|
|
|
choose_list.clear()
|
|
|
|
for name in provides.keys():
|
|
|
|
if transaction.handle.get_localdb().get_pkg(name):
|
|
|
|
choose_list.append([True, name])
|
2013-01-30 14:37:41 -03:00
|
|
|
else:
|
2013-02-06 12:09:43 -03:00
|
|
|
choose_list.append([False, name])
|
|
|
|
ChooseDialog.run()
|
|
|
|
return [provides[pkgname] for pkgname in transaction.to_provide]
|
2013-02-11 11:45:24 -03:00
|
|
|
else:
|
|
|
|
return []
|
2013-01-27 14:15:34 -03:00
|
|
|
|
2012-12-12 13:12:27 -03:00
|
|
|
class Handler:
|
2013-02-10 11:59:53 -03:00
|
|
|
#Manager Handlers
|
|
|
|
def on_ManagerWindow_delete_event(self, *arg):
|
2013-01-23 11:12:11 -03:00
|
|
|
transaction.StopDaemon()
|
2013-02-10 11:59:53 -03:00
|
|
|
common.rm_pid_file()
|
|
|
|
Gtk.main_quit()
|
2012-12-12 13:12:27 -03:00
|
|
|
|
2013-02-10 11:59:53 -03:00
|
|
|
def on_Manager_QuitButton_clicked(self, *arg):
|
2013-01-23 11:12:11 -03:00
|
|
|
transaction.StopDaemon()
|
2013-02-10 11:59:53 -03:00
|
|
|
common.rm_pid_file()
|
|
|
|
Gtk.main_quit()
|
2012-12-12 13:12:27 -03:00
|
|
|
|
2013-02-10 11:59:53 -03:00
|
|
|
def on_Manager_ValidButton_clicked(self, *arg):
|
2013-01-06 15:10:13 -03:00
|
|
|
if not transaction_dict:
|
2012-12-15 13:27:36 -03:00
|
|
|
transaction.ErrorDialog.format_secondary_text("No package is selected")
|
2013-01-20 13:38:33 -03:00
|
|
|
response = transaction.ErrorDialog.run()
|
2012-12-12 13:12:27 -03:00
|
|
|
if response:
|
2012-12-15 13:27:36 -03:00
|
|
|
transaction.ErrorDialog.hide()
|
2012-12-23 12:26:19 -03:00
|
|
|
else:
|
|
|
|
if transaction.t_lock is True:
|
2012-12-31 11:41:51 -03:00
|
|
|
print('Transaction locked')
|
2012-12-23 12:26:19 -03:00
|
|
|
else:
|
|
|
|
if transaction_type is "remove":
|
2013-02-11 11:45:24 -03:00
|
|
|
if transaction.init_transaction(cascade = True, recurse = True):
|
2013-01-16 15:09:52 -03:00
|
|
|
for pkgname in transaction_dict.keys():
|
|
|
|
transaction.Remove(pkgname)
|
|
|
|
error = transaction.Prepare()
|
|
|
|
if error:
|
2013-01-30 14:37:41 -03:00
|
|
|
handle_error(error)
|
|
|
|
else:
|
|
|
|
transaction.get_to_remove()
|
|
|
|
transaction.get_to_add()
|
|
|
|
set_transaction_sum()
|
|
|
|
ConfDialog.show_all()
|
2012-12-29 11:06:44 -03:00
|
|
|
if transaction_type is "install":
|
2013-02-06 12:09:43 -03:00
|
|
|
transaction.to_add = []
|
|
|
|
for pkgname in transaction_dict.keys():
|
|
|
|
transaction.to_add.append(pkgname)
|
|
|
|
transaction.to_remove = []
|
|
|
|
check_conflicts(transaction_dict.values())
|
|
|
|
if transaction.to_add:
|
2013-02-16 13:27:46 -03:00
|
|
|
if transaction.init_transaction(noconflicts = True):
|
2013-02-01 10:50:15 -03:00
|
|
|
for pkgname in transaction.to_add:
|
|
|
|
transaction.Add(pkgname)
|
|
|
|
for pkgname in transaction.to_remove:
|
|
|
|
transaction.Remove(pkgname)
|
|
|
|
error = transaction.Prepare()
|
|
|
|
if error:
|
|
|
|
handle_error(error)
|
|
|
|
else:
|
|
|
|
transaction.get_to_remove()
|
|
|
|
transaction.get_to_add()
|
|
|
|
set_transaction_sum()
|
|
|
|
ConfDialog.show_all()
|
|
|
|
else:
|
2013-02-06 12:09:43 -03:00
|
|
|
transaction.WarningDialog.format_secondary_text('Nothing to do')
|
|
|
|
response = transaction.WarningDialog.run()
|
|
|
|
if response:
|
|
|
|
transaction.WarningDialog.hide()
|
2013-02-01 10:50:15 -03:00
|
|
|
transaction.t_lock = False
|
2012-12-12 13:12:27 -03:00
|
|
|
|
2013-02-10 11:59:53 -03:00
|
|
|
def on_Manager_EraseButton_clicked(self, *arg):
|
2012-12-12 13:12:27 -03:00
|
|
|
global transaction_type
|
|
|
|
global transaction_dict
|
|
|
|
transaction_dict.clear()
|
2013-02-01 10:50:15 -03:00
|
|
|
if transaction_type:
|
|
|
|
transaction_type = None
|
|
|
|
refresh_packages_list()
|
2012-12-12 13:12:27 -03:00
|
|
|
|
2013-02-10 11:59:53 -03:00
|
|
|
def on_Manager_RefreshButton_clicked(self, *arg):
|
2013-02-06 12:09:43 -03:00
|
|
|
do_refresh()
|
2013-01-30 14:37:41 -03:00
|
|
|
set_packages_list()
|
2012-12-12 13:12:27 -03:00
|
|
|
|
2012-12-31 11:41:51 -03:00
|
|
|
def on_TransCancelButton_clicked(self, *arg):
|
2013-01-26 10:42:01 -03:00
|
|
|
global transaction_type
|
|
|
|
transaction.ProgressWindow.hide()
|
2012-12-31 11:41:51 -03:00
|
|
|
ConfDialog.hide()
|
|
|
|
transaction.t_lock = False
|
2013-01-06 15:10:13 -03:00
|
|
|
transaction.Release()
|
2013-01-26 10:42:01 -03:00
|
|
|
if transaction_type == "update":
|
|
|
|
transaction_type = None
|
2012-12-31 11:41:51 -03:00
|
|
|
|
|
|
|
def on_TransValidButton_clicked(self, *arg):
|
|
|
|
ConfDialog.hide()
|
2013-02-10 11:59:53 -03:00
|
|
|
finalize()
|
2012-12-31 11:41:51 -03:00
|
|
|
|
2012-12-12 13:12:27 -03:00
|
|
|
def on_search_button_clicked(self, widget):
|
|
|
|
global list_dict
|
|
|
|
list_dict = "search"
|
|
|
|
set_packages_list()
|
|
|
|
|
|
|
|
def on_search_entry_icon_press(self, *arg):
|
|
|
|
global list_dict
|
|
|
|
list_dict = "search"
|
|
|
|
set_packages_list()
|
|
|
|
|
|
|
|
def on_search_entry_activate(self, widget):
|
|
|
|
global list_dict
|
|
|
|
list_dict = "search"
|
|
|
|
set_packages_list()
|
|
|
|
|
|
|
|
def on_treeview2_selection_changed(self, widget):
|
|
|
|
liste, line = tree2.get_selected()
|
|
|
|
if line is not None:
|
|
|
|
if packages_list[line][0] in pkg_object_dict.keys():
|
|
|
|
pkg_object = pkg_object_dict[packages_list[line][0]]
|
|
|
|
if pkg_installed_dict[packages_list[line][0]] is True:
|
|
|
|
style = "local"
|
|
|
|
else:
|
|
|
|
style = "sync"
|
|
|
|
set_desc(pkg_object, style)
|
|
|
|
|
|
|
|
def on_treeview1_selection_changed(self, widget):
|
|
|
|
global list_dict
|
|
|
|
global current_group
|
|
|
|
liste, line = tree1.get_selected()
|
|
|
|
if line is not None:
|
|
|
|
list_dict = "group"
|
|
|
|
current_group = groups_list[line][0]
|
|
|
|
set_packages_list()
|
|
|
|
|
|
|
|
def on_installed_column_clicked(self, widget):
|
|
|
|
installed_column.set_sort_column_id(1)
|
|
|
|
|
|
|
|
def on_name_column_clicked(self, widget):
|
|
|
|
name_column.set_sort_column_id(0)
|
|
|
|
|
|
|
|
def on_cellrenderertoggle1_toggled(self, widget, line):
|
|
|
|
global transaction_type
|
|
|
|
global transaction_dict
|
|
|
|
global pkg_object_dict
|
|
|
|
if packages_list[line][0] in transaction_dict.keys():
|
|
|
|
transaction_dict.pop(packages_list[line][0])
|
|
|
|
if not transaction_dict:
|
|
|
|
transaction_type = None
|
|
|
|
lin = 0
|
|
|
|
while lin < len(packages_list):
|
|
|
|
if packages_list[lin][0] in config.holdpkg:
|
|
|
|
packages_list[lin][2] = False
|
|
|
|
else:
|
|
|
|
packages_list[lin][2] = True
|
|
|
|
lin += 1
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
if packages_list[line][1] is True:
|
|
|
|
transaction_type = "remove"
|
|
|
|
transaction_dict[packages_list[line][0]] = pkg_object_dict[packages_list[line][0]]
|
|
|
|
lin = 0
|
|
|
|
while lin < len(packages_list):
|
|
|
|
if not packages_list[lin][0] in transaction_dict.keys():
|
|
|
|
if packages_list[lin][1] is False:
|
|
|
|
packages_list[lin][2] = False
|
|
|
|
lin += 1
|
|
|
|
if packages_list[line][1] is False:
|
|
|
|
transaction_type = "install"
|
|
|
|
transaction_dict[packages_list[line][0]] = pkg_object_dict[packages_list[line][0]]
|
|
|
|
lin = 0
|
|
|
|
while lin < len(packages_list):
|
|
|
|
if not packages_list[lin][0] in transaction_dict.keys():
|
|
|
|
if packages_list[lin][1] is True:
|
|
|
|
packages_list[lin][2] = False
|
|
|
|
lin += 1
|
|
|
|
packages_list[line][1] = not packages_list[line][1]
|
|
|
|
packages_list[line][2] = True
|
|
|
|
|
2013-01-27 14:15:34 -03:00
|
|
|
def on_cellrenderertoggle2_toggled(self, widget, line):
|
|
|
|
choose_list[line][0] = not choose_list[line][0]
|
|
|
|
|
|
|
|
def on_ChooseButton_clicked(self, *arg):
|
|
|
|
ChooseDialog.hide()
|
|
|
|
line = 0
|
2013-02-06 12:09:43 -03:00
|
|
|
transaction.to_provide = []
|
2013-01-27 14:15:34 -03:00
|
|
|
while line < len(choose_list):
|
|
|
|
if choose_list[line][0] is True:
|
2013-02-06 12:09:43 -03:00
|
|
|
if not choose_list[line][1] in transaction.to_provide:
|
|
|
|
if not choose_list[line][1] in transaction.localpkgs.keys():
|
|
|
|
transaction.to_provide.append(choose_list[line][1])
|
2013-01-30 14:37:41 -03:00
|
|
|
if choose_list[line][0] is False:
|
2013-02-06 12:09:43 -03:00
|
|
|
if choose_list[line][1] in transaction.to_provide:
|
|
|
|
transaction.to_provide.remove(choose_list[line][1])
|
2013-01-27 14:15:34 -03:00
|
|
|
line += 1
|
|
|
|
|
2013-02-10 11:59:53 -03:00
|
|
|
#Updater Handlers
|
|
|
|
def on_UpdaterWindow_delete_event(self, *arg):
|
|
|
|
transaction.StopDaemon()
|
|
|
|
common.rm_pid_file()
|
|
|
|
Gtk.main_quit()
|
|
|
|
|
|
|
|
def on_Updater_QuitButton_clicked(self, *arg):
|
|
|
|
transaction.StopDaemon()
|
|
|
|
common.rm_pid_file()
|
|
|
|
Gtk.main_quit()
|
|
|
|
|
|
|
|
def on_Updater_ApplyButton_clicked(self, *arg):
|
|
|
|
do_sysupgrade()
|
|
|
|
|
|
|
|
def on_Updater_RefreshButton_clicked(self, *arg):
|
|
|
|
do_refresh()
|
2013-01-06 15:10:13 -03:00
|
|
|
|
2013-02-10 11:59:53 -03:00
|
|
|
def on_ProgressCancelButton_clicked(self, *arg):
|
|
|
|
transaction.t_lock = False
|
|
|
|
transaction.Release()
|
|
|
|
transaction.ProgressWindow.hide()
|
|
|
|
have_updates()
|
|
|
|
|
|
|
|
def main(_mode):
|
|
|
|
if common.pid_file_exists():
|
|
|
|
transaction.ErrorDialog.format_secondary_text('Another instance of Pamac is running')
|
|
|
|
response = transaction.ErrorDialog.run()
|
|
|
|
if response:
|
|
|
|
transaction.ErrorDialog.hide()
|
|
|
|
else:
|
|
|
|
common.write_pid_file()
|
|
|
|
global mode
|
|
|
|
mode = _mode
|
|
|
|
interface.connect_signals(Handler())
|
|
|
|
do_refresh()
|
|
|
|
if mode == 'manager':
|
|
|
|
ManagerWindow.show_all()
|
|
|
|
if mode == 'updater':
|
|
|
|
update_label.set_markup("<big><b>Available updates</b></big>")
|
|
|
|
UpdaterWindow.show_all()
|
|
|
|
while Gtk.events_pending():
|
|
|
|
Gtk.main_iteration()
|
|
|
|
Gtk.main()
|