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-lang/vala: ChangeLog vala-0.10.1.ebuild
Date: Wed, 27 Oct 2010 20:27:35
Message-Id: 20101027202732.0103620051@flycatcher.gentoo.org
1 eva 10/10/27 20:27:31
2
3 Modified: ChangeLog
4 Added: vala-0.10.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.29 dev-lang/vala/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/ChangeLog?rev=1.29&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/ChangeLog?rev=1.29&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/ChangeLog?r1=1.28&r2=1.29
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lang/vala/ChangeLog,v
20 retrieving revision 1.28
21 retrieving revision 1.29
22 diff -u -r1.28 -r1.29
23 --- ChangeLog 6 Oct 2010 22:02:03 -0000 1.28
24 +++ ChangeLog 27 Oct 2010 20:27:31 -0000 1.29
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-lang/vala
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/vala/ChangeLog,v 1.28 2010/10/06 22:02:03 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/vala/ChangeLog,v 1.29 2010/10/27 20:27:31 eva Exp $
30 +
31 +*vala-0.10.1 (27 Oct 2010)
32 +
33 + 27 Oct 2010; Gilles Dartiguelongue <eva@g.o> +vala-0.10.1.ebuild:
34 + Version bump.
35
36 *vala-0.11.0 (06 Oct 2010)
37
38
39
40
41 1.1 dev-lang/vala/vala-0.10.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/vala-0.10.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/vala-0.10.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: vala-0.10.1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-lang/vala/vala-0.10.1.ebuild,v 1.1 2010/10/27 20:27:31 eva Exp $
51
52 EAPI="2"
53 GCONF_DEBUG="no"
54
55 inherit gnome2
56
57 DESCRIPTION="Vala - Compiler for the GObject type system"
58 HOMEPAGE="http://live.gnome.org/Vala"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0.10"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="test +vapigen coverage"
64
65 RDEPEND=">=dev-libs/glib-2.14"
66 DEPEND="${RDEPEND}
67 sys-devel/flex
68 || ( sys-devel/bison dev-util/byacc dev-util/yacc )
69 dev-util/pkgconfig
70 dev-libs/libxslt
71 test? ( dev-libs/dbus-glib )"
72
73 pkg_setup() {
74 G2CONF="${G2CONF}
75 --disable-unversioned
76 $(use_enable vapigen)
77 $(use_enable coverage)"
78 DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
79
80 if use coverage && has ccache ${FEATURES}; then
81 ewarn "USE=coverage does not work well with ccache; valac and libvala"
82 ewarn "built with ccache and USE=coverage create temporary files inside"
83 ewarn "CCACHE_DIR and mess with ccache's working, as well as causing"
84 ewarn "sandbox violations when used to compile other packages."
85 ewarn "It is STRONGLY recommended that you disable one of them."
86 fi
87 }