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 E545F15808A for ; Tue, 15 Jul 2025 09:16:10 +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) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id CD5303406A2 for ; Tue, 15 Jul 2025 09:16:10 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id C7B1A110280; Tue, 15 Jul 2025 09:16:09 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id C2C95110280 for ; Tue, 15 Jul 2025 09:16:09 +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 7344B3406A2 for ; Tue, 15 Jul 2025 09:16:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D98B62A6F for ; Tue, 15 Jul 2025 09:16:07 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1752570962.6258a508beef2cc3ff2690fbb1a62c68c0ec49f4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/libwlembed/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-libs/libwlembed/libwlembed-9999.ebuild gui-libs/libwlembed/metadata.xml X-VCS-Directories: gui-libs/libwlembed/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6258a508beef2cc3ff2690fbb1a62c68c0ec49f4 X-VCS-Branch: master Date: Tue, 15 Jul 2025 09:16:07 +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: 259d1e21-6bd5-4a5a-9616-b49ff27fa442 X-Archives-Hash: 740140009d5916110f52bf582776c5bf commit: 6258a508beef2cc3ff2690fbb1a62c68c0ec49f4 Author: Michał Górny gentoo org> AuthorDate: Tue Jul 15 08:58:42 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jul 15 09:16:02 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6258a508 gui-libs/libwlembed: New library needed for xfce4-screensaver (live) Signed-off-by: Michał Górny gentoo.org> gui-libs/libwlembed/libwlembed-9999.ebuild | 51 ++++++++++++++++++++++++++++++ gui-libs/libwlembed/metadata.xml | 7 ++++ 2 files changed, 58 insertions(+) diff --git a/gui-libs/libwlembed/libwlembed-9999.ebuild b/gui-libs/libwlembed/libwlembed-9999.ebuild new file mode 100644 index 000000000000..cd3bb6e1caee --- /dev/null +++ b/gui-libs/libwlembed/libwlembed-9999.ebuild @@ -0,0 +1,51 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..14} ) + +inherit git-r3 meson python-any-r1 + +DESCRIPTION="A library for easily adding embedded Wayland compositor functionality" +HOMEPAGE="https://gitlab.xfce.org/kelnos/libwlembed" +EGIT_REPO_URI="https://gitlab.xfce.org/kelnos/libwlembed" + +LICENSE="GPL-3" +SLOT="0" +IUSE="gtk gtk-doc +introspection" + +DEPEND=" + >=dev-libs/glib-2.72 + >=dev-libs/wayland-1.20 + >=dev-util/wayland-scanner-1.20 + x11-libs/libxkbcommon + gtk? ( + >=gui-libs/gtk-layer-shell-0.7.0 + >=x11-libs/gtk+-3.24:3[wayland] + ) + introspection? ( >=dev-libs/gobject-introspection-1.72.0 ) +" +RDEPEND=" + ${DEPEND} +" +DEPEND+=" + >=dev-libs/wayland-protocols-1.25 +" +BDEPEND=" + ${PYTHON_DEPS} + virtual/pkgconfig + gtk-doc? ( dev-util/gtk-doc ) +" + +src_configure() { + local emesonargs=( + $(meson_feature gtk gtk3) + $(meson_feature gtk gtk3-layer-shell) + $(meson_use introspection) + $(meson_use gtk-doc) + -Dexamples=false + ) + + meson_src_configure +} diff --git a/gui-libs/libwlembed/metadata.xml b/gui-libs/libwlembed/metadata.xml new file mode 100644 index 000000000000..f05a5a518f4f --- /dev/null +++ b/gui-libs/libwlembed/metadata.xml @@ -0,0 +1,7 @@ + + + + + xfce@gentoo.org + +