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 93B0E1581FB for ; Thu, 29 Aug 2024 23:55:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6D89E2A13; Thu, 29 Aug 2024 23:55:36 +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 99FB5E2A13 for ; Thu, 29 Aug 2024 23:55:36 +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 8FCB03406BF for ; Thu, 29 Aug 2024 23:55:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF4471744 for ; Thu, 29 Aug 2024 23:55:33 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1724975597.7d54d1dc3397d96ff966101d843260e8a23df897.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/marisa/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/marisa/marisa-0.2.6.ebuild dev-libs/marisa/marisa-9999.ebuild X-VCS-Directories: dev-libs/marisa/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 7d54d1dc3397d96ff966101d843260e8a23df897 X-VCS-Branch: master Date: Thu, 29 Aug 2024 23:55:33 +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: 5afe51fa-f0be-47da-87ca-108d72af8bac X-Archives-Hash: 698b876581316dfeeb1184ee4bc22bc8 commit: 7d54d1dc3397d96ff966101d843260e8a23df897 Author: Yongxiang Liang gmail com> AuthorDate: Sat Aug 24 15:23:22 2024 +0000 Commit: Yixun Lan gentoo org> CommitDate: Thu Aug 29 23:53:17 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d54d1dc dev-libs/marisa: enable py3.12, also drop py3.9 Closes: https://bugs.gentoo.org/909909 Closes: https://bugs.gentoo.org/929426 Closes: https://github.com/gentoo/gentoo/38279 Signed-off-by: Yongxiang Liang gmail.com> Signed-off-by: Yixun Lan gentoo.org> dev-libs/marisa/marisa-0.2.6.ebuild | 10 +++++----- dev-libs/marisa/marisa-9999.ebuild | 11 +++++------ 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/dev-libs/marisa/marisa-0.2.6.ebuild b/dev-libs/marisa/marisa-0.2.6.ebuild index 6e587ffcb945..47f2023b5fad 100644 --- a/dev-libs/marisa/marisa-0.2.6.ebuild +++ b/dev-libs/marisa/marisa-0.2.6.ebuild @@ -1,8 +1,9 @@ -# Copyright 2014-2023 Gentoo Authors +# Copyright 2014-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="8" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) +DISTUTILS_USE_PEP517="setuptools" DISTUTILS_OPTIONAL="1" DISTUTILS_EXT=1 @@ -16,9 +17,7 @@ fi DESCRIPTION="Matching Algorithm with Recursively Implemented StorAge" HOMEPAGE="https://github.com/s-yata/marisa-trie https://code.google.com/archive/p/marisa-trie/" -if [[ "${PV}" == "9999" ]]; then - SRC_URI="" -else +if [[ "${PV}" != "9999" ]]; then SRC_URI="https://github.com/s-yata/marisa-trie/archive/v${PV}.tar.gz -> ${P}.tar.gz" fi @@ -30,6 +29,7 @@ REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" BDEPEND="python? ( ${PYTHON_DEPS} + ${DISTUTILS_DEPS} dev-lang/swig )" DEPEND="python? ( ${PYTHON_DEPS} )" diff --git a/dev-libs/marisa/marisa-9999.ebuild b/dev-libs/marisa/marisa-9999.ebuild index 7731d92f28e3..45c481f3fb3a 100644 --- a/dev-libs/marisa/marisa-9999.ebuild +++ b/dev-libs/marisa/marisa-9999.ebuild @@ -1,8 +1,9 @@ -# Copyright 2014-2023 Gentoo Authors +# Copyright 2014-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="8" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) +DISTUTILS_USE_PEP517="setuptools" DISTUTILS_OPTIONAL="1" DISTUTILS_EXT=1 @@ -16,20 +17,18 @@ fi DESCRIPTION="Matching Algorithm with Recursively Implemented StorAge" HOMEPAGE="https://github.com/s-yata/marisa-trie https://code.google.com/archive/p/marisa-trie/" -if [[ "${PV}" == "9999" ]]; then - SRC_URI="" -else +if [[ "${PV}" != "9999" ]]; then SRC_URI="https://github.com/s-yata/marisa-trie/archive/v${PV}.tar.gz -> ${P}.tar.gz" fi LICENSE="|| ( BSD-2 LGPL-2.1+ )" SLOT="0" -KEYWORDS="" IUSE="python static-libs" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" BDEPEND="python? ( ${PYTHON_DEPS} + ${DISTUTILS_DEPS} dev-lang/swig )" DEPEND="python? ( ${PYTHON_DEPS} )"