Skip to content

Commit

Permalink
Slime only works in Pharo. Also fix dependency issue for Slime-Gettext
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrichau committed Jan 14, 2024
1 parent fe20824 commit 04235fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
baselines
baselinegettext: spec

spec
for: #(#'pharo8.x' #'pharo9.x' #'pharo10.x' #'pharo11.x' #'pharo12.x' #'gemstone')
do: [
Expand All @@ -24,13 +25,9 @@ baselinegettext: spec
package: 'Seaside-Pharo-Gettext-Core';
package: 'Seaside-Gettext-Core'
with: [ spec includes: 'Seaside-Pharo-Gettext-Core' ];
package: 'Seaside-Gettext-Slime'
with: [ spec requires: #('Seaside-Gettext-Core' 'Seaside-Pharo-Slime') ];
package: 'Seaside-Tests-Pharo-Gettext'
with: [ spec requires: 'Seaside-Pharo-Gettext-Core' ].
spec
group: 'Gettext-Slime'
with: #('Seaside-Gettext' 'Seaside-Gettext-Slime');
group: 'Tests' with: #('Seaside-Tests-Pharo-Gettext') ].
spec
for: #(#'gemstone')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,12 @@ baselines
baselineslime: spec

spec
for: #squeakCommon
for: #pharo
do: [
spec
project: 'Grease Slime' copyFrom: 'Grease' with: [ spec loads: #('Slime') ];
project: 'Grease Slime Tests' copyFrom: 'Grease' with: [ spec loads: #('Slime Tests') ] ].

spec
for: #squeak
do: [
spec
package: 'Seaside-Slime' with: [ spec requires: #('Grease Slime') ];
package: 'Seaside-Tests-Slime' with: [ spec requires: #('Seaside-Slime' 'Seaside-Tests-Component' 'Grease Slime Tests') ].
spec
group: 'Development' with: #('Seaside-Slime');
group: 'Development Tests' with: #('Seaside-Tests-Slime') ].

spec
for: #(#'pharo8.x' #'pharo9.x' #'pharo10.x')
do: [
Expand All @@ -33,7 +23,9 @@ baselineslime: spec
do: [
spec
package: 'Seaside-Pharo11-Slime' with: [ spec requires: #('Grease Slime') ];
package: 'Seaside-Gettext-Slime' with: [ spec requires: #('Seaside-Gettext-Core' 'Seaside-Pharo11-Slime') ];
package: 'Seaside-Tests-Slime' with: [ spec requires: #('Seaside-Pharo11-Slime' 'Seaside-Tests-Component' 'Grease Slime Tests') ].
spec
group: 'Gettext-Slime' with: #('Seaside-Gettext' 'Seaside-Gettext-Slime');
group: 'Development' with: #('Seaside-Pharo11-Slime');
group: 'Development Tests' with: #('Seaside-Tests-Slime') ]

0 comments on commit 04235fa

Please sign in to comment.