summaryrefslogtreecommitdiffstats
path: root/config.toml
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-11-08 18:59:18 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-11-08 20:53:41 +0100
commit7f06c8154d5598c5976bef0a1c96bfe33ed72ce2 (patch)
treefae40c79cd5c39da02012bf8c6c3e06781eacecc /config.toml
parent2c420278be1bc597651ea98f2ab47a1e6ec6571a (diff)
Move package print format setting from CLI into config file
We don't actually want to pass a print format as complex as the package list format on the CLI. Thus, move it to the configuration file. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml21
1 files changed, 21 insertions, 0 deletions
diff --git a/config.toml b/config.toml
index ffb3a41..c63c7c6 100644
--- a/config.toml
+++ b/config.toml
@@ -12,6 +12,27 @@ repository = "/tmp/path"
# This is also the default if the setting is not present.
progress_format = "[{elapsed_precise}] ({percent:>3}%): {bar:40.cyan/blue} | {msg}"
+# The format to print the found packages with.
+#
+# Possible tokens are:
+# i - Incrementing number of package that is printed
+# name - Name of the package
+# version - Version of the package
+# source_url - URL from where the source was retrieved
+# source_hash_type - Type of hash noted in the package
+# source_hash - Hash of the sources
+# system_deps - System dependencies, as list
+# system_runtime_deps - System runtime dependencies, as list
+# build_deps - Build dependencies, as list
+# runtime_deps - Runtime dependencies, as list
+# print_system_deps - boolean flag to use in format string, true if user wants to see system deps
+# print_system_runtime_deps - boolean flag to use in format string, true if user wants to see system runtime deps
+# print_build_deps - boolean flag to use in format string, true if user wants to see build deps
+# print_runtime_deps - boolean flag to use in format string, true if user wants to see runtime deps
+#
+# Handlebars modifiers are available.
+package_print_format = ""
+
# The position of the release binaries
#
# butido checks this location for packages when installing dependencies