mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 03:53:22 -04:00
104 lines
2.3 KiB
Bash
104 lines
2.3 KiB
Bash
# 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 distutils-r1 shell-completion
|
|
|
|
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="
|
|
<app-portage/gentoopm-2[${PYTHON_USEDEP}]
|
|
>=dev-python/aiohttp-3[${PYTHON_USEDEP}]
|
|
<dev-python/aiohttp-4[${PYTHON_USEDEP}]
|
|
dev-python/click[${PYTHON_USEDEP}]
|
|
dev-python/click-aliases[${PYTHON_USEDEP}]
|
|
dev-python/deepmerge[${PYTHON_USEDEP}]
|
|
>=dev-python/platformdirs-4[${PYTHON_USEDEP}]
|
|
<dev-python/platformdirs-5[${PYTHON_USEDEP}]
|
|
<dev-python/pluggy-2[${PYTHON_USEDEP}]
|
|
>=dev-python/pydantic-2[${PYTHON_USEDEP}]
|
|
<dev-python/pydantic-3[${PYTHON_USEDEP}]
|
|
>=dev-python/requests-2[${PYTHON_USEDEP}]
|
|
<dev-python/requests-3[${PYTHON_USEDEP}]
|
|
!minimal? (
|
|
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
|
|
)
|
|
"
|
|
|
|
EPYTEST_DESELECT=(
|
|
# fails with plug-ins installed
|
|
find_work/__main__.py::import-check
|
|
)
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
distutils_enable_sphinx docs \
|
|
dev-python/insipid-sphinx-theme \
|
|
dev-python/sphinx-prompt
|
|
|
|
python_compile_all() {
|
|
# copy-pasted from distutils_write_namespace
|
|
local path="${BUILD_DIR}/install$(python_get_sitedir)/find_work/__init__.py"
|
|
cat > "${path}" <<-EOF || die
|
|
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
|
|
EOF
|
|
|
|
emake completions BIN="${BUILD_DIR}/install${EPREFIX}/usr/bin/find-work"
|
|
sphinx_compile_all
|
|
|
|
rm "${path}" || die
|
|
}
|
|
|
|
python_test() {
|
|
distutils_write_namespace find_work
|
|
distutils-r1_python_test
|
|
}
|
|
|
|
src_install() {
|
|
distutils-r1_src_install
|
|
|
|
local mymakeargs=(
|
|
DESTDIR="${D}"
|
|
PREFIX="${EPREFIX}"/usr
|
|
|
|
BASHCOMPDIR="$(get_bashcompdir)"
|
|
ZSHCOMPDIR="$(get_zshcompdir)"
|
|
FISHCOMPDIR="$(get_fishcompdir)"
|
|
)
|
|
|
|
emake "${mymakeargs[@]}" install-data
|
|
}
|