[Pkg] Installer: Installer-Core-kph.253.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Tue Dec 2 08:30:19 UTC 2008


A new version of Installer-Core was added to project Installer:
http://www.squeaksource.com/Installer/Installer-Core-kph.253.mcz

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

Name: Installer-Core-kph.253
Author: kph
Time: 2 December 2008, 8:30:15 am
UUID: 5e5a07ba-d36b-46e1-94c1-3386f8aadad7
Ancestors: Installer-Core-kph.252

+ Installer mc fromUrl: '...'.
+ Installer mc fromUrl: '...'; latest; install.
+ Installer mc fromUrl: '...'; latestFromUsers: #(lr); install.

=============== Diff against Installer-Core-kph.252 ===============

Item was added:
+ ----- Method: InstallerMonticello>>fromUrl: (in category 'accessing') -----
+ fromUrl: aUrl
+ 
+ 	| url  path |
+ 	
+ 	url := aUrl asUrl.
+ 
+ 	self http: url authority.
+ 	
+ 	path := url path.
+ 	
+ 	path size = 2 ifTrue: [ 
+ 		self project: path first.
+ 		path removeFirst.
+  	].	
+ 	
+ 	path size = 1 ifTrue: [ self package: path first ].!

Item was added:
+ ----- Method: InstallerMonticello>>latest (in category 'accessing') -----
+ latest 
+ 	| newPackage |
+ 	newPackage := self package copyUpToLast: $-.
+ 	self packages removeLast.
+ 	self package: newPackage
+ 	
+ "
+ Installer mc fromUrl: 'http://www.squeaksource.com/Installer/Installer-Core-kph.100.mcz'.
+ "!

Item was added:
+ ----- Method: InstallerMonticello>>latestFromUsers: (in category 'accessing') -----
+ latestFromUsers: list
+ 
+ 	| newPackage |
+ 	newPackage := self package copyUpToLast: $-.
+ 	self packages removeLast.
+ 	self package: (list collect: [ :ea | newPackage, '-', ea ])!



More information about the Packages mailing list