Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/d-spy/
Date: Fri, 17 Mar 2023 19:56:08
Message-Id: 1679082924.01f256e975301f2b55281151b86400d19a163738.mattst88@gentoo
1 commit: 01f256e975301f2b55281151b86400d19a163738
2 Author: Guillermo Joandet <gjoandet <AT> gmail <DOT> com>
3 AuthorDate: Fri Mar 17 18:36:05 2023 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 17 19:55:24 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01f256e9
7
8 dev-util/d-spy: Version bump to 1.6.0
9
10 Signed-off-by: Guillermo Joandet <gjoandet <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/30188
12 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
13
14 dev-util/d-spy/Manifest | 1 +
15 dev-util/d-spy/d-spy-1.6.0.ebuild | 43 +++++++++++++++++++++++++++++++++++++++
16 2 files changed, 44 insertions(+)
17
18 diff --git a/dev-util/d-spy/Manifest b/dev-util/d-spy/Manifest
19 index 053528c3c434..561351041b7a 100644
20 --- a/dev-util/d-spy/Manifest
21 +++ b/dev-util/d-spy/Manifest
22 @@ -1 +1,2 @@
23 DIST d-spy-1.4.0.tar.xz 215428 BLAKE2B 8641ebc77c2829f77ef563773da242deb512fc9c85ba4c3c16a4c5ff27fb5e61e55c71abc265abcf8d3c4a0c85704af52e0651d63e1b90a8e4b570d9ecb0f357 SHA512 748ba922ff77bfb6a186e155b5f83d833f7c9085322b37a972fc4e024a4125c07d393e72436c7235a2c94d8504afecd3c21b9d22765f35968bb56554e0ae648f
24 +DIST d-spy-1.6.0.tar.xz 215844 BLAKE2B 4811591024d3b599e5e10354db8aa14d5b80bf6fb3c8bfbeadcf5d9c14501af0d00368643cb58eac5ad9452b541743ce3ff9f8376202270f635078876a1012b3 SHA512 7a65bd64320a69eb54077a359381bda35f285b42f4181bf972bc790a8002a773b66c23303e5e94c3dec8c7b9bfc7b8aa60a5ce60f2eb47459ce3dfd634a05703
25
26 diff --git a/dev-util/d-spy/d-spy-1.6.0.ebuild b/dev-util/d-spy/d-spy-1.6.0.ebuild
27 new file mode 100644
28 index 000000000000..31de818002f3
29 --- /dev/null
30 +++ b/dev-util/d-spy/d-spy-1.6.0.ebuild
31 @@ -0,0 +1,43 @@
32 +# Copyright 1999-2023 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit gnome.org meson xdg
38 +
39 +DESCRIPTION="D-spy is a blisteringly fast D-Bus debugger"
40 +HOMEPAGE="https://gitlab.gnome.org/GNOME/d-spy"
41 +
42 +LICENSE="GPL-3+ LGPL-3+"
43 +SLOT="1"
44 +KEYWORDS="~amd64"
45 +
46 +DEPEND="
47 + >=dev-libs/glib-2.68:2
48 + >=gui-libs/gtk-4.6:4
49 + >=gui-libs/libadwaita-1.0:1
50 +"
51 +RDEPEND="
52 + ${DEPEND}
53 + >=sys-apps/dbus-1
54 +"
55 +BDEPEND="
56 + dev-libs/appstream-glib
57 + dev-util/desktop-file-utils
58 + sys-devel/gettext
59 + virtual/pkgconfig
60 +"
61 +
62 +src_install() {
63 + meson_src_install
64 +}
65 +
66 +pkg_postinst() {
67 + xdg_icon_cache_update
68 + xdg_desktop_database_update
69 +}
70 +
71 +pkg_postrm() {
72 + xdg_icon_cache_update
73 + xdg_desktop_database_update
74 +}