From patchwork Tue Aug 30 12:19:06 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 17260 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 989E4C3272 for ; Tue, 30 Aug 2022 12:19:23 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 64C6F61FC6; Tue, 30 Aug 2022 14:19:23 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1661861963; bh=pCqQ2JLR/5t/3pMkAIHiI3o1/vcJkWGxHn9WceUriPs=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=ii63J0cD53VweSgkheKVFy9vBsC8FpRUsRona68Jzc0oQDNMIUuJ8ynFlX3tm8Tb1 oQvWRD4o76SOP7AyvuhjAYRehi+bs3RijkSacvhEniKzUr8FyBgxHQZ2fExkFsfPsS 1Z3vSFoKw6ouvAHyNhebYyD3aj0k/oWj59SowpB/ENd+75aUbc2I1ovChA7MfHFG1j lbQROt8QhF2hRiSp+i02ynbSpUqiFxdt86wIgHICS6NuDjtHedmIypxlulx6pnyIwC NolbfeG2rNCiWpfD3JNCxj3R15j5LRzouxdRIYJ1Iog89nPduND4BC+JCyELEuuj9d WZuoakW1PK4eA== 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 AF4B161F9C for ; Tue, 30 Aug 2022 14:19:19 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="BF+lcAxs"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 42D10481 for ; Tue, 30 Aug 2022 14:19:19 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1661861959; bh=pCqQ2JLR/5t/3pMkAIHiI3o1/vcJkWGxHn9WceUriPs=; h=From:To:Subject:Date:In-Reply-To:References:From; b=BF+lcAxsytkcwZzScBCg2J29rvNogQvmSkYodhTzlRAuot/fhfWr5+wZmozeQfhbC ZrpoZGYcjH4HzTTUl22K4j24wcleOgzOViQ56h0sS5Zm1DI5b4NP+uwlF430bzi0mM YIhkjoH/COtnPBtMXLzSI2ihl/aixThaHMeBsC+M= To: libcamera-devel@lists.libcamera.org Date: Tue, 30 Aug 2022 15:19:06 +0300 Message-Id: <20220830121906.25364-3-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220830121906.25364-1-laurent.pinchart@ideasonboard.com> References: <20220830121906.25364-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 2/2] Documentation: Align Doxyfile.in style with doxygen 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-Patchwork-Original-From: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Align the style of Doxyfile.in with the `doxygen -g` output, to minimize diffs in the future when updating the file with `doxygen -u`. This includes - Replacing tabs with spaces - Replacing += with \ to continue lines - Dropping the \ on the last line of an option Also update the Doxygen version number to indicate that the file has been updated to v1.9.5, even if no modification to the options in use were needed. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- Documentation/Doxyfile.in | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/Documentation/Doxyfile.in b/Documentation/Doxyfile.in index 0011b82f2353..88dfcddaebf6 100644 --- a/Documentation/Doxyfile.in +++ b/Documentation/Doxyfile.in @@ -1,5 +1,5 @@ # SPDX-License-Identifier: CC-BY-SA-4.0 -# Doxyfile 1.8.14 +# Doxyfile 1.9.5 PROJECT_NAME = "libcamera" PROJECT_NUMBER = "@VERSION@" @@ -9,9 +9,9 @@ OUTPUT_DIRECTORY = Documentation STRIP_FROM_PATH = "@TOP_SRCDIR@" -ALIASES = "context=\xrefitem context \"Thread Safety\" \"Thread Safety\"" -ALIASES += "threadbound=\ref thread-bound \"thread-bound\"" -ALIASES += "threadsafe=\ref thread-safe \"thread-safe\"" +ALIASES = "context=\xrefitem context \"Thread Safety\" \"Thread Safety\"" \ + "threadbound=\ref thread-bound \"thread-bound\"" \ + "threadsafe=\ref thread-safe \"thread-safe\"" EXTENSION_MAPPING = h=C++ @@ -23,10 +23,10 @@ QUIET = YES INPUT = "@TOP_SRCDIR@/include/libcamera" \ "@TOP_SRCDIR@/src/ipa/ipu3" \ - "@TOP_SRCDIR@/src/ipa/libipa" \ - "@TOP_SRCDIR@/src/libcamera" \ - "@TOP_BUILDDIR@/include/libcamera" \ - "@TOP_BUILDDIR@/src/libcamera" + "@TOP_SRCDIR@/src/ipa/libipa" \ + "@TOP_SRCDIR@/src/libcamera" \ + "@TOP_BUILDDIR@/include/libcamera" \ + "@TOP_BUILDDIR@/src/libcamera" FILE_PATTERNS = *.c \ *.cpp \ @@ -35,23 +35,23 @@ FILE_PATTERNS = *.c \ RECURSIVE = YES EXCLUDE = @TOP_SRCDIR@/include/libcamera/base/span.h \ - @TOP_SRCDIR@/include/libcamera/internal/device_enumerator_sysfs.h \ - @TOP_SRCDIR@/include/libcamera/internal/device_enumerator_udev.h \ - @TOP_SRCDIR@/include/libcamera/internal/ipc_pipe_unixsocket.h \ - @TOP_SRCDIR@/src/libcamera/device_enumerator_sysfs.cpp \ - @TOP_SRCDIR@/src/libcamera/device_enumerator_udev.cpp \ - @TOP_SRCDIR@/src/libcamera/ipc_pipe_unixsocket.cpp \ - @TOP_SRCDIR@/src/libcamera/pipeline/ \ - @TOP_SRCDIR@/src/libcamera/tracepoints.cpp \ - @TOP_BUILDDIR@/include/libcamera/internal/tracepoints.h \ - @TOP_BUILDDIR@/src/libcamera/proxy/ + @TOP_SRCDIR@/include/libcamera/internal/device_enumerator_sysfs.h \ + @TOP_SRCDIR@/include/libcamera/internal/device_enumerator_udev.h \ + @TOP_SRCDIR@/include/libcamera/internal/ipc_pipe_unixsocket.h \ + @TOP_SRCDIR@/src/libcamera/device_enumerator_sysfs.cpp \ + @TOP_SRCDIR@/src/libcamera/device_enumerator_udev.cpp \ + @TOP_SRCDIR@/src/libcamera/ipc_pipe_unixsocket.cpp \ + @TOP_SRCDIR@/src/libcamera/pipeline/ \ + @TOP_SRCDIR@/src/libcamera/tracepoints.cpp \ + @TOP_BUILDDIR@/include/libcamera/internal/tracepoints.h \ + @TOP_BUILDDIR@/src/libcamera/proxy/ EXCLUDE_PATTERNS = @TOP_BUILDDIR@/include/libcamera/ipa/*_serializer.h \ @TOP_BUILDDIR@/include/libcamera/ipa/*_proxy.h \ @TOP_BUILDDIR@/include/libcamera/ipa/ipu3_*.h \ @TOP_BUILDDIR@/include/libcamera/ipa/raspberrypi_*.h \ @TOP_BUILDDIR@/include/libcamera/ipa/rkisp1_*.h \ - @TOP_BUILDDIR@/include/libcamera/ipa/vimc_*.h \ + @TOP_BUILDDIR@/include/libcamera/ipa/vimc_*.h EXCLUDE_SYMBOLS = libcamera::BoundMethodArgs \ libcamera::BoundMethodBase \