-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* all classes, packages and extension methods that refer to Squot are renamed * GSSelfUpdater now handles self-updating and produces a version-pinned install script for .sar files * .squot-metadata is renamed to .git-s-metadata * SquotTrackedObjectMetadata and the old names of mapper and metadata classes are handled using TonelReader's classes instVar, which is used as a fallback for global name lookup * on install, registered instances of old working copy classes are migrated and Squot is uninstalled
- Loading branch information
Showing
2,735 changed files
with
4,991 additions
and
4,858 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
GSMetadata { | ||
#version : 1, | ||
#mappers : [ | ||
GSCypressMapper { | ||
#version : 1, | ||
#isTracked : true, | ||
#package : MCPackage { | ||
#name : 'VersionControl' | ||
}, | ||
#path : FSAbsolutePath [ | ||
'src' | ||
] | ||
}, | ||
GSCypressMapper { | ||
#version : 1, | ||
#isTracked : true, | ||
#package : MCPackage { | ||
#name : 'GitS-Compatibility' | ||
}, | ||
#path : FSAbsolutePath [ | ||
'src' | ||
] | ||
}, | ||
GSCypressMapper { | ||
#version : 1, | ||
#isTracked : true, | ||
#package : MCPackage { | ||
#name : 'FileSystem-Git' | ||
}, | ||
#path : FSAbsolutePath [ | ||
'src' | ||
] | ||
}, | ||
GSCypressMapper { | ||
#version : 1, | ||
#isTracked : true, | ||
#package : MCPackage { | ||
#name : 'GitS-Core' | ||
}, | ||
#path : @8 | ||
}, | ||
GSCypressMapper { | ||
#version : 1, | ||
#isTracked : true, | ||
#package : MCPackage { | ||
#name : 'BaselineOfGitS' | ||
}, | ||
#path : @8 | ||
} | ||
], | ||
#name : 'Squot' | ||
} |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
58 changes: 58 additions & 0 deletions
58
src/BaselineOfGitS.package/BaselineOfGitS.class/instance/baseline..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
baseline | ||
baseline: spec | ||
<baseline> | ||
spec for: #common do: [ | ||
spec | ||
baseline: 'Ston' with: [ | ||
spec | ||
repository: 'github://squeak-smalltalk/squeak-ston:squeak/repository']; | ||
baseline: 'FileTree' with: [ | ||
spec | ||
repository: 'github://dalehenrich/filetree:squeak4.3/repository']; | ||
baseline: 'Tonel' with: [ | ||
spec | ||
repository: 'github://squeak-smalltalk/squeak-tonel:squeak/']; | ||
package: 'JSON' with: [ | ||
spec | ||
repository: 'https://www.squeaksource.com/JSON']; | ||
package: 'SqueakSSL-Core' with: [ | ||
spec | ||
repository: 'http://source.squeak.org/trunk']; | ||
package: 'WebClient-Core' with: [ | ||
spec | ||
repository: 'http://source.squeak.org/trunk'; | ||
file: 'WebClient-Core-jr.104']; | ||
package: 'WebClient-HTTP' with: [ | ||
spec | ||
repository: 'http://source.squeak.org/trunk'; | ||
file: 'WebClient-HTTP-cmm.6']; | ||
package: 'INIFile' with: [ | ||
spec | ||
repository: 'http://www.squeaksource.com/INIFile'; | ||
file: 'INIFile-jf.3']; | ||
package: 'DiffMerge' with: [ | ||
spec | ||
repository: 'http://www.squeaksource.com/DiffMerge'; | ||
file: 'DiffMerge-tonyg.12']; | ||
baseline: 'FileSystem' with: [ | ||
spec | ||
repository: 'github://squeak-smalltalk/squeak-filesystem:master/src'; | ||
loads: #('default' 'tests')]; | ||
package: 'VersionControl'; | ||
package: 'FileSystem-Git' with: [ | ||
spec | ||
requires: #('FileSystem' 'VersionControl' 'INIFile')]; | ||
package: 'GitS-Core' with: [ | ||
spec | ||
requires: #('FileSystem' 'VersionControl' 'FileSystem-Git' 'DiffMerge' 'Ston' 'Tonel'); | ||
postLoadDoIt: #postLoad]. | ||
spec | ||
group: 'FileSystemGit' with: #('FileSystem-Git'); | ||
group: 'default' with: #('GitS-Core'); | ||
group: 'tests' with: #('default')]. | ||
|
||
spec for: #'squeakCommon' do: [ | ||
spec | ||
package: 'GitS-Compatibility'; | ||
package: 'GitS-Core' with: [ | ||
spec includes: 'GitS-Compatibility']]. |
5 changes: 5 additions & 0 deletions
5
src/BaselineOfGitS.package/BaselineOfGitS.class/instance/installedVersion.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
accessing | ||
installedVersion | ||
^ ((self project version spec repositorySpecs collect: #createRepository) | ||
detect: [:each | each projectPath = GSSelfUpdater fullRepositoryName]) | ||
projectVersion |
4 changes: 4 additions & 0 deletions
4
src/BaselineOfGitS.package/BaselineOfGitS.class/instance/postLoad.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
post-load | ||
postLoad | ||
GSSelfUpdater postInstallVersion: self installedVersion. | ||
GSBaseWorkingCopy doPostUpdateMigrations. |
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
src/BaselineOfGitS.package/BaselineOfGitS.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"baseline:" : "mad 10/9/2024 18:43", | ||
"installedVersion" : "mad 10/9/2024 21:00", | ||
"postLoad" : "mad 10/9/2024 19:35", | ||
"projectClass" : "jr 5/4/2017 17:25" } } |
14 changes: 14 additions & 0 deletions
14
src/BaselineOfGitS.package/BaselineOfGitS.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "BaselineOfGitS", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
], | ||
"name" : "BaselineOfGitS", | ||
"pools" : [ | ||
], | ||
"super" : "BaselineOf", | ||
"type" : "normal" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
SystemOrganization addCategory: #BaselineOfGitS! |
File renamed without changes.
File renamed without changes.
55 changes: 0 additions & 55 deletions
55
src/BaselineOfSquot.package/BaselineOfSquot.class/instance/baseline..st
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
src/BaselineOfSquot.package/BaselineOfSquot.class/instance/postLoad.st
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/BaselineOfSquot.package/BaselineOfSquot.class/methodProperties.json
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
src/BaselineOfSquot.package/BaselineOfSquot.class/properties.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ByteArray.extension/instance/asInteger.st → ...ByteArray.extension/instance/asInteger.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"category" : "GitS-Compatibility-SqueakCommon", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "<historical>", | ||
"instvars" : [ | ||
"width", | ||
"polynome", | ||
"registerFill", | ||
"finalXorBytes", | ||
"shouldReflectOutput", | ||
"lookupTable", | ||
"widthMask", | ||
"theRegister", | ||
"shouldReflectInput", | ||
"message", | ||
"runMethodSelector", | ||
"lowestByteShift" ], | ||
"name" : "CRC", | ||
"pools" : [ | ||
], | ||
"super" : "Checksum", | ||
"type" : "normal" } |
File renamed without changes.
File renamed without changes.
14 changes: 14 additions & 0 deletions
14
src/GitS-Compatibility.package/Checksum.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "GitS-Compatibility-SqueakCommon", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "<historical>", | ||
"instvars" : [ | ||
], | ||
"name" : "Checksum", | ||
"pools" : [ | ||
], | ||
"super" : "Object", | ||
"type" : "normal" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
SystemOrganization addCategory: #'GitS-Compatibility-SqueakCommon'! |
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
src/GitS-Core.package/FSDirectoryEntry.extension/instance/name.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*GitS-Core-Code-Cypress-Support | ||
name | ||
^ self basename |
3 changes: 3 additions & 0 deletions
3
src/GitS-Core.package/FSDirectoryEntry.extension/instance/readStreamDo..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*GitS-Core-Code-Cypress-Support | ||
readStreamDo: aBlock | ||
^ reference readStreamDo: aBlock |
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ckage/FSPath.extension/class/fromSton..st → ...ckage/FSPath.extension/class/fromSton..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
*Squot-Core-STON | ||
*GitS-Core-STON | ||
fromSton: stonReader | ||
| path | | ||
path := self new. | ||
|
Oops, something went wrong.