repo/gentoo:master commit in: sys-apps/xdg-dbus-proxy/
"Sam James" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786666968.05e0904d401d01edd7236bb77ad831d983582e43.sam@gentoo> |
commit: 05e0904d401d01edd7236bb77ad831d983582e43
Author: Brett A C Sheffield <bacs <AT> librecast <DOT> net>
AuthorDate: Tue Aug 11 17:27:40 2026 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 14 00:22:48 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05e0904d
sys-apps/xdg-dbus-proxy: add 0.1.8
Bug: https://bugs.gentoo.org/980738
Signed-off-by: Brett A C Sheffield <bacs <AT> librecast.net>
Part-of: https://codeberg.org/gentoo/gentoo/pulls/1655
Merges: https://codeberg.org/gentoo/gentoo/pulls/1655
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/xdg-dbus-proxy/Manifest | 1 +
.../xdg-dbus-proxy/xdg-dbus-proxy-0.1.8.ebuild | 37 ++++++++++++++++++++++
2 files changed, 38 insertions(+)
diff --git a/sys-apps/xdg-dbus-proxy/Manifest b/sys-apps/xdg-dbus-proxy/Manifest
index 583237d1f685..f29fb9e83109 100644
--- a/sys-apps/xdg-dbus-proxy/Manifest
+++ b/sys-apps/xdg-dbus-proxy/Manifest
@@ -1 +1,2 @@
DIST xdg-dbus-proxy-0.1.7.tar.xz 42764 BLAKE2B 1f29fd5dbc33c3a85dab066eed02c65281e5b25a2d24428f5292d02a2a3910326cf99cae92b58fabf72508df55257222a5199daadfc2ed982d77623321a6be7c SHA512 be5e6b375e8dfaf1295b182cbce2a2dc12ebccb7fa52336c599241cc7114782241ebb3fa4613d0cbc9b1750719c5cb69ca699558f3732b33d8f0815180cd9b0f
+DIST xdg-dbus-proxy-0.1.8.tar.xz 45932 BLAKE2B 2aa33abfe32b4d8ee74a55639bfb73ae3e0c45a77fad2daece5a7a296cb15f1f97c3acacf510e228575e0f3fd7ae4dbd1848e7f416e5ac062bd61d45172883c1 SHA512 9b0ed1b7cc7133c531b793fe828a103291a46a7de5841aba7f5d728f932570f4a5f82e22fa19576ad812fc344a6c80451c7e414fd66d4ceae8272efe3c8e5901
diff --git a/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.8.ebuild b/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.8.ebuild
new file mode 100644
index 000000000000..e6c10d4fb247
--- /dev/null
+++ b/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.8.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="Filtering proxy for D-Bus connections"
+HOMEPAGE="https://github.com/flatpak/xdg-dbus-proxy"
+SRC_URI="https://github.com/flatpak/${PN}/releases/download/${PV}/${P}.tar.xz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=dev-libs/glib-2.40:2
+"
+DEPEND="${RDEPEND}
+ test? ( sys-apps/dbus )
+"
+BDEPEND="
+ app-text/docbook-xsl-stylesheets
+ dev-libs/libxslt
+ virtual/pkgconfig
+"
+
+src_configure() {
+ local emesonargs=(
+ -Dinstalled_tests=false
+ -Dman=enabled
+ $(meson_use test tests)
+ )
+ meson_src_configure
+}