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 5830515800A for ; Thu, 17 Aug 2023 16:49:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA2B42BC017; Thu, 17 Aug 2023 16:49:51 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 D57702BC013 for ; Thu, 17 Aug 2023 16:49:51 +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 A680133D3C5 for ; Thu, 17 Aug 2023 16:49:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E98D9FCA for ; Thu, 17 Aug 2023 16:49:48 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1692289755.043a9017d67ef6035257e5d7a896b62c4a0e49ad.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/portion/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/portion/Manifest dev-python/portion/portion-2.4.1.ebuild X-VCS-Directories: dev-python/portion/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 043a9017d67ef6035257e5d7a896b62c4a0e49ad X-VCS-Branch: dev Date: Thu, 17 Aug 2023 16:49:48 +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: 59567766-04a9-448f-8aed-29a3ebda708e X-Archives-Hash: 7a3778614a5148551a97621e0ef5ef63 commit: 043a9017d67ef6035257e5d7a896b62c4a0e49ad Author: Julien Roy jroy ca> AuthorDate: Thu Aug 17 16:29:15 2023 +0000 Commit: Julien Roy jroy ca> CommitDate: Thu Aug 17 16:29:15 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=043a9017 dev-python/portion: add 2.4.1 Signed-off-by: Julien Roy jroy.ca> dev-python/portion/Manifest | 1 + dev-python/portion/portion-2.4.1.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/dev-python/portion/Manifest b/dev-python/portion/Manifest index ec68e532a3..6807c005cd 100644 --- a/dev-python/portion/Manifest +++ b/dev-python/portion/Manifest @@ -1 +1,2 @@ DIST portion-2.4.0.tar.gz 52866 BLAKE2B 5ce5d1ce35f5847eef1e7192eb04195e2c2ec25dfccee18b63073dd00d9950d1acd0b346e07dfbfbc5e09f9d5ac557066739e8d1da3c992b4b0d73965692e61f SHA512 6134fb5d32c08f5424f65ce88f721f93deaedcae9a7b5fa7380eb27dadf83f7df9b22c8577b9d1c54409dd7d3ae91f11d88214d4d8146682fcdf0f1a0a26d8a4 +DIST portion-2.4.1.tar.gz 52894 BLAKE2B bdb5c387c9ab6ee0fec9e4aea71be40a51cc1f9be6f40b1f71389947e6e60f84c7f2a89e0d617923b835e72e524b80f8f2fbcdb14895a5307d09ee3d67fd01f0 SHA512 72181519dcadae036025be36fde63bd70ab7e7fa448400dd91e639e8eef5bc70b2ad490cd48a882d1b2be0cdc04f57cd63de44690181462f31afe771108f5c51 diff --git a/dev-python/portion/portion-2.4.1.ebuild b/dev-python/portion/portion-2.4.1.ebuild new file mode 100644 index 0000000000..6ad18e5235 --- /dev/null +++ b/dev-python/portion/portion-2.4.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..11} ) +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 pypi + +DESCRIPTION="A Python library providing data structure and operations for intervals." +HOMEPAGE="https://github.com/AlexandreDecan/portion" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND=" + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/coverage[${PYTHON_USEDEP}] + dev-python/black[${PYTHON_USEDEP}] + ) +" +DEPEND="${RDEPEND}" +BDEPEND="dev-python/sortedcontainers[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest