From 0fa4bda949eb268d48792f88ff7067f00600d5bb Mon Sep 17 00:00:00 2001 From: milan Date: Mon, 25 May 2026 15:53:02 +0200 Subject: [PATCH] add license tree --- about.toml | 18 + audio_server/pyproject.toml | 2 +- cli/Cargo.toml | 2 +- cli/about.hbs | 70 + cli/about.toml | 1 + cli/licenses.html | 8451 +++++++++++++++++++++++++++ common/Cargo.toml | 2 +- common/about.hbs | 70 + common/about.toml | 1 + common/licenses.html | 1221 ++++ generate_licenses.sh | 10 + mcp_server_collection/Cargo.toml | 2 +- mcp_server_collection/about.hbs | 70 + mcp_server_collection/about.toml | 1 + mcp_server_collection/licenses.html | 5297 +++++++++++++++++ own_mcp/Cargo.toml | 2 +- own_mcp/about.hbs | 70 + own_mcp/about.toml | 1 + own_mcp/licenses.html | 6364 ++++++++++++++++++++ 19 files changed, 21650 insertions(+), 5 deletions(-) create mode 100644 about.toml create mode 100644 cli/about.hbs create mode 120000 cli/about.toml create mode 100644 cli/licenses.html create mode 100644 common/about.hbs create mode 120000 common/about.toml create mode 100644 common/licenses.html create mode 100755 generate_licenses.sh create mode 100644 mcp_server_collection/about.hbs create mode 120000 mcp_server_collection/about.toml create mode 100644 mcp_server_collection/licenses.html create mode 100644 own_mcp/about.hbs create mode 120000 own_mcp/about.toml create mode 100644 own_mcp/licenses.html diff --git a/about.toml b/about.toml new file mode 100644 index 0000000..9350280 --- /dev/null +++ b/about.toml @@ -0,0 +1,18 @@ +accepted = [ + "GPL-3.0", + "Apache-2.0", + "MIT-0", + "MPL-2.0", + "MIT", + "ISC", + "BSD-3-Clause", + "Unicode-3.0", + "CDLA-Permissive-2.0" +] + +[ollama-rs.clarify] +license = "MIT" +files = [{path = "LICENSE.md", checksum = "e3de1bae29d6b97ac7f510d2378de7dfafd56c4f1c6fde2c8d3a6b73e9c10b6b"}] +[ollama-rs-macros.clarify] +license = "MIT" +files = [{path = "LICENSE.md", checksum = "e3de1bae29d6b97ac7f510d2378de7dfafd56c4f1c6fde2c8d3a6b73e9c10b6b"}] diff --git a/audio_server/pyproject.toml b/audio_server/pyproject.toml index 2de3c0f..4edf6ac 100644 --- a/audio_server/pyproject.toml +++ b/audio_server/pyproject.toml @@ -8,7 +8,7 @@ version = "1.0.0" authors = [ { name = 'Milan', email = 'milan@mboemer.de' } ] -license = "GPL-3" +license = "GPL-3.0" requires-python = '>=3.12' diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 070c2d8..4991b9c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ name = "own_assist_cli" version = "0.3.0" edition = "2024" -license = "GPL-3" +license = "GPL-3.0" [dependencies] ollama-rs = { version = "0.3.4", features = ["macros", "headers"] } diff --git a/cli/about.hbs b/cli/about.hbs new file mode 100644 index 0000000..be61924 --- /dev/null +++ b/cli/about.hbs @@ -0,0 +1,70 @@ + + + + + + + +
+
+

Third Party Licenses

+

This page lists the licenses of the projects used in own_assist_cli.

+
+ +

Overview of licenses:

+ + +

All license text:

+ +
+ + + diff --git a/cli/about.toml b/cli/about.toml new file mode 120000 index 0000000..9f796a0 --- /dev/null +++ b/cli/about.toml @@ -0,0 +1 @@ +../about.toml \ No newline at end of file diff --git a/cli/licenses.html b/cli/licenses.html new file mode 100644 index 0000000..f05557c --- /dev/null +++ b/cli/licenses.html @@ -0,0 +1,8451 @@ + + + + + + + +
+
+

Third Party Licenses

+

This page lists the licenses of the projects used in own_assist_cli.

+
+ +

Overview of licenses:

+ + +

All license text:

+ +
+ + + diff --git a/common/Cargo.toml b/common/Cargo.toml index 2de1859..11d63ea 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -2,7 +2,7 @@ name = "own_assist_common" version = "0.3.0" edition = "2024" -license = "GPL-3" +license = "GPL-3.0" [dependencies] thiserror = "2.0.18" diff --git a/common/about.hbs b/common/about.hbs new file mode 100644 index 0000000..9482dca --- /dev/null +++ b/common/about.hbs @@ -0,0 +1,70 @@ + + + + + + + +
+
+

Third Party Licenses

+

This page lists the licenses of the projects used in own_assist_common.

+
+ +

Overview of licenses:

+ + +

All license text:

+ +
+ + + diff --git a/common/about.toml b/common/about.toml new file mode 120000 index 0000000..9f796a0 --- /dev/null +++ b/common/about.toml @@ -0,0 +1 @@ +../about.toml \ No newline at end of file diff --git a/common/licenses.html b/common/licenses.html new file mode 100644 index 0000000..cd6c05d --- /dev/null +++ b/common/licenses.html @@ -0,0 +1,1221 @@ + + + + + + + +
+
+

Third Party Licenses

+

This page lists the licenses of the projects used in own_assist_common.

+
+ +

Overview of licenses:

+ + +

All license text:

+ +
+ + + diff --git a/generate_licenses.sh b/generate_licenses.sh new file mode 100755 index 0000000..37dcc7b --- /dev/null +++ b/generate_licenses.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +echo "cli:" +cd cli && cargo about generate -o licenses.html about.hbs && cd .. +echo "common:" +cd common && cargo about generate -o licenses.html about.hbs && cd .. +echo "mcp_server_collection:" +cd mcp_server_collection && cargo about generate -o licenses.html about.hbs && cd .. +echo "own_mcp" +cd own_mcp && cargo about generate -o licenses.html about.hbs && cd .. diff --git a/mcp_server_collection/Cargo.toml b/mcp_server_collection/Cargo.toml index 05560d4..728e007 100644 --- a/mcp_server_collection/Cargo.toml +++ b/mcp_server_collection/Cargo.toml @@ -2,7 +2,7 @@ name = "mcp_server_collection" version = "0.2.2" edition = "2024" -license = "GPL-3" +license = "GPL-3.0" [dependencies] rmcp = { version = "1.7.0", features = ["server", "transport-streamable-http-server-session", "transport-streamable-http-server"] } diff --git a/mcp_server_collection/about.hbs b/mcp_server_collection/about.hbs new file mode 100644 index 0000000..1d802ae --- /dev/null +++ b/mcp_server_collection/about.hbs @@ -0,0 +1,70 @@ + + + + + + + +
+
+

Third Party Licenses

+

This page lists the licenses of the projects used in mcp_server_collection.

+
+ +

Overview of licenses:

+ + +

All license text:

+ +
+ + + diff --git a/mcp_server_collection/about.toml b/mcp_server_collection/about.toml new file mode 120000 index 0000000..9f796a0 --- /dev/null +++ b/mcp_server_collection/about.toml @@ -0,0 +1 @@ +../about.toml \ No newline at end of file diff --git a/mcp_server_collection/licenses.html b/mcp_server_collection/licenses.html new file mode 100644 index 0000000..fd08252 --- /dev/null +++ b/mcp_server_collection/licenses.html @@ -0,0 +1,5297 @@ + + + + + + + +
+
+

Third Party Licenses

+

This page lists the licenses of the projects used in mcp_server_collection.

+
+ +

Overview of licenses:

+ + +

All license text:

+ +
+ + + diff --git a/own_mcp/Cargo.toml b/own_mcp/Cargo.toml index d7d75c7..77a61f0 100644 --- a/own_mcp/Cargo.toml +++ b/own_mcp/Cargo.toml @@ -2,7 +2,7 @@ name = "own_mcp" version = "0.1.0" edition = "2024" -license = "GPL-3" +license = "GPL-3.0" [dependencies] ollama-rs = {version = "0.3.4", features = ["macros", "headers"]} diff --git a/own_mcp/about.hbs b/own_mcp/about.hbs new file mode 100644 index 0000000..d200eb1 --- /dev/null +++ b/own_mcp/about.hbs @@ -0,0 +1,70 @@ + + + + + + + +
+
+

Third Party Licenses

+

This page lists the licenses of the projects used in own_mcp.

+
+ +

Overview of licenses:

+ + +

All license text:

+ +
+ + + diff --git a/own_mcp/about.toml b/own_mcp/about.toml new file mode 120000 index 0000000..9f796a0 --- /dev/null +++ b/own_mcp/about.toml @@ -0,0 +1 @@ +../about.toml \ No newline at end of file diff --git a/own_mcp/licenses.html b/own_mcp/licenses.html new file mode 100644 index 0000000..bcbf072 --- /dev/null +++ b/own_mcp/licenses.html @@ -0,0 +1,6364 @@ + + + + + + + +
+
+

Third Party Licenses

+

This page lists the licenses of the projects used in own_mcp.

+
+ +

Overview of licenses:

+ + +

All license text:

+ +
+ + +