From patchwork Wed Jul 30 11:50:42 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 24040 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 4C5D2C32B5 for ; Wed, 30 Jul 2025 11:50:59 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id D314169202; Wed, 30 Jul 2025 13:50:57 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="hBtQGT5y"; 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 90A21691FF for ; Wed, 30 Jul 2025 13:50:55 +0200 (CEST) Received: from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi [81.175.209.231]) by perceval.ideasonboard.com (Postfix) with UTF8SMTPSA id 0256EA57 for ; Wed, 30 Jul 2025 13:50:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1753876212; bh=SYIKIem8WWJPl6/RrU22LyqlC57kbXAVjnC4UAt5MKg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=hBtQGT5y9o3CTRmUaPGDqIlitI6h+IFctAHd39w7CryOypoXwAX3pr9nmU9mJjmV4 wbN35ibYt6OeI/H6MEb5dS4VswVluQoAP0+S4oHPiJfjs2MjTfKqqjrMo/36AqvXAk QrcDklS9BITxLnf3Sx4y3CSgk60Vb238p3vF7NAY= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH v3 1/3] Documentation: Remove unneeded options from Sphinx configuration Date: Wed, 30 Jul 2025 14:50:42 +0300 Message-ID: <20250730115045.3481-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.49.1 In-Reply-To: <20250730115045.3481-1-laurent.pinchart@ideasonboard.com> References: <20250730115045.3481-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" libcamera only generates HTML documentation. Drop the unused configuration options for other output formats, as well as unneeded entries in the exclude patterns. Signed-off-by: Laurent Pinchart Reviewed-by: Stefan Klug --- Documentation/conf.py | 78 ------------------------------------------- 1 file changed, 78 deletions(-) diff --git a/Documentation/conf.py b/Documentation/conf.py index 089f114c11d5..7d05fc9abcd3 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -65,9 +65,6 @@ language = 'en' # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. exclude_patterns = [ - '_build', - 'Thumbs.db', - '.DS_Store', 'documentation-contents.rst', ] @@ -103,78 +100,3 @@ html_static_path = [] # 'searchbox.html']``. # # html_sidebars = {} - - -# -- Options for HTMLHelp output --------------------------------------------- - -# Output file base name for HTML help builder. -htmlhelp_basename = 'libcameradoc' - - -# -- Options for LaTeX output ------------------------------------------------ - -latex_elements = { - # The paper size ('letterpaper' or 'a4paper'). - # - # 'papersize': 'letterpaper', - - # The font size ('10pt', '11pt' or '12pt'). - # - # 'pointsize': '10pt', - - # Additional stuff for the LaTeX preamble. - # - # 'preamble': '', - - # Latex figure (float) alignment - # - # 'figure_align': 'htbp', -} - -# Grouping the document tree into LaTeX files. List of tuples -# (source start file, target name, title, -# author, documentclass [howto, manual, or own class]). -latex_documents = [ - (master_doc, 'libcamera.tex', 'libcamera Documentation', - author, 'manual'), -] - - -# -- Options for manual page output ------------------------------------------ - -# One entry per manual page. List of tuples -# (source start file, name, description, authors, manual section). -man_pages = [ - (master_doc, 'libcamera', 'libcamera Documentation', - [author], 1) -] - - -# -- Options for Texinfo output ---------------------------------------------- - -# Grouping the document tree into Texinfo files. List of tuples -# (source start file, target name, title, author, -# dir menu entry, description, category) -texinfo_documents = [ - (master_doc, 'libcamera', 'libcamera Documentation', - author, 'libcamera', 'One line description of project.', - 'Miscellaneous'), -] - - -# -- Options for Epub output ------------------------------------------------- - -# Bibliographic Dublin Core info. -epub_title = project - -# The unique identifier of the text. This can be a ISBN number -# or the project homepage. -# -# epub_identifier = '' - -# A unique identification for the text. -# -# epub_uid = '' - -# A list of files that should not be packed into the epub file. -epub_exclude_files = ['search.html']