[squeak-dev] New Trunk Image: Squeak4.2-10382-alpha

Edgar J. De Cleene edgardec2005 at gmail.com
Mon Sep 20 11:50:21 UTC 2010




On 9/20/10 8:37 AM, "Bert Freudenberg" <bert at freudenbergs.de> wrote:

> Would be nice if someone set up an automated build system ...
> 
> - Bert -
> 
> On 20.09.2010, at 13:01, Hannes Hirzel wrote:
> 
>> Casey,
>> 
>> may I ask you if it is possible to do a new trunk image? The last one
>> is of August 20th with #10382, the one before is May, 25th, #10160 and
>> now we are at #10529.
>> 
>> Regards
>> Hannes
>> 
>> On 8/20/10, Casey Ransberger <casey.obrien.r at gmail.com> wrote:
>>> Get it here:
>>> 
>>> http://ftp.squeak.org/trunk/Squeak4.2-10382-alpha.zip
>>> 
>>> Also note that I've left the previous build, Squeak4.2-10160-alpha.zip, in
>>> place, just in case anyone finds anything terribly wrong with the new one.
>>> 
>>> --
>>> Casey Ransberger
>>> 
>> 


Maybe you found the two attached useful.
Lets have a more clean saved .image

Edgar

-------------- next part --------------
'From Squeak4.2alpha of 26 August 2010 [latest update: #10423] on 20 September 2010 at 7:48:17 am'!

!Utilities class methodsFor: 'fetching updates' stamp: 'edc 9/20/2010 07:47'!
updateFromServerCleanup
	MCFileBasedRepository flushAllCaches.
MCDefinition clearInstances.
3 timesRepeat: [ Smalltalk garbageCollect].
Smalltalk condenseChanges
! !
-------------- next part --------------
'From Squeak4.2alpha of 26 August 2010 [latest update: #10423] on 20 September 2010 at 7:55:46 am'!

!Utilities class methodsFor: 'fetching updates' stamp: 'edc 9/20/2010 07:55'!
updateFromServer
	"Update the image by loading all pending updates from the server."
	| config answer |
	"Flush all caches. If a previous download failed this is often helpful"
	MCFileBasedRepository flushAllCaches.
	config := MCMcmUpdater updateFromDefaultRepository.
	config ifNil: [^self inform: 'Unable to retrieve updates from remote repository.' translated].
	self setSystemVersionFromConfig: config.
	self inform: ('Update completed.
Current update number: ' translated, SystemVersion current highestUpdate).
answer := self confirm: 'You wish cleanup the image ?'.
answer ifTrue:[
self updateFromServerCleanup]! !


More information about the Squeak-dev mailing list