FFI: ConfigurationOfFFI-mt.44.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.44.mcz

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

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

Name: ConfigurationOfFFI-mt.44
Author: mt
Time: 26 May 2021, 6:33:14.385788 pm
UUID: 755f6f77-862a-364f-b799-fff25abb4803
Ancestors: ConfigurationOfFFI-mt.43

For Squeak FFI, updates 2.0 baseline to match recent updates and the addition of "FFI-CallbacksTests" package.

=============== Diff against ConfigurationOfFFI-mt.43 ===============

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-Callbacks' with: [ spec requires: 'FFI-Kernel' ]; "Not compatible with Alien."
- package: 'FFI-Callbacks' with: [ spec requires: 'FFI-Pools' ]; "Experimental. Not compatible with Alien."
  package: 'FFI-Tools' with: [ spec requires: 'FFI-Kernel' ];
 
  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-PoolsTests' with: [ spec requires: 'FFI-Pools' ];
 
  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: 'default' with: #('Core' 'Tools' 'Examples' 'Tests');
- group: 'dev' with:  #('Core' 'Callbacks' 'Tools' 'Examples' 'Tests'); "Experimental. 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: 'Core' with: #('FFI-Pools' 'FFI-Kernel');
  group: 'Tools' with: #('FFI-Tools');
- group: 'Callbacks' with: #('FFI-Callbacks'); "Experimental. Not compatible with Alien."
 
  group: 'Examples' with: #('FFI-MacOS' 'FFI-Unix' 'FFI-Win32');
+ group: 'Tests' with: #('FFI-Tests' 'FFI-PoolsTests') ].!
- group: 'Tests' with: #('FFI-Tests') ].!

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.27';
+ package: 'FFI-Kernel' with: 'FFI-Kernel-mt.171';
+ package: 'FFI-Tools' with: 'FFI-Tools-mt.37';
+ package: 'FFI-Callbacks' with: 'FFI-Callbacks-mt.19'; "Not compatible with Alien."
- package: 'FFI-Pools' with: 'FFI-Pools-mt.25';
- package: 'FFI-Kernel' with: 'FFI-Kernel-mt.119';
- package: 'FFI-Tools' with: 'FFI-Tools-mt.20';
- package: 'FFI-Callbacks' with: 'FFI-Callbacks-mt.3'; "Experimental. Not compatible with Alien."
 
+ package: 'FFI-Tests' with: 'FFI-Tests-mt.50';
- package: 'FFI-Tests' with: 'FFI-Tests-mt.21';
  package: 'FFI-PoolsTests' with: 'FFI-PoolsTests-mt.10';
+ 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'].!
- package: 'FFI-Unix' with: 'FFI-Unix-mtf.4'].!