commit: 25dd53863470a392d7101ab2f5f4588dcdee6b08 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Feb 16 07:52:44 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Feb 16 07:53:14 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25dd5386
sys-apps/xdg-dbus-proxy: add 0.1.6 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-apps/xdg-dbus-proxy/Manifest | 1 + .../xdg-dbus-proxy/xdg-dbus-proxy-0.1.6.ebuild | 37 ++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/sys-apps/xdg-dbus-proxy/Manifest b/sys-apps/xdg-dbus-proxy/Manifest index b47e9b089fa4..e31da2b0d351 100644 --- a/sys-apps/xdg-dbus-proxy/Manifest +++ b/sys-apps/xdg-dbus-proxy/Manifest @@ -1 +1,2 @@ DIST xdg-dbus-proxy-0.1.5.tar.xz 124780 BLAKE2B bb9e1c42826ebfab1a93351f43ab09d7280dc27883bfd23d00c8c919bd7b0ea12b87acffe8025d4c41301593c71a98af4ccf10b6c780479e84e020529a8d08bb SHA512 4b079c060aa4c1d7f305216d03166b9edc19cb73ef1230e14a882f07a6400929f62afc8535338c8560ea032a519c0934fbc69533f5bebb555fecb8f090330a33 +DIST xdg-dbus-proxy-0.1.6.tar.xz 48920 BLAKE2B be5b59e3b9e59a52e0ad1a59d69eab5baa56d484b80413fd763556ad1da33c5d720afb3a61dec2e41c9a6ffcfbd974ec44999872dd724315ec97cfe01c651e7b SHA512 9aeb3c00c8507b583954ba928171d7b373159a614eb9df15a4352d4b929d0c76d836b522cdc031e2f38a076ab5ec363441208e403a899aa9f0e58d703791ed2d diff --git a/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.6.ebuild b/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.6.ebuild new file mode 100644 index 000000000000..ba615d50f0c0 --- /dev/null +++ b/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.6.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2025 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 +}
