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 6E61F15800F for ; Fri, 27 Jan 2023 13:22:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 980CDE0CB1; Fri, 27 Jan 2023 13:22:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8209CE0CB1 for ; Fri, 27 Jan 2023 13:22:09 +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 B49283410FE for ; Fri, 27 Jan 2023 13:22:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A1765891 for ; Fri, 27 Jan 2023 13:22:06 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1674825605.d152810e555e82e158af2d814fbf80a0d61a31a7.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/beagle/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/beagle/beagle-0.3.0-r1.ebuild X-VCS-Directories: dev-python/beagle/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: d152810e555e82e158af2d814fbf80a0d61a31a7 X-VCS-Branch: master Date: Fri, 27 Jan 2023 13:22:06 +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: 368f87f1-f749-4a13-ab04-605f1c8886ef X-Archives-Hash: 2b163d335737223966c97070cd9647fb commit: d152810e555e82e158af2d814fbf80a0d61a31a7 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Jan 27 13:20:05 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Jan 27 13:20:05 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d152810e dev-python/beagle: USE PEP517, EAPI=8 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/beagle/beagle-0.3.0-r1.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/dev-python/beagle/beagle-0.3.0-r1.ebuild b/dev-python/beagle/beagle-0.3.0-r1.ebuild new file mode 100644 index 000000000000..f931b80dfbbf --- /dev/null +++ b/dev-python/beagle/beagle-0.3.0-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..10} ) +inherit distutils-r1 + +DESCRIPTION="Command line client for Hound, the code search tool" +HOMEPAGE="https://beagle-hound.readthedocs.io/en/latest/ + https://github.com/beaglecli/beagle" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +# setuptools is needed as rdepend, https://github.com/beaglecli/beagle/pull/14 +RDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] + >=dev-python/cliff-2.11.0[${PYTHON_USEDEP}] + >=dev-python/requests-2.18.4[${PYTHON_USEDEP}] +" +BDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]"