Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libsoup: ChangeLog libsoup-2.24.2.1.ebuild
Date: Sat, 29 Nov 2008 12:00:07
Message-Id: E1L6OUV-0003Oq-Kp@stork.gentoo.org
1 eva 08/11/29 12:00:03
2
3 Modified: ChangeLog
4 Added: libsoup-2.24.2.1.ebuild
5 Log:
6 Bump to 2.24.2.1. Fixes a crash in the cookie code.
7 (Portage version: 2.2_rc16/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
8
9 Revision Changes Path
10 1.165 net-libs/libsoup/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.165&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.165&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libsoup/ChangeLog?r1=1.164&r2=1.165
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v
19 retrieving revision 1.164
20 retrieving revision 1.165
21 diff -u -r1.164 -r1.165
22 --- ChangeLog 24 Nov 2008 21:02:50 -0000 1.164
23 +++ ChangeLog 29 Nov 2008 12:00:03 -0000 1.165
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-libs/libsoup
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.164 2008/11/24 21:02:50 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.165 2008/11/29 12:00:03 eva Exp $
29 +
30 +*libsoup-2.24.2.1 (29 Nov 2008)
31 +
32 + 29 Nov 2008; Gilles Dartiguelongue <eva@g.o>
33 + +libsoup-2.24.2.1.ebuild:
34 + Bump to 2.24.2.1. Fixes a crash in the cookie code.
35
36 *libsoup-2.24.2 (24 Nov 2008)
37
38
39
40
41 1.1 net-libs/libsoup/libsoup-2.24.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libsoup/libsoup-2.24.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libsoup/libsoup-2.24.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libsoup-2.24.2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.24.2.1.ebuild,v 1.1 2008/11/29 12:00:03 eva Exp $
51
52 inherit gnome2
53
54 DESCRIPTION="An HTTP library implementation in C"
55 HOMEPAGE="http://www.gnome.org/"
56
57 LICENSE="LGPL-2"
58 SLOT="2.4"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
60 IUSE="debug doc ssl"
61
62 RDEPEND=">=dev-libs/glib-2.15.3
63 >=dev-libs/libxml2-2
64 ssl? ( >=net-libs/gnutls-1 )"
65 DEPEND="${RDEPEND}
66 >=dev-util/pkgconfig-0.9
67 doc? ( >=dev-util/gtk-doc-1 )"
68
69 DOCS="AUTHORS ChangeLog NEWS README"
70
71 pkg_setup() {
72 # Do NOT build with --disable-debug/--enable-debug=no
73 if use debug ; then
74 G2CONF="${G2CONF} --enable-debug=yes"
75 fi
76
77 G2CONF="${G2CONF} $(use_enable ssl)"
78 }