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 90C2815806E for ; Mon, 29 May 2023 04:55:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A1E9E07FE; Mon, 29 May 2023 04:54:59 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7D1D6E07FE for ; Mon, 29 May 2023 04:54:59 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82E8C340F3F for ; Mon, 29 May 2023 04:54:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1FC83A67 for ; Mon, 29 May 2023 04:54:57 +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: <1685335973.c527a44422375047c5c288b979d8417b9a511213.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/intervaltree/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/intervaltree/intervaltree-3.1.0-r1.ebuild X-VCS-Directories: dev-python/intervaltree/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: c527a44422375047c5c288b979d8417b9a511213 X-VCS-Branch: master Date: Mon, 29 May 2023 04:54:57 +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: d144e4ee-6d7f-448f-98a4-327c0dcf0acf X-Archives-Hash: b971866040268fd7ab2ed48820fd999f commit: c527a44422375047c5c288b979d8417b9a511213 Author: Arthur Zamarin gentoo org> AuthorDate: Mon May 29 04:52:53 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Mon May 29 04:52:53 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c527a444 dev-python/intervaltree: EAPI=8, PEP517 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/intervaltree/intervaltree-3.1.0-r1.ebuild | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/dev-python/intervaltree/intervaltree-3.1.0-r1.ebuild b/dev-python/intervaltree/intervaltree-3.1.0-r1.ebuild new file mode 100644 index 000000000000..93d413bb6d9c --- /dev/null +++ b/dev-python/intervaltree/intervaltree-3.1.0-r1.ebuild @@ -0,0 +1,19 @@ +# 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..11} ) +inherit distutils-r1 pypi + +DESCRIPTION="Editable interval tree data structure for Python 2 and 3" +HOMEPAGE="https://pypi.org/project/intervaltree/" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~riscv ~x86" + +RDEPEND="dev-python/sortedcontainers[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest