[arch] fix -> AUR: not properly handling AUR package dependencies with specific versions

This commit is contained in:
Vinicius Moreira
2020-09-09 18:51:37 -03:00
parent 2d395b608f
commit 1c1aad1e0e
12 changed files with 35 additions and 23 deletions

View File

@@ -1904,7 +1904,13 @@ class ArchManager(SoftwareManager):
return missing_deps
def _handle_missing_deps(self, context: TransactionContext) -> bool:
missing_deps = self._list_missing_deps(context)
try:
missing_deps = self._list_missing_deps(context)
except PackageNotFoundException:
return False
except:
traceback.print_exc()
return False
if missing_deps is None:
return False # called off by the user