OBS User unknown 2008-01-30 17:32:50 +00:00 committed by Git OBS Bridge
parent 14c56c1e5c
commit 10eb86a397
4 changed files with 114 additions and 57 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fa9f33e96a11133adbfd10538d95ed9704e582ef334c0a119a2a0bfca302877d
size 508856

3
libsoup-2.3.0.1.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:044d56fccc887ea92ac2f12bfc3d9986f427b4cf78a5e87d78ba42a665a849f9
size 601619

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Tue Jan 29 16:36:57 CET 2008 - rodrigo@suse.de
- Update to version 2.3.0.1:
* SoupURI now correctly handles URIs with complex encoded queries
* It is now possible for a SoupServer to use Digest auth without
needing to have the cleartext password available
* Digest authentication now properly handles "stale=true" and
"nextnonce=..."
* SoupServer is now subclassible
* soup_server_run_async and soup_server_quit no longer ref and
unref the server, as that doesn't match ordinary GObject
conventions
* The test programs no longer use a symbol name that conflicts
with Cygwin
* libsoup can now handle the not-quite-HTTP responses returned
by Shoutcast servers
* If you use libsoup while disconnected from the network, it
no longer caches the failed DNS results
* "Expect: 100-continue" processing now works correctly on
both client and server
* SoupSessions are no longer leaked
* The XML-RPC API is improved. The SOAP API is gone...
* Added utility functions for HTML form handling
* Improved message header handling
* SoupServer now automatically adds a "Date" header
- Disabled not working patches
- Fixed summaries
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Aug 6 19:55:21 CEST 2007 - jberkman@novell.com Mon Aug 6 19:55:21 CEST 2007 - jberkman@novell.com

View File

@ -1,7 +1,7 @@
# #
# spec file for package libsoup (Version 2.2.100) # spec file for package libsoup (Version 2.3.0.1)
# #
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine # This file and all modifications and additions to the pristine
# package are under the same license as the package itself. # package are under the same license as the package itself.
# #
@ -14,16 +14,18 @@ Name: libsoup
BuildRequires: glib2-devel gnutls-devel gtk-doc libxml2-devel BuildRequires: glib2-devel gnutls-devel gtk-doc libxml2-devel
# We do not need these dependencies needed only for tests. # We do not need these dependencies needed only for tests.
#BuildRequires: apache2-mod_php5 php5-xmlrpc #BuildRequires: apache2-mod_php5 php5-xmlrpc
License: LGPL v2 or later License: LGPL v2.1 or later
Group: Development/Libraries/GNOME Group: Development/Libraries/GNOME
Autoreqprov: on AutoReqProv: on
Summary: Simple Object Access Protocol (SOAP) Summary: Simple Object Access Protocol (SOAP)
Version: 2.2.100 Version: 2.3.0.1
Release: 32 Release: 1
Source: ftp://ftp.gnome.org/pub/GNOME/stable/sources/libsoup/2.2/%{name}-%{version}.tar.bz2 Source: ftp://ftp.gnome.org/pub/GNOME/stable/sources/libsoup/2.2/%{name}-%{version}.tar.bz2
# PATCH-NEEDS-REBASE libsoup-2.2.100-r924.patch
Patch1: libsoup-2.2.100-r924.patch Patch1: libsoup-2.2.100-r924.patch
# PATCH-NEEDS-REBASE libsoup-334021.patch
Patch2: libsoup-334021.patch Patch2: libsoup-334021.patch
URL: http://www.gnome.org Url: http://www.gnome.org
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description %description
@ -54,7 +56,7 @@ Authors:
%package devel %package devel
Summary: Include Files and Libraries mandatory for Development. Summary: Include Files and Libraries mandatory for Development.
Group: Development/Libraries/GNOME Group: Development/Libraries/GNOME
Requires: %{name} = %{version} glib2-devel gnutls-devel libxml2-devel Requires: %{name} = %{version} glib2-devel libgnutls-devel libgcrypt-devel libgpg-error-devel libxml2-devel
%description devel %description devel
Soup is a SOAP (Simple Object Access Protocol) implementation in C. It Soup is a SOAP (Simple Object Access Protocol) implementation in C. It
@ -102,8 +104,8 @@ Authors:
%prep %prep
%setup -q %setup -q
%patch1 -p1 #%patch1 -p1
%patch2 -p0 #%patch2 -p0
%build %build
%configure\ %configure\
@ -129,7 +131,7 @@ rm -rf $RPM_BUILD_ROOT
%files devel %files devel
%defattr(-,root,root) %defattr(-,root,root)
%{_includedir}/libsoup-2.2 %{_includedir}/libsoup-2.4
%{_libdir}/*.*a %{_libdir}/*.*a
%{_libdir}/*.so %{_libdir}/*.so
%{_libdir}/pkgconfig/*.pc %{_libdir}/pkgconfig/*.pc
@ -139,31 +141,57 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/gtk-doc/html/libsoup %{_datadir}/gtk-doc/html/libsoup
%changelog %changelog
* Mon Aug 06 2007 - jberkman@novell.com * Tue Jan 29 2008 rodrigo@suse.de
- Update to version 2.3.0.1:
* SoupURI now correctly handles URIs with complex encoded queries
* It is now possible for a SoupServer to use Digest auth without
needing to have the cleartext password available
* Digest authentication now properly handles "stale=true" and
"nextnonce=..."
* SoupServer is now subclassible
* soup_server_run_async and soup_server_quit no longer ref and
unref the server, as that doesn't match ordinary GObject
conventions
* The test programs no longer use a symbol name that conflicts
with Cygwin
* libsoup can now handle the not-quite-HTTP responses returned
by Shoutcast servers
* If you use libsoup while disconnected from the network, it
no longer caches the failed DNS results
* "Expect: 100-continue" processing now works correctly on
both client and server
* SoupSessions are no longer leaked
* The XML-RPC API is improved. The SOAP API is gone...
* Added utility functions for HTML form handling
* Improved message header handling
* SoupServer now automatically adds a "Date" header
- Disabled not working patches
- Fixed summaries
* Mon Aug 06 2007 jberkman@novell.com
- export new smartcard functionality from gnutls for evo-exchange (gnome bug - export new smartcard functionality from gnutls for evo-exchange (gnome bug
[#334021]) [#334021])
* Mon Feb 19 2007 - maw@suse.de * Mon Feb 19 2007 maw@suse.de
- Update to version 2.2.100 - Update to version 2.2.100
- Remove header-parsing.patch which is now upstream. - Remove header-parsing.patch which is now upstream.
* Tue Feb 13 2007 - sbrabec@suse.cz * Tue Feb 13 2007 sbrabec@suse.cz
- Do not build unusable static libraries (#238552#c17). - Do not build unusable static libraries (#238552#c17).
* Tue Jan 16 2007 - maw@suse.de * Wed Jan 17 2007 maw@suse.de
- Add header-parsing.patch (#235084 and CVE-2006-5876). - Add header-parsing.patch (#235084 and CVE-2006-5876).
* Mon Jan 08 2007 - sbrabec@suse.cz * Mon Jan 08 2007 sbrabec@suse.cz
- Spec file cleanup. - Spec file cleanup.
* Fri Dec 08 2006 - maw@suse.de * Fri Dec 08 2006 maw@suse.de
- Move to /usr. - Move to /usr.
* Tue Nov 07 2006 - cstender@suse.de * Tue Nov 07 2006 cstender@suse.de
- removed 'rm -rf $RPM_BUILD_ROOT' from build section - removed 'rm -rf $RPM_BUILD_ROOT' from build section
- added ldconfig call - added ldconfig call
* Tue Aug 15 2006 - jhargadon@suse.de * Wed Aug 16 2006 jhargadon@suse.de
- update to version 2.2.96 - update to version 2.2.96
- SoupServer now works even if you don't explicitly set an - SoupServer now works even if you don't explicitly set an
encoding for the response. encoding for the response.
- WWW-Authenticate and Proxy-Authenticate responses with no - WWW-Authenticate and Proxy-Authenticate responses with no
realm parameter are now ignored realm parameter are now ignored
- Fixed a bug in soup_mktime_utc() - Fixed a bug in soup_mktime_utc()
* Wed Jul 05 2006 - dgollub@suse.de * Wed Jul 05 2006 dgollub@suse.de
- update to 2.2.94: - update to 2.2.94:
* Various fixes to the XML-RPC code (which apparently had not * Various fixes to the XML-RPC code (which apparently had not
actually ever worked before) from Brent Smith. [343973, actually ever worked before) from Brent Smith. [343973,
@ -202,75 +230,75 @@ rm -rf $RPM_BUILD_ROOT
[Based on patches from Armin Bauer and Jörg Billeter.] [Based on patches from Armin Bauer and Jörg Billeter.]
* Fixed some bugs in soup_date_iso8601_parse(). [324671, from * Fixed some bugs in soup_date_iso8601_parse(). [324671, from
Emmanuele Bassi] Emmanuele Bassi]
* Mon Feb 27 2006 - danw@suse.de * Mon Feb 27 2006 danw@suse.de
- Add a patch from CVS for use by evolution - Add a patch from CVS for use by evolution
(make connection timeout configurable) (make connection timeout configurable)
* Tue Feb 21 2006 - sbrabec@suse.cz * Tue Feb 21 2006 sbrabec@suse.cz
- Do not require exact release in devel file. - Do not require exact release in devel file.
* Wed Jan 25 2006 - mls@suse.de * Wed Jan 25 2006 mls@suse.de
- converted neededforbuild to BuildRequires - converted neededforbuild to BuildRequires
* Thu Nov 17 2005 - danw@suse.de * Thu Nov 17 2005 danw@suse.de
- update to 2.2.90, which includes the opensync patches - update to 2.2.90, which includes the opensync patches
* Wed Nov 02 2005 - dmueller@suse.de * Wed Nov 02 2005 dmueller@suse.de
- don't build as root - don't build as root
* Mon Aug 22 2005 - jpr@suse.de * Mon Aug 22 2005 jpr@suse.de
- Update to released 2.2.6.1 which includes the cvs patches we were already - Update to released 2.2.6.1 which includes the cvs patches we were already
folding in plus the second part of the fix for 104319 folding in plus the second part of the fix for 104319
* Thu Aug 18 2005 - ro@suse.de * Thu Aug 18 2005 ro@suse.de
- update to cvs version folding in other patches - update to cvs version folding in other patches
* Thu Aug 18 2005 - ro@suse.de * Thu Aug 18 2005 ro@suse.de
- added libsoup-2.2.3-danw-tambet-threading.patch - added libsoup-2.2.3-danw-tambet-threading.patch
* Mon Aug 15 2005 - ro@suse.de * Mon Aug 15 2005 ro@suse.de
- fixed memory leak (port of patch from #95454) - fixed memory leak (port of patch from #95454)
* Fri Aug 12 2005 - ro@suse.de * Fri Aug 12 2005 ro@suse.de
- updated and re-enabled patches... - updated and re-enabled patches...
* Fri Aug 12 2005 - jpr@suse.de * Fri Aug 12 2005 jpr@suse.de
- Add lzo and lzo-devel to neededforbuild to get ssl support back (104319) - Add lzo and lzo-devel to neededforbuild to get ssl support back (104319)
* Fri Aug 12 2005 - gekker@suse.de * Fri Aug 12 2005 gekker@suse.de
- Update to version 2.2.5 - Update to version 2.2.5
* Wed Jun 29 2005 - gekker@suse.de * Wed Jun 29 2005 gekker@suse.de
- Update to version 2.2.3 - Update to version 2.2.3
* Tue Jun 28 2005 - gekker@suse.de * Wed Jun 29 2005 gekker@suse.de
- Add patch for close exec (62176). - Add patch for close exec (62176).
* Thu Mar 10 2005 - hvogel@suse.de * Thu Mar 10 2005 hvogel@suse.de
- More gnutls patching. Fixed CPU sucking bug #57811 (ximian) - More gnutls patching. Fixed CPU sucking bug #57811 (ximian)
* Sat Feb 05 2005 - gekker@suse.de * Sat Feb 05 2005 gekker@suse.de
- Update to version 2.2.2 - Update to version 2.2.2
* Fri Jan 28 2005 - meissner@suse.de * Fri Jan 28 2005 meissner@suse.de
- Added sentinels to spot bad valist handling, no-strict-aliasing - Added sentinels to spot bad valist handling, no-strict-aliasing
is not needed here. is not needed here.
* Sat Jan 22 2005 - ro@suse.de * Sat Jan 22 2005 ro@suse.de
- GNUTLS_CERT_NOT_TRUSTED is no longer present in current gnutls - GNUTLS_CERT_NOT_TRUSTED is no longer present in current gnutls
* Mon Nov 29 2004 - gekker@suse.de * Mon Nov 29 2004 gekker@suse.de
- Update to version 2.2.1 - Update to version 2.2.1
* Wed Oct 20 2004 - dobey@suse.de * Thu Oct 21 2004 dobey@suse.de
- Add patch for bugzilla.ximian.com bug #68583 - Add patch for bugzilla.ximian.com bug #68583
* Fri Aug 27 2004 - dobey@suse.de * Fri Aug 27 2004 dobey@suse.de
- Update to version 2.2.0 - Update to version 2.2.0
* Fri Aug 13 2004 - dobey@suse.de * Fri Aug 13 2004 dobey@suse.de
- Update to version 2.1.13 - Update to version 2.1.13
- Require glib2-devel for the libsoup-devel package - Require glib2-devel for the libsoup-devel package
* Thu Aug 05 2004 - dobey@suse.de * Thu Aug 05 2004 dobey@suse.de
- Add proper dependencies to the devel package - Add proper dependencies to the devel package
* Thu Aug 05 2004 - dobey@suse.de * Thu Aug 05 2004 dobey@suse.de
- Fix support for SSL - Fix support for SSL
* Wed Jul 28 2004 - dobey@suse.de * Wed Jul 28 2004 dobey@suse.de
- Updated to version 2.1.12 - Updated to version 2.1.12
* Fri Jun 04 2004 - mibarra@suse.de * Fri Jun 04 2004 mibarra@suse.de
- Updated to version 2.1.11 - Updated to version 2.1.11
* Sat May 22 2004 - mibarra@suse.de * Sat May 22 2004 mibarra@suse.de
- Updated to version 2.1.10. - Updated to version 2.1.10.
* Tue May 18 2004 - clahey@suse.de * Tue May 18 2004 clahey@suse.de
- Updated to version 2.1.9. - Updated to version 2.1.9.
* Mon Mar 22 2004 - hhetter@suse.de * Mon Mar 22 2004 hhetter@suse.de
- updated to version 1.99.28 - updated to version 1.99.28
* Tue Mar 16 2004 - meissner@suse.de * Tue Mar 16 2004 meissner@suse.de
- -fno-strict-aliasing. - -fno-strict-aliasing.
* Fri Aug 08 2003 - sbrabec@suse.cz * Fri Aug 08 2003 sbrabec@suse.cz
- Updated to version 1.99.23. - Updated to version 1.99.23.
* Tue Aug 05 2003 - sbrabec@suse.cz * Tue Aug 05 2003 sbrabec@suse.cz
- Package renamed to libsoup. - Package renamed to libsoup.
* Mon Jul 14 2003 - sbrabec@suse.cz * Mon Jul 14 2003 sbrabec@suse.cz
- GNOME prefix change to /opt/gnome. - GNOME prefix change to /opt/gnome.
* Thu May 22 2003 - sbrabec@suse.cz * Thu May 22 2003 sbrabec@suse.cz
- Initial SuSE version of GNOME2 port. - Initial SuSE version of GNOME2 port.