-
Notifications
You must be signed in to change notification settings - Fork 29
/
baseline..st
61 lines (59 loc) · 2.2 KB
/
baseline..st
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
baseline
baseline: spec
<baseline>
spec for: #common do: [
spec baseline: 'Ston' with: [
spec
repository: 'github://squeak-smalltalk/squeak-ston:squeak/repository'. ].
spec baseline: 'FileTree' with: [
spec
repository: 'github://dalehenrich/filetree:squeak4.3/repository'. ].
spec baseline: 'Tonel'
with: [spec repository: 'github://squeak-smalltalk/squeak-tonel:squeak/'].
spec
package: 'SqueakSSL-Core' with: [
spec
repository: 'http://source.squeak.org/trunk'. ];
package: 'WebClient-Core' with: [
spec
repository: 'http://source.squeak.org/trunk';
file: 'WebClient-Core-jr.104'. ];
package: 'WebClient-HTTP' with: [
spec
repository: 'http://source.squeak.org/trunk';
file: 'WebClient-HTTP-cmm.6'. ];
package: 'INIFile' with: [
spec
repository: 'http://www.squeaksource.com/INIFile';
file: 'INIFile-jf.3'. ];
package: 'DiffMerge' with: [
spec
repository: 'http://www.squeaksource.com/DiffMerge';
file: 'DiffMerge-tonyg.12'. ];
baseline: 'FileSystem' with:
[spec
repository: 'github://squeak-smalltalk/squeak-filesystem:master/src';
loads: #('default' 'tests')];
package: 'VersionControl';
package: 'Squot' with: [
spec requires: #('FileSystem' 'Ston' 'DiffMerge' 'VersionControl' ). ];
package: 'FileSystem-Git' with: [
spec requires: #('FileSystem' 'INIFile' 'VersionControl' ). ];
package: 'Squit' with: [
spec requires: #('FileSystem-Git' 'Squot'). ];
package: 'SquotTonel-Core' with:
[spec requires: #('Squot' 'FileSystem' 'Tonel')];
package: 'SquotTonel-Tests' with:
[spec requires: #('SquotTonel-Core')].
spec
group: 'FileSystemGit' with: #('FileSystem-Git' );
group: 'default' with: #('Squit' 'Squot' 'SquotTonel-Core');
group: 'tests' with: #('default' 'SquotTonel-Tests'). ].
spec for: #'squeakCommon' do: [
spec package: 'SquotCompatibility-SqueakCommon'.
spec package: 'Squot' with: [
spec includes: 'SquotCompatibility-SqueakCommon']].
spec for: #(#'squeak5.0.x' #'squeak5.1.x' #'squeak5.2.x' #'squeak5.3.x') do: [
spec package: 'SquotCompatibility-Squeak50'.
spec package: 'Squot' with: [
spec includes: 'SquotCompatibility-Squeak50']].