ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Problem updating 32b version
@ 2018-10-24 12:58 Procházka Lukáš Ing.
  2018-10-24 15:38 ` Pablo Rodriguez
  0 siblings, 1 reply; 3+ messages in thread
From: Procházka Lukáš Ing. @ 2018-10-24 12:58 UTC (permalink / raw)
  To: ConTeXt

[-- Attachment #1: Type: text/plain, Size: 1164 bytes --]

Hello,

I encountered problem updating ConTeXt.

I'm still using 32b built due to some deps on 3rd party libs (32b, too).

Running 'first-setup.bat' doesn't create 'tex\texmf-mswin\' directory as usually.

I also modified the first-setup.bat to avoid 64b platform testing - see the first-setup.txt attached (.bat renamed to .txt due to mail filters).

The 'tex' dir has now:

texmf\
texmf-cache\
texmf-context\
texmf-fonts\
texmf-local\
texmf-modules\
texmf-project\
texmf-win64\
setuptex
setuptex.bat
setuptex.csh

but it used to be:

texmf\
texmf-cache\
texmf-context\
texmf-fonts\
texmf-local\
texmf-modules\
texmf-mswin\           <<<< WAS HERE
texmf-project\
texmf-win64\
setuptex
setuptex.bat
setuptex.csh

The log (first-setup.bat > Upd.log) may be downloaded here (~700 kB):

	http://leteckaposta.cz/260806806

Could anyone test obtaining 32b version of ConTeXt?

TIA.

Best regards,

Lukas


-- 
Ing. Lukáš Procházka | mailto:LPr@pontex.cz
Pontex s. r. o.      | mailto:pontex@pontex.cz | http://www.pontex.cz | IDDS: nrpt3sn | IČO: 40763439
Bezová 1658
147 14 Praha 4

Mob.: +420 702 033 396

[-- Attachment #2: first-setup.txt --]
[-- Type: text/plain, Size: 2014 bytes --]

@echo off

setlocal

:fetch

set OWNPATH=%~dp0
set PATH=%OWNPATH%bin;%PATH%
set PLATFORM=mswin

set CYGWIN=nontsec

rem if defined ProgramFiles(x86) (
rem     set PLATFORM=win64
rem ) else (
rem     if "%PROCESSOR_ARCHITEW6432%"=="AMD64" set PLATFORM=win64
rem )

REM ~ copy /y bin\mtx-update.lua bin\x.lua

rem 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

rem :update-win64

rem rsync -av --exclude 'rsync.exe' --exclude 'cygwin1.dll' --exclude 'cygiconv-2.dll' rsync://contextgarden.net/minimals/setup/win64/bin/ bin

rem 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" %*

echo.
echo.
echo When you want to use context, you need to initialize the tree with:
echo.
echo   %OWNPATH%tex\setuptex.bat %OWNPATH%tex
echo.
echo You can associate this command with a shortcut to the cmd prompt.
echo.
echo Alternatively you can add %OWNPATH%tex\texmf-%PLATFORM%\bin to your PATH
echo variable.
echo.
echo If you run from an editor you can specify the full path to mtxrun.exe:
echo.
echo.  %OWNPATH%tex\texmf-%PLATFORM%\bin\mtxrun.exe --autogenerate --script context --autopdf ...
echo.

:ruby

echo okay > ok.log

ruby -e "File.delete('ok.log')"

if not exist "ok.log" goto end

echo.
echo The distribution has been downloaded but if you want to run pdfTeX and/or XeTeX you
echo need to run this script with the following directive:
echo.
echo   --platform=all
echo.
echo You then also need to install Ruby in order to be able to use texexec. After
echo installing Ruby you can run this script again which will give you the formats
echo needed, or you can run:
echo.
echo   texexec --make --pdftex
echo   texexec --make --xetex
echo.

:okay

del /q ok.log

:end

endlocal

[-- Attachment #3: Type: text/plain, Size: 492 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Problem updating 32b version
  2018-10-24 12:58 Problem updating 32b version Procházka Lukáš Ing.
@ 2018-10-24 15:38 ` Pablo Rodriguez
  2018-10-24 19:36   ` Procházka Lukáš Ing.
  0 siblings, 1 reply; 3+ messages in thread
From: Pablo Rodriguez @ 2018-10-24 15:38 UTC (permalink / raw)
  To: ntg-context

On 10/24/18 2:58 PM, Procházka Lukáš Ing. wrote:
> Hello,
> 
> I encountered problem updating ConTeXt.
> 
> I'm still using 32b built due to some deps on 3rd party libs (32b, too).
> 
> Running 'first-setup.bat' doesn't create 'tex\texmf-mswin\' directory as usually.
> [...]
> Could anyone test obtaining 32b version of ConTeXt?

Hi Lukáš,

I’m on Linux 64bit, but how about specifying the platform such as in:

    first-setup.sh --platform=mswin --modules=all

So I get Windows 32bit binaries.

Just in case it helps,

Pablo
-- 
http://www.ousia.tk
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Problem updating 32b version
  2018-10-24 15:38 ` Pablo Rodriguez
@ 2018-10-24 19:36   ` Procházka Lukáš Ing.
  0 siblings, 0 replies; 3+ messages in thread
From: Procházka Lukáš Ing. @ 2018-10-24 19:36 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hello Pablo,

thank you for testing, it's OK also on another computer with WinX 64b...

Best regards,

Lukas


On Wed, 24 Oct 2018 17:38:17 +0200, Pablo Rodriguez <oinos@gmx.es> wrote:

> On 10/24/18 2:58 PM, Procházka Lukáš Ing. wrote:
>> Hello,
>>
>> I encountered problem updating ConTeXt.
>>
>> I'm still using 32b built due to some deps on 3rd party libs (32b, too).
>>
>> Running 'first-setup.bat' doesn't create 'tex\texmf-mswin\' directory as usually.
>> [...]
>> Could anyone test obtaining 32b version of ConTeXt?
>
> Hi Lukáš,
>
> I’m on Linux 64bit, but how about specifying the platform such as in:
>
>     first-setup.sh --platform=mswin --modules=all
>
> So I get Windows 32bit binaries.
>
> Just in case it helps,
>
> Pablo


-- 
Ing. Lukáš Procházka | mailto:LPr@pontex.cz
Pontex s. r. o.      | mailto:pontex@pontex.cz | http://www.pontex.cz | IDDS:nrpt3sn
Bezová 1658
147 14 Praha 4

Mob.: +420 702 033 396

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-10-24 19:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-24 12:58 Problem updating 32b version Procházka Lukáš Ing.
2018-10-24 15:38 ` Pablo Rodriguez
2018-10-24 19:36   ` Procházka Lukáš Ing.

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).