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.42.2-r1.ebuild
Date: Thu, 29 Aug 2013 22:07:23
Message-Id: 20130829220719.CEF742004C@flycatcher.gentoo.org
1 eva 13/08/29 22:07:19
2
3 Modified: ChangeLog
4 Added: libsoup-2.42.2-r1.ebuild
5 Log:
6 Version bump. Re-split libsoup for easier upgrade path, etc.
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.308 net-libs/libsoup/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.308&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.308&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?r1=1.307&r2=1.308
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v
20 retrieving revision 1.307
21 retrieving revision 1.308
22 diff -u -r1.307 -r1.308
23 --- ChangeLog 3 May 2013 00:27:33 -0000 1.307
24 +++ ChangeLog 29 Aug 2013 22:07:19 -0000 1.308
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-libs/libsoup
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.307 2013/05/03 00:27:33 zmedico Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.308 2013/08/29 22:07:19 eva Exp $
30 +
31 +*libsoup-2.42.2-r1 (29 Aug 2013)
32 +
33 + 29 Aug 2013; Gilles Dartiguelongue <eva@g.o>
34 + +libsoup-2.42.2-r1.ebuild:
35 + Version bump. Re-split libsoup for easier upgrade path, etc.
36
37 03 May 2013; Zac Medico <zmedico@g.o> libsoup-2.42.1.ebuild,
38 libsoup-2.42.2.ebuild:
39
40
41
42 1.1 net-libs/libsoup/libsoup-2.42.2-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.42.2-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.42.2-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libsoup-2.42.2-r1.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/libsoup/libsoup-2.42.2-r1.ebuild,v 1.1 2013/08/29 22:07:19 eva Exp $
52
53 EAPI="5"
54 GCONF_DEBUG="yes"
55 GNOME2_LA_PUNT="yes"
56 PYTHON_COMPAT=( python{2_5,2_6,2_7} )
57
58 inherit gnome2 python-any-r1
59
60 DESCRIPTION="An HTTP library implementation in C"
61 HOMEPAGE="http://live.gnome.org/LibSoup"
62
63 LICENSE="LGPL-2+"
64 SLOT="2.4"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
66 IUSE="debug +introspection samba ssl test"
67
68 RDEPEND="
69 >=dev-libs/glib-2.36.0:2
70 >=dev-libs/libxml2-2:2
71 dev-db/sqlite:3
72 >=net-libs/glib-networking-2.30.0[ssl?]
73 introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
74 samba? ( net-fs/samba )
75 "
76 DEPEND="${RDEPEND}
77 ${PYTHON_DEPS}
78 >=dev-util/intltool-0.35
79 >=dev-util/gtk-doc-am-1.10
80 sys-devel/gettext
81 virtual/pkgconfig"
82 # test? ( www-servers/apache[ssl,apache2_modules_auth_digest,apache2_modules_alias,apache2_modules_auth_basic,
83 # apache2_modules_authn_file,apache2_modules_authz_host,apache2_modules_authz_user,apache2_modules_dir,
84 # apache2_modules_mime,apache2_modules_proxy,apache2_modules_proxy_http,apache2_modules_proxy_connect]
85 # dev-lang/php[apache2,xmlrpc]
86 # net-misc/curl
87 # net-libs/glib-networking[ssl])"
88
89 src_prepare() {
90 if ! use test; then
91 # don't waste time building tests (bug #226271)
92 sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
93 || die "sed failed"
94 fi
95
96 gnome2_src_prepare
97 }
98
99 src_configure() {
100 # FIXME: we need addpredict to workaround bug #324779 until
101 # root cause (bug #249496) is solved
102 addpredict /usr/share/snmp/mibs/.index
103
104 # Disable apache tests until they are usable on Gentoo, bug #326957
105 gnome2_src_configure \
106 --disable-static \
107 --disable-tls-check \
108 --without-gnome \
109 --without-apache-httpd \
110 $(use_enable introspection) \
111 $(use_with samba ntlm-auth '${EPREFIX}'/usr/bin/ntlm_auth)
112 }