diff options
author | Mart Raudsepp <leio@gentoo.org> | 2020-02-09 17:46:46 +0200 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2020-02-09 17:56:02 +0200 |
commit | 7d51d41c0dbb7d1cb3570e84c13f92d159b4b015 (patch) | |
tree | a92004b2873a8d95b3fb6a921016faaf9cf24c8c /gnome-base | |
parent | gnome-base/dconf: drop to ~hppa (diff) | |
download | gentoo-7d51d41c0dbb7d1cb3570e84c13f92d159b4b015.tar.gz gentoo-7d51d41c0dbb7d1cb3570e84c13f92d159b4b015.tar.bz2 gentoo-7d51d41c0dbb7d1cb3570e84c13f92d159b4b015.zip |
gnome-base/dconf: remove old
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'gnome-base')
-rw-r--r-- | gnome-base/dconf/Manifest | 1 | ||||
-rw-r--r-- | gnome-base/dconf/dconf-0.26.1.ebuild | 62 |
2 files changed, 0 insertions, 63 deletions
diff --git a/gnome-base/dconf/Manifest b/gnome-base/dconf/Manifest index 94a45c720e6a..c5a30c9a42fb 100644 --- a/gnome-base/dconf/Manifest +++ b/gnome-base/dconf/Manifest @@ -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 index 47846776b702..000000000000 --- a/gnome-base/dconf/dconf-0.26.1.ebuild +++ /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 -} |