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