Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-geosciences/geocode-glib: geocode-glib-0.99.1.ebuild ChangeLog
Date: Thu, 01 Aug 2013 19:59:09
Message-Id: 20130801195904.B9A1521710@flycatcher.gentoo.org
1 pacho 13/08/01 19:59:04
2
3 Modified: ChangeLog
4 Added: geocode-glib-0.99.1.ebuild
5 Log:
6 Version bump and skip tests as they need network (#424719 by flameeyes)
7
8 (Portage version: 2.1.13.2/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.11 sci-geosciences/geocode-glib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/geocode-glib/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/geocode-glib/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/geocode-glib/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/geocode-glib/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 31 Mar 2013 19:07:35 -0000 1.10
24 +++ ChangeLog 1 Aug 2013 19:59:04 -0000 1.11
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-geosciences/geocode-glib
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/geocode-glib/ChangeLog,v 1.10 2013/03/31 19:07:35 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/geocode-glib/ChangeLog,v 1.11 2013/08/01 19:59:04 pacho Exp $
30 +
31 +*geocode-glib-0.99.1 (01 Aug 2013)
32 +
33 + 01 Aug 2013; Pacho Ramos <pacho@g.o> +geocode-glib-0.99.1.ebuild:
34 + Version bump and skip tests as they need network (#424719 by flameeyes)
35
36 31 Mar 2013; Pacho Ramos <pacho@g.o> geocode-glib-0.99.0.ebuild:
37 Adapt to libsoup-2.42 dropping gnome USE and splitting (#463702)
38
39
40
41 1.1 sci-geosciences/geocode-glib/geocode-glib-0.99.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/geocode-glib/geocode-glib-0.99.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/geocode-glib/geocode-glib-0.99.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: geocode-glib-0.99.1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-geosciences/geocode-glib/geocode-glib-0.99.1.ebuild,v 1.1 2013/08/01 19:59:04 pacho Exp $
51
52 EAPI=5
53 GCONF_DEBUG="no" # --enable-debug does not do anything useful
54
55 inherit gnome2
56
57 DESCRIPTION="GLib geocoding library that uses the Yahoo! Place Finder service"
58 HOMEPAGE="http://git.gnome.org/browse/geocode-glib"
59
60 LICENSE="LGPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="+introspection test"
64
65 RDEPEND="
66 dev-libs/geoip
67 >=dev-libs/glib-2.34:2
68 >=dev-libs/json-glib-0.14[introspection?]
69 gnome-base/gvfs[http]
70 net-libs/libsoup:2.4[introspection?]
71 introspection? (
72 >=dev-libs/gobject-introspection-0.6.3
73 || ( >=net-libs/libsoup-2.42:2.4 net-libs/libsoup-gnome:2.4[introspection] ) )
74 "
75 DEPEND="${RDEPEND}
76 >=dev-util/intltool-0.41.0
77 >=sys-devel/gettext-0.17
78 virtual/pkgconfig
79 test? ( sys-apps/dbus )
80 "
81 # eautoreconf requires:
82 # dev-libs/gobject-introspection-common
83 # gnome-base/gnome-common
84
85 RESTRICT="test" # Need network #424719
86
87 #src_test() {
88 # export GVFS_DISABLE_FUSE=1
89 # export GIO_USE_VFS=gvfs
90 # ewarn "Tests require network access to http://where.yahooapis.com"
91 # dbus-launch emake check || die "tests failed"
92 #}