-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- termux_step_get_dependencies.sh: don't use the `-s` flag to compile dependencies as need to check their dependencies and detect circular dependencies - termux_step_setup_variables.sh: setting new values: - `TERMUX_PKG_ONLY_INSTALLING` - when set to true you indicate that the package can only be installed (this value may no longer be useful due to a changed dependency compilation method) - `TERMUX_PKG_SEPARATE_SUB_DEPENDS` - when set to true, subpackages will not be added to the dependency of the parent package - `TERMUX_PKG_ACCEPT_PKG_IN_DEP` - when set to true, the package can be in its own dependency list if necessary (useful for cyclic dependencies) - buildorder.py: - Adding a new function `get_list_cyclic_dependencies` and with it a new flag `-l` which allows you to find cyclic dependencies - Rewrote the `generate_full_buildorder` function so that it can generate a build order with circular dependencies - Adding a new parameter `depend_on_parent` has been added for subpackages, which allows you to disable dependency on the parent package or have the same dependency as the parent - Retrieving dependencies from a dependency is disabled if `fast_build_mode` is not enabled - build-all.sh: - Adding a new `-f` flag that allows you to control the packet format - The log creation method has been changed - Don't use the `-s` flag by default to allow `build-package.sh` to detect circular dependencies - Added checking for compiled packages so that if there are cyclic dependencies, they can be added to the list of ready packages.
- Loading branch information
Showing
4 changed files
with
141 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters