[Pkg] Tasks: Tasks-Squeak310-kph.27.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Tue Dec 9 18:40:48 UTC 2008


A new version of Tasks-Squeak310 was added to project Tasks:
http://www.squeaksource.com/Tasks/Tasks-Squeak310-kph.27.mcz

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

Name: Tasks-Squeak310-kph.27
Author: kph
Time: 9 December 2008, 6:40:44 pm
UUID: 21a1a70a-739c-47cf-9b9b-35286502dd5a
Ancestors: Tasks-Squeak310-kph.26

we have multiple repositories for the project now

=============== Diff against Tasks-Squeak310-kph.26 ===============

Item was added:
+ ----- Method: ReleaseAfterSqueak310 class>>repositories (in category 'as yet unclassified') -----
+ repositories
+ 
+ 	#( MCHttpRepository
+ 				location: 'http://www.squeaksource.com/311'
+ 				user: ''
+ 				password: ''.
+ 	
+  	MCHttpRepository
+ 				location: 'http://www.squeaksource.com/310bc'
+ 				user: ''
+ 				password: ''.
+ 	
+  	MCHttpRepository
+ 				location: 'http://www.squeaksource.com/311rc'
+ 				user: ''
+ 				password: ''.
+ 	)
+ !

Item was changed:
  ----- Method: ReleaseAfterSqueak310 class>>taskBUILDCANDIDATE (in category 'as yet unclassified') -----
  taskBUILDCANDIDATE
  
  	"starting with 3.10 or 3.10.2 get the image into a known state for fixes to be applied"
  
  	^ self define: [ :task |
- 		
- 		task if: [ self isWaypointMissing: #fixCandidate ].
  		
  		task action: {
  		
  			[ self suffix: 'bc' ].
  		
  			self taskResetFixesAutoDocumentation.
  	
  			self taskTidyWorld.
  			self taskTidyMorphs.
  			self taskTidyRepositories.
  			
  			self taskSetPreferences. 
  			self taskPackageUpgrades.
  			self taskKernelImports.
  			
  			self taskDocumentFixes. "so far"
  		
  			self taskFinalize.
  
  			self taskSavePackages.
+ 		
- 			
- 			[ self markWaypoint: #fixCandidate ].
  		}
  	].
  !

Item was changed:
  ----- Method: ReleaseAfterSqueak310 class>>taskBuildCandidate (in category 'as yet unclassified') -----
  taskBuildCandidate
  	
  	"protected from being repeated by a waypoint"
  
  	^ self define: [ :task |
  					
  		task if: [ self isWaypointMissing: #buildCandidate ].
  
  		task action: {
  
  			self taskBUILDCANDIDATE.
  			
  			[ self markWaypoint: #buildCandidate ].			 
  		}.
  		 
  	].
  !

Item was removed:
- ----- Method: ReleaseAfterSqueak310 class>>repository (in category 'as yet unclassified') -----
- repository
- 
- 	^ MCHttpRepository
- 				location: 'http://www.squeaksource.com/311'
- 				user: ''
- 				password: ''.
- 	
- !

Item was removed:
- ----- Method: ReleaseAfterSqueak310 class>>taskTidyRepositories (in category 'as yet unclassified') -----
- taskTidyRepositories
- 
- 	^ self define: [ :task |
- 		
- 		MCWorkingCopy allManagers do: [ :ea | ea repository ifNotNil: [ ea repositoryGroup initialize; addRepository: ea repository ] ]
- 		
- 	]!



More information about the Packages mailing list