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
|
2020-01-17 05:05:07 +00:00
|
|
|
baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ]";
|
|
|
|
baseline: 'OSSubprocess' with: [ spec repository: 'github://pharo-contributions/OSSubprocess:master/repository']".
|
2020-01-16 19:55:39 +00:00
|
|
|
|
2020-01-16 19:49:14 +00:00
|
|
|
|
2020-07-18 17:36:08 +00:00
|
|
|
"Packages"
|
|
|
|
spec package: 'Fossil' with: [ spec requires: #('NeoJSON') ].
|
|
|
|
|
2020-01-16 19:49:14 +00:00
|
|
|
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
{ #category : #accessing }
|
|
|
|
BaselineOfFossil >> projectClass [
|
|
|
|
^ MetacelloCypressBaselineProject
|
|
|
|
]
|