[Cuis-dev] Feature require: 'OSProcess'. -- installation problem
H. Hirzel
hannes.hirzel at gmail.com
Fri Mar 7 02:51:31 PST 2025
Thank you, Ezequiel for testing. That was a confirmation that loading
OSProcess still should work in the most recent Cuis version.
On 06/03/2025 8:55 pm, Ezequiel Birman via Cuis-dev wrote:
> I couldn't reproduce your issue even after moving the repository
> OSProcess under the same subdirectory you mentioned.
>
> I'd say you try to reproduce it from scratch on a pristine image. I.e:
> git clone --depth 1
> https://github.com/Cuis-Smalltalk/Cuis-Smalltalk-Dev.git
> git clone --depth 1 https://github.com/Cuis-Smalltalk/OSProcess.git
> .Cuis-Smalltalk-Dev/RunCuisOnxxxx.sh
>
I am using MSWindows and just downloaded the Cuis-Dev zip file, unzipped
it and got the package as a file from
https://github.com/Cuis-Smalltalk/OSProcess/blob/master/OSProcess.pck.st
Hilaire's suggestion prompted me to look if loading SqueakCompatibility
is successful.
Feature require: 'SqueakCompatibility'.
executed individually gives a success message. But it does not include
the class StandardFileStream which is actually needed for Squeak
compatibility.
So this prompted me to test in a pristine image
UniFileStream subclass: #StandardFileStream
instanceVariableNames: ''
classVariableNames: ''
poolDictionaries: ''
category: 'System-Files'.
After this was executed
Feature require: 'OSProcess'
ran smoothly, i.e. it ran as expected.
And test were successful, see below.
Regards
Hannes
-------------------------------------------------------------------
OSProcess thisOSProcess environmentAt: 'HOMEDRIVE'. 'C:' .
OSProcess thisOSProcess environmentAt: 'HOMEPATH'. '\Users\Hirzel' .
OSProcess thisOSProcess environmentAt: 'Path'.
'C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program
Files\nodejs\;C:\Users\Hirzel\AppData\Local\Microsoft\WindowsApps;C:\Users\Hirzel\AppData\Local\Pandoc\;C:\Users\Hirzel\AppData\Roaming\npm;C:\Users\Hirzel\AppData\Local\Programs\MiKTeX\miktex\bin\x64\'
.
OSProcess command: 'pandoc --from=Markdown --to=HTML
--standalone=true
C:\Users\Hirzel\Documents\Cuis-Smalltalk-7061-UserFiles\A2-wordlist-English-v2.txt
--output=C:\Users\Hirzel\Documents\wordlist.html'
"OK"
More information about the Cuis-dev
mailing list