-
Notifications
You must be signed in to change notification settings - Fork 29
/
LICENSE
64 lines (53 loc) · 3.65 KB
/
LICENSE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
This repository contains multiple packages:
- Squot, Squit, VersionControl come from here
- SquotCompatibility-SqueakCommon was also initialized here, but consists mainly of code
that was copied and adapted from Pharo, in order to make FileSystem-Git run in Squeak.
- The other SquotCompatibility-Squeak* packages contain methods from later Squeak releases
or Squeak Trunk that are provided for older Squeak versions.
- FileSystem-Git and FileSystem (FS-*) are forks of packages originally hosted elsewhere.
- Squot-CoAuthorsExtension was originally a separate project.
The packages originating here are released under the MIT license as described below.
The code copied from Pharo in 2017 is released under the MIT license according to
https://github.com/pharo-project/pharo/blob/6.0.0/src/System-Support.package/SmalltalkImage.class/instance/licenseStringTemplate.st,
https://pharo.org/features, https://pharo.org/contribute (all last accessed 2022-07-10).
The adapations to Squeak included here are also released under the MIT license
as described below.
The code copied from Squeak Trunk was released under the MIT license according to
https://squeak.org/license/ (last accessed 2022-07-10). The license statement in the
Squeak image is in the class SmalltalkImage just like in Pharo, but one cannot have
permalinks to the Squeak method from https://source.squeak.org.
Should any adaptations become necessary to such backported methods, the adaptations
included here are also released under the MIT license as described below.
The original FileSystem-Git was released under the MIT license according to
http://smalltalkhub.com/#!/~FileSystemGitDev/FileSystem-Git/ (last accessed 2019-02-15)
and http://ss3.gemstone.com/ss/FileSystem-Git.html (last accessed 2019-02-15).
The additions and changes provided here are also released under the MIT license
as described below.
The original FileSystem was released under the MIT license according to
http://www.squeaksource.com/fs.html (last accessed 2019-02-15).
The additions and changes provided here are also released under the MIT license
as described below.
=====================================================================
Squot, Squit, VersionControl, Squot-CoAuthorsExtension,
changes and additions to FileSystem and FileSystem-Git packages
and Squeak adaptations to the code in the SquotCompatibility package
=====================================================================
MIT License
Copyright (c) 2017 Jakob Reschke, Software Architecture Group (Hasso Plattner Institute)
Copyright (c) 2017-2022 Contributors to the Squot project (see Git history)
Copyright (c) 2019 Maximilian Stiede, Leon Bein (for the Squot-CoAuthorsExtension)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.