Skip to content

Commit 6474e0f

Browse files
author
Dale Henrichs
committed
Merge branch 'issue_34' into gemstone3.1
sync to stable version 2.3.2 of ConfigurationOfZincHTTPComponents for GemStone 3.1.x
2 parents b01bd41 + cbc1d9c commit 6474e0f

File tree

2,419 files changed

+14221
-3440
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,419 files changed

+14221
-3440
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
language: erlang
22

33
env:
4-
- ST=GemStone-3.0.1
5-
- ST=GemStone-3.1.0.2
4+
- ST=GemStone-3.1.0.4
65
# - ST=GemStone-2.4.4.1
76
# - ST=GemStone-2.4.4.7
87
# - ST=GemStone-2.4.5

repository/BaselineOfZinc.package/BaselineOfZinc.class/instance/baseline..st

+41-10
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,51 @@ baseline: spec
99
with: [
1010
spec
1111
versionString: #'stable';
12-
repository: 'http://www.squeaksource.com/MetacelloRepository' ].
13-
spec
14-
package: 'Zinc-HTTP';
15-
package: 'Zinc-AWS' with: [ spec requires: #('Zinc-HTTP' 'XML Support') ];
16-
package: 'Zinc-REST' with: [ spec requires: 'Zinc-HTTP' ];
17-
package: 'Zinc-WebDAV' with: [ spec requires: 'Zinc-HTTP' ];
18-
package: 'Zinc-WWS-Server' with: [ spec requires: 'Zinc-HTTP' ];
19-
package: 'Zinc-WWS-Client' with: [ spec requires: 'Zinc-HTTP' ];
20-
package: 'Zinc-Tests' with: [ spec requires: 'Zinc-HTTP' ].
12+
repository: 'http://www.squeaksource.com/MetacelloRepository' ];
13+
14+
configuration: 'Neo JSON'
15+
with: [
16+
spec
17+
versionString: #'stable';
18+
repository: 'http://mc.stfx.eu/Neo' ].
19+
20+
spec
21+
package: 'Zinc-Character-Encoding-Core';
22+
package: 'Zinc-Character-Encoding-Tests' with: [ spec requires: 'Zinc-Character-Encoding-Core' ];
23+
package: 'Zinc-Resource-Meta-Core' with: [ spec requires: 'Zinc-Character-Encoding-Core' ];
24+
package: 'Zinc-Resource-Meta-Tests' with: [ spec requires: 'Zinc-Resource-Meta-Core' ];
25+
package: 'Zinc-HTTP' with: [ spec requires: #( 'Zinc-Character-Encoding-Core' 'Zinc-Resource-Meta-Core' ) ];
26+
package: 'Zinc-Patch-HTTPSocket' with: [ spec requires: 'Zinc-HTTP' ];
27+
package: 'Zinc-AWS' with: [ spec requires: #( 'Zinc-HTTP' 'XML Support' ) ];
28+
package: 'Zinc-REST' with: [ spec requires: #( 'Zinc-HTTP' 'Neo JSON' ) ];
29+
package: 'Zinc-Zodiac' with: [ spec requires: #( 'Zinc-HTTP' 'Zodiac-Core' 'Zodiac-Tests' ) ];
30+
package: 'Zinc-WebSocket-Core' with: [ spec requires: 'Zinc-HTTP' ];
31+
package: 'Zinc-WebSocket-Tests' with: [ spec requires: 'Zinc-WebSocket-Core' ];
32+
package: 'Zinc-SSO-OAuth1-Core' with: [ spec requires: #( 'Zinc-HTTP' 'Neo JSON' ) ];
33+
package: 'Zinc-SSO-OAuth2-Core' with: [ spec requires: #( 'Zinc-HTTP' 'Neo JSON' ) ];
34+
package: 'Zinc-SSO-OpenID-Core' with: [ spec requires: #( 'Zinc-HTTP' 'XML Support' ) ];
35+
package: 'Zinc-SSO-Demo' with: [ spec requires: #( 'Zinc-SSO-OAuth1-Core' 'Zinc-SSO-OAuth2-Core' 'Zinc-SSO-OpenID-Core' ) ];
36+
package: 'Zinc-SSO-OAuth1-Tests' with: [ spec requires: #( 'Zinc-SSO-OAuth1-Core' ) ];
37+
package: 'Zinc-SSO-OpenID-Tests' with: [ spec requires: #( 'Zinc-SSO-OpenID-Core' ) ];
38+
package: 'Zinc-WebDAV' with: [ spec requires: 'Zinc-HTTP' ];
39+
package: 'Zinc-WWS-Server' with: [ spec requires: 'Zinc-HTTP' ];
40+
package: 'Zinc-WWS-Client' with: [ spec requires: 'Zinc-HTTP' ];
41+
package: 'Zinc-Tests' with: [ spec requires: 'Zinc-HTTP' ].
2142
spec
2243
group: 'default' with: #('Core');
2344
group: 'Core' with: #('Zinc-HTTP');
45+
group: 'Tests' with: #('Zinc-Tests' 'Zinc-Character-Encoding-Tests' 'Zinc-Resource-Meta-Tests');
46+
group: 'Character-Encoding' with: #('Zinc-Character-Encoding-Core' 'Zinc-Character-Encoding-Tests');
47+
group: 'Resource-Meta' with: #('Zinc-Resource-Meta-Core' 'Zinc-Resource-Meta-Tests');
2448
group: 'Tests' with: #('Zinc-Tests');
2549
group: 'AWS' with: #('Zinc-AWS');
2650
group: 'WebDAV' with: #('Zinc-WebDAV');
51+
group: 'WebSocket' with: #('Zinc-WebSocket-Core' 'Zinc-WebSocket-Tests');
52+
group: 'SSO-OAuth1' with: #('Zinc-SSO-OAuth1-Core' 'Zinc-SSO-OAuth1-Tests');
53+
group: 'SSO-OAuth2' with: #('Zinc-SSO-OAuth2-Core');
54+
group: 'SSO-OpenID' with: #('Zinc-SSO-OpenID-Core' 'Zinc-SSO-OpenID-Tests');
55+
group: 'SSO-Demo' with: #('Zinc-SSO-OAuth1-Core' 'Zinc-SSO-OAuth2-Core' 'Zinc-SSO-OpenID-Core');
56+
group: 'SSO' with: #('SSO-OAuth1' 'SSO-OAuth2' 'SSO-OpenID' 'SSO-Demo' 'Zinc-SSO-Demo');
2757
group: 'WWS' with: #('Zinc-WWS-Server' 'Zinc-WWS-Client');
2858
group: 'REST' with: #('Zinc-REST') ].
2959
spec
@@ -36,7 +66,8 @@ baseline: spec
3666
do: [
3767
spec
3868
package: 'Zinc-FileSystem-Legacy';
39-
package: 'Zinc-HTTP' with: [ spec requires: 'Zinc-FileSystem-Legacy' ] ].
69+
package: 'Zinc-Pharo-Forward-Compatibility';
70+
package: 'Zinc-HTTP' with: [ spec requires: #('Zinc-FileSystem-Legacy' 'Zinc-Pharo-Forward-Compatibility') ] ].
4071
spec
4172
for: #'pharo2.x'
4273
do: [

repository/BaselineOfZinc.package/BaselineOfZinc.class/methodProperties.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"class" : {
33
},
44
"instance" : {
5-
"baseline:" : "dkh 08/07/2012 06:40" } }
5+
"baseline:" : "JohanBrichau 06/16/2013 11:16" } }
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SystemOrganization addCategory: 'BaselineOfZinc'!
1+
SystemOrganization addCategory: #'BaselineOfZinc'!
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
(name 'BaselineOfZinc-dkh.1' message 'rename from BaselineOfZincHTTPComponents to BaselineOfZinc' id '7e962b8f-29d0-4e5a-8311-4a1432e9553e' date '08/07/2012' time '06:42:42' author 'dkh' ancestors () stepChildren ())
1+
(name 'BaselineOfZinc-JohanBrichau.2' message 'updated for version 2.3.2' id '15eb37fb-3b0c-4de8-91e7-c542ddd3b9dc' date '06/16/2013' time '11:17:11' author 'JohanBrichau' ancestors ((name 'BaselineOfZinc-dkh.1' message 'rename from BaselineOfZincHTTPComponents to BaselineOfZinc' id '7e962b8f-29d0-4e5a-8311-4a1432e9553e' date '08/07/2012' time '06:42:42' author 'dkh' ancestors () stepChildren ())) stepChildren ())
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
I am ConfigurationOfZincHTTPComponents the Metacello configuration of Zinc HTTP Components, an open-source Smalltalk framework to deal with the HTTP networking protocol.
22

3-
For more information, see http://homepage.mac.com/svc/Zinc-HTTP-Components
3+
For more information, see http://zn.stfx.eu
44

5-
One way to load this project is by executing:
5+
Here are some ways to load this project:
66

7+
ConfigurationOfZincHTTPComponents load.
78
ConfigurationOfZincHTTPComponents project latestVersion load.
89
ConfigurationOfZincHTTPComponents project latestVersion load: 'Tests'.
10+
ConfigurationOfZincHTTPComponents project bleedingEdge load.
911

1012
This is open-source software licensed under the MIT License.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
baselines
2+
baseline18: spec
3+
<version: '1.8-baseline'>
4+
spec for: #common do: [
5+
spec
6+
blessing: #baseline;
7+
description: 'Baseline for Zinc HTTP Components, a framework to deal with the HTTP networking';
8+
author: 'SvenVanCaekenberghe';
9+
repository: 'http://www.squeaksource.com/ZincHTTPComponents'.
10+
spec project: 'XML Support' with: [
11+
spec
12+
className: 'ConfigurationOfXMLSupport';
13+
versionString: #'stable';
14+
repository: 'http://www.squeaksource.com/MetacelloRepository' ].
15+
spec package: 'Zodiac-Core' with: [
16+
spec repository: 'http://www.squeaksource.com/Zodiac' ].
17+
spec
18+
package: 'Zinc-HTTP';
19+
package: 'Zinc-Patch-HTTPSocket' with: [ spec requires: 'Zinc-HTTP' ];
20+
package: 'Zinc-AWS' with: [ spec requires: #('Zinc-HTTP' 'XML Support') ];
21+
package: 'Zinc-REST' with: [ spec requires: 'Zinc-HTTP' ];
22+
package: 'Zinc-Zodiac' with: [ spec requires: #('Zinc-HTTP' 'Zodiac-Core') ];
23+
package: 'Zinc-WebSocket-Core' with: [ spec requires: 'Zinc-HTTP' ];
24+
package: 'Zinc-WebSocket-Tests' with: [ spec requires: 'Zinc-WebSocket-Core' ];
25+
package: 'Zinc-WebDAV' with: [ spec requires: 'Zinc-HTTP' ];
26+
package: 'Zinc-WWS-Server' with: [ spec requires: 'Zinc-HTTP' ];
27+
package: 'Zinc-WWS-Client' with: [ spec requires: 'Zinc-HTTP' ];
28+
package: 'Zinc-Tests' with: [ spec requires: 'Zinc-HTTP' ].
29+
spec
30+
group: 'default' with: #('Core');
31+
group: 'Core' with: #('Zinc-HTTP');
32+
group: 'Tests' with: #('Zinc-Tests');
33+
group: 'AWS' with: #('Zinc-AWS');
34+
group: 'WebDAV' with: #('Zinc-WebDAV');
35+
group: 'WebSocket' with: #('Zinc-WebSocket-Core' 'Zinc-WebSocket-Tests');
36+
group: 'WWS' with: #('Zinc-WWS-Server' 'Zinc-WWS-Client');
37+
group: 'REST' with: #('Zinc-REST');
38+
group: 'Patch-HTTPSocket' with: #('Zinc-Patch-HTTPSocket') ].
39+
spec for: #'pharo1.x' do: [
40+
spec
41+
package: 'Zinc-FileSystem-Legacy';
42+
package: 'Zinc-Pharo-Forward-Compatibility';
43+
package: 'Zinc-HTTP' with: [ spec requires: #('Zinc-FileSystem-Legacy' 'Zinc-Pharo-Forward-Compatibility') ] ].
44+
spec for: #'pharo2.x' do: [
45+
spec
46+
package: 'Zinc-FileSystem';
47+
package: 'Zinc-HTTP' with: [ spec requires: 'Zinc-FileSystem' ] ].
48+
spec for: #gemstone do: [
49+
spec
50+
repository: 'http://seaside.gemstone.com/ss/ZincHTTPComponents';
51+
package: 'Zinc-HTTP' with: [ spec includes: #('Zinc-Gemstone') ];
52+
package: 'SocketStream' with: [ spec repository: 'http://seaside.gemstone.com/ss/PharoCompat' ];
53+
package: 'Zinc-GemstonePreliminary' with: [ spec requires: #('SocketStream') ];
54+
package: 'Zinc-HTTP' with: [ spec requires: #('Zinc-GemstonePreliminary') ];
55+
package: 'Zinc-Gemstone' with: [ spec requires: #('Zinc-HTTP') ];
56+
package: 'Zinc-Tests' with: [ spec requires: 'Zinc-Gemstone' ] ]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
baselines
2+
baseline19: spec
3+
<version: '1.9-baseline'>
4+
spec for: #common do: [
5+
spec
6+
blessing: #baseline;
7+
description: 'Baseline for Zinc HTTP Components, a framework to deal with the HTTP networking';
8+
author: 'SvenVanCaekenberghe';
9+
repository: 'http://mc.stfx.eu/ZincHTTPComponents'.
10+
spec project: 'XML Support' with: [
11+
spec
12+
className: 'ConfigurationOfXMLSupport';
13+
versionString: #'stable';
14+
repository: 'http://www.squeaksource.com/MetacelloRepository' ].
15+
spec package: 'Zodiac-Core' with: [
16+
spec repository: 'http://mc.stfx.eu/Zodiac' ].
17+
spec
18+
package: 'Zinc-HTTP';
19+
package: 'Zinc-Patch-HTTPSocket' with: [ spec requires: 'Zinc-HTTP' ];
20+
package: 'Zinc-AWS' with: [ spec requires: #('Zinc-HTTP' 'XML Support') ];
21+
package: 'Zinc-REST' with: [ spec requires: 'Zinc-HTTP' ];
22+
package: 'Zinc-Zodiac' with: [ spec requires: #('Zinc-HTTP' 'Zodiac-Core') ];
23+
package: 'Zinc-WebSocket-Core' with: [ spec requires: 'Zinc-HTTP' ];
24+
package: 'Zinc-WebSocket-Tests' with: [ spec requires: 'Zinc-WebSocket-Core' ];
25+
package: 'Zinc-WebDAV' with: [ spec requires: 'Zinc-HTTP' ];
26+
package: 'Zinc-WWS-Server' with: [ spec requires: 'Zinc-HTTP' ];
27+
package: 'Zinc-WWS-Client' with: [ spec requires: 'Zinc-HTTP' ];
28+
package: 'Zinc-Tests' with: [ spec requires: 'Zinc-HTTP' ].
29+
spec
30+
group: 'default' with: #('Core');
31+
group: 'Core' with: #('Zinc-HTTP');
32+
group: 'Tests' with: #('Zinc-Tests');
33+
group: 'AWS' with: #('Zinc-AWS');
34+
group: 'WebDAV' with: #('Zinc-WebDAV');
35+
group: 'WebSocket' with: #('Zinc-WebSocket-Core' 'Zinc-WebSocket-Tests');
36+
group: 'WWS' with: #('Zinc-WWS-Server' 'Zinc-WWS-Client');
37+
group: 'REST' with: #('Zinc-REST');
38+
group: 'Patch-HTTPSocket' with: #('Zinc-Patch-HTTPSocket') ].
39+
spec for: #'pharo1.x' do: [
40+
spec
41+
package: 'Zinc-FileSystem-Legacy';
42+
package: 'Zinc-Pharo-Forward-Compatibility';
43+
package: 'Zinc-HTTP' with: [ spec requires: #('Zinc-FileSystem-Legacy' 'Zinc-Pharo-Forward-Compatibility') ] ].
44+
spec for: #'pharo2.x' do: [
45+
spec
46+
package: 'Zinc-FileSystem';
47+
package: 'Zinc-HTTP' with: [ spec requires: 'Zinc-FileSystem' ] ].
48+
spec for: #gemstone do: [
49+
spec
50+
repository: 'http://seaside.gemstone.com/ss/ZincHTTPComponents';
51+
package: 'Zinc-HTTP' with: [ spec includes: #('Zinc-Gemstone') ];
52+
package: 'SocketStream' with: [ spec repository: 'http://seaside.gemstone.com/ss/PharoCompat' ];
53+
package: 'Zinc-GemstonePreliminary' with: [ spec requires: #('SocketStream') ];
54+
package: 'Zinc-HTTP' with: [ spec requires: #('Zinc-GemstonePreliminary') ];
55+
package: 'Zinc-Gemstone' with: [ spec requires: #('Zinc-HTTP') ];
56+
package: 'Zinc-Tests' with: [ spec requires: 'Zinc-Gemstone' ] ]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
baselines
2+
baseline20: spec
3+
<version: '2.0-baseline'>
4+
spec for: #common do: [
5+
spec
6+
blessing: #baseline;
7+
description: 'Baseline for Zinc HTTP Components, a framework to deal with the HTTP networking';
8+
author: 'SvenVanCaekenberghe';
9+
repository: 'http://mc.stfx.eu/ZincHTTPComponents'.
10+
spec project: 'XML Support' with: [
11+
spec
12+
className: 'ConfigurationOfXMLSupport';
13+
versionString: #'stable';
14+
repository: 'http://www.squeaksource.com/MetacelloRepository' ].
15+
spec project: 'Neo JSON' with: [
16+
spec
17+
className: 'ConfigurationOfNeoJSON';
18+
versionString: #'stable';
19+
repository: 'http://mc.stfx.eu/Neo' ].
20+
spec package: 'Zodiac-Core' with: [
21+
spec repository: 'http://mc.stfx.eu/Zodiac' ].
22+
spec
23+
package: 'Zinc-Resource-Meta-Core';
24+
package: 'Zinc-Resource-Meta-Tests' with: [ spec requires: 'Zinc-Resource-Meta-Core' ];
25+
package: 'Zinc-HTTP' with: [ spec requires: 'Zinc-Resource-Meta-Core' ];
26+
package: 'Zinc-Patch-HTTPSocket' with: [ spec requires: 'Zinc-HTTP' ];
27+
package: 'Zinc-AWS' with: [ spec requires: #('Zinc-HTTP' 'XML Support') ];
28+
package: 'Zinc-REST' with: [ spec requires: #('Zinc-HTTP' 'Neo JSON') ];
29+
package: 'Zinc-Zodiac' with: [ spec requires: #('Zinc-HTTP' 'Zodiac-Core' 'Zodiac-Tests') ];
30+
package: 'Zinc-WebSocket-Core' with: [ spec requires: 'Zinc-HTTP' ];
31+
package: 'Zinc-WebSocket-Tests' with: [ spec requires: 'Zinc-WebSocket-Core' ];
32+
package: 'Zinc-WebDAV' with: [ spec requires: 'Zinc-HTTP' ];
33+
package: 'Zinc-WWS-Server' with: [ spec requires: 'Zinc-HTTP' ];
34+
package: 'Zinc-WWS-Client' with: [ spec requires: 'Zinc-HTTP' ];
35+
package: 'Zinc-Tests' with: [ spec requires: 'Zinc-HTTP' ].
36+
spec
37+
group: 'default' with: #('Core');
38+
group: 'Core' with: #('Zinc-HTTP');
39+
group: 'Tests' with: #('Zinc-Tests');
40+
group: 'Zodiac' with: #('Zinc-Zodiac');
41+
group: 'AWS' with: #('Zinc-AWS');
42+
group: 'WebDAV' with: #('Zinc-WebDAV');
43+
group: 'WebSocket' with: #('Zinc-WebSocket-Core' 'Zinc-WebSocket-Tests');
44+
group: 'WWS' with: #('Zinc-WWS-Server' 'Zinc-WWS-Client');
45+
group: 'REST' with: #('Zinc-REST');
46+
group: 'Patch-HTTPSocket' with: #('Zinc-Patch-HTTPSocket') ].
47+
spec for: #'pharo1.x' do: [
48+
spec
49+
package: 'Zinc-FileSystem-Legacy';
50+
package: 'Zinc-Pharo-Forward-Compatibility';
51+
package: 'Zinc-HTTP' with: [ spec requires: #('Zinc-FileSystem-Legacy' 'Zinc-Pharo-Forward-Compatibility') ] ].
52+
spec for: #'pharo2.x' do: [
53+
spec
54+
package: 'Zinc-FileSystem';
55+
package: 'Zinc-HTTP' with: [ spec requires: 'Zinc-FileSystem' ] ].
56+
spec for: #gemstone do: [
57+
spec
58+
repository: 'http://seaside.gemstone.com/ss/ZincHTTPComponents';
59+
package: 'Zinc-HTTP' with: [ spec includes: #('Zinc-Gemstone') ];
60+
package: 'SocketStream' with: [ spec repository: 'http://seaside.gemstone.com/ss/PharoCompat' ];
61+
package: 'Zinc-GemstonePreliminary' with: [ spec requires: #('SocketStream') ];
62+
package: 'Zinc-HTTP' with: [ spec requires: #('Zinc-GemstonePreliminary') ];
63+
package: 'Zinc-Gemstone' with: [ spec requires: #('Zinc-HTTP') ];
64+
package: 'Zinc-Tests' with: [ spec requires: 'Zinc-Gemstone' ] ]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
baselines
2+
baseline21: spec
3+
<version: '2.1-baseline'>
4+
spec for: #common do: [
5+
spec
6+
blessing: #baseline;
7+
description: 'Baseline for Zinc HTTP Components, a framework to deal with the HTTP networking';
8+
author: 'SvenVanCaekenberghe';
9+
repository: 'http://mc.stfx.eu/ZincHTTPComponents'.
10+
spec project: 'XML Support' with: [
11+
spec
12+
className: 'ConfigurationOfXMLSupport';
13+
versionString: #'stable';
14+
repository: 'http://www.squeaksource.com/MetacelloRepository' ].
15+
spec project: 'Neo JSON' with: [
16+
spec
17+
className: 'ConfigurationOfNeoJSON';
18+
versionString: #'stable';
19+
repository: 'http://mc.stfx.eu/Neo' ].
20+
spec package: 'Zodiac-Core' with: [ spec repository: 'http://mc.stfx.eu/Zodiac' ].
21+
spec package: 'Zodiac-Tests' with: [ spec repository: 'http://mc.stfx.eu/Zodiac' ].
22+
spec
23+
package: 'Zinc-Character-Encoding-Core';
24+
package: 'Zinc-Character-Encoding-Tests' with: [ spec requires: 'Zinc-Character-Encoding-Core' ];
25+
package: 'Zinc-Resource-Meta-Core' with: [ spec requires: 'Zinc-Character-Encoding-Core' ];
26+
package: 'Zinc-Resource-Meta-Tests' with: [ spec requires: 'Zinc-Resource-Meta-Core' ];
27+
package: 'Zinc-HTTP' with: [ spec requires: #( 'Zinc-Character-Encoding-Core' 'Zinc-Resource-Meta-Core' ) ];
28+
package: 'Zinc-Patch-HTTPSocket' with: [ spec requires: 'Zinc-HTTP' ];
29+
package: 'Zinc-AWS' with: [ spec requires: #('Zinc-HTTP' 'XML Support') ];
30+
package: 'Zinc-REST' with: [ spec requires: #('Zinc-HTTP' 'Neo JSON') ];
31+
package: 'Zinc-Zodiac' with: [ spec requires: #('Zinc-HTTP' 'Zodiac-Core' 'Zodiac-Tests') ];
32+
package: 'Zinc-WebSocket-Core' with: [ spec requires: 'Zinc-HTTP' ];
33+
package: 'Zinc-WebSocket-Tests' with: [ spec requires: 'Zinc-WebSocket-Core' ];
34+
package: 'Zinc-WebDAV' with: [ spec requires: 'Zinc-HTTP' ];
35+
package: 'Zinc-WWS-Server' with: [ spec requires: 'Zinc-HTTP' ];
36+
package: 'Zinc-WWS-Client' with: [ spec requires: 'Zinc-HTTP' ];
37+
package: 'Zinc-Tests' with: [ spec requires: 'Zinc-HTTP' ].
38+
spec
39+
group: 'default' with: #('Core');
40+
group: 'Core' with: #('Zinc-HTTP');
41+
group: 'Tests' with: #('Zinc-Tests');
42+
group: 'Character-Encoding' with: #('Zinc-Character-Encoding-Core' 'Zinc-Character-Encoding-Tests');
43+
group: 'Resource-Meta' with: #('Zinc-Resource-Meta-Core' 'Zinc-Resource-Meta-Tests');
44+
group: 'Zodiac' with: #('Zinc-Zodiac');
45+
group: 'AWS' with: #('Zinc-AWS');
46+
group: 'WebDAV' with: #('Zinc-WebDAV');
47+
group: 'WebSocket' with: #('Zinc-WebSocket-Core' 'Zinc-WebSocket-Tests');
48+
group: 'WWS' with: #('Zinc-WWS-Server' 'Zinc-WWS-Client');
49+
group: 'REST' with: #('Zinc-REST');
50+
group: 'Patch-HTTPSocket' with: #('Zinc-Patch-HTTPSocket') ].
51+
spec for: #'pharo1.x' do: [
52+
spec
53+
package: 'Zinc-FileSystem-Legacy';
54+
package: 'Zinc-Pharo-Forward-Compatibility';
55+
package: 'Zinc-HTTP' with: [ spec requires: #('Zinc-FileSystem-Legacy' 'Zinc-Pharo-Forward-Compatibility') ] ].
56+
spec for: #'pharo2.x' do: [
57+
spec
58+
package: 'Zinc-FileSystem';
59+
package: 'Zinc-HTTP' with: [ spec requires: 'Zinc-FileSystem' ] ].
60+
spec for: #gemstone do: [
61+
spec
62+
repository: 'http://seaside.gemstone.com/ss/ZincHTTPComponents';
63+
package: 'Zinc-HTTP' with: [ spec includes: #('Zinc-Gemstone') ];
64+
package: 'SocketStream' with: [ spec repository: 'http://seaside.gemstone.com/ss/PharoCompat' ];
65+
package: 'Zinc-GemstonePreliminary' with: [ spec requires: #('SocketStream') ];
66+
package: 'Zinc-HTTP' with: [ spec requires: #('Zinc-GemstonePreliminary') ];
67+
package: 'Zinc-Gemstone' with: [ spec requires: #('Zinc-HTTP') ];
68+
package: 'Zinc-Tests' with: [ spec requires: 'Zinc-Gemstone' ] ]

0 commit comments

Comments
 (0)