From patchwork Fri Jun 5 18:38:32 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 3958 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id B16A860410 for ; Fri, 5 Jun 2020 20:38:57 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="DyBpX+WY"; dkim-atps=neutral Received: from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi [81.175.216.236]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 470852BB for ; Fri, 5 Jun 2020 20:38:57 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1591382337; bh=+J5RoBh21Z7ksGZqXLxnycMYEdHXiz6QT3cDhQqScto=; h=From:To:Subject:Date:In-Reply-To:References:From; b=DyBpX+WYQrUR/6FRaaAGgZw+5d9JO9BNSOJxqiETq3RJMA1FGAPwbVKaO9rnJxlj6 oul2rHxM9T2FYE0VMyx5ku3AdpIpb2fTAhualnHoPx7/P2Ujh/dHIOLKex9db15xTe 4m5XTzlWfCOmNye6U17UfYh8+TpUFtErL5N0u1DY= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Fri, 5 Jun 2020 21:38:32 +0300 Message-Id: <20200605183833.8125-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200605183833.8125-1-laurent.pinchart@ideasonboard.com> References: <20200605183833.8125-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 2/3] libcamera: Use DEP5 to specify license of files that don't support SPDX X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jun 2020 18:38:58 -0000 Some files can't use SPDX as they don't support comments. This is the case of the JSON files used by the Raspberry Pi IPA and camera tuning tools, as well as the PGM reference picture in the camera tuning tool. The REUSE specification allows handling this case in two different ways: - Adding a ${file}.license file containing the license specification alongside each file. - Adding a .reuse/dep5 file, in Debian machine-readable copyright format (as specified in https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/). The first option isn't practical, use the latter. Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund --- .reuse/dep5 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .reuse/dep5 diff --git a/.reuse/dep5 b/.reuse/dep5 new file mode 100644 index 000000000000..c05441cfb270 --- /dev/null +++ b/.reuse/dep5 @@ -0,0 +1,10 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: libcamera +Upstream-Contact: Laurent Pinchart +Source: https://git.linuxtv.org/libcamera.git/ + +Files: src/ipa/raspberrypi/data/*.json + utils/raspberrypi/ctt/ctt_config_example.json + utils/raspberrypi/ctt/ctt_ref.pgm +Copyright: 2019-2020 Raspberry Pi (Trading) Ltd. +License: BSD-2-Clause