From 7bd8ea20ddbe318b9879f2849ac8f0697838e382 Mon Sep 17 00:00:00 2001 From: Nico Alt <nicoalt@posteo.org> Date: Fri, 14 Jun 2019 20:11:52 +0200 Subject: [PATCH] Put copyright notice in more places --- .gitlab-ci.yml | 4 ++++ .pylintrc | 4 ++++ data/icons/meson.build | 4 ++++ data/meson.build | 4 ++++ meson.build | 4 ++++ po/meson.build | 4 ++++ requirements-dev.txt | 4 ++++ requirements.txt | 4 ++++ src/meson.build | 4 ++++ tools/run-tests.sh | 3 +++ tools/tests/test-pycodestyle.sh | 3 +++ tools/tests/test-pylint.sh | 3 +++ tools/tests/test-pytest.sh | 3 +++ 13 files changed, 48 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 647a4b5..bc6f583 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,7 @@ +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md + image: debian:stretch before_script: diff --git a/.pylintrc b/.pylintrc index bf12f55..d5024c6 100644 --- a/.pylintrc +++ b/.pylintrc @@ -1,3 +1,7 @@ +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md + [MASTER] disable=attribute-defined-outside-init, diff --git a/data/icons/meson.build b/data/icons/meson.build index b485c08..3c5fe25 100644 --- a/data/icons/meson.build +++ b/data/icons/meson.build @@ -1,3 +1,7 @@ +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md + icon_themes = ['hicolor'] foreach theme : icon_themes install_subdir(theme, install_dir: 'share/icons/') diff --git a/data/meson.build b/data/meson.build index 7ae1ba5..00ec5c1 100644 --- a/data/meson.build +++ b/data/meson.build @@ -1,3 +1,7 @@ +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md + desktop_file = i18n.merge_file( input: 'app.briar.gtk.desktop.in', output: 'app.briar.gtk.desktop', diff --git a/meson.build b/meson.build index 32d5132..27a9191 100644 --- a/meson.build +++ b/meson.build @@ -1,3 +1,7 @@ +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md + project( 'briar-gtk', version: '0.1.0', diff --git a/po/meson.build b/po/meson.build index 14702a5..4f1ee28 100644 --- a/po/meson.build +++ b/po/meson.build @@ -1 +1,5 @@ +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md + i18n.gettext('briar-gtk', preset: 'glib') diff --git a/requirements-dev.txt b/requirements-dev.txt index 634cc7d..6b20140 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,3 +1,7 @@ +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md + -r requirements.txt pycodestyle>=2.5.0 pylint>=2.3.1 diff --git a/requirements.txt b/requirements.txt index 12fa859..7601ca8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,6 @@ +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md + requests2>=2.16 websockets>=7.0 diff --git a/src/meson.build b/src/meson.build index 7d0bdbf..a1afe42 100644 --- a/src/meson.build +++ b/src/meson.build @@ -1,3 +1,7 @@ +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md + pkgdatadir = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name()) moduledir = join_paths(pkgdatadir, 'briar') diff --git a/tools/run-tests.sh b/tools/run-tests.sh index e67c8ea..3412901 100755 --- a/tools/run-tests.sh +++ b/tools/run-tests.sh @@ -1,4 +1,7 @@ #!/usr/bin/env bash +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md set -e -x diff --git a/tools/tests/test-pycodestyle.sh b/tools/tests/test-pycodestyle.sh index 07d2db6..1b4d28e 100755 --- a/tools/tests/test-pycodestyle.sh +++ b/tools/tests/test-pycodestyle.sh @@ -1,3 +1,6 @@ #!/usr/bin/env bash +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md pycodestyle --show-source --show-pep8 src tests diff --git a/tools/tests/test-pylint.sh b/tools/tests/test-pylint.sh index 75bbf1c..427e9b3 100755 --- a/tools/tests/test-pylint.sh +++ b/tools/tests/test-pylint.sh @@ -1,3 +1,6 @@ #!/usr/bin/env bash +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md pylint src tests diff --git a/tools/tests/test-pytest.sh b/tools/tests/test-pytest.sh index 2f9a7bf..4c8d078 100755 --- a/tools/tests/test-pytest.sh +++ b/tools/tests/test-pytest.sh @@ -1,3 +1,6 @@ #!/usr/bin/env bash +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md PYTHONPATH=src pytest --cov=src tests/ -- GitLab