From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 2F31615827B for ; Thu, 28 Aug 2025 20:38:19 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 161F8340E16 for ; Thu, 28 Aug 2025 20:38:19 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 0FD0B110561; Thu, 28 Aug 2025 20:38:15 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 03F5C110561 for ; Thu, 28 Aug 2025 20:38:14 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ACADA340D4C for ; Thu, 28 Aug 2025 20:38:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D2BF34FD for ; Thu, 28 Aug 2025 20:38:13 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1756413487.782526463a71e95b6e9ddfc617c3e3368adaea66.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/portage-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/portage-utils/metadata.xml app-portage/portage-utils/portage-utils-9999.ebuild X-VCS-Directories: app-portage/portage-utils/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 782526463a71e95b6e9ddfc617c3e3368adaea66 X-VCS-Branch: master Date: Thu, 28 Aug 2025 20:38:13 +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: 5f962c9a-5ca6-431c-aede-30b37956d4bf X-Archives-Hash: 00910f27cdffcb9fd5498d34f2891334 commit: 782526463a71e95b6e9ddfc617c3e3368adaea66 Author: Fabian Groffen gentoo org> AuthorDate: Thu Aug 28 20:37:36 2025 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Aug 28 20:38:07 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78252646 app-portage/portage-utils-9999: adapt for current git main Signed-off-by: Fabian Groffen gentoo.org> app-portage/portage-utils/metadata.xml | 2 ++ .../portage-utils/portage-utils-9999.ebuild | 28 +++++++++++++++++++++- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/app-portage/portage-utils/metadata.xml b/app-portage/portage-utils/metadata.xml index 110ffa562e70..628d6179545d 100644 --- a/app-portage/portage-utils/metadata.xml +++ b/app-portage/portage-utils/metadata.xml @@ -6,6 +6,8 @@ Fabian Groffen + Build GLEP-78 gpkg support in qpkg + Build gtree repository cache support Build qmanifest applet, this adds additional dependencies for GPG, OpenSSL and BLAKE2B hashing Build qtegrity applet, this adds additional dependencies for OpenSSL diff --git a/app-portage/portage-utils/portage-utils-9999.ebuild b/app-portage/portage-utils/portage-utils-9999.ebuild index 83f2812f8867..24afae4e7a53 100644 --- a/app-portage/portage-utils/portage-utils-9999.ebuild +++ b/app-portage/portage-utils/portage-utils-9999.ebuild @@ -18,9 +18,21 @@ fi LICENSE="GPL-2" SLOT="0" -IUSE="openmp +qmanifest static" +IUSE="+gpkg +gtree openmp +qmanifest static" RDEPEND=" + gpkg? ( + !static? ( + app-crypt/gpgme:= + app-arch/libarchive:= + ) + ) + gtree? ( + !static? ( + app-crypt/gpgme:= + app-arch/libarchive:=[zstd] + ) + ) openmp? ( || ( sys-devel/gcc:*[openmp] llvm-runtimes/openmp @@ -33,6 +45,18 @@ RDEPEND=" ) )" DEPEND="${RDEPEND} + gpkg? ( + static? ( + app-crypt/gpgme[static-libs] + app-arch/libarchive[static-libs] + ) + ) + gtree? ( + static? ( + app-crypt/gpgme[static-libs] + app-arch/libarchive[static-libs,zstd] + ) + ) qmanifest? ( static? ( app-crypt/gpgme[static-libs] @@ -65,6 +89,8 @@ src_configure() { econf \ --disable-maintainer-mode \ --with-eprefix="${EPREFIX}" \ + $(use_enable gpkg) \ + $(use_enable gtree) \ $(use_enable qmanifest) \ $(use_enable openmp) }