summaryrefslogtreecommitdiffstats
path: root/debian/patches/move_sphinxcontrib_to_extras_require.diff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 17:25:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 17:25:44 +0000
commite20628db512128d3a5c66360943462b83da5f049 (patch)
treed0c586bb2b3ce26a240c5fb0765982ce87d53816 /debian/patches/move_sphinxcontrib_to_extras_require.diff
parentAdding upstream version 7.2.6. (diff)
downloadsphinx-e20628db512128d3a5c66360943462b83da5f049.tar.xz
sphinx-e20628db512128d3a5c66360943462b83da5f049.zip
Adding debian version 7.2.6-6.debian/7.2.6-6
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/move_sphinxcontrib_to_extras_require.diff')
-rw-r--r--debian/patches/move_sphinxcontrib_to_extras_require.diff40
1 files changed, 40 insertions, 0 deletions
diff --git a/debian/patches/move_sphinxcontrib_to_extras_require.diff b/debian/patches/move_sphinxcontrib_to_extras_require.diff
new file mode 100644
index 0000000..9fa47ea
--- /dev/null
+++ b/debian/patches/move_sphinxcontrib_to_extras_require.diff
@@ -0,0 +1,40 @@
+From: Dmitry Shachnev <mitya57@debian.org>
+Date: Fri, 7 Feb 2020 13:59:30 +0300
+Subject: Move sphinxcontrib modules to extras_require
+
+---
+ pyproject.toml | 14 ++++++++------
+ 1 file changed, 8 insertions(+), 6 deletions(-)
+
+diff --git a/pyproject.toml b/pyproject.toml
+index 0a9bc9e..6383e31 100644
+--- a/pyproject.toml
++++ b/pyproject.toml
+@@ -55,12 +55,6 @@ classifiers = [
+ "Topic :: Utilities",
+ ]
+ dependencies = [
+- "sphinxcontrib-applehelp",
+- "sphinxcontrib-devhelp",
+- "sphinxcontrib-jsmath",
+- "sphinxcontrib-htmlhelp>=2.0.0",
+- "sphinxcontrib-serializinghtml>=1.1.9",
+- "sphinxcontrib-qthelp",
+ "Jinja2>=3.0",
+ "Pygments>=2.14",
+ "docutils>=0.18.1,<0.21",
+@@ -96,6 +90,14 @@ test = [
+ "setuptools>=67.0", # for Cython compilation
+ "filelock",
+ ]
++sphinxcontrib = [
++ "sphinxcontrib-applehelp",
++ "sphinxcontrib-devhelp",
++ "sphinxcontrib-jsmath",
++ "sphinxcontrib-htmlhelp>=2.0.0",
++ "sphinxcontrib-serializinghtml>=1.1.9",
++ "sphinxcontrib-qthelp",
++]
+
+ [[project.authors]]
+ name = "Georg Brandl"