From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 376B015838C for ; Fri, 26 Jan 2024 20:22:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 212B8E29DB; Fri, 26 Jan 2024 20:22:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C7EB1E29D8 for ; Fri, 26 Jan 2024 20:22:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0B7BD3433C4 for ; Fri, 26 Jan 2024 20:22:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B25D1362 for ; Fri, 26 Jan 2024 20:22:31 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1706298950.d1cf9285ec363388ee1809ae5a367c6507c31b83.arthurzam@gentoo> Subject: [gentoo-commits] proj/pkgcore/pkgdev:main commit in: doc/ X-VCS-Repository: proj/pkgcore/pkgdev X-VCS-Files: doc/conf.py X-VCS-Directories: doc/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: d1cf9285ec363388ee1809ae5a367c6507c31b83 X-VCS-Branch: main Date: Fri, 26 Jan 2024 20:22:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e892eb00-a394-41f2-901a-03ed040252be X-Archives-Hash: 21dbb2543f5ef76cbd77d7264a437daa commit: d1cf9285ec363388ee1809ae5a367c6507c31b83 Author: Brian Harring gmail com> AuthorDate: Fri Jan 26 19:55:50 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Jan 26 19:55:50 2024 +0000 URL: https://gitweb.gentoo.org/proj/pkgcore/pkgdev.git/commit/?id=d1cf9285 fix(docs): Add intersphinx_mapping This fixes any documentation links to the enumerated projects. Signed-off-by: Brian Harring gmail.com> doc/conf.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/conf.py b/doc/conf.py index 7f042c1..7ef0346 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -324,3 +324,10 @@ epub_exclude_files = ["search.html"] # If false, no index is generated. # epub_use_index = True + +intersphinx_mapping = { + "python": ("https://docs.python.org/3", None), +} +intersphinx_mapping.update( + (x, (f"https://pkgcore.github.io/{x}", None)) for x in "pkgcheck pkgcore snakeoil".split() +)