[arch] fix -> rebuild-detector not enabled by default (still in testing)

This commit is contained in:
Vinicius Moreira
2021-01-14 17:39:10 -03:00
parent b8dd5c84e4
commit 765bdff851
3 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- [rebuild-detector](https://github.com/maximbaz/rebuild-detector) integration - [rebuild-detector](https://github.com/maximbaz/rebuild-detector) integration
- if a package needs to be rebuilt, it will be marked for update (rebuild-detector must be installed on your system, but it is not a hard requirement). - if a package needs to be rebuilt, it will be marked for update (rebuild-detector must be installed on your system, but it is not a hard requirement).
- if you hold the mouse over the package 'version' the message "The package needs to be reinstalled" will be displayed. - if you hold the mouse over the package 'version' the message "The package needs to be reinstalled" will be displayed.
- this integration can be controlled though the new settings property **aur_rebuild_detector** (default: true). - this integration is still in testing and can be controlled though the new settings property **aur_rebuild_detector** (default: false).
<p align="center"> <p align="center">
<img src="https://raw.githubusercontent.com/vinifmor/bauh-files/master/pictures/releases/0.9.12/rebuild_detector.png"> <img src="https://raw.githubusercontent.com/vinifmor/bauh-files/master/pictures/releases/0.9.12/rebuild_detector.png">
</p> </p>

View File

@@ -214,7 +214,7 @@ check_dependency_breakage: true # if, during the verification of the update requ
suggest_unneeded_uninstall: false # if the dependencies apparently no longer necessary associated with the uninstalled packages should be suggested for uninstallation. When this property is enabled it automatically disables the property 'suggest_optdep_uninstall'. Default: false (to prevent new users from making mistakes) suggest_unneeded_uninstall: false # if the dependencies apparently no longer necessary associated with the uninstalled packages should be suggested for uninstallation. When this property is enabled it automatically disables the property 'suggest_optdep_uninstall'. Default: false (to prevent new users from making mistakes)
suggest_optdep_uninstall: false # if the optional dependencies associated with uninstalled packages should be suggested for uninstallation. Only the optional dependencies that are not dependencies of other packages will be suggested. Default: false (to prevent new users from making mistakes) suggest_optdep_uninstall: false # if the optional dependencies associated with uninstalled packages should be suggested for uninstallation. Only the optional dependencies that are not dependencies of other packages will be suggested. Default: false (to prevent new users from making mistakes)
categories_exp: 24 # It defines the expiration time (in HOURS) of the packages categories mapping file stored in disc. Use 0 so that it is always updated during initialization. categories_exp: 24 # It defines the expiration time (in HOURS) of the packages categories mapping file stored in disc. Use 0 so that it is always updated during initialization.
aur_rebuild_detector: true # it checks if packages built with old library versions require to be rebuilt. If a package needs to be rebuilt, it will be marked for update ({} must be installed). Default: true. aur_rebuild_detector: false # it checks if packages built with old library versions require to be rebuilt. If a package needs to be rebuilt, it will be marked for update ({} must be installed). Default: false.
``` ```
- Required dependencies: - Required dependencies:
- **pacman** - **pacman**

View File

@@ -39,4 +39,4 @@ class ArchConfigManager(YAMLConfigManager):
'suggest_optdep_uninstall': False, 'suggest_optdep_uninstall': False,
'aur_idx_exp': 1, 'aur_idx_exp': 1,
'categories_exp': 24, 'categories_exp': 24,
'aur_rebuild_detector': True} 'aur_rebuild_detector': False}