* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2011-06-24 17:35 Alexandre Restovtsev
0 siblings, 0 replies; 19+ messages in thread
From: Alexandre Restovtsev @ 2011-06-24 17:35 UTC (permalink / raw
To: gentoo-commits
commit: 23120062c5712790e6cd035f9ee3bfcdca7d7100
Author: Alexandre Rostovtsev <tetromino <AT> gmail <DOT> com>
AuthorDate: Mon Jun 20 02:41:52 2011 +0000
Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
CommitDate: Mon Jun 20 02:41:52 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=23120062
gnome-base/dconf: bash-completion spelling
Change "bashcompletion" to "bash-completion". Thanks to marienz on IRC
for pointing this out.
---
gnome-base/dconf/dconf-0.7.5.ebuild | 2 +-
gnome-base/dconf/dconf-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnome-base/dconf/dconf-0.7.5.ebuild b/gnome-base/dconf/dconf-0.7.5.ebuild
index 0f3ba6e..a40f5bc 100644
--- a/gnome-base/dconf/dconf-0.7.5.ebuild
+++ b/gnome-base/dconf/dconf-0.7.5.ebuild
@@ -73,5 +73,5 @@ src_install() {
pkg_postinst() {
gnome2_pkg_postinst
- use bashcompletion && bash-completion_pkg_postinst
+ use bash-completion && bash-completion_pkg_postinst
}
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index 0f3ba6e..a40f5bc 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -73,5 +73,5 @@ src_install() {
pkg_postinst() {
gnome2_pkg_postinst
- use bashcompletion && bash-completion_pkg_postinst
+ use bash-completion && bash-completion_pkg_postinst
}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2019-02-22 18:56 Mart Raudsepp
0 siblings, 0 replies; 19+ messages in thread
From: Mart Raudsepp @ 2019-02-22 18:56 UTC (permalink / raw
To: gentoo-commits
commit: 1ebb5a0754ab7dd599f4b132302d00558dc28a48
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 22 18:55:54 2019 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> 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 <leio <AT> 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 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>gnome@gentoo.org</email>
- <name>Gentoo GNOME Desktop</name>
-</maintainer>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2015-05-10 17:20 Gilles Dartiguelongue
0 siblings, 0 replies; 19+ messages in thread
From: Gilles Dartiguelongue @ 2015-05-10 17:20 UTC (permalink / raw
To: gentoo-commits
commit: cf7a8f0b6e9a4f199318a2658626ba537438e12f
Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Sun May 10 16:06:12 2015 +0000
Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Sun May 10 16:09:41 2015 +0000
URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=cf7a8f0b
gnome-base/dconf: 0.22.0 → 0.24.0
.../{dconf-9999.ebuild => dconf-0.24.0.ebuild} | 26 ++++------------------
gnome-base/dconf/dconf-9999.ebuild | 11 +++------
2 files changed, 7 insertions(+), 30 deletions(-)
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-0.24.0.ebuild
similarity index 74%
copy from gnome-base/dconf/dconf-9999.ebuild
copy to gnome-base/dconf/dconf-0.24.0.ebuild
index 354a0af..1301389 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-0.24.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
@@ -6,9 +6,6 @@ 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"
@@ -17,41 +14,26 @@ LICENSE="LGPL-2.1+"
SLOT="0"
# TODO: coverage ?
-IUSE="test +X"
-if [[ ${PV} = 9999 ]]; then
- IUSE="${IUSE} doc"
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~arm-linux ~x86-linux"
-fi
+IUSE="test"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~arm-linux ~x86-linux"
RDEPEND="
>=dev-libs/glib-2.39.1:2
sys-apps/dbus
- X? (
- >=dev-libs/libxml2-2.7.7:2
- >=x11-libs/gtk+-3.4:3 )
"
DEPEND="${RDEPEND}
dev-libs/libxslt
dev-util/gdbus-codegen
>=dev-util/gtk-doc-am-1.15
- >=dev-util/intltool-0.50
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 \
- $(use_enable X editor) \
VALAC=$(type -P true)
}
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index 354a0af..373f4b5 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
@@ -17,26 +17,22 @@ LICENSE="LGPL-2.1+"
SLOT="0"
# TODO: coverage ?
-IUSE="test +X"
+IUSE="test"
if [[ ${PV} = 9999 ]]; then
IUSE="${IUSE} doc"
KEYWORDS=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~arm-linux ~x86-linux"
+ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~arm-linux ~x86-linux"
fi
RDEPEND="
>=dev-libs/glib-2.39.1:2
sys-apps/dbus
- X? (
- >=dev-libs/libxml2-2.7.7:2
- >=x11-libs/gtk+-3.4:3 )
"
DEPEND="${RDEPEND}
dev-libs/libxslt
dev-util/gdbus-codegen
>=dev-util/gtk-doc-am-1.15
- >=dev-util/intltool-0.50
sys-devel/gettext
virtual/pkgconfig
"
@@ -51,7 +47,6 @@ src_configure() {
gnome2_src_configure \
--disable-gcov \
--enable-man \
- $(use_enable X editor) \
VALAC=$(type -P true)
}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2014-12-22 23:11 Gilles Dartiguelongue
0 siblings, 0 replies; 19+ messages in thread
From: Gilles Dartiguelongue @ 2014-12-22 23:11 UTC (permalink / raw
To: gentoo-commits
commit: ef95025f4e6a6c8662ee80f37fadeaf75834d7d7
Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 22 23:04:43 2014 +0000
Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Mon Dec 22 23:04:43 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=ef95025f
gnome-base/dconf: moved to gentoo-x86
---
gnome-base/dconf/dconf-0.22.0.ebuild | 75 ------------------------------------
1 file changed, 75 deletions(-)
diff --git a/gnome-base/dconf/dconf-0.22.0.ebuild b/gnome-base/dconf/dconf-0.22.0.ebuild
deleted file mode 100644
index c1273be..0000000
--- a/gnome-base/dconf/dconf-0.22.0.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-GCONF_DEBUG="no"
-
-inherit gnome2 bash-completion-r1 virtualx
-
-DESCRIPTION="Simple low-level configuration system"
-HOMEPAGE="https://wiki.gnome.org/dconf"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-
-# TODO: coverage ?
-IUSE="test +X"
-
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~arm-linux ~x86-linux"
-
-RDEPEND="
- >=dev-libs/glib-2.39.1:2
- sys-apps/dbus
- X? (
- >=dev-libs/libxml2-2.7.7:2
- >=x11-libs/gtk+-3.4:3 )
-"
-DEPEND="${RDEPEND}
- dev-libs/libxslt
- dev-util/gdbus-codegen
- >=dev-util/gtk-doc-am-1.15
- >=dev-util/intltool-0.50
- sys-devel/gettext
- virtual/pkgconfig
-"
-
-src_configure() {
- gnome2_src_configure \
- --disable-gcov \
- --enable-man \
- $(use_enable X editor) \
- 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
-}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2013-11-27 23:32 Gilles Dartiguelongue
0 siblings, 0 replies; 19+ messages in thread
From: Gilles Dartiguelongue @ 2013-11-27 23:32 UTC (permalink / raw
To: gentoo-commits
commit: f7df23d50854653faba2f95d5cbba294a8449a6c
Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 27 23:03:09 2013 +0000
Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Wed Nov 27 23:31:33 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=f7df23d5
gnome-base/dconf: 0.16.1 → 0.18.0
---
.../{dconf-9999.ebuild => dconf-0.18.0.ebuild} | 52 ++++++++++------------
gnome-base/dconf/dconf-9999.ebuild | 41 ++++++++++-------
gnome-base/dconf/metadata.xml | 5 +++
3 files changed, 52 insertions(+), 46 deletions(-)
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-0.18.0.ebuild
similarity index 64%
copy from gnome-base/dconf/dconf-9999.ebuild
copy to gnome-base/dconf/dconf-0.18.0.ebuild
index 8acaac5..719e684 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-0.18.0.ebuild
@@ -1,51 +1,45 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI="4"
+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="http://live.gnome.org/dconf"
+HOMEPAGE="https://wiki.gnome.org/dconf"
LICENSE="LGPL-2.1+"
SLOT="0"
+
# TODO: coverage ?
-IUSE="doc test +X"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
-fi
+IUSE="test +X"
+
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~arm-linux ~x86-linux"
-RDEPEND=">=dev-libs/glib-2.33.3:2
+RDEPEND="
+ >=dev-libs/glib-2.35.2:2
sys-apps/dbus
- X? ( >=dev-libs/libxml2-2.7.7:2
- x11-libs/gtk+:3 )"
+ X? (
+ >=dev-libs/libxml2-2.7.7:2
+ >=x11-libs/gtk+-3.4:3 )
+"
DEPEND="${RDEPEND}
dev-libs/libxslt
- sys-devel/gettext
+ dev-util/gdbus-codegen
+ >=dev-util/gtk-doc-am-1.15
>=dev-util/intltool-0.50
+ sys-devel/gettext
virtual/pkgconfig
- doc? ( >=dev-util/gtk-doc-1.15 )"
-
-if [[ ${PV} = 9999 ]]; then
- DEPEND="${DEPEND}
- dev-util/gtk-doc-am
- >=dev-lang/vala-0.17.0:0.18"
-fi
+"
-pkg_setup() {
- G2CONF="${G2CONF}
- --disable-schemas-compile
- --disable-gcov
- $(use_enable X editor)
- VALAC=$(type -P valac-0.18)" # harmless even if valac-0.18 not found
+src_configure() {
+ gnome2_src_configure \
+ --disable-gcov \
+ --enable-man \
+ $(use_enable X editor) \
+ VALAC=$(type -P valac-0.18) # harmless even if valac-0.18 not found
}
src_test() {
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index 8acaac5..9d83a8e 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI="4"
+EAPI="5"
GCONF_DEBUG="no"
inherit gnome2 bash-completion-r1 virtualx
@@ -11,41 +11,48 @@ if [[ ${PV} = 9999 ]]; then
fi
DESCRIPTION="Simple low-level configuration system"
-HOMEPAGE="http://live.gnome.org/dconf"
+HOMEPAGE="https://wiki.gnome.org/dconf"
LICENSE="LGPL-2.1+"
SLOT="0"
+
# TODO: coverage ?
-IUSE="doc test +X"
+IUSE="test +X"
if [[ ${PV} = 9999 ]]; then
+ IUSE="${IUSE} doc"
KEYWORDS=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
+ KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~arm-linux ~x86-linux"
fi
-RDEPEND=">=dev-libs/glib-2.33.3:2
+RDEPEND="
+ >=dev-libs/glib-2.35.2:2
sys-apps/dbus
- X? ( >=dev-libs/libxml2-2.7.7:2
- x11-libs/gtk+:3 )"
+ X? (
+ >=dev-libs/libxml2-2.7.7:2
+ >=x11-libs/gtk+-3.4:3 )
+"
DEPEND="${RDEPEND}
dev-libs/libxslt
- sys-devel/gettext
+ dev-util/gdbus-codegen
+ >=dev-util/gtk-doc-am-1.15
>=dev-util/intltool-0.50
+ sys-devel/gettext
virtual/pkgconfig
- doc? ( >=dev-util/gtk-doc-1.15 )"
+"
if [[ ${PV} = 9999 ]]; then
DEPEND="${DEPEND}
- dev-util/gtk-doc-am
+ doc? ( >=dev-util/gtk-doc-1.15 )
>=dev-lang/vala-0.17.0:0.18"
fi
-pkg_setup() {
- G2CONF="${G2CONF}
- --disable-schemas-compile
- --disable-gcov
- $(use_enable X editor)
- VALAC=$(type -P valac-0.18)" # harmless even if valac-0.18 not found
+src_configure() {
+ gnome2_src_configure \
+ --disable-gcov \
+ --enable-man \
+ $(use_enable X editor) \
+ VALAC=$(type -P valac-0.18) # harmless even if valac-0.18 not found
}
src_test() {
diff --git a/gnome-base/dconf/metadata.xml b/gnome-base/dconf/metadata.xml
new file mode 100644
index 0000000..6e0e2ec
--- /dev/null
+++ b/gnome-base/dconf/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>gnome</herd>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2012-09-28 0:07 Alexandre Rostovtsev
0 siblings, 0 replies; 19+ messages in thread
From: Alexandre Rostovtsev @ 2012-09-28 0:07 UTC (permalink / raw
To: gentoo-commits
commit: 0d4d44bf15963cd4fe6b4ccb2bc0b958515a6bf0
Author: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 28 00:07:05 2012 +0000
Commit: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
CommitDate: Fri Sep 28 00:07:05 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=0d4d44bf
gnome-base/dconf: 0.14.0 now in gx86; sync live ebuild with gx86
---
gnome-base/dconf/dconf-0.13.90.ebuild | 76 ---------------------------------
gnome-base/dconf/dconf-9999.ebuild | 17 +++++---
2 files changed, 11 insertions(+), 82 deletions(-)
diff --git a/gnome-base/dconf/dconf-0.13.90.ebuild b/gnome-base/dconf/dconf-0.13.90.ebuild
deleted file mode 100644
index e6bb5b9..0000000
--- a/gnome-base/dconf/dconf-0.13.90.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/dconf/dconf-0.10.0.ebuild,v 1.6 2012/01/18 20:33:49 maekke Exp $
-
-EAPI="4"
-GCONF_DEBUG="no"
-
-inherit gnome2 bash-completion-r1
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="Simple low-level configuration system"
-HOMEPAGE="http://live.gnome.org/dconf"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-# TODO: coverage ?
-IUSE="doc +X"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
-fi
-
-RDEPEND=">=dev-libs/glib-2.33.3:2
- sys-apps/dbus
- X? ( >=dev-libs/libxml2-2.7.7:2
- x11-libs/gtk+:3 )"
-DEPEND="${RDEPEND}
- dev-libs/libxslt
- sys-devel/gettext
- >=dev-util/intltool-0.50
- doc? ( >=dev-util/gtk-doc-1.15 )"
-
-if [[ ${PV} = 9999 ]]; then
- DEPEND="${DEPEND}
- dev-util/gtk-doc-am
- >=dev-lang/vala-0.17.0:0.18"
-fi
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --disable-schemas-compile
- --disable-gcov
- $(use_enable X editor)
- VALAC=$(type -P valac-0.18)"
-}
-
-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
- newbashcomp "${S}/bin/completion/dconf" ${PN}
-}
-
-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/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index e6bb5b9..8acaac5 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -1,11 +1,11 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/dconf/dconf-0.10.0.ebuild,v 1.6 2012/01/18 20:33:49 maekke Exp $
+# $Header: $
EAPI="4"
GCONF_DEBUG="no"
-inherit gnome2 bash-completion-r1
+inherit gnome2 bash-completion-r1 virtualx
if [[ ${PV} = 9999 ]]; then
inherit gnome2-live
fi
@@ -13,10 +13,10 @@ fi
DESCRIPTION="Simple low-level configuration system"
HOMEPAGE="http://live.gnome.org/dconf"
-LICENSE="LGPL-2.1"
+LICENSE="LGPL-2.1+"
SLOT="0"
# TODO: coverage ?
-IUSE="doc +X"
+IUSE="doc test +X"
if [[ ${PV} = 9999 ]]; then
KEYWORDS=""
else
@@ -31,6 +31,7 @@ DEPEND="${RDEPEND}
dev-libs/libxslt
sys-devel/gettext
>=dev-util/intltool-0.50
+ virtual/pkgconfig
doc? ( >=dev-util/gtk-doc-1.15 )"
if [[ ${PV} = 9999 ]]; then
@@ -44,7 +45,11 @@ pkg_setup() {
--disable-schemas-compile
--disable-gcov
$(use_enable X editor)
- VALAC=$(type -P valac-0.18)"
+ VALAC=$(type -P valac-0.18)" # harmless even if valac-0.18 not found
+}
+
+src_test() {
+ Xemake check
}
src_install() {
@@ -59,7 +64,7 @@ src_install() {
# Install bash-completion file properly to the system
rm -rv "${ED}usr/share/bash-completion" || die
- newbashcomp "${S}/bin/completion/dconf" ${PN}
+ dobashcomp "${S}/bin/completion/dconf"
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2012-09-02 18:59 Nirbheek Chauhan
0 siblings, 0 replies; 19+ messages in thread
From: Nirbheek Chauhan @ 2012-09-02 18:59 UTC (permalink / raw
To: gentoo-commits
commit: b90110874d2d3c9587033a78e405c1f1f776b30e
Author: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 2 05:07:24 2012 +0000
Commit: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
CommitDate: Sun Sep 2 18:50:18 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=b9011087
gnome-base/dconf: 0.13.5 → 0.13.90
---
.../{dconf-0.13.5.ebuild => dconf-0.13.90.ebuild} | 5 ++++-
gnome-base/dconf/dconf-9999.ebuild | 5 ++++-
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/gnome-base/dconf/dconf-0.13.5.ebuild b/gnome-base/dconf/dconf-0.13.90.ebuild
similarity index 95%
rename from gnome-base/dconf/dconf-0.13.5.ebuild
rename to gnome-base/dconf/dconf-0.13.90.ebuild
index b1127f9..e6bb5b9 100644
--- a/gnome-base/dconf/dconf-0.13.5.ebuild
+++ b/gnome-base/dconf/dconf-0.13.90.ebuild
@@ -28,18 +28,21 @@ RDEPEND=">=dev-libs/glib-2.33.3:2
X? ( >=dev-libs/libxml2-2.7.7:2
x11-libs/gtk+:3 )"
DEPEND="${RDEPEND}
+ dev-libs/libxslt
+ sys-devel/gettext
>=dev-util/intltool-0.50
doc? ( >=dev-util/gtk-doc-1.15 )"
if [[ ${PV} = 9999 ]]; then
DEPEND="${DEPEND}
dev-util/gtk-doc-am
- dev-lang/vala:0.18"
+ >=dev-lang/vala-0.17.0:0.18"
fi
pkg_setup() {
G2CONF="${G2CONF}
--disable-schemas-compile
+ --disable-gcov
$(use_enable X editor)
VALAC=$(type -P valac-0.18)"
}
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index b1127f9..e6bb5b9 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -28,18 +28,21 @@ RDEPEND=">=dev-libs/glib-2.33.3:2
X? ( >=dev-libs/libxml2-2.7.7:2
x11-libs/gtk+:3 )"
DEPEND="${RDEPEND}
+ dev-libs/libxslt
+ sys-devel/gettext
>=dev-util/intltool-0.50
doc? ( >=dev-util/gtk-doc-1.15 )"
if [[ ${PV} = 9999 ]]; then
DEPEND="${DEPEND}
dev-util/gtk-doc-am
- dev-lang/vala:0.18"
+ >=dev-lang/vala-0.17.0:0.18"
fi
pkg_setup() {
G2CONF="${G2CONF}
--disable-schemas-compile
+ --disable-gcov
$(use_enable X editor)
VALAC=$(type -P valac-0.18)"
}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2012-08-18 10:40 Priit Laes
0 siblings, 0 replies; 19+ messages in thread
From: Priit Laes @ 2012-08-18 10:40 UTC (permalink / raw
To: gentoo-commits
commit: b0bb9f9080b0afc7fcdc17ea0f7779f8c40fb4c6
Author: Priit Laes <plaes <AT> plaes <DOT> org>
AuthorDate: Sat Aug 18 09:02:16 2012 +0000
Commit: Priit Laes <plaes <AT> plaes <DOT> org>
CommitDate: Sat Aug 18 09:02:59 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=b0bb9f90
gnome-base/dconf: Added 0.13.5 to overlay
---
.../{dconf-9999.ebuild => dconf-0.13.5.ebuild} | 14 ++++++++------
gnome-base/dconf/dconf-9999.ebuild | 14 ++++++++------
2 files changed, 16 insertions(+), 12 deletions(-)
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-0.13.5.ebuild
similarity index 84%
copy from gnome-base/dconf/dconf-9999.ebuild
copy to gnome-base/dconf/dconf-0.13.5.ebuild
index 05e5991..b1127f9 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-0.13.5.ebuild
@@ -15,6 +15,7 @@ HOMEPAGE="http://live.gnome.org/dconf"
LICENSE="LGPL-2.1"
SLOT="0"
+# TODO: coverage ?
IUSE="doc +X"
if [[ ${PV} = 9999 ]]; then
KEYWORDS=""
@@ -22,24 +23,25 @@ else
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
fi
-RDEPEND=">=dev-libs/glib-2.31.18:2
+RDEPEND=">=dev-libs/glib-2.33.3:2
sys-apps/dbus
X? ( >=dev-libs/libxml2-2.7.7:2
x11-libs/gtk+:3 )"
DEPEND="${RDEPEND}
+ >=dev-util/intltool-0.50
doc? ( >=dev-util/gtk-doc-1.15 )"
if [[ ${PV} = 9999 ]]; then
DEPEND="${DEPEND}
dev-util/gtk-doc-am
- >=dev-lang/vala-0.15.1:0.16"
+ dev-lang/vala:0.18"
fi
pkg_setup() {
G2CONF="${G2CONF}
--disable-schemas-compile
$(use_enable X editor)
- VALAC=$(type -P valac-0.16)" # harmless even if valac-0.16 not found
+ VALAC=$(type -P valac-0.18)"
}
src_install() {
@@ -52,9 +54,9 @@ src_install() {
echo 'GSETTINGS_BACKEND="dconf"' >> 51dconf
doenvd 51dconf
- # Remove bash-completion file installed by build system
- rm -rv "${ED}etc/bash_completion.d/" || die
- newbashcomp "${S}/bin/dconf-bash-completion.sh" ${PN}
+ # Install bash-completion file properly to the system
+ rm -rv "${ED}usr/share/bash-completion" || die
+ newbashcomp "${S}/bin/completion/dconf" ${PN}
}
pkg_postinst() {
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index 05e5991..b1127f9 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -15,6 +15,7 @@ HOMEPAGE="http://live.gnome.org/dconf"
LICENSE="LGPL-2.1"
SLOT="0"
+# TODO: coverage ?
IUSE="doc +X"
if [[ ${PV} = 9999 ]]; then
KEYWORDS=""
@@ -22,24 +23,25 @@ else
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
fi
-RDEPEND=">=dev-libs/glib-2.31.18:2
+RDEPEND=">=dev-libs/glib-2.33.3:2
sys-apps/dbus
X? ( >=dev-libs/libxml2-2.7.7:2
x11-libs/gtk+:3 )"
DEPEND="${RDEPEND}
+ >=dev-util/intltool-0.50
doc? ( >=dev-util/gtk-doc-1.15 )"
if [[ ${PV} = 9999 ]]; then
DEPEND="${DEPEND}
dev-util/gtk-doc-am
- >=dev-lang/vala-0.15.1:0.16"
+ dev-lang/vala:0.18"
fi
pkg_setup() {
G2CONF="${G2CONF}
--disable-schemas-compile
$(use_enable X editor)
- VALAC=$(type -P valac-0.16)" # harmless even if valac-0.16 not found
+ VALAC=$(type -P valac-0.18)"
}
src_install() {
@@ -52,9 +54,9 @@ src_install() {
echo 'GSETTINGS_BACKEND="dconf"' >> 51dconf
doenvd 51dconf
- # Remove bash-completion file installed by build system
- rm -rv "${ED}etc/bash_completion.d/" || die
- newbashcomp "${S}/bin/dconf-bash-completion.sh" ${PN}
+ # Install bash-completion file properly to the system
+ rm -rv "${ED}usr/share/bash-completion" || die
+ newbashcomp "${S}/bin/completion/dconf" ${PN}
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2012-04-12 10:54 Priit Laes
0 siblings, 0 replies; 19+ messages in thread
From: Priit Laes @ 2012-04-12 10:54 UTC (permalink / raw
To: gentoo-commits
commit: 119f70c478f983f88ee9299606aec04563c622d5
Author: Priit Laes <plaes <AT> plaes <DOT> org>
AuthorDate: Thu Apr 12 10:49:31 2012 +0000
Commit: Priit Laes <plaes <AT> plaes <DOT> org>
CommitDate: Thu Apr 12 10:49:31 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=119f70c4
gnome-base/dconf: Fix syntax error in live ebuild
---
gnome-base/dconf/dconf-9999.ebuild | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index cfc3ffe..05e5991 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -32,7 +32,7 @@ DEPEND="${RDEPEND}
if [[ ${PV} = 9999 ]]; then
DEPEND="${DEPEND}
dev-util/gtk-doc-am
- >=dev-lang/vala-0.15.1:0.16 )"
+ >=dev-lang/vala-0.15.1:0.16"
fi
pkg_setup() {
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2012-04-02 3:30 Alexandre Restovtsev
0 siblings, 0 replies; 19+ messages in thread
From: Alexandre Restovtsev @ 2012-04-02 3:30 UTC (permalink / raw
To: gentoo-commits
commit: 8a2ed13c8e2224817a58f3353d5b8a664f52c5b2
Author: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 2 03:25:03 2012 +0000
Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
CommitDate: Mon Apr 2 03:28:54 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=8a2ed13c
gnome-base/dconf: moved to gx86 + simplify valac-0.16 fix
---
gnome-base/dconf/dconf-0.12.0.ebuild | 76 ----------------------------------
gnome-base/dconf/dconf-9999.ebuild | 11 +----
2 files changed, 3 insertions(+), 84 deletions(-)
diff --git a/gnome-base/dconf/dconf-0.12.0.ebuild b/gnome-base/dconf/dconf-0.12.0.ebuild
deleted file mode 100644
index e58a8bd..0000000
--- a/gnome-base/dconf/dconf-0.12.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/dconf/dconf-0.10.0.ebuild,v 1.6 2012/01/18 20:33:49 maekke Exp $
-
-EAPI="4"
-GCONF_DEBUG="no"
-
-inherit eutils gnome2 bash-completion-r1
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="Simple low-level configuration system"
-HOMEPAGE="http://live.gnome.org/dconf"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="doc +X"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
-fi
-
-RDEPEND=">=dev-libs/glib-2.31.18:2
- sys-apps/dbus
- X? ( >=dev-libs/libxml2-2.7.7:2
- x11-libs/gtk+:3 )"
-DEPEND="${RDEPEND}
- doc? ( >=dev-util/gtk-doc-1.15 )"
-
-if [[ ${PV} = 9999 ]]; then
- DEPEND="${DEPEND}
- dev-util/gtk-doc-am
- >=dev-lang/vala-0.15.1:0.16 )"
-fi
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --disable-schemas-compile
- VALAC=$(type -p false)
- $(use_enable X editor)"
-
- if [[ ${PV} = 9999 ]]; then
- G2CONF="${G2CONF}
- VALAC=$(type -p valac-0.16)"
- fi
-}
-
-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
-
- # Remove bash-completion file installed by build system
- rm -rv "${ED}etc/bash_completion.d/" || die
- newbashcomp "${S}/bin/dconf-bash-completion.sh" ${PN}
-}
-
-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/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index e58a8bd..cfc3ffe 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -5,7 +5,7 @@
EAPI="4"
GCONF_DEBUG="no"
-inherit eutils gnome2 bash-completion-r1
+inherit gnome2 bash-completion-r1
if [[ ${PV} = 9999 ]]; then
inherit gnome2-live
fi
@@ -38,13 +38,8 @@ fi
pkg_setup() {
G2CONF="${G2CONF}
--disable-schemas-compile
- VALAC=$(type -p false)
- $(use_enable X editor)"
-
- if [[ ${PV} = 9999 ]]; then
- G2CONF="${G2CONF}
- VALAC=$(type -p valac-0.16)"
- fi
+ $(use_enable X editor)
+ VALAC=$(type -P valac-0.16)" # harmless even if valac-0.16 not found
}
src_install() {
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2012-03-22 3:19 Alexandre Restovtsev
0 siblings, 0 replies; 19+ messages in thread
From: Alexandre Restovtsev @ 2012-03-22 3:19 UTC (permalink / raw
To: gentoo-commits
commit: 3ae6d02b7ad76bf2c4747d3b8e6aad9e8e0ac5ee
Author: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 22 03:07:18 2012 +0000
Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
CommitDate: Thu Mar 22 03:07:18 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=3ae6d02b
gnome-base/dconf: 0.11.5 → 0.11.7
---
.../{dconf-0.11.5.ebuild => dconf-0.11.7.ebuild} | 4 ++--
gnome-base/dconf/dconf-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnome-base/dconf/dconf-0.11.5.ebuild b/gnome-base/dconf/dconf-0.11.7.ebuild
similarity index 95%
rename from gnome-base/dconf/dconf-0.11.5.ebuild
rename to gnome-base/dconf/dconf-0.11.7.ebuild
index 6d735a6..313c2d5 100644
--- a/gnome-base/dconf/dconf-0.11.5.ebuild
+++ b/gnome-base/dconf/dconf-0.11.7.ebuild
@@ -15,7 +15,7 @@ SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc vala +X"
-RDEPEND=">=dev-libs/glib-2.29.90:2
+RDEPEND=">=dev-libs/glib-2.31.18:2
sys-apps/dbus
X? ( >=dev-libs/libxml2-2.7.7:2
x11-libs/gtk+:3 )"
@@ -54,7 +54,7 @@ src_install() {
doenvd 51dconf
# Remove bash-completion file installed by build system
- rm -rv "${ED}/etc/bash_completion.d/" || die
+ rm -rv "${ED}etc/bash_completion.d/" || die
newbashcomp "${S}/bin/dconf-bash-completion.sh" ${PN}
}
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index 9859ec2..8b7f9a4 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -22,7 +22,7 @@ else
fi
IUSE="doc vala +X"
-RDEPEND=">=dev-libs/glib-2.29.90:2
+RDEPEND=">=dev-libs/glib-2.31.18:2
sys-apps/dbus
X? ( >=dev-libs/libxml2-2.7.7:2
x11-libs/gtk+:3 )"
@@ -70,7 +70,7 @@ src_install() {
doenvd 51dconf
# Remove bash-completion file installed by build system
- rm -rv "${ED}/etc/bash_completion.d/" || die
+ rm -rv "${ED}etc/bash_completion.d/" || die
newbashcomp "${S}/bin/dconf-bash-completion.sh" ${PN}
}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2011-07-28 1:49 Alexandre Restovtsev
0 siblings, 0 replies; 19+ messages in thread
From: Alexandre Restovtsev @ 2011-07-28 1:49 UTC (permalink / raw
To: gentoo-commits
commit: 46762277d68b59449cbe92679e8f59f5ea04f6e4
Author: Alexandre Rostovtsev <tetromino <AT> gmail <DOT> com>
AuthorDate: Thu Jul 28 01:40:24 2011 +0000
Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
CommitDate: Thu Jul 28 01:40:24 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=46762277
gnome-base/dconf: 0.8.0 moved to gx86
---
gnome-base/dconf/dconf-0.8.0.ebuild | 77 -----------------------------------
1 files changed, 0 insertions(+), 77 deletions(-)
diff --git a/gnome-base/dconf/dconf-0.8.0.ebuild b/gnome-base/dconf/dconf-0.8.0.ebuild
deleted file mode 100644
index da3f0bc..0000000
--- a/gnome-base/dconf/dconf-0.8.0.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="4"
-GCONF_DEBUG="no"
-
-inherit gnome2 bash-completion
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="Simple low-level configuration system"
-HOMEPAGE="http://live.gnome.org/dconf"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="doc +X"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~amd64 ~arm ~sparc ~x86"
-fi
-
-COMMON_DEPEND=">=dev-libs/glib-2.27.2:2
- sys-apps/dbus
- X? (
- >=dev-libs/libxml2-2.7.7:2
- x11-libs/gtk+:3 )"
-DEPEND="${COMMON_DEPEND}
- >=dev-lang/vala-0.11.7:0.12
- doc? ( >=dev-util/gtk-doc-1.15 )"
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --disable-schemas-compile
- VALAC=$(type -p valac-0.12)
- $(use_enable X editor)"
- #$(use_enable vala)
-}
-
-src_prepare() {
- if [[ ${PV} = 9999 ]]; then
- # XXX: gtk-doc.make should be in top_srcdir -- file a bug for this
- # Let's only do this in the live version to avoid gtkdocize in releases
- sed -e 's:^include gtk-doc.make:include $(top_srcdir)/gtk-doc.make:' \
- -i docs/Makefile.am || die "Fixing gtk-doc.make failed"
- fi
-
- # Fix vala automagic support, upstream bug #634171
- # FIXME: patch doesn't actually work, forcing vala support above
- #epatch "${FILESDIR}/${PN}-automagic-vala.patch"
-
- gnome2_src_prepare
-}
-
-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 || die "doenvd failed"
-
- # Remove bash-completion file installed by build system
- rm -rv "${ED}/etc/bash_completion.d/" || die
-
- use bash-completion && \
- dobashcompletion "${S}/bin/dconf-bash-completion.sh" ${PN}
-}
-
-pkg_postinst() {
- gnome2_pkg_postinst
- use bash-completion && bash-completion_pkg_postinst
-}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2011-07-26 18:47 Alexandre Restovtsev
0 siblings, 0 replies; 19+ messages in thread
From: Alexandre Restovtsev @ 2011-07-26 18:47 UTC (permalink / raw
To: gentoo-commits
commit: b860a50820d1c62e4055eb97e9f45e918fe27e90
Author: Alexandre Rostovtsev <tetromino <AT> gmail <DOT> com>
AuthorDate: Tue Jul 26 18:39:27 2011 +0000
Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
CommitDate: Tue Jul 26 18:39:27 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=b860a508
gnome-base/dconf: 0.7.5 → 0.8.0
Bump to the new stable release, fixes a couple of bugs.
---
.../{dconf-0.7.5.ebuild => dconf-0.8.0.ebuild} | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gnome-base/dconf/dconf-0.7.5.ebuild b/gnome-base/dconf/dconf-0.8.0.ebuild
similarity index 99%
rename from gnome-base/dconf/dconf-0.7.5.ebuild
rename to gnome-base/dconf/dconf-0.8.0.ebuild
index a40f5bc..da3f0bc 100644
--- a/gnome-base/dconf/dconf-0.7.5.ebuild
+++ b/gnome-base/dconf/dconf-0.8.0.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI="3"
+EAPI="4"
GCONF_DEBUG="no"
inherit gnome2 bash-completion
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2011-05-09 10:40 Nirbheek Chauhan
0 siblings, 0 replies; 19+ messages in thread
From: Nirbheek Chauhan @ 2011-05-09 10:40 UTC (permalink / raw
To: gentoo-commits
commit: f8a76b2f625b2c08576f8c2f65ae2d9eb6d5eb8f
Author: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
AuthorDate: Mon May 9 10:40:19 2011 +0000
Commit: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
CommitDate: Mon May 9 10:40:19 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=f8a76b2f
gnome-base/dconf: 0.7.3 → 0.7.5
---
.../{dconf-0.7.3-r1.ebuild => dconf-0.7.5.ebuild} | 14 +++++++++++++-
gnome-base/dconf/dconf-9999.ebuild | 14 +++++++++++++-
2 files changed, 26 insertions(+), 2 deletions(-)
diff --git a/gnome-base/dconf/dconf-0.7.3-r1.ebuild b/gnome-base/dconf/dconf-0.7.5.ebuild
similarity index 82%
rename from gnome-base/dconf/dconf-0.7.3-r1.ebuild
rename to gnome-base/dconf/dconf-0.7.5.ebuild
index 4e865c3..0f3ba6e 100644
--- a/gnome-base/dconf/dconf-0.7.3-r1.ebuild
+++ b/gnome-base/dconf/dconf-0.7.5.ebuild
@@ -5,7 +5,7 @@
EAPI="3"
GCONF_DEBUG="no"
-inherit gnome2
+inherit gnome2 bash-completion
if [[ ${PV} = 9999 ]]; then
inherit gnome2-live
fi
@@ -33,6 +33,7 @@ DEPEND="${COMMON_DEPEND}
pkg_setup() {
G2CONF="${G2CONF}
+ --disable-schemas-compile
VALAC=$(type -p valac-0.12)
$(use_enable X editor)"
#$(use_enable vala)
@@ -62,4 +63,15 @@ src_install() {
echo 'CONFIG_PROTECT_MASK="/etc/dconf"' >> 51dconf
echo 'GSETTINGS_BACKEND="dconf"' >> 51dconf
doenvd 51dconf || die "doenvd failed"
+
+ # Remove bash-completion file installed by build system
+ rm -rv "${ED}/etc/bash_completion.d/" || die
+
+ use bash-completion && \
+ dobashcompletion "${S}/bin/dconf-bash-completion.sh" ${PN}
+}
+
+pkg_postinst() {
+ gnome2_pkg_postinst
+ use bashcompletion && bash-completion_pkg_postinst
}
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index 4e865c3..0f3ba6e 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -5,7 +5,7 @@
EAPI="3"
GCONF_DEBUG="no"
-inherit gnome2
+inherit gnome2 bash-completion
if [[ ${PV} = 9999 ]]; then
inherit gnome2-live
fi
@@ -33,6 +33,7 @@ DEPEND="${COMMON_DEPEND}
pkg_setup() {
G2CONF="${G2CONF}
+ --disable-schemas-compile
VALAC=$(type -p valac-0.12)
$(use_enable X editor)"
#$(use_enable vala)
@@ -62,4 +63,15 @@ src_install() {
echo 'CONFIG_PROTECT_MASK="/etc/dconf"' >> 51dconf
echo 'GSETTINGS_BACKEND="dconf"' >> 51dconf
doenvd 51dconf || die "doenvd failed"
+
+ # Remove bash-completion file installed by build system
+ rm -rv "${ED}/etc/bash_completion.d/" || die
+
+ use bash-completion && \
+ dobashcompletion "${S}/bin/dconf-bash-completion.sh" ${PN}
+}
+
+pkg_postinst() {
+ gnome2_pkg_postinst
+ use bashcompletion && bash-completion_pkg_postinst
}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2011-04-29 19:12 Nirbheek Chauhan
0 siblings, 0 replies; 19+ messages in thread
From: Nirbheek Chauhan @ 2011-04-29 19:12 UTC (permalink / raw
To: gentoo-commits
commit: 8140c6dfa5791910a318f02d5ff190be8b4f689d
Author: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 29 19:10:46 2011 +0000
Commit: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
CommitDate: Fri Apr 29 19:10:46 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=8140c6df
gnome-base/dconf: add CONFIG_PROTECT_MASK for /etc/dconf
---
.../{dconf-0.7.3.ebuild => dconf-0.7.3-r1.ebuild} | 3 ++-
gnome-base/dconf/dconf-9999.ebuild | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnome-base/dconf/dconf-0.7.3.ebuild b/gnome-base/dconf/dconf-0.7.3-r1.ebuild
similarity index 93%
rename from gnome-base/dconf/dconf-0.7.3.ebuild
rename to gnome-base/dconf/dconf-0.7.3-r1.ebuild
index 31a22b6..4e865c3 100644
--- a/gnome-base/dconf/dconf-0.7.3.ebuild
+++ b/gnome-base/dconf/dconf-0.7.3-r1.ebuild
@@ -56,9 +56,10 @@ src_prepare() {
src_install() {
gnome2_src_install
- # GSettings backend may be one of: memory, gconf, dcon
+ # 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 || die "doenvd failed"
}
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index 31a22b6..4e865c3 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -56,9 +56,10 @@ src_prepare() {
src_install() {
gnome2_src_install
- # GSettings backend may be one of: memory, gconf, dcon
+ # 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 || die "doenvd failed"
}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2011-04-09 7:04 Nirbheek Chauhan
0 siblings, 0 replies; 19+ messages in thread
From: Nirbheek Chauhan @ 2011-04-09 7:04 UTC (permalink / raw
To: gentoo-commits
commit: f289090ee01a5c97d69b40331a8a99d13d5f6831
Author: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 9 06:43:11 2011 +0000
Commit: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
CommitDate: Sat Apr 9 06:43:11 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=f289090e
gnome-base/dconf: fix bug 362677
---
gnome-base/dconf/dconf-9999.ebuild | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index 8eda9d4..31a22b6 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -60,5 +60,5 @@ src_install() {
# Only dconf is really considered functional by upstream
# must have it enabled over gconf if both are installed
echo 'GSETTINGS_BACKEND="dconf"' >> 51dconf
- doenvd 51gsettings-dconf || die "doenvd failed"
+ doenvd 51dconf || die "doenvd failed"
}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2011-04-08 10:52 Gilles Dartiguelongue
0 siblings, 0 replies; 19+ messages in thread
From: Gilles Dartiguelongue @ 2011-04-08 10:52 UTC (permalink / raw
To: gentoo-commits
commit: 21702d2e4f838a7393aa091558cf1a0678ed9eb2
Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 8 08:15:42 2011 +0000
Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Fri Apr 8 10:51:45 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=21702d2e
gnome-base/dconf: QAed
* Moved gtk editor dependencies behind X use flag.
* Split phases properly
* Add slot notation for glib
* Install env file for GSettings
(Portage version: 2.2.0_alpha29/git/Linux x86_64, RepoMan options: --force, signed Manifest commit with key C6085806)
---
gnome-base/dconf/dconf-0.7.3.ebuild | 31 ++++++++++++++++++++-----------
gnome-base/dconf/dconf-9999.ebuild | 31 ++++++++++++++++++++-----------
2 files changed, 40 insertions(+), 22 deletions(-)
diff --git a/gnome-base/dconf/dconf-0.7.3.ebuild b/gnome-base/dconf/dconf-0.7.3.ebuild
index 460ca3e..bd594f7 100644
--- a/gnome-base/dconf/dconf-0.7.3.ebuild
+++ b/gnome-base/dconf/dconf-0.7.3.ebuild
@@ -12,8 +12,7 @@ HOMEPAGE="http://live.gnome.org/dconf"
LICENSE="LGPL-2.1"
SLOT="0"
-#IUSE="doc vala"
-IUSE="doc"
+IUSE="doc +X"
if [[ ${PV} = 9999 ]]; then
inherit gnome2-live
KEYWORDS=""
@@ -21,23 +20,23 @@ else
KEYWORDS="~amd64 ~arm ~sparc ~x86"
fi
-COMMON_DEPEND=">=dev-libs/glib-2.27.2
- >=dev-libs/libgee-0.5.1
- >=dev-libs/libxml2-2.7.7
+COMMON_DEPEND=">=dev-libs/glib-2.27.2:2
sys-apps/dbus
- x11-libs/gtk+:3"
+ X? (
+ >=dev-libs/libxml2-2.7.7:2
+ x11-libs/gtk+:3 )"
DEPEND="${COMMON_DEPEND}
>=dev-lang/vala-0.11.7:0.12
doc? ( >=dev-util/gtk-doc-1.15 )"
-#vala? ( >=dev-lang/vala-0.9.5:0.10 )
-RDEPEND="${COMMON_DEPEND}
- !dev-lang/vala:0"
-src_prepare() {
+pkg_setup() {
G2CONF="${G2CONF}
- VALAC=$(type -p valac-0.12)"
+ VALAC=$(type -p valac-0.12)
+ $(use_enable X editor)"
#$(use_enable vala)
+}
+src_prepare() {
if [[ ${PV} = 9999 ]]; then
# XXX: gtk-doc.make should be in top_srcdir -- file a bug for this
# Let's only do this in the live version to avoid gtkdocize in releases
@@ -51,3 +50,13 @@ src_prepare() {
gnome2_src_prepare
}
+
+src_install() {
+ gnome2_src_install
+
+ # GSettings backend may be one of: memory, gconf, dcon
+ # Only dconf is really considered functional by upstream
+ # must have it enabled over gconf if both are installed
+ echo 'GSETTINGS_BACKEND="dconf"' >> 51dconf
+ doenvd 51dconf || die "doenvd failed"
+}
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index a2b564b..fe3ca24 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -12,8 +12,7 @@ HOMEPAGE="http://live.gnome.org/dconf"
LICENSE="LGPL-2.1"
SLOT="0"
-#IUSE="doc vala"
-IUSE="doc"
+IUSE="doc +X"
if [[ ${PV} = 9999 ]]; then
inherit gnome2-live
KEYWORDS=""
@@ -21,23 +20,23 @@ else
KEYWORDS="~amd64 ~arm ~sparc ~x86"
fi
-COMMON_DEPEND=">=dev-libs/glib-2.27.2
- >=dev-libs/libgee-0.5.1
- >=dev-libs/libxml2-2.7.7
+COMMON_DEPEND=">=dev-libs/glib-2.27.2:2
sys-apps/dbus
- x11-libs/gtk+:3"
+ X? (
+ >=dev-libs/libxml2-2.7.7:2
+ x11-libs/gtk+:3 )"
DEPEND="${COMMON_DEPEND}
>=dev-lang/vala-0.11.7:0.12
doc? ( >=dev-util/gtk-doc-1.15 )"
-RDEPEND="${COMMON_DEPEND}
- !dev-lang/vala:0"
-#vala? ( >=dev-lang/vala-0.9.5:0.10 )
-src_prepare() {
+pkg_setup() {
G2CONF="${G2CONF}
- VALAC=$(type -p valac-0.12)"
+ VALAC=$(type -p valac-0.12)
+ $(use_enable X editor)"
#$(use_enable vala)
+}
+src_prepare() {
if [[ ${PV} = 9999 ]]; then
# XXX: gtk-doc.make should be in top_srcdir -- file a bug for this
# Let's only do this in the live version to avoid gtkdocize in releases
@@ -51,3 +50,13 @@ src_prepare() {
gnome2_src_prepare
}
+
+src_install() {
+ gnome2_src_install
+
+ # GSettings backend may be one of: memory, gconf, dcon
+ # Only dconf is really considered functional by upstream
+ # must have it enabled over gconf if both are installed
+ echo 'GSETTINGS_BACKEND="dconf"' >> 51dconf
+ doenvd 51gsettings-dconf || die "doenvd failed"
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2011-03-23 21:59 Nirbheek Chauhan
0 siblings, 0 replies; 19+ messages in thread
From: Nirbheek Chauhan @ 2011-03-23 21:59 UTC (permalink / raw
To: gentoo-commits
commit: eac31febd54f5c7c2899ed3bc54795e8e10c2bb2
Author: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 23 21:49:58 2011 +0000
Commit: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
CommitDate: Wed Mar 23 21:59:03 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=eac31feb
gnome-base/dconf: add blocker for file-collision with vala:0, bug 360183
---
gnome-base/dconf/dconf-0.7.3.ebuild | 5 +++--
gnome-base/dconf/dconf-9999.ebuild | 5 +++--
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnome-base/dconf/dconf-0.7.3.ebuild b/gnome-base/dconf/dconf-0.7.3.ebuild
index 1431a36..be088e3 100644
--- a/gnome-base/dconf/dconf-0.7.3.ebuild
+++ b/gnome-base/dconf/dconf-0.7.3.ebuild
@@ -5,7 +5,7 @@
EAPI="3"
GCONF_DEBUG="no"
-inherit autotools eutils gnome2
+inherit gnome2
DESCRIPTION="Simple low-level configuration system"
HOMEPAGE="http://live.gnome.org/dconf"
@@ -25,7 +25,8 @@ RDEPEND=">=dev-libs/glib-2.27.2
>=dev-libs/libgee-0.5.1
>=dev-libs/libxml2-2.7.7
sys-apps/dbus
- x11-libs/gtk+:3"
+ x11-libs/gtk+:3
+ !dev-lang/vala:0"
DEPEND="${RDEPEND}
>=dev-lang/vala-0.11.7:0.12
doc? ( >=dev-util/gtk-doc-1.15 )"
diff --git a/gnome-base/dconf/dconf-9999.ebuild b/gnome-base/dconf/dconf-9999.ebuild
index 1431a36..be088e3 100644
--- a/gnome-base/dconf/dconf-9999.ebuild
+++ b/gnome-base/dconf/dconf-9999.ebuild
@@ -5,7 +5,7 @@
EAPI="3"
GCONF_DEBUG="no"
-inherit autotools eutils gnome2
+inherit gnome2
DESCRIPTION="Simple low-level configuration system"
HOMEPAGE="http://live.gnome.org/dconf"
@@ -25,7 +25,8 @@ RDEPEND=">=dev-libs/glib-2.27.2
>=dev-libs/libgee-0.5.1
>=dev-libs/libxml2-2.7.7
sys-apps/dbus
- x11-libs/gtk+:3"
+ x11-libs/gtk+:3
+ !dev-lang/vala:0"
DEPEND="${RDEPEND}
>=dev-lang/vala-0.11.7:0.12
doc? ( >=dev-util/gtk-doc-1.15 )"
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/
@ 2011-02-06 7:37 Nirbheek Chauhan
0 siblings, 0 replies; 19+ messages in thread
From: Nirbheek Chauhan @ 2011-02-06 7:37 UTC (permalink / raw
To: gentoo-commits
commit: 2922c2798361f868694a019b117ba5f7e6c47094
Author: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 6 07:28:48 2011 +0000
Commit: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
CommitDate: Sun Feb 6 07:28:48 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=2922c279
gnome-base/dconf: 0.7.1 -> 0.7.2
---
.../{dconf-0.7.1.ebuild => dconf-0.7.2.ebuild} | 0
1 files changed, 0 insertions(+), 0 deletions(-)
diff --git a/gnome-base/dconf/dconf-0.7.1.ebuild b/gnome-base/dconf/dconf-0.7.2.ebuild
similarity index 100%
rename from gnome-base/dconf/dconf-0.7.1.ebuild
rename to gnome-base/dconf/dconf-0.7.2.ebuild
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2019-02-22 18:56 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-24 17:35 [gentoo-commits] proj/gnome:master commit in: gnome-base/dconf/ Alexandre Restovtsev
-- strict thread matches above, loose matches on Subject: below --
2019-02-22 18:56 Mart Raudsepp
2015-05-10 17:20 Gilles Dartiguelongue
2014-12-22 23:11 Gilles Dartiguelongue
2013-11-27 23:32 Gilles Dartiguelongue
2012-09-28 0:07 Alexandre Rostovtsev
2012-09-02 18:59 Nirbheek Chauhan
2012-08-18 10:40 Priit Laes
2012-04-12 10:54 Priit Laes
2012-04-02 3:30 Alexandre Restovtsev
2012-03-22 3:19 Alexandre Restovtsev
2011-07-28 1:49 Alexandre Restovtsev
2011-07-26 18:47 Alexandre Restovtsev
2011-05-09 10:40 Nirbheek Chauhan
2011-04-29 19:12 Nirbheek Chauhan
2011-04-09 7:04 Nirbheek Chauhan
2011-04-08 10:52 Gilles Dartiguelongue
2011-03-23 21:59 Nirbheek Chauhan
2011-02-06 7:37 Nirbheek Chauhan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox