From a9a9fa45506fb04a4195681e030f8044eba6a43f Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 3 Aug 2021 18:48:01 +0100 Subject: [PATCH] dosngrade to GPLv3+ We don't want to impose AGPLv3+ on the users of the client. this is possible becuse all files here are either entirely by me recently and/or from GPL (non-AGPL) parts of the Python hippotat. Signed-off-by: Ian Jackson --- Cargo.toml | 2 +- macros/Cargo.toml | 2 +- macros/macros.rs | 2 +- src/bin/client.rs | 2 +- src/config.rs | 2 +- src/lib.rs | 2 +- src/prelude.rs | 2 +- src/reporter.rs | 2 +- src/slip.rs | 2 +- src/types.rs | 2 +- src/utils.rs | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f9e5ee6..3092150 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ # Copyright 2021 Ian Jackson and contributors to Hippotat -# SPDX-License-Identifier: AGPL-3.0-or-later +# SPDX-License-Identifier: GPL-3.0-or-later # There is NO WARRANTY. [package] diff --git a/macros/Cargo.toml b/macros/Cargo.toml index e71c494..172a33f 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,5 +1,5 @@ # Copyright 2021 Ian Jackson and contributors to Hippotat -# SPDX-License-Identifier: AGPL-3.0-or-later +# SPDX-License-Identifier: GPL-3.0-or-later # There is NO WARRANTY. [package] diff --git a/macros/macros.rs b/macros/macros.rs index 59a5823..ffb1772 100644 --- a/macros/macros.rs +++ b/macros/macros.rs @@ -1,5 +1,5 @@ // Copyright 2021 Ian Jackson and contributors to Hippotat -// SPDX-License-Identifier: AGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // There is NO WARRANTY. use syn::{parse_macro_input, parse_quote}; diff --git a/src/bin/client.rs b/src/bin/client.rs index 656b4b9..a87c6d1 100644 --- a/src/bin/client.rs +++ b/src/bin/client.rs @@ -1,5 +1,5 @@ // Copyright 2021 Ian Jackson and contributors to Hippotat -// SPDX-License-Identifier: AGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // There is NO WARRANTY. use hippotat::prelude::*; diff --git a/src/config.rs b/src/config.rs index eaa9da3..92c584b 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,5 +1,5 @@ // Copyright 2021 Ian Jackson and contributors to Hippotat -// SPDX-License-Identifier: AGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // There is NO WARRANTY. use crate::prelude::*; diff --git a/src/lib.rs b/src/lib.rs index 562f1bc..7a3c2ca 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ // Copyright 2021 Ian Jackson and contributors to Hippotat -// SPDX-License-Identifier: AGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // There is NO WARRANTY. /* diff --git a/src/prelude.rs b/src/prelude.rs index 7d2b4b8..fd3c50b 100644 --- a/src/prelude.rs +++ b/src/prelude.rs @@ -1,5 +1,5 @@ // Copyright 2021 Ian Jackson and contributors to Hippotat -// SPDX-License-Identifier: AGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // There is NO WARRANTY. pub use std::array; diff --git a/src/reporter.rs b/src/reporter.rs index 55e645e..ec6fcb0 100644 --- a/src/reporter.rs +++ b/src/reporter.rs @@ -1,5 +1,5 @@ // Copyright 2021 Ian Jackson and contributors to Hippotat -// SPDX-License-Identifier: AGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // There is NO WARRANTY. use crate::prelude::*; diff --git a/src/slip.rs b/src/slip.rs index ab90054..110fc03 100644 --- a/src/slip.rs +++ b/src/slip.rs @@ -1,5 +1,5 @@ // Copyright 2021 Ian Jackson and contributors to Hippotat -// SPDX-License-Identifier: AGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // There is NO WARRANTY. use crate::prelude::*; diff --git a/src/types.rs b/src/types.rs index 5786715..145018a 100644 --- a/src/types.rs +++ b/src/types.rs @@ -1,5 +1,5 @@ // Copyright 2021 Ian Jackson and contributors to Hippotat -// SPDX-License-Identifier: AGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // There is NO WARRANTY. use crate::prelude::*; diff --git a/src/utils.rs b/src/utils.rs index 8a8d034..37984e5 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -1,5 +1,5 @@ // Copyright 2021 Ian Jackson and contributors to Hippotat -// SPDX-License-Identifier: AGPL-3.0-or-later +// SPDX-License-Identifier: GPL-3.0-or-later // There is NO WARRANTY. use crate::prelude::*; -- 2.30.2