Skip to content

Commit

Permalink
Issue #13: preparing to fix this issue for 3.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dalehenrich committed Sep 23, 2019
1 parent 7c3cb4d commit 3e8ce07
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 9 deletions.
21 changes: 12 additions & 9 deletions rowan/configs/Main.ston
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
RwProjectLoadConfiguration {
#name : 'Main',
#comment : 'Support for upgrading GsDevKit/GLASS images ... post upgradeImage operations',
#projectName : 'GsDevKit_upgrade',
#version : '0.1.0',
#definedGroupNames : {
'core' : [ ],
'tools' : [ 'core' ]
},
#configurationNames : [
#configurationNames : [
'Bootstrap'
],
],
#conditionalPackages : {
[
'common'
Expand All @@ -31,9 +26,17 @@ RwProjectLoadConfiguration {
'gemstone' : {
'SystemUser' : {
#packageNameToPlatformPropertiesMap : {
'GsDevKit_upgrade-ToolExtensions' : { 'symbolDictName' : 'RowanTools' }
'GsDevKit_upgrade-ToolExtensions' : {
'symbolDictName' : 'RowanTools'
}
}
}
}
},
#definedGroupNames : {
'core' : [ ],
'tools' : [
'core'
]
}
}
}
40 changes: 40 additions & 0 deletions scripts/install.tpz
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#!/usr/bin/gemstone/topaz
#
# If you are using GsDevKit_home[1] and have stash[2] installed, this topaz
# script can be directly executed:
#
# $ROWAN_PROJECTS_HOME/GsDevKit_upgrade/scripts/install.tpz <gsdevkit-stone-name> -lq
#
# If you are not using GsDevKit_home, you can directly run this script as long as
# 1. $GEMSTONE is defined
# 2. $GEMSTONE/bin is you path
# then execute using the following invocation
#
# $ROWAN_PROJECTS_HOME/GsDevKit_upgrade/scripts/install.tpz -lq
#
# [1] https://github.com/GsDevKit/GsDevKit_home
# [2] https://github.com/dalehenrich/stash
#
omit pushonly
iferr 1 stk
iferr 2 stack

set u SystemUser p swordfish
login


run
"install GsDevKit_upgrade project"
| url projectSetDefinition |
url := 'file:$ROWAN_PROJECTS_HOME/GsDevKit_upgrade/rowan/specs/GsDevKit_upgrade_v2.0.ston'.
(RwComponentProjectDefinition newForUrl: url)
load.
true
%
commit

logout

errorCount


0 comments on commit 3e8ce07

Please sign in to comment.