File: Extend-docs-conf.py-for-offline-build.patch

package info (click to toggle)
rocprim 6.4.3-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 11,428 kB
  • sloc: cpp: 153,383; python: 1,397; sh: 404; xml: 217; makefile: 119
file content (25 lines) | stat: -rw-r--r-- 742 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From: Christian Kastner <ckk@debian.org>
Date: Sat, 28 Jun 2025 00:45:04 +0200
Subject: Extend docs/conf.py for offline build

By setting these extra variables, we can suppress a remote call which
would cause the build to fail.

Forwarded: not-needed
---
 docs/conf.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/docs/conf.py b/docs/conf.py
index 58c7445..389abb8 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -53,6 +53,8 @@ doxygen_project = {
 
 external_projects = []
 external_projects_current_project = "rocprim"
+external_projects_remote_repository = ""
+external_projects_remote_branch = ""
 
 cpp_id_attributes = ["__global__", "__device__", "__host__", "__forceinline__", "static"]
 cpp_paren_attributes = ["__declspec"]