Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/gnome-online-accounts: gnome-online-accounts-3.8.0.ebuild ChangeLog
Date: Thu, 28 Mar 2013 22:33:51
Message-Id: 20130328223347.C6A762171D@flycatcher.gentoo.org
1 pacho 13/03/28 22:33:47
2
3 Modified: ChangeLog
4 Added: gnome-online-accounts-3.8.0.ebuild
5 Log:
6 Version bump for Gnome 3.8
7
8 (Portage version: 2.1.11.58/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.12 net-libs/gnome-online-accounts/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnome-online-accounts/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnome-online-accounts/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnome-online-accounts/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/gnome-online-accounts/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 2 Feb 2013 23:02:57 -0000 1.11
24 +++ ChangeLog 28 Mar 2013 22:33:47 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-libs/gnome-online-accounts
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/gnome-online-accounts/ChangeLog,v 1.11 2013/02/02 23:02:57 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/gnome-online-accounts/ChangeLog,v 1.12 2013/03/28 22:33:47 pacho Exp $
30 +
31 +*gnome-online-accounts-3.8.0 (28 Mar 2013)
32 +
33 + 28 Mar 2013; Pacho Ramos <pacho@g.o>
34 + +gnome-online-accounts-3.8.0.ebuild:
35 + Version bump for Gnome 3.8
36
37 02 Feb 2013; Agostino Sarubbo <ago@g.o>
38 gnome-online-accounts-3.6.2.ebuild:
39
40
41
42 1.1 net-libs/gnome-online-accounts/gnome-online-accounts-3.8.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnome-online-accounts/gnome-online-accounts-3.8.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnome-online-accounts/gnome-online-accounts-3.8.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gnome-online-accounts-3.8.0.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/gnome-online-accounts/gnome-online-accounts-3.8.0.ebuild,v 1.1 2013/03/28 22:33:47 pacho Exp $
52
53 EAPI="5"
54 inherit gnome2
55
56 DESCRIPTION="GNOME framework for accessing online accounts"
57 HOMEPAGE="https://live.gnome.org/GnomeOnlineAccounts"
58
59 LICENSE="LGPL-2+"
60 SLOT="0"
61 IUSE="gnome +introspection kerberos"
62 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
63
64 # pango used in goaeditablelabel
65 # libsoup used in goaoauthprovider
66 # goa kerberos provider is incompatible with app-crypt/heimdal, see
67 # https://bugzilla.gnome.org/show_bug.cgi?id=692250
68 RDEPEND="
69 >=dev-libs/glib-2.35:2
70 app-crypt/libsecret
71 dev-libs/json-glib
72 dev-libs/libxml2:2
73 >=net-libs/libsoup-2.41:2.4[gnome]
74 net-libs/rest:0.7
75 net-libs/webkit-gtk:3
76 >=x11-libs/gtk+-3.5.1:3
77 >=x11-libs/libnotify-0.7:=
78 x11-libs/pango
79
80 introspection? ( >=dev-libs/gobject-introspection-0.6.2 )
81 kerberos? (
82 app-crypt/gcr
83 app-crypt/mit-krb5 )
84 "
85 # goa-daemon can launch gnome-control-center
86 PDEPEND="gnome? ( >=gnome-base/gnome-control-center-3.2[gnome-online-accounts(+)] )"
87 DEPEND="${RDEPEND}
88 dev-libs/libxslt
89 >=dev-util/gtk-doc-am-1.3
90 >=dev-util/gdbus-codegen-2.30.0
91 dev-util/intltool
92 sys-devel/gettext
93 virtual/pkgconfig
94 "
95
96 src_configure() {
97 # TODO: Give users a way to set the G/Y!/FB/Twitter/Windows Live secrets
98 gnome2_src_configure \
99 --disable-static \
100 --enable-documentation \
101 --enable-exchange \
102 --enable-facebook \
103 --with-facebook-client-id \
104 --enable-imap-smtp \
105 --enable-owncloud \
106 --with-windows-live-client-id \
107 $(use_enable kerberos)
108 }