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 3122115808B for ; Mon, 21 Mar 2022 08:54:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9EBB7E088B; Mon, 21 Mar 2022 08:54:54 +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 76EF8E0882 for ; Mon, 21 Mar 2022 08:54:54 +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 71030342FFF for ; Mon, 21 Mar 2022 08:54:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DAC1C349 for ; Mon, 21 Mar 2022 08:54:50 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1647852886.fbce5e2efb125f93240f3b87f60afcc936608079.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/parver/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/parver/parver-0.3.1-r1.ebuild X-VCS-Directories: dev-python/parver/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: fbce5e2efb125f93240f3b87f60afcc936608079 X-VCS-Branch: master Date: Mon, 21 Mar 2022 08:54:50 +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: 54c99e22-1f89-4dc6-ad1b-0d8489670064 X-Archives-Hash: 1ccffebd9f88f9776c684eb232e7263d commit: fbce5e2efb125f93240f3b87f60afcc936608079 Author: Michał Górny gentoo org> AuthorDate: Mon Mar 21 08:47:18 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Mar 21 08:54:46 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbce5e2e dev-python/parver: EAPI 8, PEP517, py3.10 Signed-off-by: Michał Górny gentoo.org> dev-python/parver/parver-0.3.1-r1.ebuild | 39 ++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/dev-python/parver/parver-0.3.1-r1.ebuild b/dev-python/parver/parver-0.3.1-r1.ebuild new file mode 100644 index 000000000000..c155d8283573 --- /dev/null +++ b/dev-python/parver/parver-0.3.1-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 2019-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Parse and manipulate version numbers" +HOMEPAGE="https://github.com/RazerM/parver https://pypi.org/project/parver/" +SRC_URI="https://github.com/RazerM/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=" + >=dev-python/Arpeggio-1.7[${PYTHON_USEDEP}] + >=dev-python/attrs-19.2[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" + +DEPEND=" + test? ( + dev-python/hypothesis[${PYTHON_USEDEP}] + dev-python/pretend[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_prepare() { + # unlock dependencies + sed -i -e 's:~=:>=:g' setup.py || die + + distutils-r1_src_prepare +}