37 lines
1001 B
Smalltalk
37 lines
1001 B
Smalltalk
|
Class {
|
||
|
#name : #BaselineOfGrafoscopioUtils,
|
||
|
#superclass : #BaselineOf,
|
||
|
#category : #BaselineOfGrafoscopioUtils
|
||
|
}
|
||
|
|
||
|
{ #category : #baselines }
|
||
|
BaselineOfGrafoscopioUtils >> baseline: spec [
|
||
|
"Dependencies"
|
||
|
self fossil: spec.
|
||
|
|
||
|
"Packages"
|
||
|
spec project: 'Grafoscopio-Utils' with: [ spec requires: #('Fossil') ]
|
||
|
|
||
|
]
|
||
|
|
||
|
{ #category : #'as yet unclassified' }
|
||
|
BaselineOfGrafoscopioUtils >> fossil: spec [
|
||
|
"I load the configuration of Fossil using a external Gitea repository."
|
||
|
"While more Git independient providers are implemented in Monticello, I will use Iceberg
|
||
|
to download the repository and load it from a local directory"
|
||
|
|
||
|
| location |
|
||
|
location := FileLocator localDirectory / 'iceberg' / 'Offray' / 'Fossil'.
|
||
|
(IceRepositoryCreator new
|
||
|
location: location;
|
||
|
remote: (IceGitRemote url: 'https://code.tupale.co/Offray/Fossil.git');
|
||
|
createRepository)
|
||
|
register.
|
||
|
|
||
|
Metacello new
|
||
|
repository: 'gitlocal://', location fullName;
|
||
|
baseline: 'Fossil';
|
||
|
load.
|
||
|
spec project: 'Fossil'
|
||
|
]
|