Debugging baseline.

This commit is contained in:
ruidajo 2024-03-29 00:01:24 -05:00
parent e1c4f4fb52
commit b2a4dc1839
1 changed files with 20 additions and 34 deletions

View File

@ -13,38 +13,35 @@ BaselineOfMiniDocs >> baseline: spec [
"Dependencies" "Dependencies"
self setUpTeapot: spec. self setUpTeapot: spec.
self setUpPetitParser: spec. self setUpPetitParser: spec.
self setUpLepiterBuildingBlocs: spec. [self lepiterBuildingBlocs: spec]
onErrorDo: [:err | self inform: 'LepiterBuilldingBlocs error: ', err asString].
spec spec
baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache' ]; baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache' ];
baseline: 'Temple' with: [ spec repository: 'github://astares/Pharo-Temple/src' ]; baseline: 'Temple' with: [ spec repository: 'github://astares/Pharo-Temple/src' ];
"baseline: 'Teapot' with: [ spec repository: 'github://zeroflag/Teapot/source' ];" baseline: 'Tealight' with: [ spec repository: 'github://astares/Tealight:main/src' ];
baseline: 'Tealight' with: [ spec repository: 'github://astares/Tealight:main/src' ]. baseline: 'DataFrame' with: [ spec repository: 'github://PolyMathOrg/DataFrame/src' ].
"baseline: 'LepiterBuildingBlocs' with: [spec repository: 'github://botwhytho/LepiterBuildingBlocs:main/src']"
"baseline: 'PetitParser' with: [
spec
loads: #('Minimal' 'Core' 'Tests' 'Islands');
repository: 'github://moosetechnology/PetitParser:v3.x.x/src' ]."
"self fossil: spec."
"self xmlParserHTML: spec"
"Packages" "Packages"
spec spec
package: 'PetitMarkdown' with: [ spec requires: #('PetitParser')]; package: 'PetitMarkdown' with: [ spec requires: #('PetitParser')];
package: 'MiniDocs' with: [ spec requires: #('LepiterBuildingBlocs' 'Mustache' 'Temple' 'Teapot' 'Tealight' 'PetitMarkdown' 'PetitParser')]. package: 'MiniDocs' with: [ spec requires: #('Mustache' 'Temple' 'Teapot' 'Tealight' 'PetitMarkdown' 'PetitParser' 'DataFrame')].
"self xmlParserHTML: spec"
"Groups" "Groups"
]. ].
spec spec
] ]
{ #category : #accessing } { #category : #accessing }
BaselineOfMiniDocs >> fossil: spec [ BaselineOfMiniDocs >> lepiterBuildingBlocs: spec [
| repo | Metacello new
repo := ExoRepo new baseline: 'LepiterBuildingBlocs';
repository: 'https://code.sustrato.red/Offray/Fossil'. repository: 'github://botwhytho/LepiterBuildingBlocs:main/src';
repo load. onConflict: [ :ex | ex useLoaded ];
spec baseline: 'Fossil' with: [ spec repository: 'gitlocal://', repo local fullName ] onUpgrade: [ :ex | ex useLoaded ];
onDowngrade: [ :ex | ex useLoaded ];
onWarningLog;
load.
spec baseline: 'LepiterBuildingBlocs' with: [spec repository: 'github://botwhytho/LepiterBuildingBlocs:main/src']
] ]
{ #category : #accessing } { #category : #accessing }
@ -52,16 +49,6 @@ BaselineOfMiniDocs >> semanticVersion [
^ '0.2.0' ^ '0.2.0'
] ]
{ #category : #accessing }
BaselineOfMiniDocs >> setUpLepiterBuildingBlocs: spec [
spec
baseline: 'LepiterBuildingBlocs'
with: [spec
repository: 'github://botwhytho/LepiterBuildingBlocs:main/src';
loads: #('ALL')];
import: 'LepiterBuildingBlocs'
]
{ #category : #accessing } { #category : #accessing }
BaselineOfMiniDocs >> setUpPetitParser: spec [ BaselineOfMiniDocs >> setUpPetitParser: spec [
spec spec
@ -85,13 +72,12 @@ BaselineOfMiniDocs >> setUpTeapot: spec [
{ #category : #accessing } { #category : #accessing }
BaselineOfMiniDocs >> xmlParserHTML: spec [ BaselineOfMiniDocs >> xmlParserHTML: spec [
spec spec
baseline: 'XMLParserHTML' baseline: 'XMLParserHTML'
with: [ spec with: [
repository: 'github://pharo-contributions/XML-XMLParserHTML/src'; spec
loads: #('ALL')]; loads: #('Core');
import: 'XMLParserHTML' repository: 'github://pharo-contributions/XML-XMLParserHTML/src' ].
"Metacello new "Metacello new
baseline: 'XMLParserHTML'; baseline: 'XMLParserHTML';
repository: 'github://pharo-contributions/XML-XMLParserHTML/src'; repository: 'github://pharo-contributions/XML-XMLParserHTML/src';