[Pkg] The Trunk: Monticello-cmm.558.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Aug 15 16:56:00 UTC 2013


Chris Muller uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-cmm.558.mcz

==================== Summary ====================

Name: Monticello-cmm.558
Author: cmm
Time: 15 August 2013, 11:55:22.698 am
UUID: 90d5e73c-dd83-4b82-82c0-7c1a48814f51
Ancestors: Monticello-cmm.557

- If an older version is not found in the repository it should be in, copy it where it should from the MCRepositoryGroup default.  If it's not found there, signal an error that it needs to be copied there.

=============== Diff against Monticello-cmm.557 ===============

Item was changed:
  ----- Method: MCInfoProxy>>materializeInfo (in category 'private') -----
  materializeInfo
+ 	^ (repository versionWithInfo: info)
+ 		ifNil:
+ 			[ (MCRepositoryGroup default versionWithInfo: info)
+ 				ifNil: [ nil error: 'Please copy ' , info name , 'with id ' , info id asString , ' to ' , repository asString , ' and try again.' ]
+ 				ifNotNil:
+ 					[ : foundVersion | repository storeVersion: foundVersion ] ]
+ 		ifNotNil: [ : version | version info ]!
- 	^ (repository versionWithInfo: info) info!



More information about the Packages mailing list