mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 23:14:16 +02:00
[fix][aur] Removing repeated 'prepare' step that was delaying the build and preventing some packages to install
This commit is contained in:
@@ -18,6 +18,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
### Fixes
|
### Fixes
|
||||||
- Flatpak
|
- Flatpak
|
||||||
- Ignoring no related updates ( there are some scenarios the updates are not listed due to warnings / suggestions related to some specific runtimes if the param **--no-related** is not informed )
|
- Ignoring no related updates ( there are some scenarios the updates are not listed due to warnings / suggestions related to some specific runtimes if the param **--no-related** is not informed )
|
||||||
|
- AUR
|
||||||
|
- Removing repeated **prepare** step that was delaying the build and preventing some packages to install (e.g: xdman )
|
||||||
|
|
||||||
## [0.7.2] 2019-11-01
|
## [0.7.2] 2019-11-01
|
||||||
### Improvements
|
### Improvements
|
||||||
|
|||||||
@@ -435,7 +435,7 @@ class ArchManager(SoftwareManager):
|
|||||||
|
|
||||||
# building main package
|
# building main package
|
||||||
handler.watcher.change_substatus(self.i18n['arch.building.package'].format(bold(pkgname)))
|
handler.watcher.change_substatus(self.i18n['arch.building.package'].format(bold(pkgname)))
|
||||||
pkgbuilt, output = handler.handle_simple(SimpleProcess(['makepkg', '-ALcsmf'], cwd=project_dir))
|
pkgbuilt, output = handler.handle_simple(SimpleProcess(['makepkg', '-ALcsmf', '--noprepare'], cwd=project_dir))
|
||||||
self._update_progress(handler.watcher, 65, change_progress)
|
self._update_progress(handler.watcher, 65, change_progress)
|
||||||
|
|
||||||
if pkgbuilt:
|
if pkgbuilt:
|
||||||
|
|||||||
Reference in New Issue
Block a user