From patchwork Sun Apr 5 19:14:37 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 26421 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 65BB4C32BB for ; Sun, 5 Apr 2026 19:14:56 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 0750162D81; Sun, 5 Apr 2026 21:14:56 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="N1uzojIw"; dkim-atps=neutral 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 93AB762D76 for ; Sun, 5 Apr 2026 21:14:52 +0200 (CEST) Received: from killaraus.ideasonboard.com (2001-14ba-703d-e500--2a1.rev.dnainternet.fi [IPv6:2001:14ba:703d:e500::2a1]) by perceval.ideasonboard.com (Postfix) with UTF8SMTPSA id 599241988 for ; Sun, 5 Apr 2026 21:13:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1775416406; bh=ws84Udqlvb8ZljK3JMRgqeeYsoVCyfmGArlsqE2kKyc=; h=From:To:Subject:Date:In-Reply-To:References:From; b=N1uzojIwLMhuXezimUZa1gTGnzIhCScPHIGWFYnAqwR0VdKK/DJOk2CFt6Jyq6QEU MnuhUMU9qn/1VDnmKOFzGjuEQ4slNQgrxgBfnIx96V7NlNYKk2PrXVKZzAII2I/8i2 7c+ESw7cnGveKtYKZKuMECBYVlK8YcvDgW4RZrkQ= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH 05/11] reuse: Update file paths in REUSE.toml Date: Sun, 5 Apr 2026 22:14:37 +0300 Message-ID: <20260405191443.1209948-6-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260405191443.1209948-1-laurent.pinchart@ideasonboard.com> References: <20260405191443.1209948-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 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: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Multiple files listed in REUSE.toml have moved within the repository without any update to the REUSE.toml file. Fix it. Signed-off-by: Laurent Pinchart --- REUSE.toml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/REUSE.toml b/REUSE.toml index 046ae4df22ce..36bfe506aa2c 100644 --- a/REUSE.toml +++ b/REUSE.toml @@ -4,26 +4,35 @@ SPDX-PackageSupplier = "Laurent Pinchart " SPDX-PackageDownloadLocation = "https://git.libcamera.org/libcamera/libcamera.git/" [[annotations]] -path = ["Documentation/binning.svg", "Documentation/camera-sensor-model.rst", "Documentation/sensor_model.svg", "Documentation/theme/static/libcamera-logo-text.svg"] +path = [ + "Documentation/binning.svg", + "Documentation/camera-sensor-model.rst", + "Documentation/images/rotation/**.svg", + "Documentation/sensor_model.svg", + "Documentation/theme/static/libcamera-logo-text.svg", +] precedence = "aggregate" SPDX-FileCopyrightText = "Copyright 2023 Ideas On Board Oy" SPDX-License-Identifier = "CC-BY-SA-4.0" [[annotations]] -path = ["src/ipa/rpi/vc4/data/**.json", "utils/raspberrypi/ctt/ctt_config_example.json", "utils/raspberrypi/ctt/ctt_ref.pgm"] +path = ["src/ipa/rpi/vc4/data/**.json"] precedence = "aggregate" SPDX-FileCopyrightText = "2019-2020 Raspberry Pi Ltd" SPDX-License-Identifier = "BSD-2-Clause" [[annotations]] -path = "src/qcam/assets/feathericons/**.svg" +path = "src/apps/qcam/assets/feathericons/**.svg" precedence = "aggregate" SPDX-FileCopyrightText = "2019 Cole Bemis (and other Feather icons contributors)" SPDX-License-Identifier = "MIT" SPDX-FileComment = "https://feathericons.com/" [[annotations]] -path = ["utils/ipc/mojo", "utils/ipc/tools"] +path = [ + "utils/codegen/ipc/mojo/**", + "utils/codegen/ipc/tools/**", +] precedence = "aggregate" SPDX-FileCopyrightText = "Copyright 2013-2020 The Chromium Authors. All rights reserved." SPDX-License-Identifier = "BSD-3-Clause"