Skip to content

Commit d87215e

Browse files
committed
Adjust copyright & license headers
to explicitly mention "or later"
1 parent 79013c2 commit d87215e

10 files changed

Lines changed: 37 additions & 23 deletions

File tree

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Copyright (c) 2024 Alexander Todorov <atodorov@otb.bg>
2+
#
3+
# Licensed under GNU Affero General Public License v3 or later (AGPLv3+)
4+
# https://www.gnu.org/licenses/agpl-3.0.html
5+
16
FROM alpine:3.20 as runtime-base
27

38
RUN apk --no-cache upgrade && \

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Copyright (c) 2024 Alexander Todorov <atodorov@otb.bg>
2+
#
3+
# Licensed under GNU Affero General Public License v3 or later (AGPLv3+)
4+
# https://www.gnu.org/licenses/agpl-3.0.html
5+
16
.PHONY: flake8
27
flake8:
38
@flake8 app

action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# action.yml
1+
# Copyright (c) 2024 Alexander Todorov <atodorov@otb.bg>
2+
#
3+
# Licensed under GNU Affero General Public License v3 or later (AGPLv3+)
4+
# https://www.gnu.org/licenses/agpl-3.0.html
5+
26
name: "kiwitcms/gitops"
37
description: "development & testing swiss-army tool"
48
inputs:

app/analytics.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
Anonymous analytics via Plausible.io
33
"""
44

5-
#
65
# Copyright (c) 2024 Alexander Todorov <atodorov@otb.bg>
76
#
8-
# Licensed under the AGPL-3.0: https://www.gnu.org/licenses/agpl-3.0.html
9-
#
7+
# Licensed under GNU Affero General Public License v3 or later (AGPLv3+)
8+
# https://www.gnu.org/licenses/agpl-3.0.html
109

1110
import math
1211
import os

app/entrypoint

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ Entrypoint for the kiwitcms/gitops application!
55
This is meant to be executed as a command line application triggered
66
via a pull request comment!
77
"""
8-
#
8+
99
# Copyright (c) 2024 Alexander Todorov <atodorov@otb.bg>
1010
#
11-
# Licensed under the AGPL-3.0: https://www.gnu.org/licenses/agpl-3.0.html
12-
#
11+
# Licensed under GNU Affero General Public License v3 or later (AGPLv3+)
12+
# https://www.gnu.org/licenses/agpl-3.0.html
13+
1314
import os
1415
import sys
1516

app/events/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
somewhat defined interface!
44
"""
55

6-
# pylint: disable=missing-function-docstring
7-
#
86
# Copyright (c) 2024 Alexander Todorov <atodorov@otb.bg>
97
#
10-
# Licensed under the AGPL-3.0: https://www.gnu.org/licenses/agpl-3.0.html
11-
#
8+
# Licensed under GNU Affero General Public License v3 or later (AGPLv3+)
9+
# https://www.gnu.org/licenses/agpl-3.0.html
10+
11+
# pylint: disable=missing-function-docstring
1212

1313
import os
1414

app/utils.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
Utility functions!
33
"""
44

5-
#
65
# Copyright (c) 2024 Alexander Todorov <atodorov@otb.bg>
76
#
8-
# Licensed under the AGPL-3.0: https://www.gnu.org/licenses/agpl-3.0.html
9-
#
7+
# Licensed under GNU Affero General Public License v3 or later (AGPLv3+)
8+
# https://www.gnu.org/licenses/agpl-3.0.html
109

1110

1211
def strtobool(val):

app/vendors/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
somewhat defined interface!
44
"""
55

6-
# pylint: disable=missing-function-docstring
7-
#
86
# Copyright (c) 2024 Alexander Todorov <atodorov@otb.bg>
97
#
10-
# Licensed under the AGPL-3.0: https://www.gnu.org/licenses/agpl-3.0.html
11-
#
8+
# Licensed under GNU Affero General Public License v3 or later (AGPLv3+)
9+
# https://www.gnu.org/licenses/agpl-3.0.html
10+
11+
# pylint: disable=missing-function-docstring
1212

1313
import json
1414
import os

app/vendors/github.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
GitHub specific functionality!
33
"""
44

5-
# pylint: disable=missing-function-docstring
6-
#
75
# Copyright (c) 2024 Alexander Todorov <atodorov@otb.bg>
86
#
9-
# Licensed under the AGPL-3.0: https://www.gnu.org/licenses/agpl-3.0.html
10-
#
7+
# Licensed under GNU Affero General Public License v3 or later (AGPLv3+)
8+
# https://www.gnu.org/licenses/agpl-3.0.html
9+
10+
# pylint: disable=missing-function-docstring
1111

1212
import os
1313

app/version.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
44
Copyright (c) 2024 Alexander Todorov <atodorov@otb.bg>
55
6-
Licensed under the AGPL-3.0: https://www.gnu.org/licenses/agpl-3.0.html
6+
Licensed under GNU Affero General Public License v3 or later (AGPLv3+)
7+
https://www.gnu.org/licenses/agpl-3.0.html
78
"""
89

910
from datetime import datetime

0 commit comments

Comments
 (0)