gnome-base/dconf: remove old
authorMart Raudsepp <leio@gentoo.org>
Sun, 9 Feb 2020 15:46:46 +0000 (17:46 +0200)
committerMart Raudsepp <leio@gentoo.org>
Sun, 9 Feb 2020 15:56:02 +0000 (17:56 +0200)
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
gnome-base/dconf/Manifest
gnome-base/dconf/dconf-0.26.1.ebuild [deleted file]

index 94a45c720e6a02f6677b9f63c4ea134b651cc936..c5a30c9a42fbe3cdee170abca31bdfb8d60334f7 100644 (file)
@@ -1,2 +1 @@
-DIST dconf-0.26.1.tar.xz 218516 BLAKE2B ddb23a1f6519b5460903b1a91ba48242f144a768f7ec5b9e82953589474df998061a4fbfb3605027cb51db44f7e49f88c774a735600de2bedaf8889b58e050bc SHA512 4d2b4afce189e448e3bd4e9c2f9d3d5eec6c694748aec87a9a8de047296c858772a5234dbcace8e84d99c5378d2d1ba35cafb5e5ea7efca25c10a53a55b8b6da
 DIST dconf-0.32.0.tar.xz 111700 BLAKE2B 51ac54deafc44a56aa6af1bdc8a89e1002772969881870b196a12f85d5b1a090a334b3088b051e07e085b7fe736e2e51479c17ffcc38a18e682b8238d51671ee SHA512 09ae65ad365947aed24228b94978b290060264e55b443d18a743e943627703c92e16e3a5ca8a0aaf3549f7a1d5aad77bdc285d4c8519db705d3104ec22b111a0
diff --git a/gnome-base/dconf/dconf-0.26.1.ebuild b/gnome-base/dconf/dconf-0.26.1.ebuild
deleted file mode 100644 (file)
index 4784677..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2 bash-completion-r1 virtualx
-
-DESCRIPTION="Simple low-level configuration system"
-HOMEPAGE="https://wiki.gnome.org/Projects/dconf"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~x86-linux"
-IUSE=""
-
-RDEPEND="
-       >=dev-libs/glib-2.44.0:2
-       sys-apps/dbus
-"
-DEPEND="${RDEPEND}
-       app-text/docbook-xml-dtd:4.2
-       app-text/docbook-xsl-stylesheets
-       dev-libs/libxslt
-       dev-util/gdbus-codegen
-       >=dev-util/gtk-doc-am-1.15
-       sys-devel/gettext
-       virtual/pkgconfig
-"
-
-src_configure() {
-       gnome2_src_configure \
-               --disable-gcov \
-               --enable-man \
-               VALAC=$(type -P true)
-}
-
-src_test() {
-       virtx emake check
-}
-
-src_install() {
-       gnome2_src_install
-
-       # GSettings backend may be one of: memory, gconf, dconf
-       # Only dconf is really considered functional by upstream
-       # must have it enabled over gconf if both are installed
-       echo 'CONFIG_PROTECT_MASK="/etc/dconf"' >> 51dconf
-       echo 'GSETTINGS_BACKEND="dconf"' >> 51dconf
-       doenvd 51dconf
-}
-
-pkg_postinst() {
-       gnome2_pkg_postinst
-       # Kill existing dconf-service processes as recommended by upstream due to
-       # possible changes in the dconf private dbus API.
-       # dconf-service will be dbus-activated on next use.
-       pids=$(pgrep -x dconf-service)
-       if [[ $? == 0 ]]; then
-               ebegin "Stopping dconf-service; it will automatically restart on demand"
-               kill ${pids}
-               eend $?
-       fi
-}