diff options
-rw-r--r-- | etc/repos.json | 35 |
1 files changed, 28 insertions, 7 deletions
diff --git a/etc/repos.json b/etc/repos.json index ebdf802..e89d11f 100644 --- a/etc/repos.json +++ b/etc/repos.json @@ -1,12 +1,33 @@ { "main": "gcc-latest-musl+tools" , "repositories": - { "patches": {"repository": {"type": "file", "path": "etc/patches"}} - , "imports": {"repository": {"type": "file", "path": "etc/imports"}} - , "defaults": {"repository": {"type": "file", "path": "etc/defaults"}} - , "bootstrap": {"repository": {"type": "file", "path": "src/bootstrap"}} - , "compilers": {"repository": {"type": "file", "path": "src/compilers"}} - , "tools": {"repository": {"type": "file", "path": "src/tools"}} - , "toolchains": {"repository": {"type": "file", "path": "toolchains"}} + { "patches": + { "repository": + {"type": "file", "path": "etc/patches", "pragma": {"to_git": true}} + } + , "imports": + { "repository": + {"type": "file", "path": "etc/imports", "pragma": {"to_git": true}} + } + , "defaults": + { "repository": + {"type": "file", "path": "etc/defaults", "pragma": {"to_git": true}} + } + , "bootstrap": + { "repository": + {"type": "file", "path": "src/bootstrap", "pragma": {"to_git": true}} + } + , "compilers": + { "repository": + {"type": "file", "path": "src/compilers", "pragma": {"to_git": true}} + } + , "tools": + { "repository": + {"type": "file", "path": "src/tools", "pragma": {"to_git": true}} + } + , "toolchains": + { "repository": + {"type": "file", "path": "toolchains", "pragma": {"to_git": true}} + } , "rules": { "repository": { "type": "zip" |