Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/dconf-editor/
Date: Tue, 27 Sep 2022 15:44:39
Message-Id: 1664293464.cae6a47fffe16fed88b336e93e4a8ae48b5ce064.mattst88@gentoo
1 commit: cae6a47fffe16fed88b336e93e4a8ae48b5ce064
2 Author: Guillermo Joandet <gjoandet <AT> gmail <DOT> com>
3 AuthorDate: Mon Sep 26 21:18:30 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 27 15:44:24 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cae6a47f
7
8 gnome-base/dconf-editor: Version bump to 43.0
9
10 Closes: https://github.com/gentoo/gentoo/pull/27493
11 Signed-off-by: Guillermo Joandet <gjoandet <AT> gmail.com>
12 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
13
14 gnome-base/dconf-editor/Manifest | 1 +
15 gnome-base/dconf-editor/dconf-editor-43.0.ebuild | 43 ++++++++++++++++++++++++
16 2 files changed, 44 insertions(+)
17
18 diff --git a/gnome-base/dconf-editor/Manifest b/gnome-base/dconf-editor/Manifest
19 index 75ca3cf1323f..af599cac9917 100644
20 --- a/gnome-base/dconf-editor/Manifest
21 +++ b/gnome-base/dconf-editor/Manifest
22 @@ -1 +1,2 @@
23 DIST dconf-editor-3.38.3.tar.xz 594544 BLAKE2B 0455fc01be96bccec9a9799c5bf23e9fe58cb34d32899a119753f58f5bc2f03acb96ff0eeba131cd8c0ea130e3afad16e4fadb23601510b618bf7a3d5a1664a3 SHA512 cf00705c1e11eab980777b9696fbaaa0f5f8a8118276f2add4f4fcefe5aab46844a539539418ce61f285e65623179a9d63cc18a91339b70b5e7c9408c697e9d1
24 +DIST dconf-editor-43.0.tar.xz 598496 BLAKE2B 16b39289f822075a951514c44c5b5d673dd5c6d7e4f043f8005098a51209513c88a16846a7bb8988696775ad4f44162080edec59e3dfe2402a814573ff4efe85 SHA512 d13d32a982164e6991576039dda54d51508fc56e1119def9b89ca498ac111c98f144309cab42e45d5b77130d4d7d8fa23168865c604cbaf55da4e6ed3d451953
25
26 diff --git a/gnome-base/dconf-editor/dconf-editor-43.0.ebuild b/gnome-base/dconf-editor/dconf-editor-43.0.ebuild
27 new file mode 100644
28 index 000000000000..4e93007b67a5
29 --- /dev/null
30 +++ b/gnome-base/dconf-editor/dconf-editor-43.0.ebuild
31 @@ -0,0 +1,43 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit gnome.org gnome2-utils meson vala xdg
38 +
39 +DESCRIPTION="Graphical tool for editing the dconf configuration database"
40 +HOMEPAGE="https://gitlab.gnome.org/GNOME/dconf-editor"
41 +
42 +LICENSE="GPL-3+"
43 +SLOT="0"
44 +
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x86-linux"
46 +
47 +RDEPEND="
48 + >=gnome-base/dconf-0.26.1
49 + >=dev-libs/glib-2.55.1:2
50 + >=x11-libs/gtk+-3.22.27:3
51 + >=gui-libs/libhandy-1.6.0:1
52 +"
53 +DEPEND="${RDEPEND}"
54 +BDEPEND="
55 + $(vala_depend)
56 + dev-libs/libxml2:2
57 + >=sys-devel/gettext-0.19.8
58 + virtual/pkgconfig
59 +"
60 +src_prepare() {
61 + default
62 + vala_setup
63 + xdg_environment_reset
64 +}
65 +
66 +pkg_postinst() {
67 + xdg_pkg_postinst
68 + gnome2_schemas_update
69 +}
70 +
71 +pkg_postrm() {
72 + xdg_pkg_postrm
73 + gnome2_schemas_update
74 +}