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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D962A1581C1 for ; Mon, 15 Jul 2024 02:23:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 180542BC01B; Mon, 15 Jul 2024 02:23:44 +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 F10A32BC01B for ; Mon, 15 Jul 2024 02:23:43 +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 2EA7534106C for ; Mon, 15 Jul 2024 02:23:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 897D01E21 for ; Mon, 15 Jul 2024 02:23:41 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1721009796.aac0cbdb69ce2f9d11f7657067d5ef15f0cad32c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/minizip-ng/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/minizip-ng/minizip-ng-4.0.5.ebuild X-VCS-Directories: sys-libs/minizip-ng/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: aac0cbdb69ce2f9d11f7657067d5ef15f0cad32c X-VCS-Branch: master Date: Mon, 15 Jul 2024 02:23:41 +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: 66b868d9-79f5-4691-9363-cb311ed9b0b1 X-Archives-Hash: 2468ef1b1527ad53fdf54b4428804897 commit: aac0cbdb69ce2f9d11f7657067d5ef15f0cad32c Author: Tom Englund gmail com> AuthorDate: Sat Mar 30 19:19:35 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jul 15 02:16:36 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aac0cbdb sys-libs/minizip-ng: add lzma USE-flag it is optional in minizip-ng and there is a global lzma USE-flag in use for other ebuilds. Closes: https://bugs.gentoo.org/928249 Signed-off-by: Tom Englund gmail.com> Closes: https://github.com/gentoo/gentoo/pull/36001 Signed-off-by: Sam James gentoo.org> sys-libs/minizip-ng/minizip-ng-4.0.5.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-libs/minizip-ng/minizip-ng-4.0.5.ebuild b/sys-libs/minizip-ng/minizip-ng-4.0.5.ebuild index 117488f128e9..776436dd47e5 100644 --- a/sys-libs/minizip-ng/minizip-ng-4.0.5.ebuild +++ b/sys-libs/minizip-ng/minizip-ng-4.0.5.ebuild @@ -15,18 +15,18 @@ SRC_URI="https://github.com/zlib-ng/minizip-ng/archive/refs/tags/${PV}.tar.gz -> LICENSE="ZLIB" SLOT="0/4" KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" -IUSE="compat openssl test zstd" +IUSE="compat lzma openssl test zstd" RESTRICT="!test? ( test )" # Automagically prefers sys-libs/zlib-ng if installed, so let's # just depend on it as presumably it's better tested anyway. RDEPEND=" app-arch/bzip2[${MULTILIB_USEDEP}] - app-arch/xz-utils dev-libs/libbsd[${MULTILIB_USEDEP}] sys-libs/zlib-ng[${MULTILIB_USEDEP}] virtual/libiconv compat? ( !sys-libs/zlib[minizip] ) + lzma? ( app-arch/xz-utils ) openssl? ( dev-libs/openssl:=[${MULTILIB_USEDEP}] ) zstd? ( app-arch/zstd:=[${MULTILIB_USEDEP}] ) " @@ -52,7 +52,7 @@ multilib_src_configure() { # Compression library options -DMZ_ZLIB=ON -DMZ_BZIP2=ON - -DMZ_LZMA=ON + -DMZ_LZMA=$(usex lzma) -DMZ_ZSTD=$(usex zstd) -DMZ_LIBCOMP=OFF