Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/dconf: dconf-0.18.0.ebuild ChangeLog
Date: Tue, 24 Dec 2013 16:20:32
Message-Id: 20131224162028.DD9E22004C@flycatcher.gentoo.org
1 pacho 13/12/24 16:20:28
2
3 Modified: ChangeLog
4 Added: dconf-0.18.0.ebuild
5 Log:
6 Version bump for Gnome 3.10
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.52 gnome-base/dconf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/ChangeLog?rev=1.52&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/ChangeLog?rev=1.52&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/ChangeLog?r1=1.51&r2=1.52
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-base/dconf/ChangeLog,v
20 retrieving revision 1.51
21 retrieving revision 1.52
22 diff -u -r1.51 -r1.52
23 --- ChangeLog 8 Dec 2013 18:24:29 -0000 1.51
24 +++ ChangeLog 24 Dec 2013 16:20:28 -0000 1.52
25 @@ -1,6 +1,11 @@
26 # ChangeLog for gnome-base/dconf
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/dconf/ChangeLog,v 1.51 2013/12/08 18:24:29 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/dconf/ChangeLog,v 1.52 2013/12/24 16:20:28 pacho Exp $
30 +
31 +*dconf-0.18.0 (24 Dec 2013)
32 +
33 + 24 Dec 2013; Pacho Ramos <pacho@g.o> +dconf-0.18.0.ebuild:
34 + Version bump for Gnome 3.10
35
36 08 Dec 2013; Pacho Ramos <pacho@g.o> dconf-0.16.1.ebuild:
37 x86 stable, bug #478252
38
39
40
41 1.1 gnome-base/dconf/dconf-0.18.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/dconf-0.18.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/dconf/dconf-0.18.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dconf-0.18.0.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/gnome-base/dconf/dconf-0.18.0.ebuild,v 1.1 2013/12/24 16:20:28 pacho Exp $
51
52 EAPI="5"
53 GCONF_DEBUG="no"
54
55 inherit gnome2 bash-completion-r1 virtualx
56
57 DESCRIPTION="Simple low-level configuration system"
58 HOMEPAGE="https://wiki.gnome.org/dconf"
59
60 LICENSE="LGPL-2.1+"
61 SLOT="0"
62
63 # TODO: coverage ?
64 IUSE="test +X"
65
66 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~arm-linux ~x86-linux"
67
68 RDEPEND="
69 >=dev-libs/glib-2.35.2:2
70 sys-apps/dbus
71 X? (
72 >=dev-libs/libxml2-2.7.7:2
73 >=x11-libs/gtk+-3.4:3 )
74 "
75 DEPEND="${RDEPEND}
76 dev-libs/libxslt
77 dev-util/gdbus-codegen
78 >=dev-util/gtk-doc-am-1.15
79 >=dev-util/intltool-0.50
80 sys-devel/gettext
81 virtual/pkgconfig
82 "
83
84 src_configure() {
85 gnome2_src_configure \
86 --disable-gcov \
87 --enable-man \
88 $(use_enable X editor) \
89 VALAC=$(type -P valac-0.18) # harmless even if valac-0.18 not found
90 }
91
92 src_test() {
93 Xemake check
94 }
95
96 src_install() {
97 gnome2_src_install
98
99 # GSettings backend may be one of: memory, gconf, dconf
100 # Only dconf is really considered functional by upstream
101 # must have it enabled over gconf if both are installed
102 echo 'CONFIG_PROTECT_MASK="/etc/dconf"' >> 51dconf
103 echo 'GSETTINGS_BACKEND="dconf"' >> 51dconf
104 doenvd 51dconf
105
106 # Install bash-completion file properly to the system
107 rm -rv "${ED}usr/share/bash-completion" || die
108 dobashcomp "${S}/bin/completion/dconf"
109 }
110
111 pkg_postinst() {
112 gnome2_pkg_postinst
113 # Kill existing dconf-service processes as recommended by upstream due to
114 # possible changes in the dconf private dbus API.
115 # dconf-service will be dbus-activated on next use.
116 pids=$(pgrep -x dconf-service)
117 if [[ $? == 0 ]]; then
118 ebegin "Stopping dconf-service; it will automatically restart on demand"
119 kill ${pids}
120 eend $?
121 fi
122 }