* [gentoo-commits] repo/gentoo:master commit in: dev-util/d-spy/
@ 2022-10-13 0:27 Matt Turner
0 siblings, 0 replies; 7+ messages in thread
From: Matt Turner @ 2022-10-13 0:27 UTC (permalink / raw
To: gentoo-commits
commit: e2bdcaf42a960c922f14c06fc224242107161181
Author: Guillermo Joandet <gjoandet <AT> gmail <DOT> com>
AuthorDate: Wed Oct 5 17:15:21 2022 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Oct 13 00:26:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2bdcaf4
dev-util/d-spy: new package, add 1.4.0
Signed-off-by: Guillermo Joandet <gjoandet <AT> gmail.com>
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
dev-util/d-spy/Manifest | 1 +
dev-util/d-spy/d-spy-1.4.0.ebuild | 34 ++++++++++++++++++++++++++++++++++
dev-util/d-spy/metadata.xml | 8 ++++++++
3 files changed, 43 insertions(+)
diff --git a/dev-util/d-spy/Manifest b/dev-util/d-spy/Manifest
new file mode 100644
index 000000000000..053528c3c434
--- /dev/null
+++ b/dev-util/d-spy/Manifest
@@ -0,0 +1 @@
+DIST d-spy-1.4.0.tar.xz 215428 BLAKE2B 8641ebc77c2829f77ef563773da242deb512fc9c85ba4c3c16a4c5ff27fb5e61e55c71abc265abcf8d3c4a0c85704af52e0651d63e1b90a8e4b570d9ecb0f357 SHA512 748ba922ff77bfb6a186e155b5f83d833f7c9085322b37a972fc4e024a4125c07d393e72436c7235a2c94d8504afecd3c21b9d22765f35968bb56554e0ae648f
diff --git a/dev-util/d-spy/d-spy-1.4.0.ebuild b/dev-util/d-spy/d-spy-1.4.0.ebuild
new file mode 100644
index 000000000000..96b1f7360251
--- /dev/null
+++ b/dev-util/d-spy/d-spy-1.4.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit gnome.org meson
+
+DESCRIPTION="D-spy is a blisteringly fast D-Bus debugger"
+HOMEPAGE="https://wiki.gnome.org/Apps/d-spy https://gitlab.gnome.org/GNOME/d-spy"
+
+LICENSE="GPL-3+ LGPL-3+"
+SLOT="1"
+KEYWORDS="~amd64"
+
+DEPEND="
+ >=dev-libs/glib-2.68:2
+ >=gui-libs/gtk-4.6:4
+ >=gui-libs/libadwaita-1.0:1
+"
+RDEPEND="
+ ${DEPEND}
+ >=sys-apps/dbus-1
+"
+BDEPEND="
+ dev-libs/appstream-glib
+ dev-util/desktop-file-utils
+ sys-devel/gettext
+ virtual/pkgconfig
+"
+
+src_install() {
+ meson_src_install
+ mv "${ED}"/usr/share/appdata "${ED}"/usr/share/metainfo || die
+}
diff --git a/dev-util/d-spy/metadata.xml b/dev-util/d-spy/metadata.xml
new file mode 100644
index 000000000000..5078eeb29079
--- /dev/null
+++ b/dev-util/d-spy/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="project">
+ <email>gnome@gentoo.org</email>
+ <name>Gentoo GNOME Desktop</name>
+</maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/d-spy/
@ 2022-10-13 16:26 Matt Turner
0 siblings, 0 replies; 7+ messages in thread
From: Matt Turner @ 2022-10-13 16:26 UTC (permalink / raw
To: gentoo-commits
commit: 4b5c3deeb5c69ad03bf9fbb36da7856ede1143dc
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 13 16:22:29 2022 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Oct 13 16:26:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b5c3dee
dev-util/d-spy: Call xdg postinst functions
Closes: https://bugs.gentoo.org/876983
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
dev-util/d-spy/d-spy-1.4.0.ebuild | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/dev-util/d-spy/d-spy-1.4.0.ebuild b/dev-util/d-spy/d-spy-1.4.0.ebuild
index 96b1f7360251..9beaae1b265d 100644
--- a/dev-util/d-spy/d-spy-1.4.0.ebuild
+++ b/dev-util/d-spy/d-spy-1.4.0.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit gnome.org meson
+inherit gnome.org meson xdg
DESCRIPTION="D-spy is a blisteringly fast D-Bus debugger"
HOMEPAGE="https://wiki.gnome.org/Apps/d-spy https://gitlab.gnome.org/GNOME/d-spy"
@@ -32,3 +32,13 @@ src_install() {
meson_src_install
mv "${ED}"/usr/share/appdata "${ED}"/usr/share/metainfo || die
}
+
+pkg_postinst() {
+ xdg_icon_cache_update
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ xdg_icon_cache_update
+ xdg_desktop_database_update
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/d-spy/
@ 2022-12-16 20:37 Arthur Zamarin
0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2022-12-16 20:37 UTC (permalink / raw
To: gentoo-commits
commit: 43a5214cf13cb7a2fad3ee03c8c1900c4e9244e6
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 16 20:36:23 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 16 20:36:23 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43a5214c
dev-util/d-spy: Stabilize 1.4.0 amd64, #885627
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-util/d-spy/d-spy-1.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/d-spy/d-spy-1.4.0.ebuild b/dev-util/d-spy/d-spy-1.4.0.ebuild
index 9beaae1b265d..e926096c9dfc 100644
--- a/dev-util/d-spy/d-spy-1.4.0.ebuild
+++ b/dev-util/d-spy/d-spy-1.4.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/d-spy https://gitlab.gnome.org/GNOME/d-spy
LICENSE="GPL-3+ LGPL-3+"
SLOT="1"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
DEPEND="
>=dev-libs/glib-2.68:2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/d-spy/
@ 2023-03-17 19:56 Matt Turner
0 siblings, 0 replies; 7+ messages in thread
From: Matt Turner @ 2023-03-17 19:56 UTC (permalink / raw
To: gentoo-commits
commit: 01f256e975301f2b55281151b86400d19a163738
Author: Guillermo Joandet <gjoandet <AT> gmail <DOT> com>
AuthorDate: Fri Mar 17 18:36:05 2023 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 19:55:24 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01f256e9
dev-util/d-spy: Version bump to 1.6.0
Signed-off-by: Guillermo Joandet <gjoandet <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/30188
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
dev-util/d-spy/Manifest | 1 +
dev-util/d-spy/d-spy-1.6.0.ebuild | 43 +++++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/dev-util/d-spy/Manifest b/dev-util/d-spy/Manifest
index 053528c3c434..561351041b7a 100644
--- a/dev-util/d-spy/Manifest
+++ b/dev-util/d-spy/Manifest
@@ -1 +1,2 @@
DIST d-spy-1.4.0.tar.xz 215428 BLAKE2B 8641ebc77c2829f77ef563773da242deb512fc9c85ba4c3c16a4c5ff27fb5e61e55c71abc265abcf8d3c4a0c85704af52e0651d63e1b90a8e4b570d9ecb0f357 SHA512 748ba922ff77bfb6a186e155b5f83d833f7c9085322b37a972fc4e024a4125c07d393e72436c7235a2c94d8504afecd3c21b9d22765f35968bb56554e0ae648f
+DIST d-spy-1.6.0.tar.xz 215844 BLAKE2B 4811591024d3b599e5e10354db8aa14d5b80bf6fb3c8bfbeadcf5d9c14501af0d00368643cb58eac5ad9452b541743ce3ff9f8376202270f635078876a1012b3 SHA512 7a65bd64320a69eb54077a359381bda35f285b42f4181bf972bc790a8002a773b66c23303e5e94c3dec8c7b9bfc7b8aa60a5ce60f2eb47459ce3dfd634a05703
diff --git a/dev-util/d-spy/d-spy-1.6.0.ebuild b/dev-util/d-spy/d-spy-1.6.0.ebuild
new file mode 100644
index 000000000000..31de818002f3
--- /dev/null
+++ b/dev-util/d-spy/d-spy-1.6.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit gnome.org meson xdg
+
+DESCRIPTION="D-spy is a blisteringly fast D-Bus debugger"
+HOMEPAGE="https://gitlab.gnome.org/GNOME/d-spy"
+
+LICENSE="GPL-3+ LGPL-3+"
+SLOT="1"
+KEYWORDS="~amd64"
+
+DEPEND="
+ >=dev-libs/glib-2.68:2
+ >=gui-libs/gtk-4.6:4
+ >=gui-libs/libadwaita-1.0:1
+"
+RDEPEND="
+ ${DEPEND}
+ >=sys-apps/dbus-1
+"
+BDEPEND="
+ dev-libs/appstream-glib
+ dev-util/desktop-file-utils
+ sys-devel/gettext
+ virtual/pkgconfig
+"
+
+src_install() {
+ meson_src_install
+}
+
+pkg_postinst() {
+ xdg_icon_cache_update
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ xdg_icon_cache_update
+ xdg_desktop_database_update
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/d-spy/
@ 2023-05-02 19:36 Arthur Zamarin
0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2023-05-02 19:36 UTC (permalink / raw
To: gentoo-commits
commit: de747fdcf14e0bb45890162bd219a1546f077bc7
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue May 2 19:36:37 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue May 2 19:36:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de747fdc
dev-util/d-spy: Stabilize 1.6.0 amd64, #905561
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-util/d-spy/d-spy-1.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/d-spy/d-spy-1.6.0.ebuild b/dev-util/d-spy/d-spy-1.6.0.ebuild
index 31de818002f3..2dec051e2b21 100644
--- a/dev-util/d-spy/d-spy-1.6.0.ebuild
+++ b/dev-util/d-spy/d-spy-1.6.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/d-spy"
LICENSE="GPL-3+ LGPL-3+"
SLOT="1"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
DEPEND="
>=dev-libs/glib-2.68:2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/d-spy/
@ 2023-09-17 1:43 Matt Turner
0 siblings, 0 replies; 7+ messages in thread
From: Matt Turner @ 2023-09-17 1:43 UTC (permalink / raw
To: gentoo-commits
commit: 68e5c844249e04a307f2288f4382560beb535e67
Author: Guillermo Joandet <gjoandet <AT> gmail <DOT> com>
AuthorDate: Sat Sep 16 23:53:38 2023 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Sep 17 01:42:58 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68e5c844
dev-util/d-spy: Version bump to 1.8.0
Signed-off-by: Guillermo Joandet <gjoandet <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32862
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
dev-util/d-spy/Manifest | 1 +
dev-util/d-spy/d-spy-1.8.0.ebuild | 43 +++++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/dev-util/d-spy/Manifest b/dev-util/d-spy/Manifest
index 2d0d90a0a37f..511442806a43 100644
--- a/dev-util/d-spy/Manifest
+++ b/dev-util/d-spy/Manifest
@@ -1 +1,2 @@
DIST d-spy-1.6.0.tar.xz 215844 BLAKE2B 4811591024d3b599e5e10354db8aa14d5b80bf6fb3c8bfbeadcf5d9c14501af0d00368643cb58eac5ad9452b541743ce3ff9f8376202270f635078876a1012b3 SHA512 7a65bd64320a69eb54077a359381bda35f285b42f4181bf972bc790a8002a773b66c23303e5e94c3dec8c7b9bfc7b8aa60a5ce60f2eb47459ce3dfd634a05703
+DIST d-spy-1.8.0.tar.xz 232944 BLAKE2B cb6f90e9b3d779aa5a76bc93f16e9ae677af029b72451bbb983ffeb06b99a92aa2402ef8b6f6a6c6b4ad4f6ba49a924db37d7e9fc9cb98157a6475a0ec234267 SHA512 49c0ff250a91110014f98453ed6958cf4b5191cc0c8d31c5e63b1408864eaf0906ab3860b0479400a04a8614ee36fe5b9527b179e6346bdb5616cb188d2648f0
diff --git a/dev-util/d-spy/d-spy-1.8.0.ebuild b/dev-util/d-spy/d-spy-1.8.0.ebuild
new file mode 100644
index 000000000000..31de818002f3
--- /dev/null
+++ b/dev-util/d-spy/d-spy-1.8.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit gnome.org meson xdg
+
+DESCRIPTION="D-spy is a blisteringly fast D-Bus debugger"
+HOMEPAGE="https://gitlab.gnome.org/GNOME/d-spy"
+
+LICENSE="GPL-3+ LGPL-3+"
+SLOT="1"
+KEYWORDS="~amd64"
+
+DEPEND="
+ >=dev-libs/glib-2.68:2
+ >=gui-libs/gtk-4.6:4
+ >=gui-libs/libadwaita-1.0:1
+"
+RDEPEND="
+ ${DEPEND}
+ >=sys-apps/dbus-1
+"
+BDEPEND="
+ dev-libs/appstream-glib
+ dev-util/desktop-file-utils
+ sys-devel/gettext
+ virtual/pkgconfig
+"
+
+src_install() {
+ meson_src_install
+}
+
+pkg_postinst() {
+ xdg_icon_cache_update
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ xdg_icon_cache_update
+ xdg_desktop_database_update
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/d-spy/
@ 2023-11-04 23:03 Mart Raudsepp
0 siblings, 0 replies; 7+ messages in thread
From: Mart Raudsepp @ 2023-11-04 23:03 UTC (permalink / raw
To: gentoo-commits
commit: 82d3a76e12cda44473d7d692ead4cd7d4b2e6984
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 4 22:39:07 2023 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sat Nov 4 23:03:08 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82d3a76e
dev-util/d-spy: keyword 1.8.0 for ~arm64
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
dev-util/d-spy/d-spy-1.8.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/d-spy/d-spy-1.8.0.ebuild b/dev-util/d-spy/d-spy-1.8.0.ebuild
index 31de818002f3..df58ea28a0a6 100644
--- a/dev-util/d-spy/d-spy-1.8.0.ebuild
+++ b/dev-util/d-spy/d-spy-1.8.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/d-spy"
LICENSE="GPL-3+ LGPL-3+"
SLOT="1"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
DEPEND="
>=dev-libs/glib-2.68:2
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-11-04 23:03 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-13 16:26 [gentoo-commits] repo/gentoo:master commit in: dev-util/d-spy/ Matt Turner
-- strict thread matches above, loose matches on Subject: below --
2023-11-04 23:03 Mart Raudsepp
2023-09-17 1:43 Matt Turner
2023-05-02 19:36 Arthur Zamarin
2023-03-17 19:56 Matt Turner
2022-12-16 20:37 Arthur Zamarin
2022-10-13 0:27 Matt Turner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox