commit:     da1018a817dbe198332f9087f4587360cc2d4e86
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 28 07:50:05 2025 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Thu Aug 28 08:55:02 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da1018a8

gui-libs/wf-config: add 0.10.0

Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 gui-libs/wf-config/Manifest                |  1 +
 gui-libs/wf-config/wf-config-0.10.0.ebuild | 47 ++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/gui-libs/wf-config/Manifest b/gui-libs/wf-config/Manifest
index 5f81b41fa159..55a49b9eca25 100644
--- a/gui-libs/wf-config/Manifest
+++ b/gui-libs/wf-config/Manifest
@@ -1 +1,2 @@
+DIST wf-config-0.10.0.tar.xz 43684 BLAKE2B 
e7d80f8f73956a68206a504524463bb357d89376faf044b17731a7584b481acf008814f405a0415965abde12d79ef7ca4cb1788780e979e80d3d9c65a80de229
 SHA512 
c75eb9188a361cc6f59d5c2142600337c71b05c5175ac8a2d8040c4fce4036d0ceb85ed87023d2db0704b55364aa88779510a757c225ba839faa0b751e03ed9f
 DIST wf-config-0.9.0.tar.xz 42612 BLAKE2B 
5f3b529f829f6fc6bdfe974633467707bba501eddca1a9d32f62c1d4ea6398e74ae9bc6f970de821e81fe7fbc4a26b77611587c637ab1961898084571b073ead
 SHA512 
ac2ca69b7d96b9b145a4789f004705a2d7b323e6724e429a1e5a4544cd56828165a01f48a9863ceb92004c51c8f05729468f4a32c37545716f8d537d39e3236b

diff --git a/gui-libs/wf-config/wf-config-0.10.0.ebuild 
b/gui-libs/wf-config/wf-config-0.10.0.ebuild
new file mode 100644
index 000000000000..2846d068be02
--- /dev/null
+++ b/gui-libs/wf-config/wf-config-0.10.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2019-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="library for managing wayfire configuration files"
+HOMEPAGE="https://github.com/WayfireWM/wf-config";
+
+if [[ ${PV} == 9999 ]]; then
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git";
+       SLOT="0/0.10"
+else
+       
SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz";
+       KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+       SLOT="0/$(ver_cut 1-2)"
+fi
+
+LICENSE="MIT"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+       dev-libs/libevdev
+       dev-libs/libxml2:=
+       media-libs/glm
+"
+RDEPEND="
+       ${DEPEND}
+       !gui-wm/wayfire:0/0.9
+"
+BDEPEND="
+       dev-libs/wayland-protocols
+       virtual/pkgconfig
+       test? ( dev-cpp/doctest )
+"
+
+src_configure() {
+       local emesonargs=(
+               $(meson_feature test tests)
+               -Dlocale_test=false # requires de_DE locale to be installed
+       )
+
+       meson_src_configure
+}

Reply via email to