summaryrefslogtreecommitdiffstats
path: root/config.toml
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-12-03 08:29:37 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-12-03 08:29:37 +0100
commit32db7e255f18d8f9514de423bd65264d2090949e (patch)
tree8a1636aabd91a8cc8391f156b2018216e90a4697 /config.toml
parent6d1abb2d5c05869d3b2e966efad0ba34aafe578b (diff)
Allow multiple sources per package
This patch implements multiple (unnamed) sources per package. This means that a package can have an array of sources. What was adapted to allow multiple sources per package: * Downloads are made in parallel now * The cache structure was changed to /<package>-<version>/<hash>.source * The UI was changed to contain the full `Package` struct (as JSON object) in a UI format string Tests were adapted. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml10
1 files changed, 1 insertions, 9 deletions
diff --git a/config.toml b/config.toml
index 458bf13..5804fa0 100644
--- a/config.toml
+++ b/config.toml
@@ -29,15 +29,7 @@ script_highlight_theme = "Solarized (dark)"
#
# 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
+# p - The package data
# 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