From patchwork Tue Jul 29 20:42:24 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 24032 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 C0E5ABDC71 for ; Tue, 29 Jul 2025 20:42:42 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 66D4D691F5; Tue, 29 Jul 2025 22:42:41 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="q8cpZYUN"; 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 CBCF3691E6 for ; Tue, 29 Jul 2025 22:42:38 +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 D27E342B for ; Tue, 29 Jul 2025 22:41:55 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1753821716; bh=SYIKIem8WWJPl6/RrU22LyqlC57kbXAVjnC4UAt5MKg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=q8cpZYUNz/ccb3vs/tHHYZxNt/sRVsuKMpb42Hujat30eR9HnHarR7uUGL6E4/IZm 0qfvt5+PC3BZK7IWqBJ+JGUDXlTGCJW4liDJtyRoV0zByfIJkWkCBGocVlfESOUsL7 BOrk45rHx5FklcK1XXbTAsldRIYzBGB8IJ1Z8tu4= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH v2 1/4] Documentation: Remove unneeded options from Sphinx configuration Date: Tue, 29 Jul 2025 23:42:24 +0300 Message-ID: <20250729204228.23217-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.49.1 In-Reply-To: <20250729204228.23217-1-laurent.pinchart@ideasonboard.com> References: <20250729204228.23217-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']