27 lines
656 B
Bash
27 lines
656 B
Bash
|
# Copyright 2021-2023 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=8
|
||
|
|
||
|
PYPI_NO_NORMALIZE=y
|
||
|
DISTUTILS_USE_PEP517=setuptools
|
||
|
PYTHON_COMPAT=( python3_{8..12} )
|
||
|
inherit distutils-r1 pypi
|
||
|
|
||
|
DESCRIPTION="A theme based on the theme of https://docs.python.org/3/."
|
||
|
HOMEPAGE="https://github.com/ionelmc/sphinx-py3doc-enhanced-theme"
|
||
|
|
||
|
LICENSE="BSD-2"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64"
|
||
|
|
||
|
distutils_enable_tests pytest
|
||
|
|
||
|
PATCHES=(
|
||
|
"${FILESDIR}/Allow-missing-env-var.patch"
|
||
|
"${FILESDIR}/Fix-goofy-doctest.patch"
|
||
|
"${FILESDIR}/undo-pypi-modification-to-setupcfg.patch"
|
||
|
"${FILESDIR}/backport-for-setupcfg.patch"
|
||
|
)
|
||
|
DOCS=( "README.rst" )
|