commit:     09f8e9f297b0ab0451db26d4cc52caee06cfee46
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 21 17:26:26 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Apr 21 17:26:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09f8e9f2

dev-libs/mongo-c-driver: fix building against >=sphinx-3

Closes: https://bugs.gentoo.org/716774
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 .../files/mongo-c-driver-1.16.2-sphinx.patch          | 19 +++++++++++++++++++
 dev-libs/mongo-c-driver/mongo-c-driver-1.16.2.ebuild  |  1 +
 2 files changed, 20 insertions(+)

diff --git a/dev-libs/mongo-c-driver/files/mongo-c-driver-1.16.2-sphinx.patch 
b/dev-libs/mongo-c-driver/files/mongo-c-driver-1.16.2-sphinx.patch
new file mode 100644
index 00000000000..7a165b61c59
--- /dev/null
+++ b/dev-libs/mongo-c-driver/files/mongo-c-driver-1.16.2-sphinx.patch
@@ -0,0 +1,19 @@
+https://bugs.gentoo.org/716774
+
+--- a/build/sphinx/taglist.py
++++ b/build/sphinx/taglist.py
+@@ -24,7 +24,12 @@ THE SOFTWARE.
+ """
+ 
+ from docutils import nodes, utils
+-from sphinx.environment import NoUri
++
++try:
++    from sphinx.environment import NoUri
++except ImportError:
++    from sphinx.errors import NoUri
++
+ try:
+     from sphinx.util.compat import Directive
+ except ImportError:
+ 

diff --git a/dev-libs/mongo-c-driver/mongo-c-driver-1.16.2.ebuild 
b/dev-libs/mongo-c-driver/mongo-c-driver-1.16.2.ebuild
index 66adfafad3a..e5f55ceb625 100644
--- a/dev-libs/mongo-c-driver/mongo-c-driver-1.16.2.ebuild
+++ b/dev-libs/mongo-c-driver/mongo-c-driver-1.16.2.ebuild
@@ -41,6 +41,7 @@ PATCHES=(
        "${FILESDIR}/${PN}-1.14.0-no-docs.patch"
        "${FILESDIR}/${PN}-1.16.2-enable-tests.patch" # enable tests with 
system libbson
        "${FILESDIR}/${PN}-1.16.2-single-doc-job.patch"
+       "${FILESDIR}/${PN}-1.16.2-sphinx.patch"
 )
 
 src_prepare() {

Reply via email to