repo/proj/guru:dev commit in: dev-util/find-work-bugzilla/
"Anna Vyalkova" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786206292.a831785e0e2462bbcdcbb321fa9dfcb142db34f6.cybertailor@gentoo> |
commit: a831785e0e2462bbcdcbb321fa9dfcb142db34f6
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sat Aug 8 16:23:46 2026 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sat Aug 8 16:24:52 2026 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a831785e
dev-util/find-work-bugzilla: add 1.0.1
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-util/find-work-bugzilla/Manifest | 1 +
.../find-work-bugzilla-1.0.1.ebuild | 38 ++++++++++++++++++++++
2 files changed, 39 insertions(+)
diff --git a/dev-util/find-work-bugzilla/Manifest b/dev-util/find-work-bugzilla/Manifest
index 16cc6dec69..378c359c4e 100644
--- a/dev-util/find-work-bugzilla/Manifest
+++ b/dev-util/find-work-bugzilla/Manifest
@@ -1 +1,2 @@
DIST find_work_bugzilla-1.0.0.tar.gz 6317 BLAKE2B 7cae7fea9090877bf81cb0c0d0c043a0a530c9c295e895aeaa793f3e35701609d9d5817c50092650c58af8b2b4f535192e2a5f3401cc4f3dbf479bbd533621a1 SHA512 12b3ae347aeea5134e3fa79da3c9e1e94e07b8e1574d292faf262ec833111c7c079b1f6d9dec72f67b73c0d83c8e165672a8ae9885ed4c0ff9a24976906addd2
+DIST find_work_bugzilla-1.0.1.tar.gz 6398 BLAKE2B bb35b53f5c9f2ed8e4c77ef6cb8fc48c8a7cb77a1eeb223c06939aa178cd4ab55896c1c3e7dc4edd8c9dcb2ee0e38aecd62435201e7996ee2eaf8a40b851c6c8 SHA512 a0c7ac2ceea0427d53b23705a0b1013e0f90f15d56115698bb37bc9c61beecdeb796c6d937c9ff7f2d7b44b367158f4378ac25dc0c536173ec98130a1fb02d86
diff --git a/dev-util/find-work-bugzilla/find-work-bugzilla-1.0.1.ebuild b/dev-util/find-work-bugzilla/find-work-bugzilla-1.0.1.ebuild
new file mode 100644
index 0000000000..435743f5a3
--- /dev/null
+++ b/dev-util/find-work-bugzilla/find-work-bugzilla-1.0.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2024-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{12..14} )
+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/python-bugzilla[${PYTHON_USEDEP}]
+ >=dev-util/find-work-1[${PYTHON_USEDEP}]
+ <dev-util/find-work-2[${PYTHON_USEDEP}]
+"
+
+EPYTEST_PLUGINS=( pytest-import-check )
+
+distutils_enable_tests pytest
+
+src_install() {
+ distutils-r1_src_install
+ doman man/*.1
+}