mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
31 lines
675 B
Bash
31 lines
675 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517="setuptools"
|
|
PYPI_NO_NORMALIZE=1
|
|
PYTHON_COMPAT=( python3_{10..13} )
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="MkDocs i18n plugin"
|
|
HOMEPAGE="
|
|
https://gitlab.com/mkdocs-i18n/mkdocs-i18n/-/tree/main
|
|
https://pypi.org/project/mkdocs-i18n/
|
|
"
|
|
|
|
LICENSE="AGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86"
|
|
|
|
RDEPEND="
|
|
>=dev-python/mkdocs-1.1[${PYTHON_USEDEP}]
|
|
dev-python/mkdocs-material[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
PATCHES=(
|
|
# Define a build-backend, version, and drop setuptools_scm dep
|
|
"${FILESDIR}/${P}-fixup-pyproject-toml.patch"
|
|
)
|