From patchwork Sun Jul 27 01:57:11 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 23981 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 3DB31BDCC1 for ; Sun, 27 Jul 2025 01:57:32 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 0056669123; Sun, 27 Jul 2025 03:57:30 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="f1OOPkZm"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 39E6369120 for ; Sun, 27 Jul 2025 03:57:28 +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 EC034351 for ; Sun, 27 Jul 2025 03:56:46 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1753581407; bh=afYQvywJevamAupropQ9mXxNLCDinpj1my8WJH9GSEw=; h=From:To:Subject:Date:In-Reply-To:References:From; b=f1OOPkZmNPOkXF5myyl4kLPfniXJRQVdob3X445Hc4RGZqI3nk/q2W/pYTd1sG9DO Zi8VQK9o9hGV2O88PpSrPsW7D/KfkY1KJyIBq9YEzQtUUfsvKUTr1KybYGbaaUrEgN f/kgTtWWJLkffNrTRQCG63tXxxLezcO1MRUvlFDM= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH 1/4] Documentation: Remove unneeded options from Sphinx configuration Date: Sun, 27 Jul 2025 04:57:11 +0300 Message-ID: <20250727015720.6867-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.49.1 In-Reply-To: <20250727015720.6867-1-laurent.pinchart@ideasonboard.com> References: <20250727015720.6867-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 --- 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']