[squeak-dev] FFI: ConfigurationOfFFI-mt.46.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jun 11 08:06:13 UTC 2021


Marcel Taeumel uploaded a new version of ConfigurationOfFFI to project FFI:
http://source.squeak.org/FFI/ConfigurationOfFFI-mt.46.mcz

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

Name: ConfigurationOfFFI-mt.46
Author: mt
Time: 27 May 2021, 9:41:57.164843 am
UUID: 9b8b9a7e-2363-624b-9e65-dc269113dcd0
Ancestors: ConfigurationOfFFI-mt.45

Clean up yesterday's dependency hick-up. Sorry for the inconvenience. :-/

=============== Diff against ConfigurationOfFFI-mt.45 ===============

Item was changed:
  ----- Method: ConfigurationOfFFI>>baseline20: (in category 'baselines') -----
  baseline20: spec
  	<version: '2.0-baseline'>
      
  	spec for: #common do: [
  		spec blessing: #baseline.
  		spec repository: 'http://source.squeakfoundation.org/FFI'.
    
  		spec
  			package: 'FFI-Pools';
  			package: 'FFI-Kernel' with: [ spec requires: 'FFI-Pools' ];
+ 			package: 'FFI-Libraries' with: [ spec requires: 'FFI-Kernel' ];
+ 			package: 'FFI-Callbacks' with: [ spec requires: 'FFI-Libraries' ]; "Not compatible with Alien."
+ 			
- 			package: 'FFI-Callbacks' with: [ spec requires: 'FFI-Kernel' ]; "Not compatible with Alien."
  			package: 'FFI-Tools' with: [ spec requires: 'FFI-Kernel' ];
  			
+ 			package: 'FFI-Tests' with: [ spec requires: #('FFI-Kernel' 'FFI-Libraries') ];
- 			package: 'FFI-Tests' with: [ spec requires: 'FFI-Kernel' ];
  			package: 'FFI-PoolsTests' with: [ spec requires: #('FFI-Tests' 'FFI-Pools') ];
+ 			package: 'FFI-CallbacksTests' with: [ spec requires: #('FFI-Tests' 'FFI-Callbacks') ].
- 			package: 'FFI-CallbacksTests' with: [ spec requires: #('FFI-Tests' 'FFI-Callbacks') ];
- 			
- 			package: 'FFI-MacOS' with: [ spec requires: 'FFI-Kernel' ];
- 			package: 'FFI-Unix' with: [ spec requires: 'FFI-Kernel' ];
- 			package: 'FFI-Win32' with: [ spec requires: 'FFI-Kernel' ].
  		
  		spec
  			group: 'default' with: #('Core' 'Tools' 'Tests');
  
+ 			group: 'dev' with:  #('Core' 'Libraries' 'Callbacks' 'Tools' 'Tests'); "Not compatible with Alien."
- 			group: 'dev' with:  #('Core' 'Callbacks' 'Tools' 'Examples' 'Tests'); "Not compatible with Alien."
  			group: 'Callbacks' with: #('FFI-Callbacks' 'FFI-CallbacksTests'); "Not compatible with Alien."
  
  			group: 'Core' with: #('FFI-Kernel');
  			group: 'Tools' with: #('FFI-Tools');
  			
- 			group: 'Examples' with: #('FFI-MacOS' 'FFI-Unix' 'FFI-Win32');
  			group: 'Tests' with: #('FFI-Tests' 'FFI-PoolsTests') ].!

Item was changed:
  ----- Method: ConfigurationOfFFI>>version20: (in category 'versions') -----
  version20: spec
  	<version: '2.0' imports: #('2.0-baseline')>
  	
  	spec for: #common do: [
  		spec
  			blessing: #release;
+ 			package: 'FFI-Pools' with: 'FFI-Pools-mt.30';
+ 			package: 'FFI-Kernel' with: 'FFI-Kernel-mt.174';
+ 			package: 'FFI-Libraries' with: 'FFI-Libraries-mt.1';
- 			package: 'FFI-Pools' with: 'FFI-Pools-mt.29';
- 			package: 'FFI-Kernel' with: 'FFI-Kernel-mt.173';
- 			package: 'FFI-Tools' with: 'FFI-Tools-mt.37';
  			package: 'FFI-Callbacks' with: 'FFI-Callbacks-mt.20'; "Not compatible with Alien."
  			
+ 			package: 'FFI-Tools' with: 'FFI-Tools-mt.37';
+ 			
  			package: 'FFI-Tests' with: 'FFI-Tests-mt.50';
  			package: 'FFI-PoolsTests' with: 'FFI-PoolsTests-mt.11';
+ 			package: 'FFI-CallbacksTests' with: 'FFI-CallbacksTests-mt.1'].!
- 			package: 'FFI-CallbacksTests' with: 'FFI-CallbacksTests-mt.1';
- 			
- 			package: 'FFI-MacOS' with: 'FFI-MacOS-mt.6';
- 			package: 'FFI-Win32' with: 'FFI-Win32-nice.20';
- 			package: 'FFI-Unix' with: 'FFI-Unix-mt.5'].!



More information about the Squeak-dev mailing list