# Copyright 2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{11..13} ) DISTUTILS_USE_PEP517=hatchling inherit click-app distutils-r1 DESCRIPTION="Personal advice utility for Gentoo package maintainers" HOMEPAGE=" https://find-work.sysrq.in/ https://pypi.org/project/find-work/ " if [[ ${PV} == *9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://git.sysrq.in/${PN}" else inherit pypi KEYWORDS="~amd64" fi LICENSE="WTFPL-2" SLOT="0" IUSE="minimal" RDEPEND=" >=dev-python/aiohttp-3[${PYTHON_USEDEP}] =dev-python/platformdirs-4[${PYTHON_USEDEP}] =dev-python/pydantic-2[${PYTHON_USEDEP}] =dev-python/requests-2[${PYTHON_USEDEP}] =dev-python/typing-extensions-4.3.0[${PYTHON_USEDEP}] =dev-python/lxml-4.5[${PYTHON_USEDEP}] dev-python/tabulate[${PYTHON_USEDEP}] ) " BDEPEND=" test? ( dev-python/pytest-import-check[${PYTHON_USEDEP}] ) " # No ${PYTHON_USEDEP} because plugin deps can lag behind PDEPEND=" !minimal? ( dev-util/find-work-bugzilla dev-util/find-work-pkgcheck dev-util/find-work-repology ) " distutils_enable_tests pytest distutils_enable_sphinx docs \ dev-python/insipid-sphinx-theme \ dev-python/sphinx-prompt click-app_enable_completions find-work python_test() { distutils_write_namespace find_work distutils-r1_python_test } src_install() { distutils-r1_src_install emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install-man }