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 CF5681581C1 for ; Fri, 12 Jul 2024 19:26:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D7642BC15E; Fri, 12 Jul 2024 19:26:39 +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 2B9582BC15E for ; Fri, 12 Jul 2024 19:26:39 +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 25BCB34092E for ; Fri, 12 Jul 2024 19:26:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 610641E15 for ; Fri, 12 Jul 2024 19:26:35 +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: <1720812376.c6d992b2ed85048a3203ee45fdbef8791ce0dcb9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-augeas/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-augeas/python-augeas-1.1.0-r1.ebuild X-VCS-Directories: dev-python/python-augeas/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c6d992b2ed85048a3203ee45fdbef8791ce0dcb9 X-VCS-Branch: master Date: Fri, 12 Jul 2024 19:26:35 +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: 0a8883bd-6ca1-4f01-a03c-321cd46db6e2 X-Archives-Hash: 5a92f775bbc0cf02a56790b1535c1640 commit: c6d992b2ed85048a3203ee45fdbef8791ce0dcb9 Author: Michał Górny gentoo org> AuthorDate: Fri Jul 12 19:09:56 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jul 12 19:26:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6d992b2 dev-python/python-augeas: Enable py3.13 Signed-off-by: Michał Górny gentoo.org> .../python-augeas/python-augeas-1.1.0-r1.ebuild | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/dev-python/python-augeas/python-augeas-1.1.0-r1.ebuild b/dev-python/python-augeas/python-augeas-1.1.0-r1.ebuild index 78f839353bf6..ca40202fd398 100644 --- a/dev-python/python-augeas/python-augeas-1.1.0-r1.ebuild +++ b/dev-python/python-augeas/python-augeas-1.1.0-r1.ebuild @@ -5,12 +5,16 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 pypi DESCRIPTION="Python bindings for Augeas" -HOMEPAGE="http://augeas.net/" +HOMEPAGE=" + http://augeas.net/ + https://github.com/hercules-team/python-augeas/ + https://pypi.org/project/python-augeas/ +" LICENSE="LGPL-2.1" SLOT="0" @@ -20,11 +24,12 @@ RDEPEND=" app-admin/augeas >=dev-python/cffi-1.0.0[${PYTHON_USEDEP}] " -DEPEND="${RDEPEND}" +BDEPEND=" + ${RDEPEND} +" -PATCHES=( "${FILESDIR}/remove-tests.patch" ) +PATCHES=( + "${FILESDIR}/remove-tests.patch" +) -python_test() { - cd test || die - "${EPYTHON}" test_augeas.py || die "Tests failed with ${EPYTHON}" -} +distutils_enable_tests unittest