yes :(
But... what I do for my images (
http://marianopeck.wordpress.com/2011/11/19/loading-projects-and-building-your-own-images-with-metacello/) is to use the same package-cache for ALL images. Since I am building all the time, it is likely all needed mcz will be in such package-cache. If you use the last version of those packages (seaside, glorp, etc), then it will load the last one found in package-cache. If you use a fixed version, if it is found, not problem. If it is not found -> error.
So...in my builder, I can do GeneralImageBuilder buildOffline: true.
THen:
loadPackages: packagesOrGroups
��� | version repo |
��� self generalPreLoad.
��� version := (ConfigurationOfMariano project version: #bleedingEdge).
��� self class buildOffline ��� ��� ifTrue: [ ��� ��� ��� repo := MCDirectoryRepository new.
� ��� ��� ��� repo directory: self sharedPackageCacheDirectory.���� ���� ��� version repositoryOverrides: (OrderedCollection with: repo).
��� ��� ��� �].��� version load: packagesOrGroups.
����
Conclusion: 90% of the times, I am able to recreate an image from my own package-cache.
Cheers