[squeak-dev] The Inbox: Configurations-ar.4.mcz

commits at source.squeak.org commits at source.squeak.org
Thu May 20 06:43:54 UTC 2010


A new version of Configurations was added to project The Inbox:
http://source.squeak.org/inbox/Configurations-ar.4.mcz

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

Name: Configurations-ar.4
Author: ar
Time: 19 May 2010, 11:43:47.315 pm
UUID: cf964518-7019-6241-8998-114a4d82aa36
Ancestors: Configurations-ar.3

Add SQLite3 config.

=============== Diff against Configurations-ar.3 ===============

Item was added:
+ MetacelloConfiguration subclass: #ConfigurationOfSQLite3
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'Configurations-Databases'!

Item was added:
+ ----- Method: ConfigurationOfSQLite3>>baseline10: (in category 'baselines') -----
+ baseline10: spec
+     <version: '1.0-baseline'>
+     
+     spec for: #common do: [
+         spec 
+ 			blessing: #baseline;
+ 			description: '1.0 baseline for SQLite 3';
+ 			repository: 'http://www.squeaksource.com/SQLite'.     
+ 			 
+         spec package: 'SQLite3-Core' with: [ spec requires: #('FFI' ) ].
+ 		 spec package: 'SQLite3-Tests' with: [ spec requires: #('SQLite3-Core' ) ].		
+ 				
+ 		 spec
+ 			group: 'default' with: #('SQLite3-Core' );
+ 			group: 'Tests' with: #('SQLite3-Tests' ).
+ 							
+ 	  spec
+ 			project: 'FFI' with: [
+ 				spec
+ 					className: 'ConfigurationOfFFI';
+ 					file: 'ConfigurationOfFFI';
+ 					version: '1.0-baseline';
+ 					repository: 'http://www.squeaksource.com/MetacelloRepository' ].
+     ]
+       
+         
+ !

Item was changed:
  SystemOrganization addCategory: #'Configurations-Base'!
  SystemOrganization addCategory: #'Configurations-Development'!
  SystemOrganization addCategory: #'Configurations-Libraries'!
  SystemOrganization addCategory: #'Configurations-Network'!
  SystemOrganization addCategory: #'Configurations-Games'!
+ SystemOrganization addCategory: #'Configurations-Databases'!

Item was added:
+ ----- Method: ConfigurationOfSQLite3>>version10: (in category 'versions') -----
+ version10: spec
+ 	<version: '1.0' imports: #('1.0-baseline')>
+ 	
+ 	spec for: #common do: [
+ 		spec blessing: #release.
+ 		spec description: 'first release'. 
+ 		spec author: 'Torsten Bergmann'.
+ 		spec timestamp: '1/25/2010 8:49'.
+ 		spec 
+ 			project: 'FFI' with: '1.0'.	 
+ 		spec package: 'SQLite3-Core' with: 'SQLite3-Core-tbn.1'.
+ 		spec package: 'SQLite3-Tests' with: 'SQLite3-Tests-tbn.1'.		
+ 	]!

Item was added:
+ ----- Method: ConfigurationOfSQLite3>>version11: (in category 'versions') -----
+ version11: spec
+ 	<version: '1.1' imports: #('1.0-baseline')>
+ 	
+ 	spec for: #common do: [
+ 		spec blessing: #release.
+ 		spec description: 'release with newer FFI'. 
+ 		spec author: 'Torsten Bergmann'.
+ 		spec timestamp: '2/18/2010 0:10'.
+ 		spec 
+ 			project: 'FFI' with: '1.2'.	 
+ 		spec package: 'SQLite3-Core' with: 'SQLite3-Core-tbn.1'.
+ 		spec package: 'SQLite3-Tests' with: 'SQLite3-Tests-tbn.1'.		
+ 	]!

Item was added:
+ ----- Method: ConfigurationOfSQLite3>>version12: (in category 'versions') -----
+ version12: spec
+ 	<version: '1.2' imports: #('1.0-baseline')>
+ 	
+ 	spec for: #common do: [
+ 		spec blessing: #release.
+ 		spec description: 'release with working on Mac too'. 
+ 		spec author: 'Torsten Bergmann'.
+ 		spec timestamp: '5/19/2010 0:10'.
+ 		spec 
+ 			project: 'FFI' with: '1.2'.	 
+ 		spec package: 'SQLite3-Core' with: 'SQLite3-Core-tbn.4'.
+ 		spec package: 'SQLite3-Tests' with: 'SQLite3-Tests-spd.2'.		
+ 	]!




More information about the Squeak-dev mailing list