Skip to content

Commit 4cc5972

Browse files
committed
Merge branch 'gs_port' of https://github.com/dalehenrich/Grease into dalehenrich-gs_port
2 parents fa42f4f + bc919eb commit 4cc5972

11 files changed

Lines changed: 72 additions & 16 deletions

File tree

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

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ baseline: spec
137137
group: 'Slime Tests' with: #('Grease-Tests-Slime') ].
138138

139139
spec
140-
for: #'gemstone'
140+
for: #( #'gemstone' )
141141
do: [
142142
spec
143143
project: 'GsCore'
@@ -160,13 +160,45 @@ baseline: spec
160160
with: [ spec loads: #('System-Digital-Signatures') ];
161161
project: 'SMTPMail'
162162
copyFrom: 'UTF8'
163-
with: [ spec loads: #('SMTPMail') ].
163+
with: [ spec loads: #('SMTPMail') ];
164+
yourself.
164165
spec
165166
package: 'Grease-Core'
166-
with: [
167-
spec
168-
requires: #('GsCore');
169-
includes: #('Grease-GemStone-Core') ];
167+
with: [ spec requires: #('GsCore') ];
168+
package: 'Grease-GemStone-Core'
169+
with: [ spec requires: #( 'GsCore' 'UTF8' ) ];
170+
yourself.
171+
].
172+
spec
173+
for: #( #'gemstone64' )
174+
do: [
175+
spec
176+
baseline: 'GsDevKit'
177+
with: [ spec repository: 'github://GsDevKit/GsDevKit:master/repository' ];
178+
project: 'UTF8'
179+
copyFrom: 'GsDevKit'
180+
with: [ spec loads: #('Utf8Encoding') ];
181+
project: 'System-Digital-Signatures'
182+
copyFrom: 'GsDevKit'
183+
with: [ spec loads: #('System-Digital-Signatures') ];
184+
project: 'SMTPMail'
185+
copyFrom: 'GsDevKit'
186+
with: [ spec loads: #('SMTPMail') ];
187+
project: 'GsCore'
188+
copyFrom: 'GsDevKit'
189+
with: [ spec loads: #('GsCore' 'GsMonticello' 'GsSqueakCommon-Core') ];
190+
yourself.
191+
spec
192+
package: 'Grease-GemStone-Core'
193+
with: [ spec requires: #( 'UTF8' 'GsCore' ) ];
194+
yourself.
195+
].
196+
spec
197+
for: #( #'gemstone' #'gemstone64')
198+
do: [
199+
spec
200+
package: 'Grease-Core'
201+
with: [ spec includes: #('Grease-GemStone-Core') ];
170202
package: 'Grease-Tests-Core'
171203
with: [
172204
spec
@@ -176,7 +208,7 @@ baseline: spec
176208
with: [
177209
spec
178210
requires:
179-
#('Grease-Core' 'GsCore' 'System-Digital-Signatures' 'UTF8' 'SMTPMail') ];
211+
#('Grease-Core' 'System-Digital-Signatures' 'SMTPMail') ];
180212
package: 'Grease-Tests-GemStone-Core'
181213
with: [ spec requires: #('Grease-Tests-Core') ] ].
182214
spec
@@ -219,4 +251,4 @@ baseline: spec
219251
do: [
220252
spec
221253
package: 'Grease-Tests-GemStone-Core'
222-
with: [ spec file: 'Grease-Tests-GemStone-Core.v32' ] ]
254+
with: [ spec file: 'Grease-Tests-GemStone-Core.v32' ] ]

repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/instance/decoderFor..st

Lines changed: 0 additions & 4 deletions
This file was deleted.

repository/Grease-GemStone-Core.package/GRUtf8GemStoneCodec.class/instance/encoderFor..st

Lines changed: 0 additions & 4 deletions
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*Grease-GemStone200
2+
decoderFor: aWriteStream
3+
4+
^ GRUtf8CodecStream on: aWriteStream
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*Grease-GemStone200
2+
encoderFor: aWriteStream
3+
4+
^ GRUtf8CodecStream on: aWriteStream
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*Grease-GemStone230
2+
decoderFor: aWriteStream
3+
4+
^ GRUtf8CodecStream on: aWriteStream
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*Grease-GemStone230
2+
encoderFor: aWriteStream
3+
4+
^ GRUtf8CodecStream on: aWriteStream
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*Grease-GemStone240
2+
decoderFor: aWriteStream
3+
4+
^ GRUtf8CodecStream on: aWriteStream
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*Grease-GemStone240
2+
encoderFor: aWriteStream
3+
4+
^ GRUtf8CodecStream on: aWriteStream
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*Grease-GemStone300
2+
decoderFor: aWriteStream
3+
4+
^ GRUtf8CodecStream on: aWriteStream

0 commit comments

Comments
 (0)