From 87e49100d3d5336094ec8d2f9f63263824b319a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Moreira?= Date: Wed, 12 Feb 2020 11:11:29 -0300 Subject: [PATCH] [aur] skipping makepkg dependency checking when 'simple_checking' is disabled --- bauh/gems/arch/makepkg.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bauh/gems/arch/makepkg.py b/bauh/gems/arch/makepkg.py index 355017c2..1b9ee6d6 100644 --- a/bauh/gems/arch/makepkg.py +++ b/bauh/gems/arch/makepkg.py @@ -18,6 +18,9 @@ def check(pkgdir: str, optimize: bool, missing_deps: bool, handler: ProcessHandl cmd = ['makepkg', '-ALcf', '--check', '--noarchive', '--nobuild', '--noprepare'] + if not missing_deps: + cmd.append('--nodeps') + if optimize: if os.path.exists(CUSTOM_MAKEPKG_FILE): handler.watcher.print('Using custom makepkg.conf -> {}'.format(CUSTOM_MAKEPKG_FILE))