Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/xdg-dbus-proxy/
Date: Thu, 12 May 2022 23:15:33
Message-Id: 1652397299.a77f715beab04827be1ba9067c3037b77e2625e8.mattst88@gentoo
1 commit: a77f715beab04827be1ba9067c3037b77e2625e8
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 12 23:14:42 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu May 12 23:14:59 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a77f715b
7
8 sys-apps/xdg-dbus-proxy: Version bump to 0.1.4
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 sys-apps/xdg-dbus-proxy/Manifest | 1 +
13 .../xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild | 36 ++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/sys-apps/xdg-dbus-proxy/Manifest b/sys-apps/xdg-dbus-proxy/Manifest
17 index f015523ab703..8415c4f59ee3 100644
18 --- a/sys-apps/xdg-dbus-proxy/Manifest
19 +++ b/sys-apps/xdg-dbus-proxy/Manifest
20 @@ -1 +1,2 @@
21 DIST xdg-dbus-proxy-0.1.3.tar.xz 119896 BLAKE2B c789ad697c1cda84a4cde2c84b90370869bdaeb76736c2891270a58834296e3acbf83b311ba153a0d1e9f3266de0cc1eda63866e2808dcbb4aeac451f90da7f6 SHA512 bb730366efca9d0d199983063dd5cd7b8a8aac8d9efd8e3d6b6090166e5e09a74ef241a07388cfbb2f108e66b3a29114671a6d955324626aebefa1d6c2423632
22 +DIST xdg-dbus-proxy-0.1.4.tar.xz 122112 BLAKE2B c7d2898b703c51d6b53838996a0ae74e7a4e163b9611e28dfded54ab1a44c0473fa25daa13e94977c918544e0741bf0dd4747dfcae858468bc4abd288613cb8b SHA512 d50fa916d07f23e080ab53cf290b5d6db73cfd8262253a48b9f012ce6c182e201d0a67efaeb7f28a844d3ef146aa48936dfbe4279a59b909a6dc4419d5f15b04
23
24 diff --git a/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild b/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild
25 new file mode 100644
26 index 000000000000..23744c014949
27 --- /dev/null
28 +++ b/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild
29 @@ -0,0 +1,36 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit meson
36 +
37 +DESCRIPTION="Filtering proxy for D-Bus connections"
38 +HOMEPAGE="https://github.com/flatpak/xdg-dbus-proxy"
39 +SRC_URI="https://github.com/flatpak/${PN}/releases/download/${PV}/${P}.tar.xz"
40 +
41 +LICENSE="LGPL-2.1+"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
44 +IUSE="test"
45 +RESTRICT="!test? ( test )"
46 +
47 +RDEPEND="
48 + >=dev-libs/glib-2.40:2
49 +"
50 +DEPEND="${RDEPEND}
51 + test? ( sys-apps/dbus )
52 +"
53 +BDEPEND="
54 + app-text/docbook-xsl-stylesheets
55 + dev-libs/libxslt
56 + virtual/pkgconfig
57 +"
58 +
59 +src_configure() {
60 + local emesonargs=(
61 + -Dman=enabled
62 + $(meson_use test tests)
63 + )
64 + meson_src_configure
65 +}