Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/folks: ChangeLog folks-0.6.6.ebuild folks-0.6.4.1.ebuild
Date: Thu, 22 Dec 2011 23:16:13
Message-Id: 20111222231603.C1E852004B@flycatcher.gentoo.org
1 eva 11/12/22 23:16:03
2
3 Modified: ChangeLog
4 Added: folks-0.6.6.ebuild
5 Removed: folks-0.6.4.1.ebuild
6 Log:
7 Version bump. Fix a couple of crashes. Re-enable tests to the exception of eds ones which fail too often in strange ways.
8
9 (Portage version: 2.2.0_alpha80/cvs/Linux x86_64, RepoMan options: --force)
10
11 Revision Changes Path
12 1.19 dev-libs/folks/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/folks/ChangeLog?rev=1.19&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/folks/ChangeLog?rev=1.19&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/folks/ChangeLog?r1=1.18&r2=1.19
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/folks/ChangeLog,v
21 retrieving revision 1.18
22 retrieving revision 1.19
23 diff -u -r1.18 -r1.19
24 --- ChangeLog 13 Nov 2011 09:52:51 -0000 1.18
25 +++ ChangeLog 22 Dec 2011 23:16:03 -0000 1.19
26 @@ -1,6 +1,13 @@
27 # ChangeLog for dev-libs/folks
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/folks/ChangeLog,v 1.18 2011/11/13 09:52:51 tetromino Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/folks/ChangeLog,v 1.19 2011/12/22 23:16:03 eva Exp $
31 +
32 +*folks-0.6.6 (22 Dec 2011)
33 +
34 + 22 Dec 2011; Gilles Dartiguelongue <eva@g.o> -folks-0.6.4.1.ebuild,
35 + +folks-0.6.6.ebuild:
36 + Version bump. Fix a couple of crashes. Re-enable tests to the exception of
37 + eds ones which fail too often in strange ways.
38
39 *folks-0.6.5 (13 Nov 2011)
40
41
42
43
44 1.1 dev-libs/folks/folks-0.6.6.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/folks/folks-0.6.6.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/folks/folks-0.6.6.ebuild?rev=1.1&content-type=text/plain
48
49 Index: folks-0.6.6.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-libs/folks/folks-0.6.6.ebuild,v 1.1 2011/12/22 23:16:03 eva Exp $
54
55 EAPI="4"
56 GCONF_DEBUG="yes"
57 GNOME2_LA_PUNT="yes"
58
59 inherit gnome2
60
61 DESCRIPTION="libfolks is a library that aggregates people from multiple sources"
62 HOMEPAGE="http://telepathy.freedesktop.org/wiki/Folks"
63
64 LICENSE="LGPL-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-linux"
67 IUSE="eds socialweb test tracker utils vala"
68
69 COMMON_DEPEND=">=dev-libs/glib-2.24:2
70 >=net-libs/telepathy-glib-0.13.1
71 dev-libs/dbus-glib
72 <dev-libs/libgee-0.7:0[introspection]
73 dev-libs/libxml2
74 >=gnome-base/gconf-2.31
75 sys-libs/ncurses
76 sys-libs/readline
77
78 eds? ( >=gnome-extra/evolution-data-server-3.1.5 )
79 socialweb? ( >=net-libs/libsocialweb-0.25.15 )
80 tracker? ( >=app-misc/tracker-0.12 )"
81
82 # telepathy-mission-control needed at runtime; it is used by the telepathy
83 # backend via telepathy-glib's AccountManager binding.
84 RDEPEND="${COMMON_DEPEND}
85 net-im/telepathy-mission-control"
86
87 # folks socialweb backend requires that libsocialweb be built with USE=vala,
88 # even when building folks with --disable-vala.
89 DEPEND="${COMMON_DEPEND}
90 >=dev-libs/gobject-introspection-1.30
91 >=dev-util/intltool-0.35.0
92 >=dev-util/pkgconfig-0.21
93 sys-devel/gettext
94
95 socialweb? ( >=net-libs/libsocialweb-0.25.15[vala] )
96 test? ( sys-apps/dbus )
97 vala? (
98 >=dev-lang/vala-0.14:0.14[vapigen]
99 >=net-libs/telepathy-glib-0.13.1[vala]
100 eds? ( >=gnome-extra/evolution-data-server-3.0.1[vala] ) )"
101
102 # the inspect tool requires --enable-vala
103 REQUIRED_USE="utils? ( vala )"
104
105 pkg_setup() {
106 DOCS="AUTHORS ChangeLog NEWS README"
107 # Rebuilding docs needs valadoc, which has no release
108 G2CONF="${G2CONF}
109 $(use_enable eds eds-backend)
110 $(use_enable socialweb libsocialweb-backend)
111 $(use_enable tracker tracker-backend)
112 $(use_enable utils inspect-tool)
113 $(use_enable vala)
114 --enable-import-tool
115 --disable-docs
116 --disable-Werror"
117 if use vala; then
118 G2CONF="${G2CONF}
119 VALAC=$(type -p valac-0.14)
120 VAPIGEN=$(type -p vapigen-0.14)"
121 fi
122 }
123
124 src_test() {
125 # FIXME: eds tests often fails for no good reason
126 sed -e 's/check: .*/check: /' \
127 -i tests/eds/Makefile || die "sed failed"
128 default
129 }