From 7b81a32430f399bf058820454cd04cf776c1fabe Mon Sep 17 00:00:00 2001 From: iff Date: Tue, 10 Dec 2024 19:02:10 +0100 Subject: [PATCH] chore: update LICENSE --- .github/workflows/build.yaml | 1 + core/Cargo.toml | 4 ++-- module-request-ai/Cargo.toml | 2 +- parser/Cargo.toml | 2 +- utils/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 38d4400..4652520 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -81,6 +81,7 @@ jobs: if: ${{ matrix.deb == true }} run: | cargo install cargo-deb --locked + cp LICENSE target/${{ matrix.target }}/release cargo deb -p pay-respects --no-build --no-strip --output . --target ${{ matrix.target }} - name: zipping files (unix) diff --git a/core/Cargo.toml b/core/Cargo.toml index e48a8ff..8be71fe 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://codeberg.org/iff/pay-respects" repository = "https://github.com/iffse/pay-respects" keywords = ["cli", "terminal", "utility", "shell"] categories = ["command-line-utilities"] -license = "AGPL-3.0" +license = "AGPL-3.0-or-later" include = ["**/*.rs", "**/*.toml"] [dependencies] @@ -31,7 +31,7 @@ assets = [ ["target/release/pay-respects", "usr/bin/", "755"], ["target/release/_pay-respects-module-100-runtime-rules", "usr/bin/", "755"], ["target/release/_pay-respects-fallback-100-request-ai", "usr/bin/", "755"], - ["LICENSE", "usr/share/doc/pay-respects/", "644"], + ["target/release/LICENSE", "usr/share/doc/pay-respects/", "644"], ] priority = "optional" section = "utils" diff --git a/module-request-ai/Cargo.toml b/module-request-ai/Cargo.toml index f8166db..4e8f301 100644 --- a/module-request-ai/Cargo.toml +++ b/module-request-ai/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" description = "AI request module for the pay-respects CLI tool" homepage = "https://codeberg.org/iff/pay-respects" repository = "https://github.com/iffse/pay-respects" -license = "AGPL-3.0" +license = "AGPL-3.0-or-later" include = ["**/*.rs"] [dependencies] diff --git a/parser/Cargo.toml b/parser/Cargo.toml index a5f0240..6c5395e 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # for crates.io description = "Compile time rule parser for the pay-respects CLI tool" repository = "https://github.com/iffse/pay-respects" -license = "AGPL-3.0" +license = "AGPL-3.0-or-later" include = [ "**/*.rs", "**/*.toml", diff --git a/utils/Cargo.toml b/utils/Cargo.toml index db7470b..b99d8e4 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" description = "Utilities for the pay-respects CLI tool" homepage = "https://codeberg.org/iff/pay-respects" repository = "https://github.com/iffse/pay-respects" -license = "AGPL-3.0" +license = "AGPL-3.0-or-later" include = ["**/*.rs"] [dependencies]