Skip to content

Commit

Permalink
Merge pull request #60 from moosetechnology/small-dependencies-fixes
Browse files Browse the repository at this point in the history
Remove GT packages
  • Loading branch information
jecisc authored Sep 14, 2023
2 parents 01f2075 + 1bff09e commit 73e7c4a
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 280 deletions.
29 changes: 21 additions & 8 deletions src/BaselineOfFame/BaselineOfFame.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Class {
#category : #BaselineOfFame
}

{ #category : #baseline }
{ #category : #baselines }
BaselineOfFame >> baseline: spec [

<baseline>
Expand All @@ -21,19 +21,32 @@ BaselineOfFame >> baseline: spec [

"Packages"
spec
package: 'Fame-Core' with: [ spec requires: #( 'Hashtable' 'TreeQuery' 'Iterators' 'PharoBackwardCompatibility' ) ];
package: 'Fame-Core' with: [
spec requires:
#( 'TreeQuery' 'Iterators' 'PharoBackwardCompatibility' ) ];
package: 'Fame-Rules';
package: 'Fame-ImportExport' with: [ spec requires: #( 'Fame-Core' ) ];
package: 'Fame-ImportExport'
with: [ spec requires: #( 'Fame-Core' 'Hashtable' ) ];
package: 'Fame-Example';
package: 'Fame-Tests' with: [ spec requires: #( 'Fame-Core' 'Fame-ImportExport' 'Fame-Example' 'Mocketry' ) ];
package: 'Fame-Deprecated' with: [ spec requires: #( 'Fame-ImportExport' ) ].
package: 'Fame-Tests' with: [
spec requires:
#( 'Fame-Core' 'Fame-ImportExport' 'Fame-Example' 'Mocketry' ) ];
package: 'Fame-Deprecated'
with: [ spec requires: #( 'Fame-ImportExport' ) ].

spec for: #( #'pharo6.x' #'pharo7.x' #'pharo8.x' ) do: [ spec package: 'Fame-GT' with: [ spec requires: #( 'Fame-ImportExport' ) ] ].
spec for: (self pharoVersionsFrom: 9) do: [ spec package: 'Fame-Spec2' with: [ spec requires: #( 'Fame-Core' ) ] ].
spec for: #( #'pharo6.x' #'pharo7.x' #'pharo8.x' ) do: [
spec
package: 'Fame-GT'
with: [ spec requires: #( 'Fame-ImportExport' ) ] ].
spec for: (self pharoVersionsFrom: 9) do: [
spec
package: 'Fame-Spec2'
with: [ spec requires: #( 'Fame-Core' ) ] ].

"Groups"
spec
group: 'Core' with: #( 'Fame-Core' 'Fame-ImportExport' 'Fame-Rules' );
group: 'Core'
with: #( 'Fame-Core' 'Fame-ImportExport' 'Fame-Rules' );
group: 'Deprecated' with: #( 'Core' 'Fame-Deprecated' );
group: 'Tests' with: #( 'Fame-Tests' ) ]
]
Expand Down
64 changes: 0 additions & 64 deletions src/Fame-GT/FM3Class.extension.st

This file was deleted.

22 changes: 0 additions & 22 deletions src/Fame-GT/FM3Package.extension.st

This file was deleted.

21 changes: 0 additions & 21 deletions src/Fame-GT/FM3Property.extension.st

This file was deleted.

64 changes: 0 additions & 64 deletions src/Fame-GT/FM3Trait.extension.st

This file was deleted.

100 changes: 0 additions & 100 deletions src/Fame-GT/FMMetaModel.extension.st

This file was deleted.

1 change: 0 additions & 1 deletion src/Fame-GT/package.st

This file was deleted.

0 comments on commit 73e7c4a

Please sign in to comment.