From 3f389bc98e776241f2090ecf955b3e361a56d8ba Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 8 Nov 2023 03:24:09 +0000 Subject: [PATCH] reuse: fix duplicate copyright warning ``` /opt/venv/lib/python3.10/site-packages/reuse/project.py:224: PendingDeprecationWarning: Copyright and licensing information for 'tests/openssh_server/Dockerfile' has been found in both 'tests/openssh_server/Dockerfile' and in the DEP5 file located at '.reuse/dep5'. The information for these two sources has been aggregated. In the future this behaviour will change, and you will need to explicitly enable aggregation. See . You need do nothing yet. Run with `--suppress-deprecation` to hide this warning. ``` Ref: https://github.com/libssh2/libssh2/actions/runs/6789274955/job/18456085964#step:4:4 --- .reuse/dep5 | 7 ++++++- tests/openssh_server/Dockerfile | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.reuse/dep5 b/.reuse/dep5 index f9894aac5a..8e91ab515e 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -4,7 +4,12 @@ Upstream-Contact: The libssh2 team Source: https://libssh2.org/ # Test data -Files: tests/openssh_server/* tests/ossfuzz/* tests/key_* tests/test_read_algos.txt ci/spellcheck-words.txt +Files: tests/ossfuzz/* tests/key_* tests/test_read_algos.txt ci/spellcheck-words.txt +Copyright: The libssh2 project and its contributors. +License: BSD-3-Clause + +# Test server +Files: tests/openssh_server/.gitattributes tests/openssh_server/authorized_keys tests/openssh_server/ca_* tests/openssh_server/ssh_* tests/openssh_server/sshd_config Copyright: The libssh2 project and its contributors. License: BSD-3-Clause diff --git a/tests/openssh_server/Dockerfile b/tests/openssh_server/Dockerfile index 046082fdbe..08977aa6bc 100644 --- a/tests/openssh_server/Dockerfile +++ b/tests/openssh_server/Dockerfile @@ -1,4 +1,5 @@ # Copyright (C) Alexander Lamaison +# SPDX-License-Identifier: BSD-3-Clause FROM debian:testing-slim