Update to 2.35.3
This commit is contained in:
parent
fdadf365cf
commit
a1115ade7d
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,3 +10,4 @@ libsoup-2.31.6.tar.bz2
|
|||||||
/libsoup-2.33.92.tar.bz2
|
/libsoup-2.33.92.tar.bz2
|
||||||
/libsoup-2.34.0.tar.bz2
|
/libsoup-2.34.0.tar.bz2
|
||||||
/libsoup-2.34.1.tar.bz2
|
/libsoup-2.34.1.tar.bz2
|
||||||
|
/libsoup-2.35.3.tar.xz
|
||||||
|
@ -1,47 +0,0 @@
|
|||||||
From b304a99ddebbb14b231c4b288e303b3088d7041e Mon Sep 17 00:00:00 2001
|
|
||||||
From: Vincent Untz <vuntz@gnome.org>
|
|
||||||
Date: Thu, 3 Dec 2009 15:35:58 +0100
|
|
||||||
Subject: [PATCH] Make connection-created and tunneling of SoupSession use a GObject
|
|
||||||
|
|
||||||
The connection-created and tunneling signals added to SoupSession in commit
|
|
||||||
6ff7ecdd were using SoupConnection, and this made SoupConnection
|
|
||||||
semi-public (gir-repository failed to build because it didn't know about
|
|
||||||
it, for example).
|
|
||||||
|
|
||||||
Since SoupConnection is intended to be private, use a GObject for the
|
|
||||||
signal parameter.
|
|
||||||
|
|
||||||
https://bugzilla.gnome.org/show_bug.cgi?id=603696
|
|
||||||
---
|
|
||||||
libsoup/soup-session.c | 8 ++++++--
|
|
||||||
1 files changed, 6 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/libsoup/soup-session.c b/libsoup/soup-session.c
|
|
||||||
index c4d3044..547db9f 100644
|
|
||||||
--- a/libsoup/soup-session.c
|
|
||||||
+++ b/libsoup/soup-session.c
|
|
||||||
@@ -390,7 +390,9 @@ soup_session_class_init (SoupSessionClass *session_class)
|
|
||||||
NULL, NULL,
|
|
||||||
soup_marshal_NONE__OBJECT,
|
|
||||||
G_TYPE_NONE, 1,
|
|
||||||
- SOUP_TYPE_CONNECTION);
|
|
||||||
+ /* SoupConnection is public, so we can't use
|
|
||||||
+ * SOUP_TYPE_CONNECTION here */
|
|
||||||
+ G_TYPE_OBJECT);
|
|
||||||
|
|
||||||
signals[TUNNELING] =
|
|
||||||
g_signal_new ("tunneling",
|
|
||||||
@@ -400,7 +402,9 @@ soup_session_class_init (SoupSessionClass *session_class)
|
|
||||||
NULL, NULL,
|
|
||||||
soup_marshal_NONE__OBJECT,
|
|
||||||
G_TYPE_NONE, 1,
|
|
||||||
- SOUP_TYPE_CONNECTION);
|
|
||||||
+ /* SoupConnection is public, so we can't use
|
|
||||||
+ * SOUP_TYPE_CONNECTION here */
|
|
||||||
+ G_TYPE_OBJECT);
|
|
||||||
|
|
||||||
|
|
||||||
/* properties */
|
|
||||||
--
|
|
||||||
1.6.5.2
|
|
||||||
|
|
@ -3,14 +3,14 @@
|
|||||||
### Abstract ###
|
### Abstract ###
|
||||||
|
|
||||||
Name: libsoup
|
Name: libsoup
|
||||||
Version: 2.34.1
|
Version: 2.35.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: LGPLv2
|
License: LGPLv2
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Summary: Soup, an HTTP library implementation
|
Summary: Soup, an HTTP library implementation
|
||||||
URL: http://live.gnome.org/LibSoup
|
URL: http://live.gnome.org/LibSoup
|
||||||
#VCS: git:git://git.gnome.org/libsoup
|
#VCS: git:git://git.gnome.org/libsoup
|
||||||
Source: http://download.gnome.org/sources/libsoup/2.34/libsoup-%{version}.tar.bz2
|
Source: http://download.gnome.org/sources/libsoup/2.35/libsoup-%{version}.tar.xz
|
||||||
Requires: glib-networking >= %{glib2_version}
|
Requires: glib-networking >= %{glib2_version}
|
||||||
|
|
||||||
### Build Dependencies ###
|
### Build Dependencies ###
|
||||||
@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/gtk-doc/html/%{name}-2.4
|
%{_datadir}/gtk-doc/html/%{name}-2.4
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jul 05 2011 Bastien Nocera <bnocera@redhat.com> 2.35.3-1
|
||||||
|
- Update to 2.35.3
|
||||||
|
|
||||||
* Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> - 2.34.1-1
|
* Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> - 2.34.1-1
|
||||||
- Update to 2.34.1
|
- Update to 2.34.1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user