Skip to content

Commit

Permalink
Merge pull request #4 from moosetechnology/remove-segment
Browse files Browse the repository at this point in the history
Update the baseline
  • Loading branch information
NicolasAnquetil authored Dec 20, 2024
2 parents 71398f5 + 22ede5a commit 6e5ad51
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
22 changes: 13 additions & 9 deletions src/BaselineOfCarrefourFortran/BaselineOfCarrefourFortran.class.st
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
Class {
#name : #BaselineOfCarrefourFortran,
#superclass : #BaselineOf,
#category : 'BaselineOfCarrefourFortran'
#name : 'BaselineOfCarrefourFortran',
#superclass : 'BaselineOf',
#category : 'BaselineOfCarrefourFortran',
#package : 'BaselineOfCarrefourFortran'
}

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfCarrefourFortran >> baseline: spec [
<baseline>
spec
Expand All @@ -16,7 +17,7 @@ BaselineOfCarrefourFortran >> baseline: spec [
self defineGroups: spec ]
]

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfCarrefourFortran >> defineDependencies: spec [
spec
baseline: 'FASTFortran'
Expand All @@ -30,21 +31,24 @@ BaselineOfCarrefourFortran >> defineDependencies: spec [
repository: 'github://moosetechnology/Famix-Fortran' ]
]

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfCarrefourFortran >> defineGroups: spec [
spec
group: 'core' with: #('Carrefour-Fortran-Model' 'Carrefour-Fortran');
group: 'core' with: #('Carrefour-Fortran-Model' 'Carrefour-Fortran' 'Carrefour-Fortran-Tests');
group: 'default' with: #('core')
]

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfCarrefourFortran >> definePackages: spec [
spec
package: 'Carrefour-Fortran-Model'
with: [ spec requires: #('FamixFortran' 'FASTFortran') ];
package: 'Carrefour-Fortran-Model-Generator'
with: [ spec requires: #('FASTFortran' 'FamixFortran') ] ;
package: 'Carrefour-Fortran'
with: [ spec requires: #('Carrefour-Fortran-Model') ]
with: [ spec requires: #('Carrefour-Fortran-Model') ] ;
package: 'Carrefour-Fortran-Tests'
with: [ spec requires: #('Carrefour-Fortran') ]


]
2 changes: 1 addition & 1 deletion src/BaselineOfCarrefourFortran/package.st
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Package { #name : #BaselineOfCarrefourFortran }
Package { #name : 'BaselineOfCarrefourFortran' }

0 comments on commit 6e5ad51

Please sign in to comment.