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 4E1E515802F for ; Sat, 25 Feb 2023 10:27:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3DAEE093E; Sat, 25 Feb 2023 10:27:31 +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 8A325E093E for ; Sat, 25 Feb 2023 10:27:31 +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 A3506340FA7 for ; Sat, 25 Feb 2023 10:27:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F97E8BB for ; Sat, 25 Feb 2023 10:27:28 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1677320829.ef5003ccecfcfb64bdcceb46100cd8805f26be34.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libixion/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libixion/libixion-0.17.0-r1.ebuild dev-libs/libixion/libixion-9999.ebuild X-VCS-Directories: dev-libs/libixion/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ef5003ccecfcfb64bdcceb46100cd8805f26be34 X-VCS-Branch: master Date: Sat, 25 Feb 2023 10:27:28 +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: 8314a12e-b9b1-46dc-8d34-657d24b35512 X-Archives-Hash: 699287be4501740e633aaff1a4ba1967 commit: ef5003ccecfcfb64bdcceb46100cd8805f26be34 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Feb 25 09:56:27 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Feb 25 10:27:09 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef5003cc dev-libs/libixion: python3_11 Tests pass. Closes: https://bugs.gentoo.org/896714 Signed-off-by: Andreas Sturmlechner gentoo.org> .../libixion/{libixion-9999.ebuild => libixion-0.17.0-r1.ebuild} | 9 ++++----- dev-libs/libixion/libixion-9999.ebuild | 7 +++---- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/dev-libs/libixion/libixion-9999.ebuild b/dev-libs/libixion/libixion-0.17.0-r1.ebuild similarity index 87% copy from dev-libs/libixion/libixion-9999.ebuild copy to dev-libs/libixion/libixion-0.17.0-r1.ebuild index bdf365c4dc51..fa8b08196511 100644 --- a/dev-libs/libixion/libixion-9999.ebuild +++ b/dev-libs/libixion/libixion-0.17.0-r1.ebuild @@ -3,14 +3,13 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) - +PYTHON_COMPAT=( python3_{9..11} ) inherit python-single-r1 DESCRIPTION="General purpose formula parser & interpreter" HOMEPAGE="https://gitlab.com/ixion/ixion" -if [[ ${PV} == *9999 ]]; then +if [[ ${PV} == *9999* ]]; then MDDS_SLOT="1/9999" EGIT_REPO_URI="https://gitlab.com/ixion/ixion.git" inherit git-r3 autotools @@ -21,7 +20,7 @@ else fi LICENSE="MIT" -SLOT="0/0.18" # based on SONAME of libixion.so +SLOT="0/0.17" # based on SONAME of libixion.so IUSE="debug python" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" @@ -39,7 +38,7 @@ pkg_setup() { src_prepare() { default - [[ ${PV} == *9999 ]] && eautoreconf + [[ ${PV} == *9999* ]] && eautoreconf } src_configure() { diff --git a/dev-libs/libixion/libixion-9999.ebuild b/dev-libs/libixion/libixion-9999.ebuild index bdf365c4dc51..c20b5d4c5596 100644 --- a/dev-libs/libixion/libixion-9999.ebuild +++ b/dev-libs/libixion/libixion-9999.ebuild @@ -3,14 +3,13 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) - +PYTHON_COMPAT=( python3_{9..11} ) inherit python-single-r1 DESCRIPTION="General purpose formula parser & interpreter" HOMEPAGE="https://gitlab.com/ixion/ixion" -if [[ ${PV} == *9999 ]]; then +if [[ ${PV} == *9999* ]]; then MDDS_SLOT="1/9999" EGIT_REPO_URI="https://gitlab.com/ixion/ixion.git" inherit git-r3 autotools @@ -39,7 +38,7 @@ pkg_setup() { src_prepare() { default - [[ ${PV} == *9999 ]] && eautoreconf + [[ ${PV} == *9999* ]] && eautoreconf } src_configure() {