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