summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornytpu <alex@nytpu.com>2021-03-26 11:10:04 -0600
committernytpu <alex@nytpu.com>2021-03-26 11:10:04 -0600
commit41683edee4a2f4b03798e37a5dfdbe9f98c9b057 (patch)
tree554a060fa130b63e32e7314cf39a60d6c8692ffc
parentc3059d57d82da06cd646fb5913eb4f6147451936 (diff)
relicense to AGPL 3.0 only
-rw-r--r--README.md5
-rw-r--r--comitium.go2
-rw-r--r--core/core.go2
-rw-r--r--core/entries.go2
-rw-r--r--core/structs.go2
-rw-r--r--fetch/fetch.go2
-rw-r--r--fetch/gemini.go2
-rw-r--r--fetch/gopher.go2
-rw-r--r--fetch/http.go2
-rw-r--r--flags.go2
-rw-r--r--version.go2
11 files changed, 12 insertions, 13 deletions
diff --git a/README.md b/README.md
index fc6d62e..8e40f32 100644
--- a/README.md
+++ b/README.md
@@ -130,9 +130,8 @@ Send patches and issue reports to
`comitium` is Copyright © 2021 nytpu.
-`comitium` is licensed under the terms of the GNU Affero General Public
-License, either version 3 of the License, or (at your option) any later
-version. For more information, see [LICENSE][] or the [GNU website][agpl-3]
+`comitium` is licensed under the terms of the GNU Affero General Public License,
+version 3. For more information, see [LICENSE][] or the [GNU website][agpl-3]
[LICENSE]: LICENSE
diff --git a/comitium.go b/comitium.go
index 0fffb58..2126956 100644
--- a/comitium.go
+++ b/comitium.go
@@ -1,5 +1,5 @@
// Copyright (C) 2021 nytpu
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: AGPL-3.0-only
// For more license details, see LICENSE or <https://www.gnu.org/licenses/agpl-3.0.html>.
// comitium is a feed aggregator for gemini. see README.md for more details and
diff --git a/core/core.go b/core/core.go
index b7d1858..71738a8 100644
--- a/core/core.go
+++ b/core/core.go
@@ -1,5 +1,5 @@
// Copyright (C) 2021 nytpu
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: AGPL-3.0-only
// For more license details, see LICENSE or <https://www.gnu.org/licenses/agpl-3.0.html>.
// This file incorporates code from makeworld's amfora:
diff --git a/core/entries.go b/core/entries.go
index 0a16d23..b1b5c05 100644
--- a/core/entries.go
+++ b/core/entries.go
@@ -1,5 +1,5 @@
// Copyright (C) 2021 nytpu
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: AGPL-3.0-only
// For more license details, see LICENSE or <https://www.gnu.org/licenses/agpl-3.0.html>.
// This file incorporates code from makeworld's amfora:
diff --git a/core/structs.go b/core/structs.go
index fbbd169..caab676 100644
--- a/core/structs.go
+++ b/core/structs.go
@@ -1,5 +1,5 @@
// Copyright (C) 2021 nytpu
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: AGPL-3.0-only
// For more license details, see LICENSE or <https://www.gnu.org/licenses/agpl-3.0.html>.
// This file incorporates code from makeworld's amfora:
diff --git a/fetch/fetch.go b/fetch/fetch.go
index d6d9fe6..8895fda 100644
--- a/fetch/fetch.go
+++ b/fetch/fetch.go
@@ -1,5 +1,5 @@
// Copyright (C) 2021 nytpu
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: AGPL-3.0-only
// For more license details, see LICENSE or <https://www.gnu.org/licenses/agpl-3.0.html>.
// package fetch implements routines for fetching gemini, gopher, and http
diff --git a/fetch/gemini.go b/fetch/gemini.go
index 0fbb3ec..df4d490 100644
--- a/fetch/gemini.go
+++ b/fetch/gemini.go
@@ -1,5 +1,5 @@
// Copyright (C) 2021 nytpu
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: AGPL-3.0-only
// For more license details, see LICENSE or <https://www.gnu.org/licenses/agpl-3.0.html>.
// This file incorporates code from Drew DeVault's gemreader:
diff --git a/fetch/gopher.go b/fetch/gopher.go
index 9fe425a..6c50be5 100644
--- a/fetch/gopher.go
+++ b/fetch/gopher.go
@@ -1,5 +1,5 @@
// Copyright (C) 2021 nytpu
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: AGPL-3.0-only
// For more license details, see LICENSE or <https://www.gnu.org/licenses/agpl-3.0.html>.
package fetch
diff --git a/fetch/http.go b/fetch/http.go
index db84759..bd2ff7a 100644
--- a/fetch/http.go
+++ b/fetch/http.go
@@ -1,5 +1,5 @@
// Copyright (C) 2021 nytpu
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: AGPL-3.0-only
// For more license details, see LICENSE or <https://www.gnu.org/licenses/agpl-3.0.html>.
// This file incorporates code from Drew DeVault's gemreader:
diff --git a/flags.go b/flags.go
index 3967da8..cac8f88 100644
--- a/flags.go
+++ b/flags.go
@@ -1,5 +1,5 @@
// Copyright (C) 2021 nytpu
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: AGPL-3.0-only
// For more license details, see LICENSE or <https://www.gnu.org/licenses/agpl-3.0.html>.
package main
diff --git a/version.go b/version.go
index 7ea6fa6..113d5f6 100644
--- a/version.go
+++ b/version.go
@@ -1,5 +1,5 @@
// Copyright (C) 2021 nytpu
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: AGPL-3.0-only
// For more license details, see LICENSE or <https://www.gnu.org/licenses/agpl-3.0.html>.
package main