diff options
author | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2023-07-17 10:12:16 +0200 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2023-07-17 10:12:16 +0200 |
commit | 533671b271aca4175ddc1c4367cebfe44d40b39b (patch) | |
tree | cb5409a7df0b1e2722a50e2707843eb4a497aa42 /dev-python | |
parent | docs.eclass: define missing python_check_deps() (diff) | |
download | gentoo-533671b271aca4175ddc1c4367cebfe44d40b39b.tar.gz gentoo-533671b271aca4175ddc1c4367cebfe44d40b39b.tar.bz2 gentoo-533671b271aca4175ddc1c4367cebfe44d40b39b.zip |
dev-python/pymdown-extensions: re-add use doc
with the changes to the docs.eclass this is working now
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pymdown-extensions/pymdown-extensions-10.0.1.ebuild | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/dev-python/pymdown-extensions/pymdown-extensions-10.0.1.ebuild b/dev-python/pymdown-extensions/pymdown-extensions-10.0.1.ebuild index 6f87825fe59e..06768ca57e30 100644 --- a/dev-python/pymdown-extensions/pymdown-extensions-10.0.1.ebuild +++ b/dev-python/pymdown-extensions/pymdown-extensions-10.0.1.ebuild @@ -6,7 +6,17 @@ EAPI=8 DISTUTILS_USE_PEP517=hatchling PYTHON_COMPAT=( python3_{10..12} ) -inherit distutils-r1 +DOCS_BUILDER="mkdocs" +DOCS_DEPEND=" + dev-python/mkdocs-git-revision-date-localized-plugin + dev-python/mkdocs-minify-plugin + dev-python/mkdocs-material + dev-python/pymdown-lexers + dev-python/pyspelling +" +DOCS_INITIALIZE_GIT=1 + +inherit distutils-r1 docs DESCRIPTION="Extensions for Python Markdown" HOMEPAGE=" @@ -34,3 +44,16 @@ BDEPEND=" " distutils_enable_tests pytest + +python_compile_all() { + default + # We need to do this manually instead of relying on docs_compile + # https://bytemeta.vip/repo/facelessuser/pymdown-extensions/issues/1446 + # https://bugs.gentoo.org/859637 + if use doc; then + ${EPYTHON} -m mkdocs build || die "Failed to make docs" + # Colliding files found by ecompress: + rm site/sitemap.xml.gz || die + HTML_DOCS=( "site/." ) + fi +} |