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/
Date: Sun, 02 Apr 2017 13:03:49
Message-Id: 1491138140.fafccc1247cfa8bae3d00a1bb53f3a0b9aa6c8b1.leio@gentoo
1 commit: fafccc1247cfa8bae3d00a1bb53f3a0b9aa6c8b1
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 2 12:53:09 2017 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 2 13:02:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fafccc12
7
8 gnome-base/dconf: remove old
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.1
11
12 gnome-base/dconf/dconf-0.26.0.ebuild | 64 ------------------------------------
13 1 file changed, 64 deletions(-)
14
15 diff --git a/gnome-base/dconf/dconf-0.26.0.ebuild b/gnome-base/dconf/dconf-0.26.0.ebuild
16 deleted file mode 100644
17 index dd6e791d5ad..00000000000
18 --- a/gnome-base/dconf/dconf-0.26.0.ebuild
19 +++ /dev/null
20 @@ -1,64 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -inherit gnome2 bash-completion-r1 virtualx
26 -
27 -DESCRIPTION="Simple low-level configuration system"
28 -HOMEPAGE="https://wiki.gnome.org/action/show/Projects/dconf"
29 -
30 -LICENSE="LGPL-2.1+"
31 -SLOT="0"
32 -
33 -# TODO: coverage ?
34 -IUSE="test"
35 -
36 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~arm-linux ~x86-linux"
37 -
38 -RDEPEND="
39 - >=dev-libs/glib-2.44.0:2
40 -"
41 -DEPEND="${RDEPEND}
42 - app-text/docbook-xml-dtd:4.2
43 - app-text/docbook-xsl-stylesheets
44 - dev-libs/libxslt
45 - dev-util/gdbus-codegen
46 - >=dev-util/gtk-doc-am-1.15
47 - sys-devel/gettext
48 - virtual/pkgconfig
49 -"
50 -
51 -src_configure() {
52 - gnome2_src_configure \
53 - --disable-gcov \
54 - --enable-man \
55 - VALAC=$(type -P true)
56 -}
57 -
58 -src_test() {
59 - virtx emake check
60 -}
61 -
62 -src_install() {
63 - gnome2_src_install
64 -
65 - # GSettings backend may be one of: memory, gconf, dconf
66 - # Only dconf is really considered functional by upstream
67 - # must have it enabled over gconf if both are installed
68 - echo 'CONFIG_PROTECT_MASK="/etc/dconf"' >> 51dconf
69 - echo 'GSETTINGS_BACKEND="dconf"' >> 51dconf
70 - doenvd 51dconf
71 -}
72 -
73 -pkg_postinst() {
74 - gnome2_pkg_postinst
75 - # Kill existing dconf-service processes as recommended by upstream due to
76 - # possible changes in the dconf private dbus API.
77 - # dconf-service will be dbus-activated on next use.
78 - pids=$(pgrep -x dconf-service)
79 - if [[ $? == 0 ]]; then
80 - ebegin "Stopping dconf-service; it will automatically restart on demand"
81 - kill ${pids}
82 - eend $?
83 - fi
84 -}