diff options
author | Remi Collet <remi@remirepo.net> | 2020-12-26 07:04:49 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-12-26 07:04:49 +0100 |
commit | f8dd62650c843d4757a29b13433c0f5635910198 (patch) | |
tree | c6f26c733b66664d58a5254fbe80bed08077b051 /102.patch | |
parent | c503863ef5cc1e34c181615cd0eb7518a18a9ea9 (diff) |
add patches from upstream and from
https://github.com/m6w6/libmemcached/pull/101 fix so version
https://github.com/m6w6/libmemcached/pull/102 fix for old sphinx
https://github.com/m6w6/libmemcached/pull/104 fix 32-bit
enable test suite
Diffstat (limited to '102.patch')
-rw-r--r-- | 102.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/102.patch b/102.patch new file mode 100644 index 0000000..6044365 --- /dev/null +++ b/102.patch @@ -0,0 +1,22 @@ +From a5275a0698ae71674ba53706716c20cd2c886cea Mon Sep 17 00:00:00 2001 +From: Remi Collet <remi@remirepo.net> +Date: Wed, 23 Dec 2020 15:15:41 +0100 +Subject: [PATCH] fix doc build with old sphinx + +--- + docs/conf.py.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/docs/conf.py.in b/docs/conf.py.in +index c582244f..4dd33573 100644 +--- a/docs/conf.py.in ++++ b/docs/conf.py.in +@@ -13,7 +13,7 @@ import sys, os + #needs_sphinx = '1.0' + extensions = [@SPHINX_EXTENSIONS@] + templates_path = ['_templates'] +-source_suffix = ['.rst'] ++source_suffix = '.rst' + master_doc = 'index' + pygments_style = 'sphinx' + |