dev-util/find-work-bugzilla: add 0.2.1

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2024-08-22 05:53:45 +05:00
parent 8de8dbec9c
commit d9a8d12ca6
2 changed files with 45 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST find_work_bugzilla-0.2.0.tar.gz 5630 BLAKE2B e23bb7b9b4d5186e9d188bdbee6189d2a012ba8cb20927e5d22dba10150d548f730f0433fbc57b1423fb75d8f09f04293c9f61ad5b14978158894c049efb6ee5 SHA512 0a31fe3e0e9ae035bd5766dc8a3d7109728392c6cb2bd7f91bde2dca8bcc7e0e85627ced7172e5c542c243a340225e18adc4aa3cb50e76996fb42c3c95bd798d
DIST find_work_bugzilla-0.2.1.tar.gz 5857 BLAKE2B f77f787a976cbe915c3f6d00d7b82cd76cf727af6d5ab38a2423650281e79a6a0aad0420bb6acd1e7cbf002be93cf5e3ff2c56507c0d6018dac53aedb1328f9f SHA512 0c61bb89db5e1bde1cef3efbe555d94294cec22b7709d4a47f293ce9cbd442fd53fd8146e1e425feee606b15e05ae46c5040696045e91134e0672fbb62270ce2

View File

@@ -0,0 +1,44 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=flit
inherit distutils-r1 pypi
DESCRIPTION="Personal advice utility for Gentoo package maintainers: Bugzilla plugin"
HOMEPAGE="
https://find-work.sysrq.in/
https://pypi.org/project/find-work-bugzilla/
"
LICENSE="WTFPL-2"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
<app-portage/gentoopm-2[${PYTHON_USEDEP}]
dev-python/click[${PYTHON_USEDEP}]
dev-python/click-aliases[${PYTHON_USEDEP}]
>=dev-python/pydantic-2[${PYTHON_USEDEP}]
<dev-python/pydantic-3[${PYTHON_USEDEP}]
>=dev-python/pydantic-core-2[${PYTHON_USEDEP}]
<dev-python/pydantic-core-3[${PYTHON_USEDEP}]
dev-python/python-bugzilla[${PYTHON_USEDEP}]
dev-python/tabulate[${PYTHON_USEDEP}]
>=dev-util/find-work-0.91[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/pytest-import-check[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
python_test() {
cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
distutils_write_namespace find_work
epytest "${S}"
}