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 2D57D1580EB for ; Fri, 23 May 2025 05:49:27 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 18E18343436 for ; Fri, 23 May 2025 05:49:27 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 3AAAD11047D; Fri, 23 May 2025 05:49:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 bobolink.gentoo.org (Postfix) with ESMTPS id 31C4211047D for ; Fri, 23 May 2025 05:49:23 +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 E0D0834342D for ; Fri, 23 May 2025 05:49:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7CA1327A7 for ; Fri, 23 May 2025 05:49:21 +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: <1747979325.4594bbe5c5be548f2e54ec7fd11072d79b2b09c7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/flatpak/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/flatpak/flatpak-1.16.0.ebuild X-VCS-Directories: sys-apps/flatpak/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4594bbe5c5be548f2e54ec7fd11072d79b2b09c7 X-VCS-Branch: master Date: Fri, 23 May 2025 05:49:21 +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: 5f8dbf15-5508-4589-9ac0-f5f2d7ad1f7d X-Archives-Hash: 75985cbeabee2f0f1ec5db4428fb2fcd commit: 4594bbe5c5be548f2e54ec7fd11072d79b2b09c7 Author: Sam James gentoo org> AuthorDate: Fri May 23 05:44:45 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 23 05:48:45 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4594bbe5 sys-apps/flatpak: unrestrict tests They pass for me now: ``` Ok: 20 Fail: 0 Skipped: 32 >>> Completed testing sys-apps/flatpak-1.16.0 ``` Bug: https://bugs.gentoo.org/750053 Signed-off-by: Sam James gentoo.org> sys-apps/flatpak/flatpak-1.16.0.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/sys-apps/flatpak/flatpak-1.16.0.ebuild b/sys-apps/flatpak/flatpak-1.16.0.ebuild index 6443a039d929..daec6c7d7db8 100644 --- a/sys-apps/flatpak/flatpak-1.16.0.ebuild +++ b/sys-apps/flatpak/flatpak-1.16.0.ebuild @@ -13,8 +13,8 @@ SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz" LICENSE="LGPL-2.1+" SLOT="0" KEYWORDS="amd64 arm arm64 ~loong ~ppc64 ~riscv x86" -IUSE="doc introspection policykit seccomp systemd X" -RESTRICT="test" +IUSE="doc introspection policykit seccomp systemd test X" +RESTRICT="!test? ( test )" RDEPEND=" acct-group/flatpak @@ -63,6 +63,10 @@ BDEPEND=" app-text/xmlto dev-libs/libxslt ) + test? ( + net-misc/socat + sys-auth/polkit + ) " PDEPEND="sys-apps/xdg-desktop-portal" @@ -91,6 +95,7 @@ src_configure() { -Dsystem_dbus_proxy=xdg-dbus-proxy -Dtmpfilesdir=/usr/lib/tmpfiles.d $(meson_use policykit tests) + $(meson_use test tests) $(meson_feature policykit system_helper) $(meson_feature introspection gir) $(meson_feature X xauth)