owngit-linux-arm64 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +9 -0
- package/THIRD_PARTY_NOTICES/README.md +97 -0
- package/THIRD_PARTY_NOTICES/bundled-assets/pretendard/PRETENDARD-LICENSE.txt +94 -0
- package/THIRD_PARTY_NOTICES/github.com/dustin/go-humanize/LICENSE +21 -0
- package/THIRD_PARTY_NOTICES/github.com/google/uuid/LICENSE +27 -0
- package/THIRD_PARTY_NOTICES/github.com/mattn/go-isatty/LICENSE +9 -0
- package/THIRD_PARTY_NOTICES/github.com/ncruces/go-strftime/LICENSE +21 -0
- package/THIRD_PARTY_NOTICES/github.com/remyoudompheng/bigfft/LICENSE +27 -0
- package/THIRD_PARTY_NOTICES/go-runtime/LICENSE +27 -0
- package/THIRD_PARTY_NOTICES/go-runtime/PATENTS +22 -0
- package/THIRD_PARTY_NOTICES/golang.org/x/crypto/LICENSE +27 -0
- package/THIRD_PARTY_NOTICES/golang.org/x/crypto/PATENTS +22 -0
- package/THIRD_PARTY_NOTICES/golang.org/x/sys/LICENSE +27 -0
- package/THIRD_PARTY_NOTICES/golang.org/x/sys/PATENTS +22 -0
- package/THIRD_PARTY_NOTICES/manifest.json +217 -0
- package/THIRD_PARTY_NOTICES/modernc.org/libc/LICENSE +27 -0
- package/THIRD_PARTY_NOTICES/modernc.org/libc/LICENSE-3RD-PARTY.md +305 -0
- package/THIRD_PARTY_NOTICES/modernc.org/mathutil/LICENSE +27 -0
- package/THIRD_PARTY_NOTICES/modernc.org/memory/LICENSE +27 -0
- package/THIRD_PARTY_NOTICES/modernc.org/memory/LICENSE-GO +27 -0
- package/THIRD_PARTY_NOTICES/modernc.org/memory/LICENSE-LOGO +1 -0
- package/THIRD_PARTY_NOTICES/modernc.org/memory/LICENSE-MMAP-GO +25 -0
- package/THIRD_PARTY_NOTICES/modernc.org/sqlite/LICENSE +26 -0
- package/THIRD_PARTY_NOTICES/modernc.org/sqlite/LICENSE-SQLITE +25 -0
- package/THIRD_PARTY_NOTICES/modernc.org/sqlite/LICENSE-SQLITE_VEC +21 -0
- package/bin/owngit +0 -0
- package/package.json +23 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 OwnGit contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# owngit-linux-arm64
|
|
2
|
+
|
|
3
|
+
This package holds the OwnGit 1.0.2 executable for Linux on ARM64. Install the `owngit` package instead, which selects this package on matching systems:
|
|
4
|
+
|
|
5
|
+
```sh
|
|
6
|
+
npm install -g owngit
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
See the [project README](https://github.com/juliankang4/owngit) for other installation routes.
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
# Third-party notices
|
|
2
|
+
|
|
3
|
+
OwnGit's own source is MIT licensed, see `../LICENSE`. The compiled `owngit`
|
|
4
|
+
executable also contains third-party code, and this directory carries the
|
|
5
|
+
original notice text for every module that is linked into it and every
|
|
6
|
+
non-module asset it embeds.
|
|
7
|
+
|
|
8
|
+
This file is generated by `tools/release notices` from
|
|
9
|
+
`packaging/notices/README.md.tmpl`. Edit the template, not this copy.
|
|
10
|
+
|
|
11
|
+
## What is included
|
|
12
|
+
|
|
13
|
+
Every Go module in the dependency graph of `./cmd/owngit` for the four release
|
|
14
|
+
targets, the Go runtime that the toolchain links into the binary, and the
|
|
15
|
+
non-module assets that the binary embeds. The exact versions and file digests
|
|
16
|
+
are in `manifest.json`.
|
|
17
|
+
|
|
18
|
+
The entries fall into two groups:
|
|
19
|
+
|
|
20
|
+
- Linked modules and the Go runtime come from the module graph and `GOROOT`.
|
|
21
|
+
- Embedded assets are non-module files the binary embeds, such as the
|
|
22
|
+
Pretendard font.
|
|
23
|
+
|
|
24
|
+
- `github.com/dustin/go-humanize` v1.0.1: LICENSE
|
|
25
|
+
- `github.com/google/uuid` v1.6.0: LICENSE
|
|
26
|
+
- `github.com/mattn/go-isatty` v0.0.24: LICENSE
|
|
27
|
+
- `github.com/ncruces/go-strftime` v1.0.0: LICENSE
|
|
28
|
+
- `github.com/remyoudompheng/bigfft` v0.0.0-20230129092748-24d4a6f8daec: LICENSE
|
|
29
|
+
- `golang.org/x/crypto` v0.57.0: LICENSE, PATENTS
|
|
30
|
+
- `golang.org/x/sys` v0.48.0: LICENSE, PATENTS
|
|
31
|
+
- `modernc.org/libc` v1.75.7: LICENSE, LICENSE-3RD-PARTY.md
|
|
32
|
+
- `modernc.org/mathutil` v1.7.1: LICENSE
|
|
33
|
+
- `modernc.org/memory` v1.12.1: LICENSE, LICENSE-GO, LICENSE-LOGO, LICENSE-MMAP-GO
|
|
34
|
+
- `modernc.org/sqlite` v1.59.0: LICENSE, LICENSE-SQLITE, LICENSE-SQLITE_VEC
|
|
35
|
+
- `bundled-assets/pretendard` unversioned (internal/webui/assets/fonts/PretendardVariable.woff2): PRETENDARD-LICENSE.txt
|
|
36
|
+
- `go-runtime` go1.27.1: LICENSE, PATENTS
|
|
37
|
+
|
|
38
|
+
Entries that need more than a single license file:
|
|
39
|
+
|
|
40
|
+
- `modernc.org/sqlite` carries three separate notices: its own BSD license, the
|
|
41
|
+
SQLite public-domain dedication, and the MIT license of sqlite-vec.
|
|
42
|
+
- `modernc.org/libc` carries its BSD license and `LICENSE-3RD-PARTY.md`, which
|
|
43
|
+
covers the Go, musl, go-netdb, and Nixpkgs code it contains.
|
|
44
|
+
- `modernc.org/memory` carries its BSD license plus the Go, mmap-go, and logo
|
|
45
|
+
notices.
|
|
46
|
+
- `go-runtime` carries the Go license and patent grant for the runtime that is
|
|
47
|
+
linked into every binary.
|
|
48
|
+
- `bundled-assets/pretendard` carries the SIL Open Font License of the
|
|
49
|
+
Pretendard variable font. The font is not a Go module, so no module graph
|
|
50
|
+
lists it; `tools/release` declares it explicitly and the entry records the
|
|
51
|
+
embedded source file.
|
|
52
|
+
|
|
53
|
+
## What is not included
|
|
54
|
+
|
|
55
|
+
- Git itself. OwnGit uses the Git installation that is already on the host, so
|
|
56
|
+
no Git binary is redistributed in this checkpoint.
|
|
57
|
+
- `modernc.org/mathutil/mersenne`. The `mersenne` subpackage is not in the
|
|
58
|
+
compiled dependency graph, so its separate license is not reproduced.
|
|
59
|
+
- The `modernc.org/memory` logo artwork. `LICENSE-LOGO` is reproduced because
|
|
60
|
+
the module ships it, but the PNG is not embedded in the binary.
|
|
61
|
+
|
|
62
|
+
## How this was collected
|
|
63
|
+
|
|
64
|
+
`tools/release notices` reads the declared build inputs, not a private list:
|
|
65
|
+
|
|
66
|
+
1. `go list -deps` for `./cmd/owngit` with `GOOS` and `GOARCH` set to each
|
|
67
|
+
release target, unioned, gives the linked modules.
|
|
68
|
+
2. `go list -m -f '{{.Dir}}'` locates each module in the module cache.
|
|
69
|
+
3. Root-level `LICENSE*`, `COPYING*`, `NOTICE*`, and `PATENTS*` files are copied
|
|
70
|
+
unchanged.
|
|
71
|
+
4. The Go runtime license is read from `GOROOT`. A Homebrew toolchain keeps the
|
|
72
|
+
license one level above `GOROOT`, so that layout is used only when `GOROOT`
|
|
73
|
+
has none.
|
|
74
|
+
5. The declared embedded assets are copied from the embedded source files they
|
|
75
|
+
name.
|
|
76
|
+
6. `manifest.json` records the package, the Go version, and for every entry the
|
|
77
|
+
module, version, file name, mode, size, and SHA-256. An entry whose files do
|
|
78
|
+
not come from the module cache also records its source.
|
|
79
|
+
|
|
80
|
+
## How to refresh
|
|
81
|
+
|
|
82
|
+
Generation is fresh-destination only. The command never deletes from an
|
|
83
|
+
existing directory, so it refuses a nonempty destination and leaves it
|
|
84
|
+
untouched. Generate into a newly chosen empty destination, inspect the
|
|
85
|
+
difference, then update only the notice files you intend to change. Because
|
|
86
|
+
nothing is deleted, unrelated files in the destination survive.
|
|
87
|
+
|
|
88
|
+
```sh
|
|
89
|
+
go run ./tools/release notices -out THIRD_PARTY_NOTICES.new
|
|
90
|
+
diff -r THIRD_PARTY_NOTICES THIRD_PARTY_NOTICES.new
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
Review the difference and copy the files you intend to change with your normal
|
|
94
|
+
reviewed workflow. `go run ./tools/release notices -check` is read-only. It
|
|
95
|
+
re-runs the collection and compares the whole recorded document, every file
|
|
96
|
+
digest, and the generated README with the checked-in copy, so a dependency
|
|
97
|
+
update cannot silently leave a stale notice behind.
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
Copyright (c) 2021, Kil Hyung-jin (https://github.com/orioncactus/pretendard),
|
|
2
|
+
with Reserved Font Name Pretendard.
|
|
3
|
+
|
|
4
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
5
|
+
This license is copied below, and is also available with a FAQ at:
|
|
6
|
+
https://scripts.sil.org/OFL
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
-----------------------------------------------------------
|
|
10
|
+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
11
|
+
-----------------------------------------------------------
|
|
12
|
+
|
|
13
|
+
PREAMBLE
|
|
14
|
+
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
15
|
+
development of collaborative font projects, to support the font creation
|
|
16
|
+
efforts of academic and linguistic communities, and to provide a free and
|
|
17
|
+
open framework in which fonts may be shared and improved in partnership
|
|
18
|
+
with others.
|
|
19
|
+
|
|
20
|
+
The OFL allows the licensed fonts to be used, studied, modified and
|
|
21
|
+
redistributed freely as long as they are not sold by themselves. The
|
|
22
|
+
fonts, including any derivative works, can be bundled, embedded,
|
|
23
|
+
redistributed and/or sold with any software provided that any reserved
|
|
24
|
+
names are not used by derivative works. The fonts and derivatives,
|
|
25
|
+
however, cannot be released under any other type of license. The
|
|
26
|
+
requirement for fonts to remain under this license does not apply
|
|
27
|
+
to any document created using the fonts or their derivatives.
|
|
28
|
+
|
|
29
|
+
DEFINITIONS
|
|
30
|
+
"Font Software" refers to the set of files released by the Copyright
|
|
31
|
+
Holder(s) under this license and clearly marked as such. This may
|
|
32
|
+
include source files, build scripts and documentation.
|
|
33
|
+
|
|
34
|
+
"Reserved Font Name" refers to any names specified as such after the
|
|
35
|
+
copyright statement(s).
|
|
36
|
+
|
|
37
|
+
"Original Version" refers to the collection of Font Software components as
|
|
38
|
+
distributed by the Copyright Holder(s).
|
|
39
|
+
|
|
40
|
+
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
41
|
+
or substituting -- in part or in whole -- any of the components of the
|
|
42
|
+
Original Version, by changing formats or by porting the Font Software to a
|
|
43
|
+
new environment.
|
|
44
|
+
|
|
45
|
+
"Author" refers to any designer, engineer, programmer, technical
|
|
46
|
+
writer or other person who contributed to the Font Software.
|
|
47
|
+
|
|
48
|
+
PERMISSION & CONDITIONS
|
|
49
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
50
|
+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
51
|
+
redistribute, and sell modified and unmodified copies of the Font
|
|
52
|
+
Software, subject to the following conditions:
|
|
53
|
+
|
|
54
|
+
1) Neither the Font Software nor any of its individual components,
|
|
55
|
+
in Original or Modified Versions, may be sold by itself.
|
|
56
|
+
|
|
57
|
+
2) Original or Modified Versions of the Font Software may be bundled,
|
|
58
|
+
redistributed and/or sold with any software, provided that each copy
|
|
59
|
+
contains the above copyright notice and this license. These can be
|
|
60
|
+
included either as stand-alone text files, human-readable headers or
|
|
61
|
+
in the appropriate machine-readable metadata fields within text or
|
|
62
|
+
binary files as long as those fields can be easily viewed by the user.
|
|
63
|
+
|
|
64
|
+
3) No Modified Version of the Font Software may use the Reserved Font
|
|
65
|
+
Name(s) unless explicit written permission is granted by the corresponding
|
|
66
|
+
Copyright Holder. This restriction only applies to the primary font name as
|
|
67
|
+
presented to the users.
|
|
68
|
+
|
|
69
|
+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
70
|
+
Software shall not be used to promote, endorse or advertise any
|
|
71
|
+
Modified Version, except to acknowledge the contribution(s) of the
|
|
72
|
+
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
73
|
+
permission.
|
|
74
|
+
|
|
75
|
+
5) The Font Software, modified or unmodified, in part or in whole,
|
|
76
|
+
must be distributed entirely under this license, and must not be
|
|
77
|
+
distributed under any other license. The requirement for fonts to
|
|
78
|
+
remain under this license does not apply to any document created
|
|
79
|
+
using the Font Software.
|
|
80
|
+
|
|
81
|
+
TERMINATION
|
|
82
|
+
This license becomes null and void if any of the above conditions are
|
|
83
|
+
not met.
|
|
84
|
+
|
|
85
|
+
DISCLAIMER
|
|
86
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
87
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
88
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
89
|
+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
90
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
91
|
+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
92
|
+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
93
|
+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
94
|
+
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Copyright (c) 2005-2008 Dustin Sallings <dustin@spy.net>
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
|
11
|
+
all copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|
|
20
|
+
|
|
21
|
+
<http://www.opensource.org/licenses/mit-license.php>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Copyright (c) 2009,2014 Google Inc. All rights reserved.
|
|
2
|
+
|
|
3
|
+
Redistribution and use in source and binary forms, with or without
|
|
4
|
+
modification, are permitted provided that the following conditions are
|
|
5
|
+
met:
|
|
6
|
+
|
|
7
|
+
* Redistributions of source code must retain the above copyright
|
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
|
9
|
+
* Redistributions in binary form must reproduce the above
|
|
10
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
11
|
+
in the documentation and/or other materials provided with the
|
|
12
|
+
distribution.
|
|
13
|
+
* Neither the name of Google Inc. nor the names of its
|
|
14
|
+
contributors may be used to endorse or promote products derived from
|
|
15
|
+
this software without specific prior written permission.
|
|
16
|
+
|
|
17
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
18
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
19
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
20
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
21
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
22
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
23
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
24
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
25
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
27
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Copyright (c) Yasuhiro MATSUMOTO <mattn.jp@gmail.com>
|
|
2
|
+
|
|
3
|
+
MIT License (Expat)
|
|
4
|
+
|
|
5
|
+
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:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
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.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 Nuno Cruces
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Copyright (c) 2012 The Go Authors. All rights reserved.
|
|
2
|
+
|
|
3
|
+
Redistribution and use in source and binary forms, with or without
|
|
4
|
+
modification, are permitted provided that the following conditions are
|
|
5
|
+
met:
|
|
6
|
+
|
|
7
|
+
* Redistributions of source code must retain the above copyright
|
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
|
9
|
+
* Redistributions in binary form must reproduce the above
|
|
10
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
11
|
+
in the documentation and/or other materials provided with the
|
|
12
|
+
distribution.
|
|
13
|
+
* Neither the name of Google Inc. nor the names of its
|
|
14
|
+
contributors may be used to endorse or promote products derived from
|
|
15
|
+
this software without specific prior written permission.
|
|
16
|
+
|
|
17
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
18
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
19
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
20
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
21
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
22
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
23
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
24
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
25
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
27
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Copyright 2009 The Go Authors.
|
|
2
|
+
|
|
3
|
+
Redistribution and use in source and binary forms, with or without
|
|
4
|
+
modification, are permitted provided that the following conditions are
|
|
5
|
+
met:
|
|
6
|
+
|
|
7
|
+
* Redistributions of source code must retain the above copyright
|
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
|
9
|
+
* Redistributions in binary form must reproduce the above
|
|
10
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
11
|
+
in the documentation and/or other materials provided with the
|
|
12
|
+
distribution.
|
|
13
|
+
* Neither the name of Google LLC nor the names of its
|
|
14
|
+
contributors may be used to endorse or promote products derived from
|
|
15
|
+
this software without specific prior written permission.
|
|
16
|
+
|
|
17
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
18
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
19
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
20
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
21
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
22
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
23
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
24
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
25
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
27
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Additional IP Rights Grant (Patents)
|
|
2
|
+
|
|
3
|
+
"This implementation" means the copyrightable works distributed by
|
|
4
|
+
Google as part of the Go project.
|
|
5
|
+
|
|
6
|
+
Google hereby grants to You a perpetual, worldwide, non-exclusive,
|
|
7
|
+
no-charge, royalty-free, irrevocable (except as stated in this section)
|
|
8
|
+
patent license to make, have made, use, offer to sell, sell, import,
|
|
9
|
+
transfer and otherwise run, modify and propagate the contents of this
|
|
10
|
+
implementation of Go, where such license applies only to those patent
|
|
11
|
+
claims, both currently owned or controlled by Google and acquired in
|
|
12
|
+
the future, licensable by Google that are necessarily infringed by this
|
|
13
|
+
implementation of Go. This grant does not include claims that would be
|
|
14
|
+
infringed only as a consequence of further modification of this
|
|
15
|
+
implementation. If you or your agent or exclusive licensee institute or
|
|
16
|
+
order or agree to the institution of patent litigation against any
|
|
17
|
+
entity (including a cross-claim or counterclaim in a lawsuit) alleging
|
|
18
|
+
that this implementation of Go or any code incorporated within this
|
|
19
|
+
implementation of Go constitutes direct or contributory patent
|
|
20
|
+
infringement, or inducement of patent infringement, then any patent
|
|
21
|
+
rights granted to you under this License for this implementation of Go
|
|
22
|
+
shall terminate as of the date such litigation is filed.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Copyright 2009 The Go Authors.
|
|
2
|
+
|
|
3
|
+
Redistribution and use in source and binary forms, with or without
|
|
4
|
+
modification, are permitted provided that the following conditions are
|
|
5
|
+
met:
|
|
6
|
+
|
|
7
|
+
* Redistributions of source code must retain the above copyright
|
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
|
9
|
+
* Redistributions in binary form must reproduce the above
|
|
10
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
11
|
+
in the documentation and/or other materials provided with the
|
|
12
|
+
distribution.
|
|
13
|
+
* Neither the name of Google LLC nor the names of its
|
|
14
|
+
contributors may be used to endorse or promote products derived from
|
|
15
|
+
this software without specific prior written permission.
|
|
16
|
+
|
|
17
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
18
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
19
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
20
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
21
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
22
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
23
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
24
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
25
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
27
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Additional IP Rights Grant (Patents)
|
|
2
|
+
|
|
3
|
+
"This implementation" means the copyrightable works distributed by
|
|
4
|
+
Google as part of the Go project.
|
|
5
|
+
|
|
6
|
+
Google hereby grants to You a perpetual, worldwide, non-exclusive,
|
|
7
|
+
no-charge, royalty-free, irrevocable (except as stated in this section)
|
|
8
|
+
patent license to make, have made, use, offer to sell, sell, import,
|
|
9
|
+
transfer and otherwise run, modify and propagate the contents of this
|
|
10
|
+
implementation of Go, where such license applies only to those patent
|
|
11
|
+
claims, both currently owned or controlled by Google and acquired in
|
|
12
|
+
the future, licensable by Google that are necessarily infringed by this
|
|
13
|
+
implementation of Go. This grant does not include claims that would be
|
|
14
|
+
infringed only as a consequence of further modification of this
|
|
15
|
+
implementation. If you or your agent or exclusive licensee institute or
|
|
16
|
+
order or agree to the institution of patent litigation against any
|
|
17
|
+
entity (including a cross-claim or counterclaim in a lawsuit) alleging
|
|
18
|
+
that this implementation of Go or any code incorporated within this
|
|
19
|
+
implementation of Go constitutes direct or contributory patent
|
|
20
|
+
infringement, or inducement of patent infringement, then any patent
|
|
21
|
+
rights granted to you under this License for this implementation of Go
|
|
22
|
+
shall terminate as of the date such litigation is filed.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Copyright 2009 The Go Authors.
|
|
2
|
+
|
|
3
|
+
Redistribution and use in source and binary forms, with or without
|
|
4
|
+
modification, are permitted provided that the following conditions are
|
|
5
|
+
met:
|
|
6
|
+
|
|
7
|
+
* Redistributions of source code must retain the above copyright
|
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
|
9
|
+
* Redistributions in binary form must reproduce the above
|
|
10
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
11
|
+
in the documentation and/or other materials provided with the
|
|
12
|
+
distribution.
|
|
13
|
+
* Neither the name of Google LLC nor the names of its
|
|
14
|
+
contributors may be used to endorse or promote products derived from
|
|
15
|
+
this software without specific prior written permission.
|
|
16
|
+
|
|
17
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
18
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
19
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
20
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
21
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
22
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
23
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
24
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
25
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
27
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Additional IP Rights Grant (Patents)
|
|
2
|
+
|
|
3
|
+
"This implementation" means the copyrightable works distributed by
|
|
4
|
+
Google as part of the Go project.
|
|
5
|
+
|
|
6
|
+
Google hereby grants to You a perpetual, worldwide, non-exclusive,
|
|
7
|
+
no-charge, royalty-free, irrevocable (except as stated in this section)
|
|
8
|
+
patent license to make, have made, use, offer to sell, sell, import,
|
|
9
|
+
transfer and otherwise run, modify and propagate the contents of this
|
|
10
|
+
implementation of Go, where such license applies only to those patent
|
|
11
|
+
claims, both currently owned or controlled by Google and acquired in
|
|
12
|
+
the future, licensable by Google that are necessarily infringed by this
|
|
13
|
+
implementation of Go. This grant does not include claims that would be
|
|
14
|
+
infringed only as a consequence of further modification of this
|
|
15
|
+
implementation. If you or your agent or exclusive licensee institute or
|
|
16
|
+
order or agree to the institution of patent litigation against any
|
|
17
|
+
entity (including a cross-claim or counterclaim in a lawsuit) alleging
|
|
18
|
+
that this implementation of Go or any code incorporated within this
|
|
19
|
+
implementation of Go constitutes direct or contributory patent
|
|
20
|
+
infringement, or inducement of patent infringement, then any patent
|
|
21
|
+
rights granted to you under this License for this implementation of Go
|
|
22
|
+
shall terminate as of the date such litigation is filed.
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
{
|
|
2
|
+
"package": "./cmd/owngit",
|
|
3
|
+
"go": "go1.27.1",
|
|
4
|
+
"entries": [
|
|
5
|
+
{
|
|
6
|
+
"module": "github.com/dustin/go-humanize",
|
|
7
|
+
"version": "v1.0.1",
|
|
8
|
+
"files": [
|
|
9
|
+
{
|
|
10
|
+
"path": "LICENSE",
|
|
11
|
+
"mode": "0644",
|
|
12
|
+
"size": 1136,
|
|
13
|
+
"sha256": "a973b4498c13eb74baa2a8e5c351426a6826f2fcdd909916dbe53ee2e755fd71"
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"module": "github.com/google/uuid",
|
|
19
|
+
"version": "v1.6.0",
|
|
20
|
+
"files": [
|
|
21
|
+
{
|
|
22
|
+
"path": "LICENSE",
|
|
23
|
+
"mode": "0644",
|
|
24
|
+
"size": 1480,
|
|
25
|
+
"sha256": "0a8d61ed3cbfd5312326e8126c31ce9c627a283adc99131b56896d29ada04b2d"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"module": "github.com/mattn/go-isatty",
|
|
31
|
+
"version": "v0.0.24",
|
|
32
|
+
"files": [
|
|
33
|
+
{
|
|
34
|
+
"path": "LICENSE",
|
|
35
|
+
"mode": "0644",
|
|
36
|
+
"size": 1099,
|
|
37
|
+
"sha256": "08eab1118c80885fa1fa6a6dd7303f65a379fcb3733e063d20d1bbc2c76e6fa1"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"module": "github.com/ncruces/go-strftime",
|
|
43
|
+
"version": "v1.0.0",
|
|
44
|
+
"files": [
|
|
45
|
+
{
|
|
46
|
+
"path": "LICENSE",
|
|
47
|
+
"mode": "0644",
|
|
48
|
+
"size": 1068,
|
|
49
|
+
"sha256": "38ae43959daf953a393a585b2988672cb65a5a541aca0d0be5e72595a0a16883"
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"module": "github.com/remyoudompheng/bigfft",
|
|
55
|
+
"version": "v0.0.0-20230129092748-24d4a6f8daec",
|
|
56
|
+
"files": [
|
|
57
|
+
{
|
|
58
|
+
"path": "LICENSE",
|
|
59
|
+
"mode": "0644",
|
|
60
|
+
"size": 1479,
|
|
61
|
+
"sha256": "dd26a7abddd02e2d0aba97805b31f248ef7835d9e10da289b22e3b8ab78b324d"
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"module": "golang.org/x/crypto",
|
|
67
|
+
"version": "v0.57.0",
|
|
68
|
+
"files": [
|
|
69
|
+
{
|
|
70
|
+
"path": "LICENSE",
|
|
71
|
+
"mode": "0644",
|
|
72
|
+
"size": 1453,
|
|
73
|
+
"sha256": "911f8f5782931320f5b8d1160a76365b83aea6447ee6c04fa6d5591467db9dad"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"path": "PATENTS",
|
|
77
|
+
"mode": "0644",
|
|
78
|
+
"size": 1303,
|
|
79
|
+
"sha256": "96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc"
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"module": "golang.org/x/sys",
|
|
85
|
+
"version": "v0.48.0",
|
|
86
|
+
"files": [
|
|
87
|
+
{
|
|
88
|
+
"path": "LICENSE",
|
|
89
|
+
"mode": "0644",
|
|
90
|
+
"size": 1453,
|
|
91
|
+
"sha256": "911f8f5782931320f5b8d1160a76365b83aea6447ee6c04fa6d5591467db9dad"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"path": "PATENTS",
|
|
95
|
+
"mode": "0644",
|
|
96
|
+
"size": 1303,
|
|
97
|
+
"sha256": "96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc"
|
|
98
|
+
}
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"module": "modernc.org/libc",
|
|
103
|
+
"version": "v1.75.7",
|
|
104
|
+
"files": [
|
|
105
|
+
{
|
|
106
|
+
"path": "LICENSE",
|
|
107
|
+
"mode": "0644",
|
|
108
|
+
"size": 1482,
|
|
109
|
+
"sha256": "95ff867eb55a56935fa7492406cfa953fb7c13ca73f4c0a86ae05756b4605600"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"path": "LICENSE-3RD-PARTY.md",
|
|
113
|
+
"mode": "0644",
|
|
114
|
+
"size": 10505,
|
|
115
|
+
"sha256": "f597097efe3d97021f89170746bd3a0fb9a8b6fb26b82043ed68a4e0283bee6c"
|
|
116
|
+
}
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"module": "modernc.org/mathutil",
|
|
121
|
+
"version": "v1.7.1",
|
|
122
|
+
"files": [
|
|
123
|
+
{
|
|
124
|
+
"path": "LICENSE",
|
|
125
|
+
"mode": "0644",
|
|
126
|
+
"size": 1486,
|
|
127
|
+
"sha256": "bfa9bf72a72ca009fd62a8f84fca3dca67e51d93af96352723646599898b6cf5"
|
|
128
|
+
}
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"module": "modernc.org/memory",
|
|
133
|
+
"version": "v1.12.1",
|
|
134
|
+
"files": [
|
|
135
|
+
{
|
|
136
|
+
"path": "LICENSE",
|
|
137
|
+
"mode": "0644",
|
|
138
|
+
"size": 1484,
|
|
139
|
+
"sha256": "59895e669f48f168b6b858358f6005779cdf40a265f7828813061b56af67b496"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"path": "LICENSE-GO",
|
|
143
|
+
"mode": "0644",
|
|
144
|
+
"size": 1479,
|
|
145
|
+
"sha256": "2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"path": "LICENSE-LOGO",
|
|
149
|
+
"mode": "0644",
|
|
150
|
+
"size": 62,
|
|
151
|
+
"sha256": "5ae5bee3072a841376451b48d8cfcec7188e10543926d5870828d36c8a750dc5"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"path": "LICENSE-MMAP-GO",
|
|
155
|
+
"mode": "0644",
|
|
156
|
+
"size": 1518,
|
|
157
|
+
"sha256": "c2eba69f20d05414538c3a5df7694dde392e065ff70882e1625e90f5d6659fff"
|
|
158
|
+
}
|
|
159
|
+
]
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"module": "modernc.org/sqlite",
|
|
163
|
+
"version": "v1.59.0",
|
|
164
|
+
"files": [
|
|
165
|
+
{
|
|
166
|
+
"path": "LICENSE",
|
|
167
|
+
"mode": "0644",
|
|
168
|
+
"size": 1489,
|
|
169
|
+
"sha256": "c6fe05491a60ae13bcd223088d2705e36dede24e5587226231d2459ada5c4822"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"path": "LICENSE-SQLITE",
|
|
173
|
+
"mode": "0644",
|
|
174
|
+
"size": 1506,
|
|
175
|
+
"sha256": "8438c9c89b849131ead81d5435cb97fcf052df5b0b286dda8a2d4c29e6cb3fd0"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"path": "LICENSE-SQLITE_VEC",
|
|
179
|
+
"mode": "0644",
|
|
180
|
+
"size": 1068,
|
|
181
|
+
"sha256": "6ce72bbe12d975bd5286e5ab0a064c069693300c47bccbc57bec18485f1621ea"
|
|
182
|
+
}
|
|
183
|
+
]
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"module": "bundled-assets/pretendard",
|
|
187
|
+
"version": "unversioned",
|
|
188
|
+
"source": "internal/webui/assets/fonts/PretendardVariable.woff2",
|
|
189
|
+
"files": [
|
|
190
|
+
{
|
|
191
|
+
"path": "PRETENDARD-LICENSE.txt",
|
|
192
|
+
"mode": "0644",
|
|
193
|
+
"size": 4418,
|
|
194
|
+
"sha256": "d31ddd9f2bed32fd7e302a205cf2380ba0de6529152d239ef99cfb6f261bfc04"
|
|
195
|
+
}
|
|
196
|
+
]
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"module": "go-runtime",
|
|
200
|
+
"version": "go1.27.1",
|
|
201
|
+
"files": [
|
|
202
|
+
{
|
|
203
|
+
"path": "LICENSE",
|
|
204
|
+
"mode": "0644",
|
|
205
|
+
"size": 1453,
|
|
206
|
+
"sha256": "911f8f5782931320f5b8d1160a76365b83aea6447ee6c04fa6d5591467db9dad"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"path": "PATENTS",
|
|
210
|
+
"mode": "0644",
|
|
211
|
+
"size": 1303,
|
|
212
|
+
"sha256": "96f408bfae65bf137fc2525d3ecb030271c50c1e90799f87abf8846d8dd505cc"
|
|
213
|
+
}
|
|
214
|
+
]
|
|
215
|
+
}
|
|
216
|
+
]
|
|
217
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Copyright (c) 2017 The Libc Authors. All rights reserved.
|
|
2
|
+
|
|
3
|
+
Redistribution and use in source and binary forms, with or without
|
|
4
|
+
modification, are permitted provided that the following conditions are
|
|
5
|
+
met:
|
|
6
|
+
|
|
7
|
+
* Redistributions of source code must retain the above copyright
|
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
|
9
|
+
* Redistributions in binary form must reproduce the above
|
|
10
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
11
|
+
in the documentation and/or other materials provided with the
|
|
12
|
+
distribution.
|
|
13
|
+
* Neither the names of the authors nor the names of the
|
|
14
|
+
contributors may be used to endorse or promote products derived from
|
|
15
|
+
this software without specific prior written permission.
|
|
16
|
+
|
|
17
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
18
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
19
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
20
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
21
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
22
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
23
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
24
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
25
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
27
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
# Third-Party Software Notices
|
|
2
|
+
|
|
3
|
+
This repository contains code and assets acquired from third-party sources.
|
|
4
|
+
While the main project is licensed under the BSD-3 License, the components
|
|
5
|
+
listed below are subject to their own specific license terms and copyright
|
|
6
|
+
notices.
|
|
7
|
+
|
|
8
|
+
The following is a list of third-party software included in this repository,
|
|
9
|
+
their locations, and their respective licenses.
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
----
|
|
13
|
+
|
|
14
|
+
## Go
|
|
15
|
+
|
|
16
|
+
* **URL:** https://github.com/golang/go
|
|
17
|
+
----
|
|
18
|
+
|
|
19
|
+
Copyright (c) 2009 The Go Authors. All rights reserved.
|
|
20
|
+
|
|
21
|
+
Redistribution and use in source and binary forms, with or without
|
|
22
|
+
modification, are permitted provided that the following conditions are
|
|
23
|
+
met:
|
|
24
|
+
|
|
25
|
+
* Redistributions of source code must retain the above copyright
|
|
26
|
+
notice, this list of conditions and the following disclaimer.
|
|
27
|
+
* Redistributions in binary form must reproduce the above
|
|
28
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
29
|
+
in the documentation and/or other materials provided with the
|
|
30
|
+
distribution.
|
|
31
|
+
* Neither the name of Google Inc. nor the names of its
|
|
32
|
+
contributors may be used to endorse or promote products derived from
|
|
33
|
+
this software without specific prior written permission.
|
|
34
|
+
|
|
35
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
36
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
37
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
38
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
39
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
40
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
41
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
42
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
43
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
44
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
45
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
46
|
+
|
|
47
|
+
----
|
|
48
|
+
|
|
49
|
+
## musl libc
|
|
50
|
+
|
|
51
|
+
* **URL:** https://musl.libc.org/
|
|
52
|
+
|
|
53
|
+
----
|
|
54
|
+
|
|
55
|
+
musl as a whole is licensed under the following standard MIT license:
|
|
56
|
+
|
|
57
|
+
----------------------------------------------------------------------
|
|
58
|
+
Copyright © 2005-2020 Rich Felker, et al.
|
|
59
|
+
|
|
60
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
61
|
+
a copy of this software and associated documentation files (the
|
|
62
|
+
"Software"), to deal in the Software without restriction, including
|
|
63
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
64
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
65
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
66
|
+
the following conditions:
|
|
67
|
+
|
|
68
|
+
The above copyright notice and this permission notice shall be
|
|
69
|
+
included in all copies or substantial portions of the Software.
|
|
70
|
+
|
|
71
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
72
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
73
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
74
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
75
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
76
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
77
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
78
|
+
----------------------------------------------------------------------
|
|
79
|
+
|
|
80
|
+
Authors/contributors include:
|
|
81
|
+
|
|
82
|
+
A. Wilcox
|
|
83
|
+
Ada Worcester
|
|
84
|
+
Alex Dowad
|
|
85
|
+
Alex Suykov
|
|
86
|
+
Alexander Monakov
|
|
87
|
+
Andre McCurdy
|
|
88
|
+
Andrew Kelley
|
|
89
|
+
Anthony G. Basile
|
|
90
|
+
Aric Belsito
|
|
91
|
+
Arvid Picciani
|
|
92
|
+
Bartosz Brachaczek
|
|
93
|
+
Benjamin Peterson
|
|
94
|
+
Bobby Bingham
|
|
95
|
+
Boris Brezillon
|
|
96
|
+
Brent Cook
|
|
97
|
+
Chris Spiegel
|
|
98
|
+
Clément Vasseur
|
|
99
|
+
Daniel Micay
|
|
100
|
+
Daniel Sabogal
|
|
101
|
+
Daurnimator
|
|
102
|
+
David Carlier
|
|
103
|
+
David Edelsohn
|
|
104
|
+
Denys Vlasenko
|
|
105
|
+
Dmitry Ivanov
|
|
106
|
+
Dmitry V. Levin
|
|
107
|
+
Drew DeVault
|
|
108
|
+
Emil Renner Berthing
|
|
109
|
+
Fangrui Song
|
|
110
|
+
Felix Fietkau
|
|
111
|
+
Felix Janda
|
|
112
|
+
Gianluca Anzolin
|
|
113
|
+
Hauke Mehrtens
|
|
114
|
+
He X
|
|
115
|
+
Hiltjo Posthuma
|
|
116
|
+
Isaac Dunham
|
|
117
|
+
Jaydeep Patil
|
|
118
|
+
Jens Gustedt
|
|
119
|
+
Jeremy Huntwork
|
|
120
|
+
Jo-Philipp Wich
|
|
121
|
+
Joakim Sindholt
|
|
122
|
+
John Spencer
|
|
123
|
+
Julien Ramseier
|
|
124
|
+
Justin Cormack
|
|
125
|
+
Kaarle Ritvanen
|
|
126
|
+
Khem Raj
|
|
127
|
+
Kylie McClain
|
|
128
|
+
Leah Neukirchen
|
|
129
|
+
Luca Barbato
|
|
130
|
+
Luka Perkov
|
|
131
|
+
M Farkas-Dyck (Strake)
|
|
132
|
+
Mahesh Bodapati
|
|
133
|
+
Markus Wichmann
|
|
134
|
+
Masanori Ogino
|
|
135
|
+
Michael Clark
|
|
136
|
+
Michael Forney
|
|
137
|
+
Mikhail Kremnyov
|
|
138
|
+
Natanael Copa
|
|
139
|
+
Nicholas J. Kain
|
|
140
|
+
orc
|
|
141
|
+
Pascal Cuoq
|
|
142
|
+
Patrick Oppenlander
|
|
143
|
+
Petr Hosek
|
|
144
|
+
Petr Skocik
|
|
145
|
+
Pierre Carrier
|
|
146
|
+
Reini Urban
|
|
147
|
+
Rich Felker
|
|
148
|
+
Richard Pennington
|
|
149
|
+
Ryan Fairfax
|
|
150
|
+
Samuel Holland
|
|
151
|
+
Segev Finer
|
|
152
|
+
Shiz
|
|
153
|
+
sin
|
|
154
|
+
Solar Designer
|
|
155
|
+
Stefan Kristiansson
|
|
156
|
+
Stefan O'Rear
|
|
157
|
+
Szabolcs Nagy
|
|
158
|
+
Timo Teräs
|
|
159
|
+
Trutz Behn
|
|
160
|
+
Valentin Ochs
|
|
161
|
+
Will Dietz
|
|
162
|
+
William Haddon
|
|
163
|
+
William Pitcock
|
|
164
|
+
|
|
165
|
+
Portions of this software are derived from third-party works licensed
|
|
166
|
+
under terms compatible with the above MIT license:
|
|
167
|
+
|
|
168
|
+
The TRE regular expression implementation (src/regex/reg* and
|
|
169
|
+
src/regex/tre*) is Copyright © 2001-2008 Ville Laurikari and licensed
|
|
170
|
+
under a 2-clause BSD license (license text in the source files). The
|
|
171
|
+
included version has been heavily modified by Rich Felker in 2012, in
|
|
172
|
+
the interests of size, simplicity, and namespace cleanliness.
|
|
173
|
+
|
|
174
|
+
Much of the math library code (src/math/* and src/complex/*) is
|
|
175
|
+
Copyright © 1993,2004 Sun Microsystems or
|
|
176
|
+
Copyright © 2003-2011 David Schultz or
|
|
177
|
+
Copyright © 2003-2009 Steven G. Kargl or
|
|
178
|
+
Copyright © 2003-2009 Bruce D. Evans or
|
|
179
|
+
Copyright © 2008 Stephen L. Moshier or
|
|
180
|
+
Copyright © 2017-2018 Arm Limited
|
|
181
|
+
and labelled as such in comments in the individual source files. All
|
|
182
|
+
have been licensed under extremely permissive terms.
|
|
183
|
+
|
|
184
|
+
The ARM memcpy code (src/string/arm/memcpy.S) is Copyright © 2008
|
|
185
|
+
The Android Open Source Project and is licensed under a two-clause BSD
|
|
186
|
+
license. It was taken from Bionic libc, used on Android.
|
|
187
|
+
|
|
188
|
+
The AArch64 memcpy and memset code (src/string/aarch64/*) are
|
|
189
|
+
Copyright © 1999-2019, Arm Limited.
|
|
190
|
+
|
|
191
|
+
The implementation of DES for crypt (src/crypt/crypt_des.c) is
|
|
192
|
+
Copyright © 1994 David Burren. It is licensed under a BSD license.
|
|
193
|
+
|
|
194
|
+
The implementation of blowfish crypt (src/crypt/crypt_blowfish.c) was
|
|
195
|
+
originally written by Solar Designer and placed into the public
|
|
196
|
+
domain. The code also comes with a fallback permissive license for use
|
|
197
|
+
in jurisdictions that may not recognize the public domain.
|
|
198
|
+
|
|
199
|
+
The smoothsort implementation (src/stdlib/qsort.c) is Copyright © 2011
|
|
200
|
+
Valentin Ochs and is licensed under an MIT-style license.
|
|
201
|
+
|
|
202
|
+
The x86_64 port was written by Nicholas J. Kain and is licensed under
|
|
203
|
+
the standard MIT terms.
|
|
204
|
+
|
|
205
|
+
The mips and microblaze ports were originally written by Richard
|
|
206
|
+
Pennington for use in the ellcc project. The original code was adapted
|
|
207
|
+
by Rich Felker for build system and code conventions during upstream
|
|
208
|
+
integration. It is licensed under the standard MIT terms.
|
|
209
|
+
|
|
210
|
+
The mips64 port was contributed by Imagination Technologies and is
|
|
211
|
+
licensed under the standard MIT terms.
|
|
212
|
+
|
|
213
|
+
The powerpc port was also originally written by Richard Pennington,
|
|
214
|
+
and later supplemented and integrated by John Spencer. It is licensed
|
|
215
|
+
under the standard MIT terms.
|
|
216
|
+
|
|
217
|
+
All other files which have no copyright comments are original works
|
|
218
|
+
produced specifically for use as part of this library, written either
|
|
219
|
+
by Rich Felker, the main author of the library, or by one or more
|
|
220
|
+
contibutors listed above. Details on authorship of individual files
|
|
221
|
+
can be found in the git version control history of the project. The
|
|
222
|
+
omission of copyright and license comments in each file is in the
|
|
223
|
+
interest of source tree size.
|
|
224
|
+
|
|
225
|
+
In addition, permission is hereby granted for all public header files
|
|
226
|
+
(include/* and arch/*/bits/*) and crt files intended to be linked into
|
|
227
|
+
applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit
|
|
228
|
+
the copyright notice and permission notice otherwise required by the
|
|
229
|
+
license, and to use these files without any requirement of
|
|
230
|
+
attribution. These files include substantial contributions from:
|
|
231
|
+
|
|
232
|
+
Bobby Bingham
|
|
233
|
+
John Spencer
|
|
234
|
+
Nicholas J. Kain
|
|
235
|
+
Rich Felker
|
|
236
|
+
Richard Pennington
|
|
237
|
+
Stefan Kristiansson
|
|
238
|
+
Szabolcs Nagy
|
|
239
|
+
|
|
240
|
+
all of whom have explicitly granted such permission.
|
|
241
|
+
|
|
242
|
+
This file previously contained text expressing a belief that most of
|
|
243
|
+
the files covered by the above exception were sufficiently trivial not
|
|
244
|
+
to be subject to copyright, resulting in confusion over whether it
|
|
245
|
+
negated the permissions granted in the license. In the spirit of
|
|
246
|
+
permissive licensing, and of not having licensing issues being an
|
|
247
|
+
obstacle to adoption, that text has been removed.
|
|
248
|
+
|
|
249
|
+
----
|
|
250
|
+
|
|
251
|
+
## go-netdb
|
|
252
|
+
|
|
253
|
+
* **URL:** https://github.com/dominikh/go-netdb
|
|
254
|
+
|
|
255
|
+
----
|
|
256
|
+
|
|
257
|
+
Copyright (c) 2012 Dominik Honnef
|
|
258
|
+
|
|
259
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
260
|
+
a copy of this software and associated documentation files (the
|
|
261
|
+
"Software"), to deal in the Software without restriction, including
|
|
262
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
263
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
264
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
265
|
+
the following conditions:
|
|
266
|
+
|
|
267
|
+
The above copyright notice and this permission notice shall be
|
|
268
|
+
included in all copies or substantial portions of the Software.
|
|
269
|
+
|
|
270
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
271
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
272
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
273
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
274
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
275
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
276
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
277
|
+
|
|
278
|
+
----
|
|
279
|
+
|
|
280
|
+
## NixOS/nixpkgs
|
|
281
|
+
|
|
282
|
+
* **URL:** https://github.com/NixOS/nixpkgs
|
|
283
|
+
|
|
284
|
+
----
|
|
285
|
+
|
|
286
|
+
Copyright (c) 2003-2025 Eelco Dolstra and the Nixpkgs/NixOS contributors
|
|
287
|
+
|
|
288
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
289
|
+
a copy of this software and associated documentation files (the
|
|
290
|
+
"Software"), to deal in the Software without restriction, including
|
|
291
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
292
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
293
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
294
|
+
the following conditions:
|
|
295
|
+
|
|
296
|
+
The above copyright notice and this permission notice shall be
|
|
297
|
+
included in all copies or substantial portions of the Software.
|
|
298
|
+
|
|
299
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
300
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
301
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
302
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
303
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
304
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
305
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Copyright (c) 2014 The mathutil Authors. All rights reserved.
|
|
2
|
+
|
|
3
|
+
Redistribution and use in source and binary forms, with or without
|
|
4
|
+
modification, are permitted provided that the following conditions are
|
|
5
|
+
met:
|
|
6
|
+
|
|
7
|
+
* Redistributions of source code must retain the above copyright
|
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
|
9
|
+
* Redistributions in binary form must reproduce the above
|
|
10
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
11
|
+
in the documentation and/or other materials provided with the
|
|
12
|
+
distribution.
|
|
13
|
+
* Neither the names of the authors nor the names of the
|
|
14
|
+
contributors may be used to endorse or promote products derived from
|
|
15
|
+
this software without specific prior written permission.
|
|
16
|
+
|
|
17
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
18
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
19
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
20
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
21
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
22
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
23
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
24
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
25
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
27
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Copyright (c) 2017 The Memory Authors. All rights reserved.
|
|
2
|
+
|
|
3
|
+
Redistribution and use in source and binary forms, with or without
|
|
4
|
+
modification, are permitted provided that the following conditions are
|
|
5
|
+
met:
|
|
6
|
+
|
|
7
|
+
* Redistributions of source code must retain the above copyright
|
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
|
9
|
+
* Redistributions in binary form must reproduce the above
|
|
10
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
11
|
+
in the documentation and/or other materials provided with the
|
|
12
|
+
distribution.
|
|
13
|
+
* Neither the names of the authors nor the names of the
|
|
14
|
+
contributors may be used to endorse or promote products derived from
|
|
15
|
+
this software without specific prior written permission.
|
|
16
|
+
|
|
17
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
18
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
19
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
20
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
21
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
22
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
23
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
24
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
25
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
27
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Copyright (c) 2009 The Go Authors. All rights reserved.
|
|
2
|
+
|
|
3
|
+
Redistribution and use in source and binary forms, with or without
|
|
4
|
+
modification, are permitted provided that the following conditions are
|
|
5
|
+
met:
|
|
6
|
+
|
|
7
|
+
* Redistributions of source code must retain the above copyright
|
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
|
9
|
+
* Redistributions in binary form must reproduce the above
|
|
10
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
11
|
+
in the documentation and/or other materials provided with the
|
|
12
|
+
distribution.
|
|
13
|
+
* Neither the name of Google Inc. nor the names of its
|
|
14
|
+
contributors may be used to endorse or promote products derived from
|
|
15
|
+
this software without specific prior written permission.
|
|
16
|
+
|
|
17
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
18
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
19
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
20
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
21
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
22
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
23
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
24
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
25
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
27
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
https://commons.wikimedia.org/wiki/File:Memory_infra_logo.png
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Copyright (c) 2011, Evan Shaw <edsrzf@gmail.com>
|
|
2
|
+
All rights reserved.
|
|
3
|
+
|
|
4
|
+
Redistribution and use in source and binary forms, with or without
|
|
5
|
+
modification, are permitted provided that the following conditions are met:
|
|
6
|
+
* Redistributions of source code must retain the above copyright
|
|
7
|
+
notice, this list of conditions and the following disclaimer.
|
|
8
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
9
|
+
notice, this list of conditions and the following disclaimer in the
|
|
10
|
+
documentation and/or other materials provided with the distribution.
|
|
11
|
+
* Neither the name of the copyright holder nor the
|
|
12
|
+
names of its contributors may be used to endorse or promote products
|
|
13
|
+
derived from this software without specific prior written permission.
|
|
14
|
+
|
|
15
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
16
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
17
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
18
|
+
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
|
19
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
20
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
21
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
22
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
23
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
24
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
25
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Copyright (c) 2017 The Sqlite Authors. All rights reserved.
|
|
2
|
+
|
|
3
|
+
Redistribution and use in source and binary forms, with or without
|
|
4
|
+
modification, are permitted provided that the following conditions are met:
|
|
5
|
+
|
|
6
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
7
|
+
list of conditions and the following disclaimer.
|
|
8
|
+
|
|
9
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
10
|
+
this list of conditions and the following disclaimer in the documentation
|
|
11
|
+
and/or other materials provided with the distribution.
|
|
12
|
+
|
|
13
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
14
|
+
may be used to endorse or promote products derived from this software without
|
|
15
|
+
specific prior written permission.
|
|
16
|
+
|
|
17
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
18
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
19
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
SQLite Is Public Domain
|
|
2
|
+
|
|
3
|
+
All of the code and documentation in SQLite has been dedicated to the public
|
|
4
|
+
domain by the authors. All code authors, and representatives of the companies
|
|
5
|
+
they work for, have signed affidavits dedicating their contributions to the
|
|
6
|
+
public domain and originals of those signed affidavits are stored in a firesafe
|
|
7
|
+
at the main offices of Hwaci. Anyone is free to copy, modify, publish, use,
|
|
8
|
+
compile, sell, or distribute the original SQLite code, either in source code
|
|
9
|
+
form or as a compiled binary, for any purpose, commercial or non-commercial,
|
|
10
|
+
and by any means.
|
|
11
|
+
|
|
12
|
+
The previous paragraph applies to the deliverable code and documentation in
|
|
13
|
+
SQLite - those parts of the SQLite library that you actually bundle and ship
|
|
14
|
+
with a larger application. Some scripts used as part of the build process (for
|
|
15
|
+
example the "configure" scripts generated by autoconf) might fall under other
|
|
16
|
+
open-source licenses. Nothing from these build scripts ever reaches the final
|
|
17
|
+
deliverable SQLite library, however, and so the licenses associated with those
|
|
18
|
+
scripts should not be a factor in assessing your rights to copy and use the
|
|
19
|
+
SQLite library.
|
|
20
|
+
|
|
21
|
+
All of the deliverable code in SQLite has been written from scratch. No code
|
|
22
|
+
has been taken from other projects or from the open internet. Every line of
|
|
23
|
+
code can be traced back to its original author, and all of those authors have
|
|
24
|
+
public domain dedications on file. So the SQLite code base is clean and is
|
|
25
|
+
uncontaminated with licensed code from other projects.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Alex Garcia
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/bin/owngit
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "owngit-linux-arm64",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "The OwnGit executable for Linux on ARM64, installed by the owngit package",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/juliankang4/owngit",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/juliankang4/owngit.git"
|
|
10
|
+
},
|
|
11
|
+
"os": [
|
|
12
|
+
"linux"
|
|
13
|
+
],
|
|
14
|
+
"cpu": [
|
|
15
|
+
"arm64"
|
|
16
|
+
],
|
|
17
|
+
"files": [
|
|
18
|
+
"bin/owngit",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"THIRD_PARTY_NOTICES/"
|
|
22
|
+
]
|
|
23
|
+
}
|