parent
1d28d45c5c
commit
7be952605b
2
v.mod
2
v.mod
|
@ -1,7 +1,7 @@
|
||||||
Module {
|
Module {
|
||||||
name: 'V',
|
name: 'V',
|
||||||
description: 'The V programming language.',
|
description: 'The V programming language.',
|
||||||
version: '0.1.27',
|
version: '0.1.28',
|
||||||
repo_url: 'https://github.com/vlang/v',
|
repo_url: 'https://github.com/vlang/v',
|
||||||
dependencies: []
|
dependencies: []
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@ fn test_from_file() {
|
||||||
}
|
}
|
||||||
assert data.name == 'V'
|
assert data.name == 'V'
|
||||||
assert data.description == 'The V programming language.'
|
assert data.description == 'The V programming language.'
|
||||||
assert data.version == '0.1.27'
|
assert data.version == '0.1.28'
|
||||||
assert data.dependencies.len == 0
|
assert data.dependencies.len == 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,16 +7,20 @@ import os
|
||||||
import v.pref
|
import v.pref
|
||||||
|
|
||||||
pub const (
|
pub const (
|
||||||
v_version = '0.1.27'
|
v_version = '0.1.28'
|
||||||
)
|
)
|
||||||
|
|
||||||
// math.bits is needed by strconv.ftoa
|
// math.bits is needed by strconv.ftoa
|
||||||
pub const (
|
pub const (
|
||||||
builtin_module_parts = ['math.bits', 'strconv', 'strconv.ftoa', 'hash.wyhash', 'strings', 'builtin']
|
builtin_module_parts = ['math.bits', 'strconv', 'strconv.ftoa', 'hash.wyhash', 'strings',
|
||||||
|
'builtin'
|
||||||
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
pub const (
|
pub const (
|
||||||
external_module_dependencies_for_tool = {'vdoc': ['markdown']}
|
external_module_dependencies_for_tool = {
|
||||||
|
'vdoc': ['markdown']
|
||||||
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
// vhash() returns the build string C.V_COMMIT_HASH . See cmd/tools/gen_vc.v .
|
// vhash() returns the build string C.V_COMMIT_HASH . See cmd/tools/gen_vc.v .
|
||||||
|
@ -149,7 +153,7 @@ pub fn launch_tool(is_verbose bool, tool_name string, args []string) {
|
||||||
if should_compile {
|
if should_compile {
|
||||||
emodules := external_module_dependencies_for_tool[tool_name]
|
emodules := external_module_dependencies_for_tool[tool_name]
|
||||||
for emodule in emodules {
|
for emodule in emodules {
|
||||||
util.check_module_is_installed(emodule, is_verbose) or {
|
check_module_is_installed(emodule, is_verbose) or {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -321,7 +325,7 @@ pub fn ensure_modules_for_all_tools_are_installed(is_verbose bool) {
|
||||||
eprintln('Installing modules for tool: $tool_name ...')
|
eprintln('Installing modules for tool: $tool_name ...')
|
||||||
}
|
}
|
||||||
for emodule in tool_modules {
|
for emodule in tool_modules {
|
||||||
util.check_module_is_installed(emodule, is_verbose) or {
|
check_module_is_installed(emodule, is_verbose) or {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue