Mailinglist Archive: opensuse-commit (1117 mails)
| < Previous | Next > |
commit libsoup for openSUSE:Factory
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Fri, 06 Feb 2009 18:03:17 +0100
- Message-id: <20090206170317.7B2AC67816B@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package libsoup for openSUSE:Factory
checked in at Fri Feb 6 18:03:17 CET 2009.
--------
--- GNOME/libsoup/libsoup.changes 2009-01-07 10:40:07.000000000 +0100
+++ libsoup/libsoup.changes 2009-01-29 14:37:07.000000000 +0100
@@ -6,0 +7,49 @@
+Tue Jan 6 09:49:05 EST 2009 - mboman@xxxxxxx
+
+- Update to version 2.25.4:
+ + Added soup_session_get_feature() and
+ soup_session_get_features(), to query the features currently
+ available in a session
+
+-------------------------------------------------------------------
+Tue Dec 23 07:41:43 EST 2008 - mboman@xxxxxxx
+
+- Update to version 2.25.3:
+ + Fixed a crash when using both cookies and a proxy. [bgo#562191]
+ + Fixed soup_form_decode() to correctly handle forms with
+ URI-encoded parameter names [bgo#563302]
+ + Fixed a crash in SoupProxyResolverGConf. [bgo#563145]
+ + Fixed client behavior when presented with multiple auth
+ types to choose the *strongest* auth type (eg, Digest)
+ rather than the *weakest* one [bgo#562339]
+ Added a regression test for this.
+ + Moved libsoup-gnome headers to a different directory to make
+ it easier to split libsoup and libsoup-gnome into separate
+ packages, and to ensure that things that only want to be
+ looking at plain libsoup headers (like gir-repository) don't
+ accidentally see the libsoup-gnome ones.
+ + Some minor doc fixes
+ + Fixed libsoup-gnome linking with --as-needed. [bgo#559342]
+ + New library libsoup-gnome
+ + SoupCookieJarText, like SoupCookieJarSqlite, but using the
+ old-style cookies.txt format, and in the base libsoup rather
+ than libsoup-gnome.
+ + Various bugfixes to SoupCookie and SoupCookieJar to fix the
+ problems with cookies not working on certain sites.
+ + The new SoupMultipart type provides support for multipart
+ MIME bodies, and soup-form now includes several methods for
+ generating and parsing multipart form data and file uploads.
+ + SoupMessageHeaders now has methods for easy handling of the
+ Content-Type, Content-Disposition, Range, and Content-Range
+ headers. The Content-Disposition handling recognizes
+ RFC2231-encoded UTF-8 filenames.
+ + SoupServer now automatically handles partial GET requests;
+ if your server returns SOUP_STATUS_OK in response to a
+ partial GET, libsoup will automatically convert it to a
+ SOUP_STATUS_PARTIAL_CONTENT response with only the requested
+ portions.
+- Drop libsoup-334021-client-ssl-certs.patch: it required a gnutls
+ patch (gnutls-1.4.4-sign-callback.patch) that was dropped in
+ August 2007.
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
Old:
----
libsoup-2.24.1.tar.bz2
libsoup-334021-client-ssl-certs.patch
New:
----
libsoup-2.25.4.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libsoup.spec ++++++
--- /var/tmp/diff_new_pack.p30196/_old 2009-02-06 18:01:42.000000000 +0100
+++ /var/tmp/diff_new_pack.p30196/_new 2009-02-06 18:01:42.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package libsoup (Version 2.24.1)
+# spec file for package libsoup (Version 2.25.4)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -20,9 +20,11 @@
Name: libsoup
BuildRequires: glib2-devel
+BuildRequires: gconf2-devel
BuildRequires: gnutls-devel
BuildRequires: gtk-doc
BuildRequires: libxml2-devel
+BuildRequires: sqlite3-devel
# We do not need these dependencies needed only for tests.
#BuildRequires: apache2-mod_php5 php5-xmlrpc
License: LGPL v2.1 or later
@@ -34,11 +36,9 @@
%endif
#
Summary: Simple Object Access Protocol (SOAP)
-Version: 2.24.1
-Release: 2
+Version: 2.25.4
+Release: 1
Source:
ftp://ftp.gnome.org/pub/GNOME/stable/sources/libsoup/2.2/%{name}-%{version}.tar.bz2
-# PATCH-FEATURE-UPSTREAM libsoup-334021-client-ssl-certs.patch bgo334021 --
client SSL certificate support
-Patch0: libsoup-334021-client-ssl-certs.patch
Url: http://www.gnome.org
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: %{name}-2_4-1 = %{version}
@@ -162,7 +162,6 @@
%prep
%setup -q
-%patch0 -p0
%build
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
@@ -193,8 +192,8 @@
%defattr(-,root,root)
%{_includedir}/libsoup-2.4
%{_libdir}/*.so
-#%{_libdir}/*.*a
%{_libdir}/pkgconfig/*.pc
+%{_includedir}/libsoup-gnome-2.4
%files doc
%defattr(-,root,root)
@@ -203,6 +202,49 @@
%changelog
* Wed Jan 07 2009 olh@xxxxxxx
- obsolete old -XXbit packages (bnc#437293)
+* Tue Jan 06 2009 mboman@xxxxxxx
+- Update to version 2.25.4:
+ + Added soup_session_get_feature() and
+ soup_session_get_features(), to query the features currently
+ available in a session
+* Tue Dec 23 2008 mboman@xxxxxxx
+- Update to version 2.25.3:
+ + Fixed a crash when using both cookies and a proxy. [bgo#562191]
+ + Fixed soup_form_decode() to correctly handle forms with
+ URI-encoded parameter names [bgo#563302]
+ + Fixed a crash in SoupProxyResolverGConf. [bgo#563145]
+ + Fixed client behavior when presented with multiple auth
+ types to choose the *strongest* auth type (eg, Digest)
+ rather than the *weakest* one [bgo#562339]
+ Added a regression test for this.
+ + Moved libsoup-gnome headers to a different directory to make
+ it easier to split libsoup and libsoup-gnome into separate
+ packages, and to ensure that things that only want to be
+ looking at plain libsoup headers (like gir-repository) don't
+ accidentally see the libsoup-gnome ones.
+ + Some minor doc fixes
+ + Fixed libsoup-gnome linking with --as-needed. [bgo#559342]
+ + New library libsoup-gnome
+ + SoupCookieJarText, like SoupCookieJarSqlite, but using the
+ old-style cookies.txt format, and in the base libsoup rather
+ than libsoup-gnome.
+ + Various bugfixes to SoupCookie and SoupCookieJar to fix the
+ problems with cookies not working on certain sites.
+ + The new SoupMultipart type provides support for multipart
+ MIME bodies, and soup-form now includes several methods for
+ generating and parsing multipart form data and file uploads.
+ + SoupMessageHeaders now has methods for easy handling of the
+ Content-Type, Content-Disposition, Range, and Content-Range
+ headers. The Content-Disposition handling recognizes
+ RFC2231-encoded UTF-8 filenames.
+ + SoupServer now automatically handles partial GET requests;
+ if your server returns SOUP_STATUS_OK in response to a
+ partial GET, libsoup will automatically convert it to a
+ SOUP_STATUS_PARTIAL_CONTENT response with only the requested
+ portions.
+- Drop libsoup-334021-client-ssl-certs.patch: it required a gnutls
+ patch (gnutls-1.4.4-sign-callback.patch) that was dropped in
+ August 2007.
* Wed Oct 22 2008 mboman@xxxxxxx
- Update to version 2.24.1:
+ Bugs fixed: bgo#533473, bgo##536285, bgo#498509, bgo#553976, bgo#557072
++++++ libsoup-2.24.1.tar.bz2 -> libsoup-2.25.4.tar.bz2 ++++++
++++ 44761 lines of diff (skipped)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |