From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1522531-garchives=archives.gentoo.org@lists.gentoo.org> 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 6A8FD15806E for <garchives@archives.gentoo.org>; Sun, 28 May 2023 18:11:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39E31E08A0; Sun, 28 May 2023 18:11:21 +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 4AC54E08A0 for <gentoo-commits@lists.gentoo.org>; Sun, 28 May 2023 18:11:20 +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 16858340D59 for <gentoo-commits@lists.gentoo.org>; Sun, 28 May 2023 18:11:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6EE4DA71 for <gentoo-commits@lists.gentoo.org>; Sun, 28 May 2023 18:11:17 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1685297459.f13a2e8a33c4771516ebb2e9feaaff527f2f1e6a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/incremental/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/incremental/incremental-22.10.0-r1.ebuild X-VCS-Directories: dev-python/incremental/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f13a2e8a33c4771516ebb2e9feaaff527f2f1e6a X-VCS-Branch: master Date: Sun, 28 May 2023 18:11:17 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 88b73e6d-93b6-47f4-81d0-8c0e41bf4653 X-Archives-Hash: ab72bff0d13de3c9cce766490882be6d commit: f13a2e8a33c4771516ebb2e9feaaff527f2f1e6a Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat May 27 17:44:06 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun May 28 18:10:59 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f13a2e8a dev-python/incremental: enable py3.12 New revision for ~loong. Signed-off-by: Sam James <sam <AT> gentoo.org> .../incremental/incremental-22.10.0-r1.ebuild | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-python/incremental/incremental-22.10.0-r1.ebuild b/dev-python/incremental/incremental-22.10.0-r1.ebuild new file mode 100644 index 000000000000..b87b7a134526 --- /dev/null +++ b/dev-python/incremental/incremental-22.10.0-r1.ebuild @@ -0,0 +1,29 @@ +# 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_{10..12} pypy3 ) + +inherit distutils-r1 pypi + +DESCRIPTION="Incremental is a small library that versions your Python projects" +HOMEPAGE="https://github.com/twisted/incremental https://pypi.org/project/incremental/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-python/click[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( dev-python/twisted[${PYTHON_USEDEP}] )" + +python_test() { + "${EPYTHON}" -m twisted.trial incremental || + die "Tests failed on ${EPYTHON}" +}