From 6eb4b5104af2144c8c2fba73ce59dcd84f4a68e0 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Fri, 11 Feb 2022 15:30:13 -0300 Subject: [PATCH] [arch] fix: removing a duplicate call to checking for AUR updates --- CHANGELOG.md | 3 ++- bauh/gems/arch/dependencies.py | 4 ---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 194f4ff0..fbc30aba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,7 +22,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Arch - silent crash when handling and displaying transaction sub-status - AUR: not detecting installed packages anymore due to recent AUR API changes - - installation fails when several dependent packages conflict with the installed ones + - installation fails when several dependent packages conflict with the installed ones + - removing a duplicate call to checking for AUR updates - AppImage - search: displaying duplicate installed apps for some cases diff --git a/bauh/gems/arch/dependencies.py b/bauh/gems/arch/dependencies.py index 328d10c3..fe4d4164 100644 --- a/bauh/gems/arch/dependencies.py +++ b/bauh/gems/arch/dependencies.py @@ -519,10 +519,6 @@ class DependenciesAnalyser: if repo_providers_data: deps_data.update(repo_providers_data) - if aur_providers_no_data: - for pkgname, pkgdata in self.aur_client.gen_updates_data(aur_providers_no_data): - deps_data[pkgname] = pkgdata - if aur_data_filler: aur_data_filler.join()