From: "David Roman" <davidroman96@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-util/find-work/
Date: Fri, 9 Feb 2024 00:30:06 +0000 (UTC) [thread overview]
Message-ID: <1707405087.c9ed19230bd2228a35605ba89a3bab954e71ef45.davidroman@gentoo> (raw)
commit: c9ed19230bd2228a35605ba89a3bab954e71ef45
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Feb 8 15:10:26 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Feb 8 15:11:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c9ed1923
dev-util/find-work: add 0.6.0
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-util/find-work/Manifest | 1 +
dev-util/find-work/find-work-0.6.0.ebuild | 74 +++++++++++++++++++++++++++++++
2 files changed, 75 insertions(+)
diff --git a/dev-util/find-work/Manifest b/dev-util/find-work/Manifest
index 8872038ec9..6b44aea031 100644
--- a/dev-util/find-work/Manifest
+++ b/dev-util/find-work/Manifest
@@ -1,2 +1,3 @@
DIST find_work-0.3.0.tar.gz 16939 BLAKE2B f80bb5436ff70debe3fa1c2c3cec09bb2701e8b60b1a2397de74b1035aa925d935228928a8e6a6eb6b75b218c2a062b2466c963718c89ba5ca4b8457923a3c72 SHA512 e52bcd8636003f1940fd42c3baca22b69654b35f62b9b2ee3345625d4fb1b31a9124c4da3d17e9fec84162eb7b7190553599f7e8a6eda60fb92f946aefaf1c95
DIST find_work-0.5.0.tar.gz 21874 BLAKE2B c87a1b01011447348ef3a892bd965df6ecc14f90b506a16af715f2b33aa82c7a9f427785f4296dd5476782c172bacbdbe505a54887d4f1dc6d898841e5c8edc1 SHA512 aca292e8c0a07a42605af200234523c4ed0f7ae3228a3f6e9d194fe63c2ce3bc63aa57cdf627d450f8c4e1115dd31065326d42a99c387746961f1bc2df5ba877
+DIST find_work-0.6.0.tar.gz 23243 BLAKE2B 5eb1e315e178bd3834400db9c4ffce7751a3b8d432c2f637edf74aecff7c2db48e88a0569b376f38b47d2ef95805a83c1367e156aa9ef6ddca267be5ec07f4c2 SHA512 11a9b1e81c98fdd0cb4e1e1c49d48becf92e9696cbcb6abe778df079168eef225ca6a68dd1555155546f9f59014716fecd6d3c40b8c85f7d9ce57b87e518b61d
diff --git a/dev-util/find-work/find-work-0.6.0.ebuild b/dev-util/find-work/find-work-0.6.0.ebuild
new file mode 100644
index 0000000000..4fe3090864
--- /dev/null
+++ b/dev-util/find-work/find-work-0.6.0.ebuild
@@ -0,0 +1,74 @@
+# 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=hatchling
+inherit distutils-r1 pypi shell-completion
+
+DESCRIPTION="Personal advice utility for Gentoo package maintainers"
+HOMEPAGE="
+ https://find-work.sysrq.in/
+ https://pypi.org/project/find-work/
+"
+
+LICENSE="WTFPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+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/pydantic-2[${PYTHON_USEDEP}]
+ <dev-python/pydantic-3[${PYTHON_USEDEP}]
+ dev-python/python-bugzilla[${PYTHON_USEDEP}]
+ >=dev-python/repology-client-0.0.2[${PYTHON_USEDEP}]
+ <dev-python/repology-client-2[${PYTHON_USEDEP}]
+ >=dev-python/requests-2[${PYTHON_USEDEP}]
+ <dev-python/requests-3[${PYTHON_USEDEP}]
+ dev-python/sortedcontainers[${PYTHON_USEDEP}]
+ dev-python/tabulate[${PYTHON_USEDEP}]
+ dev-util/pkgcheck[${PYTHON_USEDEP}]
+"
+BDEPEND="test? ( dev-python/pytest-recording[${PYTHON_USEDEP}] )"
+
+distutils_enable_tests pytest
+
+distutils_enable_sphinx docs \
+ dev-python/insipid-sphinx-theme \
+ dev-python/sphinx-prompt
+
+src_prepare() {
+ distutils-r1_src_prepare
+ mkdir completions || die
+}
+
+python_compile() {
+ distutils-r1_python_compile
+
+ local -x PATH="${BUILD_DIR}/install${EPREFIX}/usr/bin:${PATH}"
+ local -x PYTHONPATH="${BUILD_DIR}/lib:${PYTHONPATH}"
+ emake completions/find-work.{bash,zsh,fish}
+}
+
+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
+}
next reply other threads:[~2024-02-09 0:30 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-09 0:30 David Roman [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-27 14:34 [gentoo-commits] repo/proj/guru:master commit in: dev-util/find-work/ David Roman
2024-11-21 10:47 David Roman
2024-11-20 15:47 David Roman
2024-08-20 20:46 David Roman
2024-08-09 12:46 David Roman
2024-04-29 21:27 David Roman
2024-04-19 19:11 Julien Roy
2024-02-09 0:30 David Roman
2024-01-15 15:46 David Roman
2024-01-15 15:46 David Roman
2024-01-09 12:03 David Roman
2024-01-08 7:22 Viorel Munteanu
2024-01-07 23:46 David Roman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1707405087.c9ed19230bd2228a35605ba89a3bab954e71ef45.davidroman@gentoo \
--to=davidroman96@gmail.com \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox