Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/gnumeric: gnumeric-1.12.9.ebuild ChangeLog gnumeric-1.12.7.ebuild
Date: Sun, 05 Jan 2014 10:34:36
Message-Id: 20140105103433.60F182004C@flycatcher.gentoo.org
1 pacho 14/01/05 10:34:33
2
3 Modified: ChangeLog
4 Added: gnumeric-1.12.9.ebuild
5 Removed: gnumeric-1.12.7.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.258 app-office/gnumeric/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.258&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.258&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.257&r2=1.258
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
21 retrieving revision 1.257
22 retrieving revision 1.258
23 diff -u -r1.257 -r1.258
24 --- ChangeLog 26 Dec 2013 14:45:00 -0000 1.257
25 +++ ChangeLog 5 Jan 2014 10:34:33 -0000 1.258
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-office/gnumeric
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.257 2013/12/26 14:45:00 maekke Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.258 2014/01/05 10:34:33 pacho Exp $
32 +
33 +*gnumeric-1.12.9 (05 Jan 2014)
34 +
35 + 05 Jan 2014; Pacho Ramos <pacho@g.o> +gnumeric-1.12.9.ebuild,
36 + -gnumeric-1.12.7.ebuild:
37 + Version bump, drop old
38
39 26 Dec 2013; Markus Meier <maekke@g.o> gnumeric-1.12.8.ebuild:
40 add ~arm, bug #488724
41
42
43
44 1.1 app-office/gnumeric/gnumeric-1.12.9.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/gnumeric-1.12.9.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/gnumeric-1.12.9.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gnumeric-1.12.9.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.12.9.ebuild,v 1.1 2014/01/05 10:34:33 pacho Exp $
54
55 EAPI="5"
56 GCONF_DEBUG="no"
57 GNOME2_LA_PUNT="yes"
58 PYTHON_COMPAT=( python{2_6,2_7} )
59
60 inherit eutils gnome2 flag-o-matic python-single-r1
61
62 DESCRIPTION="The GNOME Spreadsheet"
63 HOMEPAGE="http://projects.gnome.org/gnumeric/"
64 LICENSE="GPL-2"
65
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
68
69 IUSE="+introspection libgda perl python"
70 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
71
72 # Missing gnome-extra/libgnomedb required version in tree
73 # but its upstream is dead and will be dropped soon.
74
75 # lots of missing files, also fails tests due to 80-bit long story
76 # upstream bug #721556
77 RESTRICT="test"
78
79 RDEPEND="
80 app-arch/bzip2
81 sys-libs/zlib
82 >=dev-libs/glib-2.28:2
83 >=gnome-extra/libgsf-1.14.24:=
84 >=x11-libs/goffice-0.10.9:0.10
85 >=dev-libs/libxml2-2.4.12:2
86 >=x11-libs/pango-1.24.0:=
87
88 >=x11-libs/gtk+-3.2:3
89 x11-libs/cairo:=[svg]
90
91 introspection? ( >=dev-libs/gobject-introspection-1:= )
92 perl? ( dev-lang/perl )
93 python? ( ${PYTHON_DEPS}
94 >=dev-python/pygobject-3:3[${PYTHON_USEDEP}] )
95 libgda? ( gnome-extra/libgda:5[gtk] )
96 "
97 DEPEND="${RDEPEND}
98 app-text/scrollkeeper
99 >=dev-util/intltool-0.35.0
100 virtual/pkgconfig
101 "
102
103 pkg_setup() {
104 use python && python-single-r1_pkg_setup
105 }
106
107 src_configure() {
108 gnome2_src_configure \
109 --disable-static \
110 --with-zlib \
111 $(use_with libgda gda) \
112 $(use_enable introspection) \
113 $(use_with perl) \
114 $(use_with python)
115 }