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/libsoup-gnome: ChangeLog libsoup-gnome-2.32.0.ebuild
Date: Sat, 09 Oct 2010 21:04:02
Message-Id: 20101009203512.2A2322004C@flycatcher.gentoo.org
1 pacho 10/10/09 20:35:12
2
3 Modified: ChangeLog
4 Added: libsoup-gnome-2.32.0.ebuild
5 Log:
6 Version bump for Gnome 2.32
7
8 (Portage version: 2.1.9.14/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.38 net-libs/libsoup-gnome/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup-gnome/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup-gnome/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup-gnome/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup-gnome/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 7 Oct 2010 20:47:47 -0000 1.37
24 +++ ChangeLog 9 Oct 2010 20:35:12 -0000 1.38
25 @@ -1,6 +1,21 @@
26 # ChangeLog for net-libs/libsoup-gnome
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup-gnome/ChangeLog,v 1.37 2010/10/07 20:47:47 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup-gnome/ChangeLog,v 1.38 2010/10/09 20:35:12 pacho Exp $
30 +
31 +*libsoup-gnome-2.32.0 (09 Oct 2010)
32 +
33 + 09 Oct 2010; Pacho Ramos <pacho@g.o>
34 + +files/libsoup-gnome-2.31.92-system-lib.patch,
35 + +libsoup-gnome-2.32.0.ebuild:
36 + Version bump for Gnome 2.32: Fixed support for more recent
37 + gobject-introspection, disabled TLS 1.2 in addition to the
38 + already-disabled 1.1 and 1.0 making libsoup usable with gnutls 2.10, can
39 + work with old libproxy, but will work better with >0.3 (When using
40 + libproxy 0.3 or newer, libsoup no longer leaks proxy-related environment
41 + variables into child processes), other bugfixes and translation updates.
42 + 'Fix test to follow POSIX' looks to be no longer needed, gir patches
43 + neither since they were pushed upstream, system-lib patch taken from
44 + overlay.
45
46 07 Oct 2010; Samuli Suominen <ssuominen@g.o>
47 libsoup-gnome-2.30.2.ebuild:
48
49
50
51 1.1 net-libs/libsoup-gnome/libsoup-gnome-2.32.0.ebuild
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup-gnome/libsoup-gnome-2.32.0.ebuild?rev=1.1&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup-gnome/libsoup-gnome-2.32.0.ebuild?rev=1.1&content-type=text/plain
55
56 Index: libsoup-gnome-2.32.0.ebuild
57 ===================================================================
58 # Copyright 1999-2010 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 # $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup-gnome/libsoup-gnome-2.32.0.ebuild,v 1.1 2010/10/09 20:35:12 pacho Exp $
61
62 EAPI="3"
63 GCONF_DEBUG="yes"
64
65 inherit autotools eutils gnome2
66
67 MY_PN=${PN/-gnome}
68 MY_P=${MY_PN}-${PV}
69
70 DESCRIPTION="GNOME plugin for libsoup"
71 HOMEPAGE="http://www.gnome.org/"
72 SRC_URI="${SRC_URI//-gnome}"
73
74 LICENSE="LGPL-2"
75 SLOT="2.4"
76 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-solaris"
77 IUSE="debug doc +introspection"
78
79 RDEPEND="~net-libs/libsoup-${PV}
80 || ( gnome-base/libgnome-keyring <gnome-base/gnome-keyring-2.29.4 )
81 net-libs/libproxy
82 >=gnome-base/gconf-2
83 dev-db/sqlite:3
84 introspection? ( >=dev-libs/gobject-introspection-0.9.5 )"
85 DEPEND="${RDEPEND}
86 >=dev-util/pkgconfig-0.9
87 >=dev-util/gtk-doc-am-1.10
88 doc? ( >=dev-util/gtk-doc-1.10 )"
89
90 S=${WORKDIR}/${MY_P}
91
92 pkg_setup() {
93 G2CONF="${G2CONF}
94 --disable-static
95 $(use_enable introspection)
96 --with-libsoup-system
97 --with-gnome"
98 DOCS="AUTHORS NEWS README"
99 }
100
101 src_configure() {
102 # FIXME: we need addpredict to workaround bug #324779 until
103 # root cause (bug #249496) is solved
104 addpredict /usr/share/snmp/mibs/.index
105 gnome2_src_configure
106 }
107
108 src_prepare() {
109 gnome2_src_prepare
110
111 # Use lib present on the system
112 epatch "${FILESDIR}"/${PN}-2.31.92-system-lib.patch
113 eautoreconf
114 }