diff options
author | Marius <mariausol@gmail.com> | 2014-01-02 21:20:26 +0200 |
---|---|---|
committer | Marius <mariausol@gmail.com> | 2014-01-02 21:20:26 +0200 |
commit | 5a15bfc6c723873dc0ad2bb0fdaa9b252f030339 (patch) | |
tree | 7576871dba6d77eed66a0a84bf87e31b663d8ff7 /scripts | |
parent | e8a06e89017f7bd9907c73ae7a656d3a725fd064 (diff) | |
download | context-5a15bfc6c723873dc0ad2bb0fdaa9b252f030339.tar.gz |
stable 2014.01.02 20:05
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/context/lua/mtx-update.lua | 38 | ||||
-rw-r--r-- | scripts/context/stubs/mswin/first-setup.bat | 16 |
2 files changed, 35 insertions, 19 deletions
diff --git a/scripts/context/lua/mtx-update.lua b/scripts/context/lua/mtx-update.lua index 107096d04..c7eb74395 100644 --- a/scripts/context/lua/mtx-update.lua +++ b/scripts/context/lua/mtx-update.lua @@ -378,7 +378,7 @@ function scripts.update.synchronize() asked[s] = nil end if next(asked) then - report("skipping unknown modules: %s",table.concat(table.sortedkeys(asked),", ")) + report("skipping unknown modules: %s",concat(table.sortedkeys(asked),", ")) end end @@ -396,7 +396,7 @@ function scripts.update.synchronize() asked[s] = nil end if next(asked) then - report("skipping unknown fonts: %s",table.concat(table.sortedkeys(asked),", ")) + report("skipping unknown fonts: %s",concat(table.sortedkeys(asked),", ")) end end @@ -410,7 +410,7 @@ function scripts.update.synchronize() local destination = format("%s/%s", texroot, gsub(c[2],"<platform>", platform)) destination = gsub(destination,"\\","/") archive = gsub(archive,"<version>",version) - if osplatform == "windows" or osplatform == "mswin" then + if osplatform == "windows" or osplatform == "mswin" or osplatform == "win64" then destination = drive(destination) end individual[#individual+1] = { archive, destination } @@ -419,24 +419,24 @@ function scripts.update.synchronize() end end - for platform, _ in next, platforms do + for platform in table.sortedhash(platforms) do add_collection(scripts.update.base,platform) end - for platform, _ in next, platforms do + for platform in table.sortedhash(platforms) do add_collection(scripts.update.modules,platform) end - for platform, _ in next, platforms do + for platform in table.sortedhash(platforms) do add_collection(scripts.update.fonts,platform) end - for engine, _ in next, engines do - for platform, _ in next, platforms do + for engine in table.sortedhash(engines) do + for platform in table.sortedhash(platforms) do add_collection(scripts.update.engines[engine],platform) end end if goodies and type(goodies) == "table" then - for goodie, _ in next, goodies do - for platform, _ in next, platforms do + for goodie in table.sortedhash(goodies) do + for platform in table.sortedhash(platforms) do add_collection(scripts.update.goodies[goodie],platform) end end @@ -447,7 +447,7 @@ function scripts.update.synchronize() for i=1,#update_repositories do local repository = update_repositories[i] if repositories[repository] then - for _, v in next, individual do + for _, v in table.sortedhash(individual) do local archive, destination = v[1], v[2] local cd = combined[destination] if not cd then @@ -458,7 +458,7 @@ function scripts.update.synchronize() end end end - for destination, archive in next, combined do + for destination, archive in table.sortedhash(combined) do local archives, command = concat(archive," "), "" local normalflags, deleteflags = states.get("rsync.flags.normal"), "" if os.name == "windows" then @@ -471,7 +471,7 @@ function scripts.update.synchronize() if (find(destination,"texmf$") or find(destination,"texmf%-context$") or find(destination,"texmf%-modules$")) and (not environment.argument("keep")) then deleteflags = states.get("rsync.flags.delete") end - command = format("%s %s %s %s %s'%s' '%s'", bin, normalflags, deleteflags, dryrunflags, url, archives, destination) + command = format("%s %s %s %s %s'%s' '%s'", bin, normalflags, deleteflags, dryrunflags, url, archives, drive(destination)) -- report("running command: %s",command) if not fetched[command] then scripts.update.run(command,true) @@ -488,7 +488,7 @@ function scripts.update.synchronize() if windowsplatform[platform] then bin = drive(bin) texroot = drive(texroot) - command = format([[%s -t "%s/texmf-context/scripts/context/lua/%s.lua" "%s/texmf-mswin/bin/"]], bin, texroot, script, texroot) + command = format([[%s -t "%s/texmf-context/scripts/context/lua/%s.lua" "%s/texmf-%s/bin/"]], bin, texroot, script, texroot, platform) else command = format([[%s -tgo --chmod=a+x '%s/texmf-context/scripts/context/lua/%s.lua' '%s/texmf-%s/bin/%s']], bin, texroot, script, texroot, platform, script) end @@ -497,7 +497,7 @@ function scripts.update.synchronize() end end - for platform, _ in next, platforms do + for platform in table.sortedhash(platforms) do for i=1, #scripts.update.selfscripts do update_script(scripts.update.selfscripts[i],platform) end @@ -522,7 +522,7 @@ end function table.fromhash(t) local h = { } - for k, v in next, t do -- not indexed + for k, v in table.sortedhash(t) do -- not indexed if v then h[#h+1] = k end end return h @@ -548,19 +548,19 @@ function scripts.update.make() local askedformats = formats local texformats = table.tohash(scripts.update.texformats) local mpformats = table.tohash(scripts.update.mpformats) - for k,v in next, texformats do + for k,v in table.sortedhash(texformats) do if not askedformats[k] then texformats[k] = nil end end - for k,v in next, mpformats do + for k,v in table.sortedhash(mpformats) do if not askedformats[k] then mpformats[k] = nil end end local formatlist = concat(table.fromhash(texformats), " ") if formatlist ~= "" then - for engine in next, engines do + for engine in table.sortedhash(engines) do if engine == "luatex" then scripts.update.run(format('mtxrun --tree="%s" --script context --autogenerate --make',texroot)) elseif engine == "luajittex" then diff --git a/scripts/context/stubs/mswin/first-setup.bat b/scripts/context/stubs/mswin/first-setup.bat index 2c2eaec62..f06ad0e6b 100644 --- a/scripts/context/stubs/mswin/first-setup.bat +++ b/scripts/context/stubs/mswin/first-setup.bat @@ -16,10 +16,26 @@ if defined ProgramFiles(x86) ( if "%PROCESSOR_ARCHITEW6432%"=="AMD64" set PLATFORM=win64 ) +REM ~ copy /y bin\mtx-update.lua bin\x.lua + +if "%PLATFORM%" == "win64" goto update-win64 + +:update-win32 + rsync -av --exclude 'rsync.exe' --exclude 'cygwin1.dll' --exclude 'cygiconv-2.dll' rsync://contextgarden.net/minimals/setup/mswin/bin/ bin +goto update + +:update-win64 + +rsync -av --exclude 'rsync.exe' --exclude 'cygwin1.dll' --exclude 'cygiconv-2.dll' rsync://contextgarden.net/minimals/setup/win64/bin/ bin + +goto update + :update +REM ~ copy /y bin\x.lua bin\mtx-update.lua + REM --mingw --nofiledatabase --engine=luatex mtxrun --script ./bin/mtx-update.lua --update --force --make --engine=all --context=beta --texroot=%OWNPATH%tex %* |