koch and nims updates

This commit is contained in:
Araq
2017-01-06 13:10:51 +01:00
parent 4910a87c6f
commit 4b73194bb0
3 changed files with 3 additions and 36 deletions

View File

@@ -1,25 +1,6 @@
import ospaths
mode = ScriptMode.Verbose
echo "This script is deprecated. Use 'koch nimble' instead."
var id = 0
while dirExists("nimble" & $id):
inc id
exec "git clone https://github.com/nim-lang/nimble.git nimble" & $id
withDir "nimble" & $id & "/src":
exec "nim c nimble"
mkDir "bin/nimblepkg"
for file in listFiles("nimble" & $id & "/src/nimblepkg/"):
cpFile file, "bin/nimblepkg/" & file.extractFilename
try:
mvFile "nimble" & $id & "/src/nimble".toExe, "bin/nimble".toExe
except OSError:
cpFile "nimble" & $id & "/src/nimble".toExe, "bin/nimble".toExe
exec "koch nimble"

View File

@@ -1,20 +1,6 @@
import ospaths
mode = ScriptMode.Verbose
echo "This script is deprecated. Use 'koch tools' instead."
if not dirExists"dist/nimble":
echo "[Error] This script only works for the tarball."
else:
let nimbleExe = "./bin/nimble".toExe
selfExec "c --noNimblePath -p:compiler -o:" & nimbleExe &
" dist/nimble/src/nimble.nim"
let nimsugExe = "./bin/nimsuggest".toExe
selfExec "c --noNimblePath -d:release -p:compiler -o:" & nimsugExe &
" dist/nimsuggest/nimsuggest.nim"
let nimgrepExe = "./bin/nimgrep".toExe
selfExec "c -d:release -o:" & nimgrepExe & " tools/nimgrep.nim"
exec "koch tools"

View File

@@ -139,7 +139,7 @@ proc testUnixInstall() =
# check the docs build:
execCleanPath("./koch web", destDir / "bin")
# check nimble builds:
execCleanPath("./bin/nim e install_tools.nims")
execCleanPath("./koch tools")
# check the tests work:
execCleanPath("./koch tests", destDir / "bin")
else: