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 6F6DA15852A for ; Wed, 21 Aug 2024 15:26:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B12AAE2A8B; Wed, 21 Aug 2024 15:26:53 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9A825E2A8B for ; Wed, 21 Aug 2024 15:26:53 +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 85970335DC0 for ; Wed, 21 Aug 2024 15:26:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E273311B6 for ; Wed, 21 Aug 2024 15:26:50 +0000 (UTC) From: "Takuya Wakazono" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Takuya Wakazono" Message-ID: <1724251229.04b5d109db4d93eb55a720da5ac1d421a5767cef.pastalian46@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-arch/libarchive-qt/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-arch/libarchive-qt/libarchive-qt-2.0.7.ebuild X-VCS-Directories: app-arch/libarchive-qt/ X-VCS-Committer: pastalian46 X-VCS-Committer-Name: Takuya Wakazono X-VCS-Revision: 04b5d109db4d93eb55a720da5ac1d421a5767cef X-VCS-Branch: dev Date: Wed, 21 Aug 2024 15:26:50 +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: 63ecdc7b-d870-47c7-b524-12445605a512 X-Archives-Hash: 7e6b048b74992947d5367826819e62c4 commit: 04b5d109db4d93eb55a720da5ac1d421a5767cef Author: Takuya Wakazono gmail com> AuthorDate: Wed Aug 21 14:23:23 2024 +0000 Commit: Takuya Wakazono gmail com> CommitDate: Wed Aug 21 14:40:29 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=04b5d109 app-arch/libarchive-qt: fix deps Closes: https://bugs.gentoo.org/932108 Signed-off-by: Takuya Wakazono gmail.com> app-arch/libarchive-qt/libarchive-qt-2.0.7.ebuild | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/app-arch/libarchive-qt/libarchive-qt-2.0.7.ebuild b/app-arch/libarchive-qt/libarchive-qt-2.0.7.ebuild index dc80e6178..2d8547567 100644 --- a/app-arch/libarchive-qt/libarchive-qt-2.0.7.ebuild +++ b/app-arch/libarchive-qt/libarchive-qt-2.0.7.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit xdg meson @@ -17,23 +17,22 @@ else S="${WORKDIR}/${PN}-v${PV}" fi -LICENSE="LGPL-3" +LICENSE="LGPL-3+" SLOT="0" -IUSE="static-libs" -RESTRICT="test" +IUSE="qt6" DEPEND=" - app-arch/libarchive[lzma,bzip2,zlib(+)] - app-arch/lrzip - app-arch/lzip - app-arch/lzop - dev-qt/qtgui:5 + app-arch/libarchive:= + sys-libs/zlib + !qt6? ( dev-qt/qtcore:5 ) + qt6? ( dev-qt/qtbase:6 ) " RDEPEND="${DEPEND}" src_configure() { local emesonargs=( - $(meson_use static-libs install_static) + -Dinstall_static=false + -Duse_qt_version=$(usex qt6 qt6 qt5) ) meson_src_configure }