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 7E984158089 for ; Tue, 17 Oct 2023 15:09:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF58F2BC0C0; Tue, 17 Oct 2023 15:09:00 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 96E1D2BC0C0 for ; Tue, 17 Oct 2023 15:09:00 +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 BA84E335CAF for ; Tue, 17 Oct 2023 15:08:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 481B1128A for ; Tue, 17 Oct 2023 15:08:58 +0000 (UTC) From: "Rui Huang" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rui Huang" Message-ID: <1697555326.601d52a6fd1ffd050c730b0a7f1afa3e8f987952.vowstar@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/kactus2/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sci-electronics/kactus2/kactus2-9999.ebuild X-VCS-Directories: sci-electronics/kactus2/ X-VCS-Committer: vowstar X-VCS-Committer-Name: Rui Huang X-VCS-Revision: 601d52a6fd1ffd050c730b0a7f1afa3e8f987952 X-VCS-Branch: dev Date: Tue, 17 Oct 2023 15:08:58 +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: 856a5270-1656-4b53-9024-0929a9733eb4 X-Archives-Hash: 3eb203977f4a5bc0bfd8bf3a6965d97a commit: 601d52a6fd1ffd050c730b0a7f1afa3e8f987952 Author: Huang Rui gmail com> AuthorDate: Tue Oct 17 15:08:46 2023 +0000 Commit: Rui Huang gmail com> CommitDate: Tue Oct 17 15:08:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=601d52a6 sci-electronics/kactus2: enable py3.12 Signed-off-by: Huang Rui gmail.com> sci-electronics/kactus2/kactus2-9999.ebuild | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/sci-electronics/kactus2/kactus2-9999.ebuild b/sci-electronics/kactus2/kactus2-9999.ebuild index c325dfd757..5d9feb0745 100644 --- a/sci-electronics/kactus2/kactus2-9999.ebuild +++ b/sci-electronics/kactus2/kactus2-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="8" -PYTHON_COMPAT=( python3_{10..11} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit python-r1 qmake-utils xdg DESCRIPTION="A open source IP-XACT-based tool" @@ -17,7 +17,7 @@ if [[ "${PV}" == "9999" ]] ; then EGIT_REPO_URI="https://github.com/${PN}/${PN}dev.git" else SRC_URI="https://github.com/${PN}/${PN}dev/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86" + KEYWORDS="~amd64" S="${WORKDIR}/${PN}dev-${PV}" fi @@ -27,13 +27,8 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND=" ${PYTHON_DEPS} - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qthelp:5 - dev-qt/qtprintsupport:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 + dev-qt/qtbase:6=[cups,gui,network,opengl,widgets,xml] + dev-qt/qtsvg:6 " DEPEND=" @@ -42,16 +37,21 @@ DEPEND=" BDEPEND=" dev-lang/swig + dev-qt/qttools:6[linguist,qdoc] " +PATCHES=( + "${FILESDIR}"/${PN}-3.12.0-fix-createhelp.patch +) + src_prepare() { default # Fix QA pre-stripped warnings, bug 781674 while IFS= read -r -d '' i; do echo "CONFIG+=nostrip" >> "${i}" || die done < <(find . -type f '(' -name "*.pro" ')' -print0) - # Fix QTBIN_PATH - sed -i -e "s|QTBIN_PATH=.*|QTBIN_PATH=\"$(qt5_get_bindir)/\"|" configure || die + # # Fix QTBIN_PATH + # sed -i -e "s|QTBIN_PATH=.*|QTBIN_PATH=\"$(qt6_get_bindir)/\"|" configure || die } src_install() {