X Tutup
Skip to content

Commit c753fef

Browse files
author
Johan Brichau
authored
Merge pull request SeasideSt#136 from SeasideSt/grpackage-pharo100
fix grpackage methods for pharo100 (useless?)
2 parents 3fc0427 + 9c3b895 commit c753fef

File tree

4 files changed

+21
-13
lines changed

4 files changed

+21
-13
lines changed

repository/Grease-Core.package/GRPackage.class/instance/resolveWith..st

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,15 @@ resolveWith: aDictionary
1414
"try -Pharo70-"
1515
aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo70-') ifAbsent: [
1616
"try -Pharo90-"
17-
aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo90-') ifAbsent: [
18-
"try -Squeak-"
19-
aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Squeak-') ifAbsent: [
20-
"try -Squeak5-"
21-
aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Squeak5-') ifAbsent: [
22-
"try -Squeak6-"
23-
aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Squeak6-') ifAbsent: [
24-
"specific for Grease-Slime"
25-
aDictionary at: (each copyReplaceAll: 'Grease-Pharo-Slime' with: 'Grease-Slime') ifAbsent: [
26-
self error: self name printString , ' depends on unknown package ' , each printString ] ] ] ] ] ] ] ] ] ] ] ]
17+
aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo90-') ifAbsent: [
18+
"try -Pharo100-"
19+
aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Pharo100-') ifAbsent: [
20+
"try -Squeak-"
21+
aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Squeak-') ifAbsent: [
22+
"try -Squeak5-"
23+
aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Squeak5-') ifAbsent: [
24+
"try -Squeak6-"
25+
aDictionary at: (each copyReplaceAll: '-Pharo-' with: '-Squeak6-') ifAbsent: [
26+
"specific for Grease-Slime"
27+
aDictionary at: (each copyReplaceAll: 'Grease-Pharo-Slime' with: 'Grease-Slime') ifAbsent: [
28+
self error: self name printString , ' depends on unknown package ' , each printString ] ] ] ] ] ] ] ] ] ] ] ] ]

repository/Grease-Core.package/GRPlatform.class/instance/version.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ version info
22
version
33
"Answer the Grease version"
44

5-
^ (GRVersion major: 1 minor: 8 revision: 1)
5+
^ (GRVersion major: 1 minor: 8 revision: 2)
66
yourself

repository/Grease-Pharo100-Core.package/GRPackage.extension/class/greasePharo70Core.st renamed to repository/Grease-Pharo100-Core.package/GRPackage.extension/class/greasePharo100Core.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
*Grease-Pharo100-Core
2-
greasePharo70Core
2+
greasePharo100Core
33
^ self new
4-
name: 'Grease-Pharo90-Core';
4+
name: 'Grease-Pharo100-Core';
55
addDependency: 'Grease-Core';
66
url: #greaseUrl;
77
yourself
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*Grease-Tests-Pharo-Core
2+
expectedFailures
3+
"Fails in Pharo 10 until https://github.com/svenvc/zinc/issues/86 is part of Pharo 10"
4+
^ SystemVersion current major = 10
5+
ifTrue:[ #(#testReadWriteEmptyFileInFolderBinary) ]
6+
ifFalse: [ #() ]

0 commit comments

Comments
 (0)
X Tutup