X Tutup
Skip to content

Commit a467d86

Browse files
authored
Merge pull request SeasideSt#23 from GsDevKit/issue_129
port to GemStone 3.7.0
2 parents fd4dee1 + 7041f74 commit a467d86

File tree

11 files changed

+41
-13
lines changed

11 files changed

+41
-13
lines changed
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"separateMethodMetaAndSource" : false,
32
"noMethodMetaData" : true,
4-
"useCypressPropertiesFile" : true
5-
}
3+
"separateMethodMetaAndSource" : false,
4+
"useCypressPropertiesFile" : true }

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,16 @@ baselineGemStone: spec
116116
with: [
117117
spec
118118
requires: #('Grease-GemStone-Core') ] ].
119+
spec
120+
for: #( #'gs3.7.x' #'gs3.8.x' #'gs3.9.x')
121+
do: [
122+
spec
123+
package: 'Grease-GemStone-Core'
124+
with: [ spec includes: #('Grease-GemStone-Kernelv370') ];
125+
package: 'Grease-GemStone-Kernelv370'
126+
with: [
127+
spec
128+
requires: #('Grease-GemStone-Core') ] ].
119129
spec
120130
for: #(#'gs3.2.x' #'gs3.3.x' #'gs3.4.x' #'gs3.5.x' #'gs3.6.x' #'gs3.7.x' #'gs3.8.x' #'gs3.9.x')
121131
do: [
Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
2-
"commentStamp" : "",
3-
"super" : "BaselineOf",
42
"category" : "BaselineOfGrease",
5-
"classinstvars" : [ ],
6-
"pools" : [ ],
7-
"classvars" : [ ],
8-
"instvars" : [ ],
3+
"classinstvars" : [
4+
],
5+
"classvars" : [
6+
],
7+
"commentStamp" : "",
8+
"instvars" : [
9+
],
910
"name" : "BaselineOfGrease",
10-
"type" : "normal"
11-
}
11+
"pools" : [
12+
],
13+
"super" : "BaselineOf",
14+
"type" : "normal" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SystemOrganization addCategory: #BaselineOfGrease!
1+
SystemOrganization addCategory: #'BaselineOfGrease'!
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
{ }
1+
{
2+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"noMethodMetaData" : true,
3+
"separateMethodMetaAndSource" : false,
4+
"useCypressPropertiesFile" : true }
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*grease-gemstone-kernelv370
2+
greaseUpToAll: aCollection
3+
"Needed for Seaside ports to other dialects where #upToAll: may have
4+
different semantics"
5+
6+
^self upToAll: aCollection
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{
2+
"name" : "ReadByteStreamPortable" }

repository/Grease-GemStone-Kernelv370.package/monticello.meta/initializers.st

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(name 'Grease-GemStone-Kernelv370')

0 commit comments

Comments
 (0)
X Tutup