forked from pool/libsoup
This commit is contained in:
parent
eb23496cb0
commit
b2ddd5d6e2
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e03e51fa6c0833e2b49dd267cbbe672a363e3a4cce9c159a97078d7d2c1630fa
|
||||
size 715351
|
3
libsoup-2.26.0.tar.bz2
Normal file
3
libsoup-2.26.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:47b749b20717df24393c83adcce9a3a10f0690517c18da8d0a1ddcb410a0ac1d
|
||||
size 736527
|
@ -1,3 +1,31 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 16 22:57:58 CET 2009 - vuntz@novell.com
|
||||
|
||||
- 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 04:42:44 CET 2009 - mboman@suse.de
|
||||
|
||||
|
76
libsoup.spec
76
libsoup.spec
@ -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: sqlite3-devel
|
||||
#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 @@ Authors:
|
||||
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 @@ License: LGPL v2.1 or later
|
||||
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
|
||||
@ -123,37 +126,6 @@ the Soup library.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Alex Graveley <alex@ximian.com>
|
||||
Dick Porter <dick@ximian.com>
|
||||
Miguel De Icaza <miguel@ximian.com>
|
||||
|
||||
%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@ximian.com>
|
||||
@ -164,7 +136,6 @@ Authors:
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
||||
%configure\
|
||||
--disable-static
|
||||
make %{?jobs:-j%jobs}
|
||||
@ -180,12 +151,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%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 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_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@novell.com
|
||||
- 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@suse.de
|
||||
- Update to version 2.25.91:
|
||||
+ Fixed a crash in SoupProxyResolverGNOME when the proxy
|
||||
|
Loading…
x
Reference in New Issue
Block a user