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 86C9015A7D9 for ; Fri, 17 Mar 2023 13:35:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D26F32BC120; Fri, 17 Mar 2023 13:35:34 +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 B8DA52BC11F for ; Fri, 17 Mar 2023 13:35:34 +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 BDC1B341070 for ; Fri, 17 Mar 2023 13:35:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 58DA88E3 for ; Fri, 17 Mar 2023 13:35:32 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1679060109.94a18d4c60d9c4a73a5e5baa402fbaae05079db3.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/datrie/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/datrie/datrie-0.8.2-r1.ebuild dev-python/datrie/datrie-0.8.2.ebuild X-VCS-Directories: dev-python/datrie/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 94a18d4c60d9c4a73a5e5baa402fbaae05079db3 X-VCS-Branch: master Date: Fri, 17 Mar 2023 13:35:32 +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: b07723b7-4285-4cba-962d-ba3cc95d3ff5 X-Archives-Hash: b8b484278de83d4217c11a235464530c commit: 94a18d4c60d9c4a73a5e5baa402fbaae05079db3 Author: Andrew Ammerlaan gentoo org> AuthorDate: Fri Mar 17 12:38:07 2023 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri Mar 17 13:35:09 2023 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=94a18d4c dev-python/datrie: enable py3.11 Signed-off-by: Andrew Ammerlaan gentoo.org> .../datrie/{datrie-0.8.2.ebuild => datrie-0.8.2-r1.ebuild} | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dev-python/datrie/datrie-0.8.2.ebuild b/dev-python/datrie/datrie-0.8.2-r1.ebuild similarity index 80% rename from dev-python/datrie/datrie-0.8.2.ebuild rename to dev-python/datrie/datrie-0.8.2-r1.ebuild index d3046bf8d..6c05c8216 100644 --- a/dev-python/datrie/datrie-0.8.2.ebuild +++ b/dev-python/datrie/datrie-0.8.2-r1.ebuild @@ -1,15 +1,16 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{7,8,9} ) +PYTHON_COMPAT=( python3_{9..11} ) +# Fails to compile with pep517 +#DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 +inherit distutils-r1 pypi DESCRIPTION="Implements a topological sort algorithm" HOMEPAGE="https://github.com/pytries/datrie" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="LGPL-2+" SLOT="0"