diff --git a/pamac/main.py b/pamac/main.py index 10545eb..b0a7ecf 100644 --- a/pamac/main.py +++ b/pamac/main.py @@ -397,43 +397,57 @@ def check_conflicts(pkg_list): while depends[i]: depends.append([]) for pkg in depends[i]: + if 'linux3' in pkg.name: + for _pkg in transaction.localpkgs.values(): + for depend in _pkg.depends: + if '-modules' in depend: + 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): + if not __pkg.name in transaction.to_add: + print(i,'module',__pkg) + depends[i+1].append(__pkg) + transaction.to_add.append(__pkg.name) 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): - if '-modules' in depend: - for pkg in transaction.syncpkgs.values(): - if not pkg.name in transaction.localpkgs.keys(): - for name in pkg.provides: + if ('-modules' in depend) or ('linux' in depend): + 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 linux in _pkg.name: if common.format_pkg_name(depend) == common.format_pkg_name(name): - if not pkg.name in transaction.to_add: - depends[i+1].append(pkg) - transaction.to_add.append(pkg.name) + if not _pkg.name in transaction.to_add: + depends[i+1].append(_pkg) + transaction.to_add.append(_pkg.name) else: provide = pyalpm.find_satisfier(transaction.syncpkgs.values(), depend) if provide: print(i,'sync',provide) if provide.name != common.format_pkg_name(depend): - if '-modules' in depend: - for pkg in transaction.syncpkgs.values(): - if not pkg.name in transaction.localpkgs.keys(): - for name in pkg.provides: + if ('-modules' in depend) or ('linux' in depend): + 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 linux in _pkg.name: if common.format_pkg_name(depend) == common.format_pkg_name(name): - if not pkg.name in transaction.to_add: - depends[i+1].append(pkg) - transaction.to_add.append(pkg.name) + if not _pkg.name in transaction.to_add: + depends[i+1].append(_pkg) + transaction.to_add.append(_pkg.name) else: to_add_to_depends = choose_provides(depend) print(to_add_to_depends) - for pkg in to_add_to_depends: - if not pkg.name in transaction.to_add: - depends[i+1].append(pkg) - transaction.to_add.append(pkg.name) + for _pkg in to_add_to_depends: + if not _pkg.name in transaction.to_add: + depends[i+1].append(_pkg) + transaction.to_add.append(_pkg.name) else: depends[i+1].append(provide) for replace in pkg.replaces: @@ -456,13 +470,14 @@ def check_conflicts(pkg_list): 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' + if not common.format_pkg_name(conflict) == pkg.name: + 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: diff --git a/pamac/pamac-daemon.py b/pamac/pamac-daemon.py index 454af54..86fc623 100644 --- a/pamac/pamac-daemon.py +++ b/pamac/pamac-daemon.py @@ -112,10 +112,10 @@ class PamacDBusService(dbus.service.Object): if not (level & _logmask): return if level & pyalpm.LOG_ERROR: - self.error = "ERROR: "+line + self.error += "ERROR: "+line #t.release() elif level & pyalpm.LOG_WARNING: - self.warning = "WARNING: "+line + self.warning += "WARNING: "+line elif level & pyalpm.LOG_DEBUG: line = "DEBUG: " + line print(line) @@ -187,18 +187,19 @@ class PamacDBusService(dbus.service.Object): @dbus.service.method('org.manjaro.pamac', '', 's') def Refresh(self): global t - global error - error = '' + #~ global error + #~ error = '' for db in config.handle.get_syncdbs(): try: t = config.handle.init_transaction() db.update(force=False) t.release() - except pyalpm.error: - error = traceback.format_exc() - break + except pyalpm.error as e: + self.error += str(e)+'\n' + t.release() + #break self.CheckUpdates() - return error + return self.error @dbus.service.method('org.manjaro.pamac', 'a{sb}', 's', sender_keyword='sender', connection_keyword='connexion') def Init(self, options, sender=None, connexion=None):