From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1BABE1581E7 for ; Tue, 23 Apr 2024 19:10:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41D0FE2A56; Tue, 23 Apr 2024 19:10:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 23FC6E2A56 for ; Tue, 23 Apr 2024 19:10:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 30B0E335C11 for ; Tue, 23 Apr 2024 19:10:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8277E171E for ; Tue, 23 Apr 2024 19:10:38 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1713899427.f91bf32299e605130ce7fbce23e69a6dff5eae98.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-util/find-work/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-util/find-work/find-work-9999.ebuild X-VCS-Directories: dev-util/find-work/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: f91bf32299e605130ce7fbce23e69a6dff5eae98 X-VCS-Branch: dev Date: Tue, 23 Apr 2024 19:10:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 88f33a89-7964-42b4-bf95-f9e4b155bc49 X-Archives-Hash: 93adb9f12011928d5c18108891831a63 commit: f91bf32299e605130ce7fbce23e69a6dff5eae98 Author: David Roman gmail com> AuthorDate: Tue Apr 23 19:10:27 2024 +0000 Commit: David Roman gmail com> CommitDate: Tue Apr 23 19:10:27 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f91bf322 dev-util/find-work: add 9999 Signed-off-by: David Roman gmail.com> dev-util/find-work/find-work-9999.ebuild | 81 ++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) diff --git a/dev-util/find-work/find-work-9999.ebuild b/dev-util/find-work/find-work-9999.ebuild new file mode 100644 index 0000000000..eb4c078c07 --- /dev/null +++ b/dev-util/find-work/find-work-9999.ebuild @@ -0,0 +1,81 @@ +# 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 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" + +RDEPEND=" + =dev-python/aiohttp-3[${PYTHON_USEDEP}] + =dev-python/platformdirs-4[${PYTHON_USEDEP}] + =dev-python/pydantic-2[${PYTHON_USEDEP}] + =dev-python/repology-client-0.0.2[${PYTHON_USEDEP}] + =dev-python/requests-2[${PYTHON_USEDEP}] +