From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A4228138334 for ; Fri, 22 Feb 2019 18:56:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 681F4E07C7; Fri, 22 Feb 2019 18:56:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1F992E07C7 for ; Fri, 22 Feb 2019 18:56:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 27D8E335DCF for ; Fri, 22 Feb 2019 18:56:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 77A5951F for ; Fri, 22 Feb 2019 18:56:31 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1550861783.1ebb5a0754ab7dd599f4b132302d00558dc28a48.leio@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/ X-VCS-Repository: proj/gnome X-VCS-Files: gnome-base/dconf/dconf-9999.ebuild gnome-base/dconf/metadata.xml X-VCS-Directories: gnome-base/dconf/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 1ebb5a0754ab7dd599f4b132302d00558dc28a48 X-VCS-Branch: master Date: Fri, 22 Feb 2019 18:56:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 348efcc4-7578-443e-ab76-a30ec8dc35b8 X-Archives-Hash: 89f7f75d31540d7ff5f396cd15d44d05 commit: 1ebb5a0754ab7dd599f4b132302d00558dc28a48 Author: Mart Raudsepp gentoo org> AuthorDate: Fri Feb 22 18:55:54 2019 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Fri Feb 22 18:56:23 2019 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=1ebb5a07 gnome-base/dconf: removed outdated live ebuild Isn't even ported to meson yet Signed-off-by: Mart Raudsepp gentoo.org> gnome-base/dconf/dconf-9999.ebuild | 83 -------------------------------------- gnome-base/dconf/metadata.xml | 8 ---- 2 files changed, 91 deletions(-) diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild deleted file mode 100644 index 1af01bf4..00000000 --- a/gnome-base/dconf/dconf-9999.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -GCONF_DEBUG="no" - -inherit gnome2 bash-completion-r1 virtualx -if [[ ${PV} = 9999 ]]; then - inherit gnome2-live -fi - -DESCRIPTION="Simple low-level configuration system" -HOMEPAGE="https://wiki.gnome.org/dconf" - -LICENSE="LGPL-2.1+" -SLOT="0" - -# TODO: coverage ? -IUSE="test" -if [[ ${PV} = 9999 ]]; then - IUSE="${IUSE} doc" - KEYWORDS="" -else - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-linux" -fi - -RDEPEND=" - >=dev-libs/glib-2.39.1:2 - sys-apps/dbus -" -DEPEND="${RDEPEND} - dev-libs/libxslt - dev-util/gdbus-codegen - >=dev-util/gtk-doc-am-1.15 - sys-devel/gettext - virtual/pkgconfig -" - -if [[ ${PV} = 9999 ]]; then - DEPEND="${DEPEND} - doc? ( >=dev-util/gtk-doc-1.15 ) - >=dev-lang/vala-0.17.0:0.18" -fi - -src_configure() { - gnome2_src_configure \ - --disable-gcov \ - --enable-man \ - VALAC=$(type -P true) -} - -src_test() { - Xemake 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 - - # Install bash-completion file properly to the system - rm -rv "${ED}usr/share/bash-completion" || die - dobashcomp "${S}/bin/completion/dconf" -} - -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 -} diff --git a/gnome-base/dconf/metadata.xml b/gnome-base/dconf/metadata.xml deleted file mode 100644 index 39980802..00000000 --- a/gnome-base/dconf/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - gnome@gentoo.org - Gentoo GNOME Desktop - -