FFI: ConfigurationOfFFI-mt.50.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

FFI: ConfigurationOfFFI-mt.50.mcz

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

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

Name: ConfigurationOfFFI-mt.50
Author: mt
Time: 8 June 2021, 9:59:18.359752 am
UUID: dd27f133-e636-8e48-843b-10d63987c898
Ancestors: ConfigurationOfFFI-mt.49

FFI-Callbacks is compatible with Alien now. So, load it by default when loading Squeak FFI.

=============== Diff against ConfigurationOfFFI-mt.49 ===============

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' ];
- package: 'FFI-Callbacks' with: [ spec requires: 'FFI-Libraries' ]; "Not compatible with Alien."
 
  package: 'FFI-Tools' with: [ spec requires: 'FFI-Kernel' ];
 
  package: 'FFI-Tests' with: [ spec requires: #('FFI-Kernel' 'FFI-Libraries') ];
  package: 'FFI-PoolsTests' with: [ spec requires: #('FFI-Tests' 'FFI-Pools') ];
  package: 'FFI-CallbacksTests' with: [ spec requires: #('FFI-Tests' 'FFI-Callbacks') ].
 
  spec
+ group: 'default' with: #(dev);
+ group: 'dev' with:  #('Core' 'Tools' 'Tests');
- group: 'default' with: #('Core' 'Tools' 'Tests');
 
+ group: 'Core' with: #('FFI-Kernel' 'FFI-Callbacks');
- group: 'dev' with:  #('Core' 'Libraries' 'Callbacks' 'Tools' 'Tests'); "Not compatible with Alien."
- group: 'Callbacks' with: #('FFI-Callbacks' 'FFI-CallbacksTests'); "Not compatible with Alien."
-
- group: 'Core' with: #('FFI-Kernel');
- group: 'Libraries' with: #('FFI-Libraries');
  group: 'Tools' with: #('FFI-Tools');
+ group: 'Tests' with: #('FFI-Tests' 'FFI-PoolsTests' 'FFI-CallbacksTests') ].!
-
- 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.31';
+ package: 'FFI-Kernel' with: 'FFI-Kernel-mt.180';
- package: 'FFI-Kernel' with: 'FFI-Kernel-mt.178';
  package: 'FFI-Libraries' with: 'FFI-Libraries-mt.2';
+ package: 'FFI-Callbacks' with: 'FFI-Callbacks-mt.25';
- package: 'FFI-Callbacks' with: 'FFI-Callbacks-mt.21'; "Not compatible with Alien."
 
  package: 'FFI-Tools' with: 'FFI-Tools-mt.37';
 
  package: 'FFI-Tests' with: 'FFI-Tests-mt.51';
  package: 'FFI-PoolsTests' with: 'FFI-PoolsTests-mt.11';
+ package: 'FFI-CallbacksTests' with: 'FFI-CallbacksTests-mt.4'].!
- package: 'FFI-CallbacksTests' with: 'FFI-CallbacksTests-mt.2'].!