Mailinglist Archive: opensuse-commit (910 mails)

< Previous Next >
commit libsoup for openSUSE:Factory
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Thu, 26 Mar 2009 23:38:17 +0100
  • Message-id: <20090326223817.DD3D367803F@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package libsoup for openSUSE:Factory
checked in at Thu Mar 26 23:38:17 CET 2009.


--------
--- GNOME/libsoup/libsoup.changes 2009-02-17 04:49:54.000000000 +0100
+++ libsoup/libsoup.changes 2009-03-16 23:17:23.000000000 +0100
@@ -1,0 +2,28 @@
+Mon Mar 16 22:57:58 CET 2009 - vuntz@xxxxxxxxxx
+
+- Update to version 2.26.0:
+ + Temporarily disable libproxy support to work around a bug in
+ its gnome plugin that causes gvfsd-http (and probably
+ eventually other apps) to crash. (bgo#571527)
+ + Fixed a bug that showed up in WebKit, where if many messages
+ were queued all at once to a server that doesn't support
+ persistent connections, some of the requests will get lost.
+ (bgo#574365)
+ + Fixed SoupServer to support using SOUP_ENCODING_EOF, so you can
+ stream responses of unknown length to HTTP/1.0 clients.
+ (bgo#572153)
+ + Fixed several bugs that prevented SoupCookieJarSqlite from
+ working. (bgo#572409)
+ + Added G_{BEGIN,END}_DECLS guards to public headers that were
+ missing it.
+ + Misc gtk-doc improvements.
+- Remove AutoReqProv: it's default now.
+- Remove -fno-strict-aliasing from CFLAGS.
+- Do not create an empty libsoup package. Have libsoup2_4-1
+ provide/obsolete it.
+- Merge the doc with the devel package since it only contained
+ gtk-doc.
+- Add gconf2-devel BuildRequires since it's needed again (see first
+ item in upstream changes).
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
libsoup-2.25.91.tar.bz2

New:
----
libsoup-2.26.0.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libsoup.spec ++++++
--- /var/tmp/diff_new_pack.L17405/_old 2009-03-26 23:37:05.000000000 +0100
+++ /var/tmp/diff_new_pack.L17405/_new 2009-03-26 23:37:05.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package libsoup (Version 2.25.91)
+# spec file for package libsoup (Version 2.26.0)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -19,6 +19,7 @@


Name: libsoup
+BuildRequires: gconf2-devel
BuildRequires: glib2-devel
BuildRequires: gnutls-devel
BuildRequires: gtk-doc
@@ -29,14 +30,13 @@
#BuildRequires: apache2-mod_php5 php5-xmlrpc
License: LGPL v2.1 or later
Group: Development/Libraries/GNOME
-AutoReqProv: on
# bug437293
%ifarch ppc64
Obsoletes: libsoup-64bit
%endif
#
Summary: Simple Object Access Protocol (SOAP)
-Version: 2.25.91
+Version: 2.26.0
Release: 1
Source:
ftp://ftp.gnome.org/pub/GNOME/stable/sources/libsoup/2.2/%{name}-%{version}.tar.bz2
Url: http://www.gnome.org
@@ -72,7 +72,8 @@
License: LGPL v2.1 or later
Summary: Simple Object Access Protocol (SOAP)
Group: Development/Libraries/GNOME
-Requires: %{name} >= %{version}
+Provides: %{name} = %{version}
+Obsoletes: %{name} < %{version}
# bug437293
%ifarch ppc64
Obsoletes: libsoup-64bit
@@ -109,6 +110,8 @@
Summary: Include Files and Libraries mandatory for Development.
Group: Development/Libraries/GNOME
Requires: %{name} = %{version} glib2-devel libgnutls-devel
libgcrypt-devel libgpg-error-devel libxml2-devel
+Provides: %{name}-doc = %{version}
+Obsoletes: %{name}-doc < %{version}
# bug437293
%ifarch ppc64
Obsoletes: libsoup-devel-64bit
@@ -129,42 +132,10 @@
Dick Porter <dick@xxxxxxxxxx>
Miguel De Icaza <miguel@xxxxxxxxxx>

-%package doc
-License: LGPL v2.1 or later
-Summary: Additional Package Documentation.
-Group: Development/Libraries/GNOME
-Requires: %{name} = %{version}
-
-%description doc
-Soup is a SOAP (Simple Object Access Protocol) implementation in C.
-
-It provides a queued asynchronous callback-based mechanism for sending
-and servicing SOAP requests and a WSDL (Web Service Definition
-Language) to C compiler that generates client stubs and server
-skeletons for easily calling and implementing SOAP methods.
-
-It uses the Glib main loop and is designed to work well with GTK+
-applications. This enables GNOME applications to access SOAP servers
-on the network in a completely asynchronous fashion, very similar to
-the GTK+ programming model (a synchronous operation mode is also
-supported for those who want it).
-
-The WSDL compiler helps you make your applications interoperate with
-services that expose their descriptions through WSDL.
-
-
-
-Authors:
---------
- Alex Graveley <alex@xxxxxxxxxx>
- Dick Porter <dick@xxxxxxxxxx>
- Miguel De Icaza <miguel@xxxxxxxxxx>
-
%prep
%setup -q

%build
-export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
%configure\
--disable-static
make %{?jobs:-j%jobs}
@@ -180,12 +151,9 @@

%postun 2_4-1 -p /sbin/ldconfig

-%files
-%defattr(-,root,root)
-%doc README COPYING ChangeLog NEWS AUTHORS
-
%files 2_4-1
%defattr(-, root, root)
+%doc README COPYING ChangeLog NEWS AUTHORS
%{_libdir}/*.so.*

%files devel
@@ -194,12 +162,34 @@
%{_libdir}/*.so
%{_libdir}/pkgconfig/*.pc
%{_includedir}/libsoup-gnome-2.4
-
-%files doc
-%defattr(-,root,root)
%{_datadir}/gtk-doc/html/libsoup-2.4

%changelog
+* Mon Mar 16 2009 vuntz@xxxxxxxxxx
+- Update to version 2.26.0:
+ + Temporarily disable libproxy support to work around a bug in
+ its gnome plugin that causes gvfsd-http (and probably
+ eventually other apps) to crash. (bgo#571527)
+ + Fixed a bug that showed up in WebKit, where if many messages
+ were queued all at once to a server that doesn't support
+ persistent connections, some of the requests will get lost.
+ (bgo#574365)
+ + Fixed SoupServer to support using SOUP_ENCODING_EOF, so you can
+ stream responses of unknown length to HTTP/1.0 clients.
+ (bgo#572153)
+ + Fixed several bugs that prevented SoupCookieJarSqlite from
+ working. (bgo#572409)
+ + Added G_{BEGIN,END}_DECLS guards to public headers that were
+ missing it.
+ + Misc gtk-doc improvements.
+- Remove AutoReqProv: it's default now.
+- Remove -fno-strict-aliasing from CFLAGS.
+- Do not create an empty libsoup package. Have libsoup2_4-1
+ provide/obsolete it.
+- Merge the doc with the devel package since it only contained
+ gtk-doc.
+- Add gconf2-devel BuildRequires since it's needed again (see first
+ item in upstream changes).
* Tue Feb 17 2009 mboman@xxxxxxx
- Update to version 2.25.91:
+ Fixed a crash in SoupProxyResolverGNOME when the proxy

++++++ libsoup-2.25.91.tar.bz2 -> libsoup-2.26.0.tar.bz2 ++++++
++++ 16585 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 >
This Thread
  • No further messages