Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/systemd-ui: systemd-ui-3.ebuild ChangeLog
Date: Sun, 04 May 2014 07:16:27
Message-Id: 20140504071623.86F582004C@flycatcher.gentoo.org
1 mgorny 14/05/04 07:16:23
2
3 Modified: ChangeLog
4 Added: systemd-ui-3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.9 sys-apps/systemd-ui/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd-ui/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd-ui/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd-ui/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/systemd-ui/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 4 May 2014 05:33:56 -0000 1.8
24 +++ ChangeLog 4 May 2014 07:16:23 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/systemd-ui
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd-ui/ChangeLog,v 1.8 2014/05/04 05:33:56 tetromino Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd-ui/ChangeLog,v 1.9 2014/05/04 07:16:23 mgorny Exp $
30 +
31 +*systemd-ui-3 (04 May 2014)
32 +
33 + 04 May 2014; Michał Górny <mgorny@g.o> +systemd-ui-3.ebuild:
34 + Version bump.
35
36 04 May 2014; Alexandre Rostovtsev <tetromino@g.o> systemd-ui-2.ebuild:
37 Add VALA_MAX_API_VERSION, fails to build with valac-0.24
38
39
40
41 1.1 sys-apps/systemd-ui/systemd-ui-3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd-ui/systemd-ui-3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd-ui/systemd-ui-3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: systemd-ui-3.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd-ui/systemd-ui-3.ebuild,v 1.1 2014/05/04 07:16:23 mgorny Exp $
51
52 EAPI=4
53
54 # Needed per https://bugs.freedesktop.org/show_bug.cgi?id=69643#c5
55 VALA_MIN_API_VERSION=0.22
56 VALA_MAX_API_VERSION=0.22 # fails with vala-0.24; should be fixed in >=systemd-ui-4
57
58 inherit autotools-utils systemd vala
59
60 DESCRIPTION="System and service manager for Linux"
61 HOMEPAGE="http://www.freedesktop.org/wiki/Software/systemd"
62 SRC_URI="http://www.freedesktop.org/software/systemd/${P}.tar.xz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68
69 RDEPEND="
70 !sys-apps/systemd[gtk]
71 >=dev-libs/glib-2.26:2
72 dev-libs/libgee:0.8
73 sys-apps/dbus
74 x11-libs/gtk+:2
75 >=x11-libs/libnotify-0.7
76 "
77 DEPEND="${RDEPEND}
78 app-arch/xz-utils
79 $(vala_depend)
80 "
81
82 # Due to vala being broken.
83 AUTOTOOLS_IN_SOURCE_BUILD=1
84
85 src_prepare() {
86 # Force the rebuild of .vala sources
87 touch src/*.vala || die
88
89 # Fix hardcoded path in .vala.
90 sed -i -e "s^/lib/systemd^$(systemd_get_utildir)^g" src/*.vala || die
91
92 autotools-utils_src_prepare
93 vala_src_prepare
94 }