Gentoo Archives: gentoo-commits

From: "Nirbheek Chauhan (nirbheek)" <nirbheek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/vala: ChangeLog vala-0.9.5.ebuild
Date: Fri, 20 Aug 2010 11:23:23
Message-Id: 20100820112318.DE3792004C@flycatcher.gentoo.org
1 nirbheek 10/08/20 11:23:18
2
3 Modified: ChangeLog
4 Added: vala-0.9.5.ebuild
5 Log:
6 Bump to 0.9.5 -- Allow parallel installation with future versions, several bug fixes (proxy-commit for ford_prefect)
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.25 dev-lang/vala/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/ChangeLog?rev=1.25&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/ChangeLog?rev=1.25&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/ChangeLog?r1=1.24&r2=1.25
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/vala/ChangeLog,v
19 retrieving revision 1.24
20 retrieving revision 1.25
21 diff -u -r1.24 -r1.25
22 --- ChangeLog 21 Jul 2010 09:50:14 -0000 1.24
23 +++ ChangeLog 20 Aug 2010 11:23:18 -0000 1.25
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-lang/vala
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/vala/ChangeLog,v 1.24 2010/07/21 09:50:14 ford_prefect Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/vala/ChangeLog,v 1.25 2010/08/20 11:23:18 nirbheek Exp $
29 +
30 +*vala-0.9.5 (20 Aug 2010)
31 +
32 + 20 Aug 2010; Nirbheek Chauhan <nirbheek@g.o> +vala-0.9.5.ebuild:
33 + Bump to 0.9.5 -- Allow parallel installation with future versions, several
34 + bug fixes (proxy-commit for ford_prefect)
35
36 *vala-0.9.3 (21 Jul 2010)
37
38
39
40
41 1.1 dev-lang/vala/vala-0.9.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/vala-0.9.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/vala/vala-0.9.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: vala-0.9.5.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.9.5.ebuild,v 1.1 2010/08/20 11:23:18 nirbheek Exp $
51
52 EAPI=1
53 GCONF_DEBUG=no
54 inherit gnome2
55
56 DESCRIPTION="Vala - Compiler for the GObject type system"
57 HOMEPAGE="http://live.gnome.org/Vala"
58
59 LICENSE="LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="test +vapigen coverage"
63
64 RDEPEND=">=dev-libs/glib-2.14"
65 DEPEND="${RDEPEND}
66 sys-devel/flex
67 || ( sys-devel/bison dev-util/byacc dev-util/yacc )
68 dev-util/pkgconfig
69 dev-libs/libxslt
70 test? ( dev-libs/dbus-glib )"
71
72 pkg_setup() {
73 G2CONF="${G2CONF}
74 $(use_enable vapigen)
75 $(use_enable coverage)"
76 DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
77
78 if use coverage && has ccache ${FEATURES}; then
79 ewarn "USE=coverage does not work well with ccache; valac and libvala"
80 ewarn "built with ccache and USE=coverage create temporary files inside"
81 ewarn "CCACHE_DIR and mess with ccache's working, as well as causing"
82 ewarn "sandbox violations when used to compile other packages."
83 ewarn "It is STRONGLY recommended that you disable one of them."
84 fi
85 }