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 261DA159C9B for ; Thu, 8 Aug 2024 21:01:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E2E3E2AE6; Thu, 8 Aug 2024 21:01:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 2DF2EE2AE7 for ; Thu, 8 Aug 2024 21:01:28 +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 603E334308F for ; Thu, 8 Aug 2024 21:01:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1F541EBD for ; Thu, 8 Aug 2024 21:01:20 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1723149652.9c46cc98bfd1f5cb40e9c643593fd953201ccc7b.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-util/find-work-pkgcheck/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-util/find-work-pkgcheck/Manifest dev-util/find-work-pkgcheck/find-work-pkgcheck-0.1.0.ebuild dev-util/find-work-pkgcheck/metadata.xml X-VCS-Directories: dev-util/find-work-pkgcheck/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 9c46cc98bfd1f5cb40e9c643593fd953201ccc7b X-VCS-Branch: dev Date: Thu, 8 Aug 2024 21:01:20 +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: acd1871d-c724-4ec8-a1af-649145a3ae07 X-Archives-Hash: 2dbab7faf9c605653d4abc60cc5c810c commit: 9c46cc98bfd1f5cb40e9c643593fd953201ccc7b Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Thu Aug 8 20:40:49 2024 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Thu Aug 8 20:40:52 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9c46cc98 dev-util/find-work-pkgcheck: new package, add 0.1.0 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-util/find-work-pkgcheck/Manifest | 1 + .../find-work-pkgcheck-0.1.0.ebuild | 42 ++++++++++++++++++++++ dev-util/find-work-pkgcheck/metadata.xml | 16 +++++++++ 3 files changed, 59 insertions(+) diff --git a/dev-util/find-work-pkgcheck/Manifest b/dev-util/find-work-pkgcheck/Manifest new file mode 100644 index 000000000..9a384143e --- /dev/null +++ b/dev-util/find-work-pkgcheck/Manifest @@ -0,0 +1 @@ +DIST find_work_pkgcheck-0.1.0.tar.gz 5064 BLAKE2B 22b27873b2651a1e5b49f06094037308499f2b77011fd54aa0ac6a0b0c847fa8b9b369d0e44c88618b071c8037fa51a32c1974e5dc6660350a36244559894be6 SHA512 039c77e7d29f3207f9b44105ce26e094bb228fe9368fa671674cfd9d9bec680b16c0f10c9c24d65bf9061e1fb3120ff33b76f1542202984d3618f3827583ef3d diff --git a/dev-util/find-work-pkgcheck/find-work-pkgcheck-0.1.0.ebuild b/dev-util/find-work-pkgcheck/find-work-pkgcheck-0.1.0.ebuild new file mode 100644 index 000000000..c66b401b5 --- /dev/null +++ b/dev-util/find-work-pkgcheck/find-work-pkgcheck-0.1.0.ebuild @@ -0,0 +1,42 @@ +# 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: pkgcheck plugin" +HOMEPAGE=" + https://find-work.sysrq.in/ + https://pypi.org/project/find-work-pkgcheck/ +" + +LICENSE="WTFPL-2" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + =dev-python/pydantic-2[${PYTHON_USEDEP}] + =dev-util/find-work-0.90[${PYTHON_USEDEP}] + dev-util/pkgcheck[${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}" +} diff --git a/dev-util/find-work-pkgcheck/metadata.xml b/dev-util/find-work-pkgcheck/metadata.xml new file mode 100644 index 000000000..0c0198579 --- /dev/null +++ b/dev-util/find-work-pkgcheck/metadata.xml @@ -0,0 +1,16 @@ + + + + + cyber+gentoo@sysrq.in + Anna + + + + Anna + cyber@sysrq.in + + find-work-pkgcheck + https://bugs.sysrq.in/enter_bug.cgi?product=Software&component=find-work + +