Split out tools

This commit is contained in:
cytopia
2022-12-07 16:55:17 +01:00
parent 101e8abb65
commit 0126289bf0
115 changed files with 16388 additions and 12604 deletions

8
php_tools/yq/README.md Normal file
View File

@@ -0,0 +1,8 @@
# yq
Command-line YAML/XML/TOML processor.
| Platform | Url |
|----------|------------------------------------------------------------------|
| PyPI | https://pypi.org/project/yq/ |
| GitHub | https://github.com/kislyuk/yq |

11
php_tools/yq/install.yml Normal file
View File

@@ -0,0 +1,11 @@
---
check: yq --version 2>&1 | grep -E '[0-9][.0-9]+' || (yq --version; false)
all:
type: pip
version:
build_dep: []
run_dep: []
pre:
post:

11
php_tools/yq/options.yml Normal file
View File

@@ -0,0 +1,11 @@
---
# The name of the module
name: yq
# Exclude module build/installation for the following PHP versions
exclude: []
# In order for this tool to build/install correctly,
# the following tools must have been installed first.
depends: [jq]