Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/dconf-editor/
Date: Wed, 05 Dec 2018 08:24:28
Message-Id: 1543998091.6827e62a79980e3a9b4225ac2acbf5148d59b982.leio@gentoo
1 commit: 6827e62a79980e3a9b4225ac2acbf5148d59b982
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 5 08:20:51 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 5 08:21:31 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6827e62a
7
8 gnome-base/dconf-editor: bump to 3.28.0
9
10 Most importantly (to me), this version adds proper relocatable
11 schemas support.
12 3.30.x requires vala:0.40
13
14 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
15 Package-Manager: Portage-2.3.52, Repoman-2.3.11
16
17 gnome-base/dconf-editor/Manifest | 1 +
18 gnome-base/dconf-editor/dconf-editor-3.28.0.ebuild | 44 ++++++++++++++++++++++
19 2 files changed, 45 insertions(+)
20
21 diff --git a/gnome-base/dconf-editor/Manifest b/gnome-base/dconf-editor/Manifest
22 index b7a9f3d6b4b..2b9433e58ef 100644
23 --- a/gnome-base/dconf-editor/Manifest
24 +++ b/gnome-base/dconf-editor/Manifest
25 @@ -1 +1,2 @@
26 DIST dconf-editor-3.26.2.tar.xz 542828 BLAKE2B e7bd35b39d7b0124105513d44f3a24d005f1c6daf2dccb1d3eeb324b65038adfc11e5ee83078058489b1e918222538a97621c74fb0a0ceb20e1a708ccf5a82bd SHA512 25a6536c97b4f6fc26890915e2d0ed3ff1d2247175fd25a7d86e44f33da8667064415b22890c799d3586cd0f08becc90414f02bf3d988aa1d02eee90d7e45ba5
27 +DIST dconf-editor-3.28.0.tar.xz 417244 BLAKE2B 1237b199b7b991055fe30829dff0554be7e3122001c9c1a3bd1b17dc1aeeb0a4df6536560b072559c96d4da0b26bdf234479cb9c38ae979d08c220348df48649 SHA512 435c159fd3356c19e459ed9441671b508c5ba1b2d9f491d304280ef66b980779fda5769bb2e1e85a294ceebe9e729e4899ac0ab750f86e5ccdbdc455cf1ffc44
28
29 diff --git a/gnome-base/dconf-editor/dconf-editor-3.28.0.ebuild b/gnome-base/dconf-editor/dconf-editor-3.28.0.ebuild
30 new file mode 100644
31 index 00000000000..73be2e331ae
32 --- /dev/null
33 +++ b/gnome-base/dconf-editor/dconf-editor-3.28.0.ebuild
34 @@ -0,0 +1,44 @@
35 +# Copyright 1999-2018 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=6
39 +VALA_MIN_API_VERSION="0.36"
40 +
41 +inherit gnome.org gnome2-utils meson vala xdg
42 +
43 +DESCRIPTION="Graphical tool for editing the dconf configuration database"
44 +HOMEPAGE="https://git.gnome.org/browse/dconf-editor"
45 +
46 +LICENSE="GPL-3+"
47 +SLOT="0"
48 +
49 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-linux"
50 +
51 +RDEPEND="
52 + >=gnome-base/dconf-0.26.1
53 + >=dev-libs/glib-2.55.1:2
54 + >=x11-libs/gtk+-3.22.27:3
55 +"
56 +DEPEND="${RDEPEND}
57 + $(vala_depend)
58 + dev-libs/libxml2:2
59 + >=sys-devel/gettext-0.19.8
60 + virtual/pkgconfig
61 +"
62 +
63 +src_prepare() {
64 + vala_src_prepare
65 + xdg_src_prepare
66 +}
67 +
68 +pkg_postinst() {
69 + xdg_pkg_postinst
70 + gnome2_icon_cache_update
71 + gnome2_schemas_update
72 +}
73 +
74 +pkg_postrm() {
75 + xdg_pkg_postrm
76 + gnome2_icon_cache_update
77 + gnome2_schemas_update
78 +}