* [gentoo-commits] gentoo-x86 commit in net-libs/libsoup: libsoup-2.36.1-r1.ebuild ChangeLog
@ 2012-01-27 17:33 Alexandre Rostovtsev (tetromino)
0 siblings, 0 replies; 8+ messages in thread
From: Alexandre Rostovtsev (tetromino) @ 2012-01-27 17:33 UTC (permalink / raw
To: gentoo-commits
tetromino 12/01/27 17:33:42
Modified: ChangeLog
Added: libsoup-2.36.1-r1.ebuild
Log:
Add patch from 2.37.x fixing "Too many open files" crash when loading some webpages. Thanks to Priit Laes for reporting.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Revision Changes Path
1.269 net-libs/libsoup/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.269&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.269&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?r1=1.268&r2=1.269
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v
retrieving revision 1.268
retrieving revision 1.269
diff -u -r1.268 -r1.269
--- ChangeLog 18 Jan 2012 21:03:29 -0000 1.268
+++ ChangeLog 27 Jan 2012 17:33:42 -0000 1.269
@@ -1,6 +1,14 @@
# ChangeLog for net-libs/libsoup
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.268 2012/01/18 21:03:29 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.269 2012/01/27 17:33:42 tetromino Exp $
+
+*libsoup-2.36.1-r1 (27 Jan 2012)
+
+ 27 Jan 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
+ +libsoup-2.36.1-r1.ebuild,
+ +files/libsoup-2.36.1-SoupHTTPInputStream-GCancellable.patch:
+ Add patch from 2.37.x fixing "Too many open files" crash when loading some
+ webpages. Thanks to Priit Laes for reporting.
18 Jan 2012; Markus Meier <maekke@gentoo.org> libsoup-2.36.1.ebuild:
arm stable, bug #393007
1.1 net-libs/libsoup/libsoup-2.36.1-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.1&content-type=text/plain
Index: libsoup-2.36.1-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.1 2012/01/27 17:33:42 tetromino Exp $
EAPI="4"
GCONF_DEBUG="yes"
GNOME2_LA_PUNT="yes"
inherit autotools eutils gnome2
DESCRIPTION="An HTTP library implementation in C"
HOMEPAGE="http://live.gnome.org/LibSoup"
LICENSE="LGPL-2"
SLOT="2.4"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="debug doc +introspection samba ssl test"
# glib-networking-2.29.18 needed to avoid a tls bug, see NEWS file
RDEPEND=">=dev-libs/glib-2.30.0:2
>=dev-libs/libxml2-2:2
>=net-libs/glib-networking-2.30.0[ssl?]
introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
samba? ( net-fs/samba )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9
>=dev-util/gtk-doc-am-1.10
doc? ( >=dev-util/gtk-doc-1.10 )"
# test? ( www-servers/apache[ssl,apache2_modules_auth_digest,apache2_modules_alias,apache2_modules_auth_basic,
# apache2_modules_authn_file,apache2_modules_authz_host,apache2_modules_authz_user,apache2_modules_dir,
# apache2_modules_mime,apache2_modules_proxy,apache2_modules_proxy_http,apache2_modules_proxy_connect]
# dev-lang/php[apache2,xmlrpc]
# net-misc/curl
# net-libs/glib-networking[ssl])"
pkg_setup() {
# Set invalid apache module dir until apache tests are ready, bug #326957
DOCS="AUTHORS NEWS README"
G2CONF="${G2CONF}
--disable-static
--disable-tls-check
--without-gnome
--with-apache-module-dir="${T}"
$(use_enable introspection)
$(use_with samba ntlm-auth ${EPREFIX}/usr/bin/ntlm_auth)"
}
src_configure() {
# FIXME: we need addpredict to workaround bug #324779 until
# root cause (bug #249496) is solved
addpredict /usr/share/snmp/mibs/.index
gnome2_src_configure
}
src_prepare() {
gnome2_src_prepare
if ! use test; then
# don't waste time building tests (bug #226271)
sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
|| die "sed failed"
fi
# Patch *must* be applied conditionally (see patch for details)
if use doc; then
# Fix bug 268592 (upstream #573685) (build fails without gnome && doc)
epatch "${FILESDIR}/${PN}-2.34.2-fix-build-without-gnome-with-doc.patch"
eautoreconf
fi
# Patch from 2.37.x, fixes 'Too many open files' error
epatch "${FILESDIR}/${P}-SoupHTTPInputStream-GCancellable.patch"
}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/libsoup: libsoup-2.36.1-r1.ebuild ChangeLog
@ 2012-04-18 20:59 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-04-18 20:59 UTC (permalink / raw
To: gentoo-commits
ago 12/04/18 20:59:51
Modified: libsoup-2.36.1-r1.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #410611
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Revision Changes Path
1.3 net-libs/libsoup/libsoup-2.36.1-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?r1=1.2&r2=1.3
Index: libsoup-2.36.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libsoup-2.36.1-r1.ebuild 30 Jan 2012 20:03:06 -0000 1.2
+++ libsoup-2.36.1-r1.ebuild 18 Apr 2012 20:59:51 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.2 2012/01/30 20:03:06 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.3 2012/04/18 20:59:51 ago Exp $
EAPI="4"
GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
LICENSE="LGPL-2"
SLOT="2.4"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="debug doc +introspection samba ssl test"
# glib-networking-2.29.18 needed to avoid a tls bug, see NEWS file
1.275 net-libs/libsoup/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.275&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.275&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?r1=1.274&r2=1.275
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v
retrieving revision 1.274
retrieving revision 1.275
diff -u -r1.274 -r1.275
--- ChangeLog 13 Apr 2012 23:04:08 -0000 1.274
+++ ChangeLog 18 Apr 2012 20:59:51 -0000 1.275
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/libsoup
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.274 2012/04/13 23:04:08 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.275 2012/04/18 20:59:51 ago Exp $
+
+ 18 Apr 2012; Agostino Sarubbo <ago@gentoo.org> libsoup-2.36.1-r1.ebuild:
+ Stable for amd64, wrt bug #410611
*libsoup-2.38.0 (13 Apr 2012)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/libsoup: libsoup-2.36.1-r1.ebuild ChangeLog
@ 2012-04-19 20:42 Brent Baude (ranger)
0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2012-04-19 20:42 UTC (permalink / raw
To: gentoo-commits
ranger 12/04/19 20:42:52
Modified: libsoup-2.36.1-r1.ebuild ChangeLog
Log:
Marking libsoup-2.36.1-r1 ppc64 for bug 410611
(Portage version: 2.1.10.11/cvs/Linux ppc64)
Revision Changes Path
1.4 net-libs/libsoup/libsoup-2.36.1-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?r1=1.3&r2=1.4
Index: libsoup-2.36.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libsoup-2.36.1-r1.ebuild 18 Apr 2012 20:59:51 -0000 1.3
+++ libsoup-2.36.1-r1.ebuild 19 Apr 2012 20:42:52 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.3 2012/04/18 20:59:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.4 2012/04/19 20:42:52 ranger Exp $
EAPI="4"
GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
LICENSE="LGPL-2"
SLOT="2.4"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="debug doc +introspection samba ssl test"
# glib-networking-2.29.18 needed to avoid a tls bug, see NEWS file
1.276 net-libs/libsoup/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.276&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.276&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?r1=1.275&r2=1.276
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v
retrieving revision 1.275
retrieving revision 1.276
diff -u -r1.275 -r1.276
--- ChangeLog 18 Apr 2012 20:59:51 -0000 1.275
+++ ChangeLog 19 Apr 2012 20:42:52 -0000 1.276
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/libsoup
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.275 2012/04/18 20:59:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.276 2012/04/19 20:42:52 ranger Exp $
+
+ 19 Apr 2012; Brent Baude <ranger@gentoo.org> libsoup-2.36.1-r1.ebuild:
+ Marking libsoup-2.36.1-r1 ppc64 stable for bug 410611
18 Apr 2012; Agostino Sarubbo <ago@gentoo.org> libsoup-2.36.1-r1.ebuild:
Stable for amd64, wrt bug #410611
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/libsoup: libsoup-2.36.1-r1.ebuild ChangeLog
@ 2012-04-25 20:43 Markus Meier (maekke)
0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2012-04-25 20:43 UTC (permalink / raw
To: gentoo-commits
maekke 12/04/25 20:43:47
Modified: libsoup-2.36.1-r1.ebuild ChangeLog
Log:
arm stable, bug #410611
(Portage version: 2.1.10.56/cvs/Linux i686)
Revision Changes Path
1.5 net-libs/libsoup/libsoup-2.36.1-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?r1=1.4&r2=1.5
Index: libsoup-2.36.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libsoup-2.36.1-r1.ebuild 19 Apr 2012 20:42:52 -0000 1.4
+++ libsoup-2.36.1-r1.ebuild 25 Apr 2012 20:43:47 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.4 2012/04/19 20:42:52 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.5 2012/04/25 20:43:47 maekke Exp $
EAPI="4"
GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
LICENSE="LGPL-2"
SLOT="2.4"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="debug doc +introspection samba ssl test"
# glib-networking-2.29.18 needed to avoid a tls bug, see NEWS file
1.278 net-libs/libsoup/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.278&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.278&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?r1=1.277&r2=1.278
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v
retrieving revision 1.277
retrieving revision 1.278
diff -u -r1.277 -r1.278
--- ChangeLog 20 Apr 2012 06:36:15 -0000 1.277
+++ ChangeLog 25 Apr 2012 20:43:47 -0000 1.278
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/libsoup
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.277 2012/04/20 06:36:15 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.278 2012/04/25 20:43:47 maekke Exp $
+
+ 25 Apr 2012; Markus Meier <maekke@gentoo.org> libsoup-2.36.1-r1.ebuild:
+ arm stable, bug #410611
*libsoup-2.38.1 (20 Apr 2012)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/libsoup: libsoup-2.36.1-r1.ebuild ChangeLog
@ 2012-04-29 16:09 Markus Meier (maekke)
0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2012-04-29 16:09 UTC (permalink / raw
To: gentoo-commits
maekke 12/04/29 16:09:36
Modified: libsoup-2.36.1-r1.ebuild ChangeLog
Log:
x86 stable, bug #410611
(Portage version: 2.1.10.57/cvs/Linux x86_64)
Revision Changes Path
1.6 net-libs/libsoup/libsoup-2.36.1-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?r1=1.5&r2=1.6
Index: libsoup-2.36.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libsoup-2.36.1-r1.ebuild 25 Apr 2012 20:43:47 -0000 1.5
+++ libsoup-2.36.1-r1.ebuild 29 Apr 2012 16:09:36 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.5 2012/04/25 20:43:47 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.6 2012/04/29 16:09:36 maekke Exp $
EAPI="4"
GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
LICENSE="LGPL-2"
SLOT="2.4"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="debug doc +introspection samba ssl test"
# glib-networking-2.29.18 needed to avoid a tls bug, see NEWS file
1.279 net-libs/libsoup/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.279&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.279&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?r1=1.278&r2=1.279
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v
retrieving revision 1.278
retrieving revision 1.279
diff -u -r1.278 -r1.279
--- ChangeLog 25 Apr 2012 20:43:47 -0000 1.278
+++ ChangeLog 29 Apr 2012 16:09:36 -0000 1.279
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/libsoup
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.278 2012/04/25 20:43:47 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.279 2012/04/29 16:09:36 maekke Exp $
+
+ 29 Apr 2012; Markus Meier <maekke@gentoo.org> libsoup-2.36.1-r1.ebuild:
+ x86 stable, bug #410611
25 Apr 2012; Markus Meier <maekke@gentoo.org> libsoup-2.36.1-r1.ebuild:
arm stable, bug #410611
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/libsoup: libsoup-2.36.1-r1.ebuild ChangeLog
@ 2012-05-16 15:12 Jeroen Roovers (jer)
0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2012-05-16 15:12 UTC (permalink / raw
To: gentoo-commits
jer 12/05/16 15:12:50
Modified: libsoup-2.36.1-r1.ebuild ChangeLog
Log:
Stable for HPPA (bug #410611).
(Portage version: 2.2.0_alpha105/cvs/Linux x86_64)
Revision Changes Path
1.8 net-libs/libsoup/libsoup-2.36.1-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?r1=1.7&r2=1.8
Index: libsoup-2.36.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libsoup-2.36.1-r1.ebuild 5 May 2012 02:54:27 -0000 1.7
+++ libsoup-2.36.1-r1.ebuild 16 May 2012 15:12:50 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.7 2012/05/05 02:54:27 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.8 2012/05/16 15:12:50 jer Exp $
EAPI="4"
GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
LICENSE="LGPL-2"
SLOT="2.4"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="debug doc +introspection samba ssl test"
# glib-networking-2.29.18 needed to avoid a tls bug, see NEWS file
1.282 net-libs/libsoup/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.282&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.282&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?r1=1.281&r2=1.282
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v
retrieving revision 1.281
retrieving revision 1.282
diff -u -r1.281 -r1.282
--- ChangeLog 16 May 2012 00:13:34 -0000 1.281
+++ ChangeLog 16 May 2012 15:12:50 -0000 1.282
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/libsoup
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.281 2012/05/16 00:13:34 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.282 2012/05/16 15:12:50 jer Exp $
+
+ 16 May 2012; Jeroen Roovers <jer@gentoo.org> libsoup-2.36.1-r1.ebuild:
+ Stable for HPPA (bug #410611).
16 May 2012; Alexis Ballier <aballier@gentoo.org> libsoup-2.38.1.ebuild:
keyword ~amd64-fbsd
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/libsoup: libsoup-2.36.1-r1.ebuild ChangeLog
@ 2012-05-24 14:07 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 8+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-05-24 14:07 UTC (permalink / raw
To: gentoo-commits
ssuominen 12/05/24 14:07:23
Modified: libsoup-2.36.1-r1.ebuild ChangeLog
Log:
ppc stable wrt #410611
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64, RepoMan options: --force)
Revision Changes Path
1.9 net-libs/libsoup/libsoup-2.36.1-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?r1=1.8&r2=1.9
Index: libsoup-2.36.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libsoup-2.36.1-r1.ebuild 16 May 2012 15:12:50 -0000 1.8
+++ libsoup-2.36.1-r1.ebuild 24 May 2012 14:07:23 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.8 2012/05/16 15:12:50 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.9 2012/05/24 14:07:23 ssuominen Exp $
EAPI="4"
GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
LICENSE="LGPL-2"
SLOT="2.4"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="debug doc +introspection samba ssl test"
# glib-networking-2.29.18 needed to avoid a tls bug, see NEWS file
1.283 net-libs/libsoup/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.283&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.283&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?r1=1.282&r2=1.283
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v
retrieving revision 1.282
retrieving revision 1.283
diff -u -r1.282 -r1.283
--- ChangeLog 16 May 2012 15:12:50 -0000 1.282
+++ ChangeLog 24 May 2012 14:07:23 -0000 1.283
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/libsoup
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.282 2012/05/16 15:12:50 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.283 2012/05/24 14:07:23 ssuominen Exp $
+
+ 24 May 2012; Samuli Suominen <ssuominen@gentoo.org> libsoup-2.36.1-r1.ebuild:
+ ppc stable wrt #410611
16 May 2012; Jeroen Roovers <jer@gentoo.org> libsoup-2.36.1-r1.ebuild:
Stable for HPPA (bug #410611).
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/libsoup: libsoup-2.36.1-r1.ebuild ChangeLog
@ 2012-07-15 18:18 Raul Porcel (armin76)
0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2012-07-15 18:18 UTC (permalink / raw
To: gentoo-commits
armin76 12/07/15 18:18:02
Modified: libsoup-2.36.1-r1.ebuild ChangeLog
Log:
alpha/ia64/sh/sparc stable wrt #410611
(Portage version: 2.1.11.5/cvs/Linux ia64)
Revision Changes Path
1.10 net-libs/libsoup/libsoup-2.36.1-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild?r1=1.9&r2=1.10
Index: libsoup-2.36.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libsoup-2.36.1-r1.ebuild 24 May 2012 14:07:23 -0000 1.9
+++ libsoup-2.36.1-r1.ebuild 15 Jul 2012 18:18:02 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.9 2012/05/24 14:07:23 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/libsoup-2.36.1-r1.ebuild,v 1.10 2012/07/15 18:18:02 armin76 Exp $
EAPI="4"
GCONF_DEBUG="yes"
@@ -13,7 +13,7 @@
LICENSE="LGPL-2"
SLOT="2.4"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="debug doc +introspection samba ssl test"
# glib-networking-2.29.18 needed to avoid a tls bug, see NEWS file
1.284 net-libs/libsoup/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.284&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?rev=1.284&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libsoup/ChangeLog?r1=1.283&r2=1.284
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v
retrieving revision 1.283
retrieving revision 1.284
diff -u -r1.283 -r1.284
--- ChangeLog 24 May 2012 14:07:23 -0000 1.283
+++ ChangeLog 15 Jul 2012 18:18:02 -0000 1.284
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/libsoup
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.283 2012/05/24 14:07:23 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libsoup/ChangeLog,v 1.284 2012/07/15 18:18:02 armin76 Exp $
+
+ 15 Jul 2012; Raúl Porcel <armin76@gentoo.org> libsoup-2.36.1-r1.ebuild:
+ alpha/ia64/sh/sparc stable wrt #410611
24 May 2012; Samuli Suominen <ssuominen@gentoo.org> libsoup-2.36.1-r1.ebuild:
ppc stable wrt #410611
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-07-15 18:18 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-16 15:12 [gentoo-commits] gentoo-x86 commit in net-libs/libsoup: libsoup-2.36.1-r1.ebuild ChangeLog Jeroen Roovers (jer)
-- strict thread matches above, loose matches on Subject: below --
2012-07-15 18:18 Raul Porcel (armin76)
2012-05-24 14:07 Samuli Suominen (ssuominen)
2012-04-29 16:09 Markus Meier (maekke)
2012-04-25 20:43 Markus Meier (maekke)
2012-04-19 20:42 Brent Baude (ranger)
2012-04-18 20:59 Agostino Sarubbo (ago)
2012-01-27 17:33 Alexandre Rostovtsev (tetromino)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox