[aur] fix: not able to handle missing dependencies with symbols

This commit is contained in:
Vinicius Moreira
2019-10-21 14:55:13 -03:00
parent 42a3be984c
commit b0d09312c5
2 changed files with 2 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- AUR:
- update-checking for some scenarios
- not respecting 'ignorepkg' settings in **pacman.conf**
- not able to handle **missing dependencies with symbols** ( e.g: libpng++ )
## [0.7.0] 2019-10-18
### Features

View File

@@ -14,7 +14,7 @@ def is_enabled() -> bool:
def get_mirrors(pkgs: Set[str]) -> dict:
pkgre = '|'.join(pkgs)
pkgre = '|'.join(pkgs).replace('+', r'\+').replace('.', r'\.')
searchres = new_subprocess(['pacman', '-Ss', pkgre]).stdout
mirrors = {}