[squeak-dev] Xtreams up to date

Levente Uzonyi leves at elte.hu
Fri Jan 21 16:57:00 UTC 2011


On Fri, 21 Jan 2011, mkobetic at gmail.com wrote:

> "Hannes Hirzel"<hannes.hirzel at gmail.com> wrote:
>> How do I load it in the most recent Squeak 4.2 as there is no Gofer class?
>
> What is the Squeak equivalent of Gofer ? I could add the Squeak version to the page as well. In the worst case you can load the packages manually in the order that the Gofer snippet shows. You don't have to load all of them, you really need just the first five.

It's Installer. The following script should work:

Installer squeaksource
 	project: 'Xtreams';
 	install: 'Xtreams-Support';
 	install: 'Xtreams-Core-';
 	install: 'Xtreams-Terminals-';
 	install: 'Xtreams-Transforms-';
 	install: 'Xtreams-Substreams-';
 	install: 'Xtreams-Parsing-';
 	" --- tests follow --- "
 	install: 'Xtreams-CoreTests';
 	install: 'Xtreams-TerminalsTests';
 	install: 'Xtreams-TransformsTests';
 	install: 'Xtreams-SubstreamsTests';
 	install: 'Xtreams-ParsingTests';
 	" --- following require FFI --- "
 	install: 'Xtreams-Xtras-';
 	install: 'Xtreams-XtrasTests'.

The - character at the end of the non-test packages is necessary, because 
Installer uses prefix matching and in case of 'Xtreams-Core' it would load 
Xtreams-CoreTests, because that has a higher version number at the moment.


Levente


>
> Cheers,
>
> Martin
>
>



More information about the Squeak-dev mailing list