2020-01-16 19:49:14 +00:00
|
|
|
"
|
|
|
|
I define the installation procedure for Fossil package support.
|
|
|
|
"
|
|
|
|
Class {
|
|
|
|
#name : #BaselineOfFossil,
|
|
|
|
#superclass : #BaselineOf,
|
|
|
|
#category : #BaselineOfFossil
|
|
|
|
}
|
|
|
|
|
|
|
|
{ #category : #baselines }
|
|
|
|
BaselineOfFossil >> baseline: spec [
|
|
|
|
<baseline>
|
|
|
|
|
|
|
|
spec
|
|
|
|
for: #common
|
|
|
|
do: [
|
|
|
|
"Dependencies"
|
2020-01-16 19:55:39 +00:00
|
|
|
spec
|
2021-08-11 17:12:51 +00:00
|
|
|
baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON:v17/repository' ];
|
2021-08-11 17:31:19 +00:00
|
|
|
baseline: 'OSSubprocess' with: [ spec repository: 'github://feenkcom/OSSubprocess:main/repository']";
|
2020-10-09 22:15:39 +00:00
|
|
|
baseline: 'ProcessWrapper' with: [ spec repository: 'github://hernanmd/ProcessWrapper/repository' ]".
|
2020-01-16 19:49:14 +00:00
|
|
|
|
2020-07-18 17:36:08 +00:00
|
|
|
"Packages"
|
2020-10-09 18:06:59 +00:00
|
|
|
spec package: 'Fossil' with: [ spec requires: #('NeoJSON') ].
|
|
|
|
spec for: #(#'MacOS' #'Unix') do: [
|
|
|
|
spec package: 'Fossil' with: [ spec requires: #('OSSubprocess') ] ].
|
2020-10-09 22:09:52 +00:00
|
|
|
"spec for: #'Windows' do: [
|
|
|
|
spec package: 'Fossil' with: [ spec requires: #('ProcessWrapper') ] ]".
|
2020-07-18 17:36:08 +00:00
|
|
|
|
2020-01-16 19:49:14 +00:00
|
|
|
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
{ #category : #accessing }
|
|
|
|
BaselineOfFossil >> projectClass [
|
|
|
|
^ MetacelloCypressBaselineProject
|
|
|
|
]
|