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 D46661584F2 for ; Wed, 12 Mar 2025 00:52:47 +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 BBD8F343168 for ; Wed, 12 Mar 2025 00:52:47 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E68C91103C7; Wed, 12 Mar 2025 00:52:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 bobolink.gentoo.org (Postfix) with ESMTPS id DB6F91103C7 for ; Wed, 12 Mar 2025 00:52: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 8FF0B34311E for ; Wed, 12 Mar 2025 00:52:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0165328DF for ; Wed, 12 Mar 2025 00:52:42 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1741740383.5ac7d5c512cfc8d4c5ef1f54f3e2b68c6f90e7af.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/xapp/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/xapp/xapp-2.8.5-r1.ebuild x11-libs/xapp/xapp-2.8.5.ebuild x11-libs/xapp/xapp-2.8.8-r1.ebuild x11-libs/xapp/xapp-2.8.8.ebuild X-VCS-Directories: x11-libs/xapp/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 5ac7d5c512cfc8d4c5ef1f54f3e2b68c6f90e7af X-VCS-Branch: master Date: Wed, 12 Mar 2025 00:52:42 +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: de898c86-d547-405e-adc0-a7a1a217d058 X-Archives-Hash: 0827f1561060ccb4f21cb7e65b1ab2c6 commit: 5ac7d5c512cfc8d4c5ef1f54f3e2b68c6f90e7af Author: Eli Schwartz gentoo org> AuthorDate: Tue Mar 11 22:10:24 2025 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Wed Mar 12 00:46:23 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ac7d5c5 x11-libs/xapp: enforce binary dependency on gtk x11 backend ``` * QA Notice: binaries depend on Gtk's x11-specific ABI without USE dep: * * /usr/lib64/libxapp.so.2.8.8 ``` Unconditional includes, makes sense since cinnamon only supports X anyway. Signed-off-by: Eli Schwartz gentoo.org> x11-libs/xapp/{xapp-2.8.5.ebuild => xapp-2.8.5-r1.ebuild} | 4 ++-- x11-libs/xapp/{xapp-2.8.8.ebuild => xapp-2.8.8-r1.ebuild} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/x11-libs/xapp/xapp-2.8.5.ebuild b/x11-libs/xapp/xapp-2.8.5-r1.ebuild similarity index 96% rename from x11-libs/xapp/xapp-2.8.5.ebuild rename to x11-libs/xapp/xapp-2.8.5-r1.ebuild index 7cfc706b52e5..d31d4ad9e571 100644 --- a/x11-libs/xapp/xapp-2.8.5.ebuild +++ b/x11-libs/xapp/xapp-2.8.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -25,7 +25,7 @@ DEPEND=" gnome-base/libgnomekbd:= x11-libs/cairo >=x11-libs/gdk-pixbuf-2.22.0:2[introspection?] - >=x11-libs/gtk+-3.22.0:3[introspection?] + >=x11-libs/gtk+-3.22.0:3[introspection?,X] x11-libs/libxkbfile x11-libs/libX11 x11-libs/pango diff --git a/x11-libs/xapp/xapp-2.8.8.ebuild b/x11-libs/xapp/xapp-2.8.8-r1.ebuild similarity index 97% rename from x11-libs/xapp/xapp-2.8.8.ebuild rename to x11-libs/xapp/xapp-2.8.8-r1.ebuild index b73207fba46c..b16811771c9a 100644 --- a/x11-libs/xapp/xapp-2.8.8.ebuild +++ b/x11-libs/xapp/xapp-2.8.8-r1.ebuild @@ -25,7 +25,7 @@ DEPEND=" gnome-base/libgnomekbd:= x11-libs/cairo >=x11-libs/gdk-pixbuf-2.22.0:2[introspection?] - >=x11-libs/gtk+-3.22.0:3[introspection?] + >=x11-libs/gtk+-3.22.0:3[introspection?,X] x11-libs/libxkbfile x11-libs/libX11 x11-libs/pango