34f3c4
%define glib2_version 2.38.0
34f3c4
34f3c4
Name: libsoup
34f3c4
Version: 2.62.2
34f3c4
Release: 2%{?dist}
34f3c4
Summary: Soup, an HTTP library implementation
34f3c4
34f3c4
License: LGPLv2
34f3c4
URL: https://wiki.gnome.org/Projects/libsoup
34f3c4
Source0: https://download.gnome.org/sources/%{name}/2.62/%{name}-%{version}.tar.xz
34f3c4
34f3c4
Patch01: coverity-scan-issues.patch
34f3c4
# Downstream patch to support Python 2
34f3c4
Patch02: libsoup-python2.patch
34f3c4
Patch03: 0001-cookie-jar-bail-if-hostname-is-an-empty-string.patch
34f3c4
34f3c4
BuildRequires: chrpath
34f3c4
BuildRequires: glib2-devel >= %{glib2_version}
34f3c4
BuildRequires: glib-networking
34f3c4
BuildRequires: intltool
34f3c4
BuildRequires: krb5-devel >= 1.11
34f3c4
BuildRequires: pkgconfig(gobject-introspection-1.0)
34f3c4
BuildRequires: pkgconfig(libxml-2.0)
34f3c4
BuildRequires: pkgconfig(sqlite3)
34f3c4
BuildRequires: vala
34f3c4
34f3c4
Requires: glib2%{?_isa} >= %{glib2_version}
34f3c4
Requires: glib-networking%{?_isa} >= %{glib2_version}
34f3c4
34f3c4
%description
34f3c4
Libsoup is an HTTP library implementation in C. It was originally part
34f3c4
of a SOAP (Simple Object Access Protocol) implementation called Soup, but
34f3c4
the SOAP and non-SOAP parts have now been split into separate packages.
34f3c4
34f3c4
libsoup uses the Glib main loop and is designed to work well with GTK
34f3c4
applications. This enables GNOME applications to access HTTP servers
34f3c4
on the network in a completely asynchronous fashion, very similar to
34f3c4
the Gtk+ programming model (a synchronous operation mode is also
34f3c4
supported for those who want it).
34f3c4
34f3c4
%package devel
34f3c4
Summary: Header files for the Soup library
34f3c4
Requires: %{name}%{?_isa} = %{version}-%{release}
34f3c4
34f3c4
%description devel
34f3c4
Libsoup is an HTTP library implementation in C. This package allows
34f3c4
you to develop applications that use the libsoup library.
34f3c4
34f3c4
%prep
34f3c4
%setup -q
34f3c4
%patch01 -p1 -b .coverity-scan-issues
34f3c4
%patch02 -p1 -b .python2
34f3c4
%patch03 -p1 -b .cve-2018-12910
34f3c4
34f3c4
%build
34f3c4
%configure --disable-static
34f3c4
34f3c4
# Omit unused direct shared library dependencies.
34f3c4
sed --in-place --expression 's! -shared ! -Wl,--as-needed\0!g' libtool
34f3c4
34f3c4
make %{?_smp_mflags}
34f3c4
34f3c4
%install
34f3c4
%make_install
34f3c4
34f3c4
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
34f3c4
34f3c4
# Remove lib64 rpaths
34f3c4
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/*.so
34f3c4
34f3c4
%find_lang libsoup
34f3c4
34f3c4
%post -p /sbin/ldconfig
34f3c4
34f3c4
%postun -p /sbin/ldconfig
34f3c4
34f3c4
%files -f libsoup.lang
34f3c4
%license COPYING
34f3c4
%doc README NEWS AUTHORS
34f3c4
%{_libdir}/lib*.so.*
34f3c4
%{_libdir}/girepository-1.0/Soup*2.4.typelib
34f3c4
34f3c4
%files devel
34f3c4
%{_includedir}/%{name}-2.4
34f3c4
%{_includedir}/%{name}-gnome-2.4
34f3c4
%{_libdir}/*.so
34f3c4
%{_libdir}/pkgconfig/*.pc
34f3c4
%{_datadir}/gir-1.0/Soup*2.4.gir
34f3c4
%{_datadir}/gtk-doc/html/%{name}-2.4
34f3c4
%dir %{_datadir}/vala
34f3c4
%dir %{_datadir}/vala/vapi
34f3c4
%{_datadir}/vala/vapi/libsoup-2.4.deps
34f3c4
%{_datadir}/vala/vapi/libsoup-2.4.vapi
34f3c4
34f3c4
%changelog
34f3c4
* Mon Jul 09 2018 Milan Crha <mcrha@redhat.com> - 2.62.2-2
34f3c4
- Backport upstream patch for CVE-2018-12910 - Crash in soup_cookie_jar.c: get_cookies() on empty hostnames
34f3c4
- Resolves: #1598838
34f3c4
34f3c4
* Tue May 08 2018 Kalev Lember <klember@redhat.com> - 2.62.2-1
34f3c4
- Update to 2.62.2
34f3c4
- Resolves: #1569734
34f3c4
34f3c4
* Mon Apr 09 2018 Kalev Lember <klember@redhat.com> - 2.62.1-1
34f3c4
- Update to 2.62.1
34f3c4
- Resolves: #1569734
34f3c4
34f3c4
* Wed Nov 15 2017 Milan Crha <mcrha@redhat.com> - 2.56.0-6
34f3c4
- Fix for crash under soup_socket_new() (rh #1513355)
34f3c4
34f3c4
* Fri Sep 29 2017 Tomas Popela <tpopela@redhat.com> - 2.56.0-5
34f3c4
- libsoup should fallback to another authentication type if the current failed (rh #1495552)
34f3c4
34f3c4
* Wed Aug 09 2017 Tomas Popela <tpopela@redhat.com> - 2.56.0-4
34f3c4
- Fix chunked decoding buffer overrun (CVE-2017-2885) (rh #1479321)
34f3c4
34f3c4
* Thu Jun 22 2017 Tomas Popela <tpopela@redhat.com> - 2.56.0-3
34f3c4
- libsoup stuck on infinite loop for kerberized pages (rh #1439798)
34f3c4
34f3c4
* Wed Apr 26 2017 Milan Crha <mcrha@redhat.com> - 2.56.0-2
34f3c4
- Add patch to address some of Coverity Scan and clang reported issues
34f3c4
34f3c4
* Mon Sep 19 2016 Kalev Lember <klember@redhat.com> - 2.56.0-1
34f3c4
- Update to 2.56.0
34f3c4
- Resolves: #1387019
34f3c4
34f3c4
* Tue Apr 19 2016 Milan Crha <mcrha@redhat.com> - 2.48.1-6
34f3c4
- NTLM auth failure with latest samba (rh #1328453)
34f3c4
34f3c4
* Wed Apr 13 2016 Milan Crha <mcrha@redhat.com> - 2.48.1-5
34f3c4
- soup_headers_parse: deal with NUL bytes in headers (rh #1302366)
34f3c4
34f3c4
* Wed Apr 13 2016 Milan Crha <mcrha@redhat.com> - 2.48.1-4
34f3c4
- Update ja.po translation file (rh #1304238)
34f3c4
34f3c4
* Tue May 26 2015 Dan Winship <danw@redhat.com> - 2.48.1-3
34f3c4
- Fix "make check" when LC_ALL is set (rh #1224989)
34f3c4
34f3c4
* Mon Apr 27 2015 Dan Winship <danw@redhat.com> - 2.48.1-2
34f3c4
- Update to 2.48.1
34f3c4
- Resolves: #1174446
34f3c4
34f3c4
* Sun Oct 19 2014 Dan Winship <danw@redhat.com> - 2.46.0-3
34f3c4
- Apply upstream patch to fix a crash in evolution (rh #1097202)
34f3c4
34f3c4
* Thu Jul 24 2014 Dan Winship <danw@redhat.com> - 2.46.0-2
34f3c4
- Apply upstream patch to add SoupSession:tls-interaction (rh #1104368)
34f3c4
34f3c4
* Thu Jul 24 2014 Dan Winship <danw@redhat.com> - 2.46.0-1
34f3c4
- Rebase to 2.46 (rh #1104368)
34f3c4
34f3c4
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.42.2-3
34f3c4
- Mass rebuild 2014-01-24
34f3c4
34f3c4
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.42.2-2
34f3c4
- Mass rebuild 2013-12-27
34f3c4
34f3c4
* Mon Apr 29 2013 Kalev Lember <kalevlember@gmail.com> - 2.42.2-1
34f3c4
- Update to 2.42.2
34f3c4
34f3c4
* Tue Apr 16 2013 Richard Hughes <rhughes@redhat.com> - 2.42.1-1
34f3c4
- Update to 2.42.1
34f3c4
34f3c4
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 2.42.0-1
34f3c4
- Update to 2.42.0
34f3c4
34f3c4
* Tue Mar 19 2013 Richard Hughes <rhughes@redhat.com> - 2.41.92-1
34f3c4
- Update to 2.41.92
34f3c4
34f3c4
* Thu Mar  7 2013 Matthias Clasen <mclasen@redhat.com> - 2.41.91-1
34f3c4
- Update to 2.41.91
34f3c4
34f3c4
* Tue Feb 19 2013 Richard Hughes <rhughes@redhat.com> - 2.41.90-1
34f3c4
- Update to 2.41.90
34f3c4
34f3c4
* Wed Feb 06 2013 Kalev Lember <kalevlember@gmail.com> - 2.41.5-1
34f3c4
- Update to 2.41.5
34f3c4
34f3c4
* Tue Jan 15 2013 Matthias Clasen <mclasen@redhat.com> - 2.41.4-1
34f3c4
- Updat e to 2.41.4
34f3c4
34f3c4
* Thu Dec 20 2012 Kalev Lember <kalevlember@gmail.com> - 2.41.3-1
34f3c4
- Update to 2.41.3
34f3c4
- Remove libgnome-keyring build dep; no longer used
34f3c4
34f3c4
* Tue Nov 20 2012 Richard Hughes <hughsient@gmail.com> - 2.41.2-1
34f3c4
- Update to 2.41.2
34f3c4
34f3c4
* Fri Nov 09 2012 Kalev Lember <kalevlember@gmail.com> - 2.41.1-1
34f3c4
- Update to 2.41.1
34f3c4
34f3c4
* Tue Oct 16 2012 Kalev Lember <kalevlember@gmail.com> - 2.40.1-1
34f3c4
- Update to 2.40.1
34f3c4
34f3c4
* Tue Oct  2 2012 Matthias Clasen <mclasen@redhat.com> - 2.40.0-1
34f3c4
- Update to 2.40.0
34f3c4
34f3c4
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.39.4.1-2
34f3c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
34f3c4
34f3c4
* Tue Jul 17 2012 Richard Hughes <hughsient@gmail.com> - 2.39.4.1-1
34f3c4
- Update to 2.39.4.1
34f3c4
34f3c4
* Wed Jun 27 2012 Richard Hughes <hughsient@gmail.com> - 2.39.3-1
34f3c4
- Update to 2.39.3
34f3c4
34f3c4
* Thu Jun 07 2012 Richard Hughes <hughsient@gmail.com> - 2.39.2-1
34f3c4
- Update to 2.39.2
34f3c4
34f3c4
* Sat May 05 2012 Kalev Lember <kalevlember@gmail.com> - 2.39.1-1
34f3c4
- Update to 2.39.1
34f3c4
- Package the translations
34f3c4
34f3c4
* Tue Apr 17 2012 Kalev Lember <kalevlember@gmail.com> - 2.38.1-1
34f3c4
- Update to 2.38.1
34f3c4
34f3c4
* Wed Mar 28 2012 Richard Hughes <hughsient@gmail.com> - 2.38.0-1
34f3c4
- Update to 2.38.0
34f3c4
34f3c4
* Wed Mar 21 2012 Kalev Lember <kalevlember@gmail.com> - 2.37.92-1
34f3c4
- Update to 2.37.92
34f3c4
34f3c4
* Mon Mar  5 2012 Matthias Clasen <mclasen@redhat.com> - 2.37.91-1
34f3c4
- Update to 2.37.91
34f3c4
34f3c4
* Sat Feb 25 2012 Matthias Clasen <mclasen@redhat.com> - 2.37.90-1
34f3c4
- Update to 2.37.90
34f3c4
34f3c4
* Mon Feb 13 2012 Matthias Clasen <mclasen@redhat.com> - 2.37.5.1-1
34f3c4
- Update to 2.37.5.1
34f3c4
34f3c4
* Mon Feb  6 2012 Matthias Clasen <mclasen@redhat.com> - 2.37.5-1
34f3c4
- Update to 2.37.5
34f3c4
34f3c4
* Tue Jan 17 2012 Matthias Clasen <mclasen@redhat.com> - 2.37.4-1
34f3c4
- Update to 2.37.4
34f3c4
34f3c4
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.37.3-2
34f3c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
34f3c4
34f3c4
* Tue Dec 20 2011 Matthias Clasen <mclasen@redhat.com> - 2.37.3-1
34f3c4
- Update to 2.37.3
34f3c4
34f3c4
* Mon Nov 21 2011 Matthias Clasen <mclasen@redhat.com> - 2.37.2-1
34f3c4
- Update to 2.37.2
34f3c4
34f3c4
* Wed Nov  2 2011 Matthias Clasen <mclasen@redhat.com> - 2.37.1-1
34f3c4
- Update to 2.37.1
34f3c4
34f3c4
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.36.1-2
34f3c4
- Rebuilt for glibc bug#747377
34f3c4
34f3c4
* Tue Oct 18 2011 Matthias Clasen <mclasen@redhat.com> - 2.36.1-1
34f3c4
- Update to 2.36.1
34f3c4
34f3c4
* Mon Sep 26 2011 Ray <rstrode@redhat.com> - 2.36.0-1
34f3c4
- Update to 2.36.0
34f3c4
34f3c4
* Mon Sep 19 2011 Matthias Clasen <mclasen@redhat.com> 2.35.92-1
34f3c4
- Update to 2.35.92
34f3c4
34f3c4
* Tue Aug 30 2011 Matthias Clasen <mclasen@redhat.com> 2.35.90-1
34f3c4
- Update to 2.35.90
34f3c4
34f3c4
* Wed Aug 17 2011 Matthias Clasen <mclasen@redhat.com> 2.35.5-1
34f3c4
- Update to 2.35.5
34f3c4
34f3c4
* Tue Jul 05 2011 Bastien Nocera <bnocera@redhat.com> 2.35.3-1
34f3c4
- Update to 2.35.3
34f3c4
34f3c4
* Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> - 2.34.1-1
34f3c4
- Update to 2.34.1
34f3c4
34f3c4
* Mon Apr  4 2011 Matthias Clasen <mclasen@redhat.com> - 2.34.0-1
34f3c4
- Update to 2.34.0
34f3c4
34f3c4
* Tue Mar 22 2011 Matthias Clasen <mclasen@redhat.com> - 2.33.92-2
34f3c4
- Clean up BRs
34f3c4
34f3c4
* Tue Mar 22 2011 Matthias Clasen <mclasen@redhat.com> - 2.33.92-1
34f3c4
- 2.33.92
34f3c4
34f3c4
* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> - 2.33.90-1
34f3c4
- 2.33.90
34f3c4
34f3c4
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.33.6-2
34f3c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
34f3c4
34f3c4
* Wed Feb  2 2011 Christopher Aillon <caillon@redhat.com> - 2.33.6-1
34f3c4
- Update to 2.33.6
34f3c4
34f3c4
* Mon Jan 17 2011 Dan Winship <danw@redhat.com> - 2.33.5-2
34f3c4
- Require glib-networking, for TLS support
34f3c4
34f3c4
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> - 2.33.5-1
34f3c4
- Update to 2.33.5
34f3c4
34f3c4
* Thu Dec  2 2010 Dan Winship <danw@redhat.com> - 2.32.2-1
34f3c4
- Update to 2.32.2
34f3c4
34f3c4
* Thu Nov 11 2010 Dan Horák <dan[at]danny.cz> - 2.32.0-2
34f3c4
- bump release to win over F-14
34f3c4
34f3c4
* Tue Sep 28 2010 Matthias Clasen <mclasen@redhat.com> - 2.32.0-1
34f3c4
- Update to 2.32.0
34f3c4
34f3c4
* Tue Sep 21 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.92-1
34f3c4
- Update to 2.31.92
34f3c4
34f3c4
* Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.90-1
34f3c4
- Update to 2.31.90
34f3c4
34f3c4
* Tue Aug  3 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.6-1
34f3c4
- Update to 2.31.6
34f3c4
34f3c4
* Thu Jul 15 2010 Colin Walters <walters@verbum.org> - 2.31.2-5
34f3c4
- Rebuild with new gobject-introspection
34f3c4
34f3c4
* Fri Jul  2 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-4
34f3c4
- Rebuild for introspection format break
34f3c4
34f3c4
* Wed Jun 23 2010 Matthew Barnes <mbarnes@redhat.com> - 2.31.2-3
34f3c4
- libsoup-devel doesn't need gtk-doc (RH bug #604396).
34f3c4
34f3c4
* Mon Jun 21 2010 Peter Robinson <pbrobinson@gmail.com> - 2.31.2-2
34f3c4
- enable introspection support
34f3c4
34f3c4
* Thu May 27 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-1
34f3c4
- Update to 2.31.2
34f3c4
34f3c4
* Tue Apr 27 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.1-1
34f3c4
- Update to 2.30.1
34f3c4
34f3c4
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.0-1
34f3c4
- Update to 2.30.0
34f3c4
34f3c4
* Thu Mar 25 2010 Nils Philippsen <nils@redhat.com> - 2.29.91-2
34f3c4
- rebuild for new libproxy
34f3c4
34f3c4
* Mon Feb 22 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.91-1
34f3c4
- Update to 2.29.91
34f3c4
34f3c4
* Mon Feb 08 2010 Matthew Barnes <mbarnes@redhat.com> - 2.29.90-1
34f3c4
- Update to 2.29.90
34f3c4
34f3c4
* Tue Jan 26 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.6-1
34f3c4
- Update to 2.29.6
34f3c4
34f3c4
* Sat Jan 16 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.5-1
34f3c4
- Update to 2.29.5
34f3c4
34f3c4
* Wed Dec  9 2009 Dan Winship <danw@redhat.com> - 2.29.3-2
34f3c4
- Add patch from git to fix gir-repository build
34f3c4
34f3c4
* Tue Dec 01 2009 Bastien Nocera <bnocera@redhat.com> 2.29.3-1
34f3c4
- Update to 2.29.3
34f3c4
34f3c4
* Mon Sep 21 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-1
34f3c4
- Update to 2.28.0
34f3c4
34f3c4
* Mon Sep  7 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.92-1
34f3c4
- Update to 2.27.92
34f3c4
34f3c4
* Mon Aug 24 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.91-1
34f3c4
- Update to 2.27.91
34f3c4
34f3c4
* Tue Aug 11 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.90-1
34f3c4
- Update to 2.27.90
34f3c4
34f3c4
* Tue Jul 28 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.5-1
34f3c4
- Update to 2.27.5
34f3c4
34f3c4
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.27.4-2
34f3c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
34f3c4
34f3c4
* Mon Jul 13 2009 Matthew Barnes <mbarnes@redhat.com> - 2.27.4-1
34f3c4
- Update to 2.27.4
34f3c4
34f3c4
* Wed Jun 17 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.2-1
34f3c4
- Update to 2.27.2
34f3c4
34f3c4
* Mon May 18 2009 Bastien Nocera <bnocera@redhat.com> 2.27.1-1
34f3c4
- Update to 2.27.1
34f3c4
34f3c4
* Mon Apr 13 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.1-1
34f3c4
- Update to 2.26.1
34f3c4
- See http://download.gnome.org/sources/libsoup/2.26/libsoup-2.26.1.changes
34f3c4
34f3c4
* Thu Apr  9 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0.9-1
34f3c4
- Upate to 2.26.0.9
34f3c4
34f3c4
* Mon Mar 16 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-1
34f3c4
- Update to 2.26.0
34f3c4
34f3c4
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25.91-2
34f3c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
34f3c4
34f3c4
* Mon Feb 16 2009 Matthew Barnes <mbarnes@redhat.com> - 2.25.91-1
34f3c4
- Update to 2.25.91
34f3c4
34f3c4
* Mon Feb 02 2009 Matthew Barnes <mbarnes@redhat.com> - 2.25.5-1
34f3c4
- Update to 2.25.5
34f3c4
34f3c4
* Sun Jan 25 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.4-2
34f3c4
- Build against libproxy
34f3c4
34f3c4
* Mon Jan 05 2009 Matthew Barnes <mbarnes@redhat.com> - 2.25.4-1
34f3c4
- Update to 2.25.4
34f3c4
34f3c4
* Tue Dec 16 2008 Matthew Barnes <mbarnes@redhat.com> - 2.25.3-1
34f3c4
- Update to 2.25.3
34f3c4
34f3c4
* Mon Dec 01 2008 Matthew Barnes <mbarnes@redhat.com> - 2.25.2-1
34f3c4
- Update to 2.25.2
34f3c4
34f3c4
* Wed Nov 12 2008 Matthias Clasen  <mclasen@redhat.com> - 2.25.1-3
34f3c4
- Fix BuildRequires
34f3c4
34f3c4
* Fri Nov 07 2008 Matthew Barnes <mbarnes@redhat.com> - 2.25.1-1
34f3c4
- Update to 2.25.1
34f3c4
34f3c4
* Mon Oct 20 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.1-1
34f3c4
- Update to 2.24.1
34f3c4
34f3c4
* Wed Sep 24 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.0.1-1
34f3c4
- Update to 2.24.0.1
34f3c4
34f3c4
* Mon Sep 22 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.0-1
34f3c4
- Update to 2.24.0
34f3c4
34f3c4
* Mon Sep  8 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.92-1
34f3c4
- Update to 2.23.92
34f3c4
34f3c4
* Mon Sep 01 2008 Matthew Barnes <mbarnes@redhat.com> - 2.23.91-1
34f3c4
- Update to 2.23.91
34f3c4
34f3c4
* Mon Aug 04 2008 Matthew Barnes <mbarnes@redhat.com> - 2.23.6-1
34f3c4
- Update to 2.23.6
34f3c4
34f3c4
* Wed Jul 30 2008 Matthew Barnes <mbarnes@redhat.com> - 2.23.1-6
34f3c4
- Omit unused direct shared library dependencies (RH bug #226046).
34f3c4
34f3c4
* Tue Jun 24 2008 Tomas Mraz <tmraz@redhat.com> - 2.23.1-5
34f3c4
- rebuild with new gnutls
34f3c4
34f3c4
* Sun Jun 22 2008 Matthew Barnes <mbarnes@redhat.com> - 2.23.1-4
34f3c4
- Remove unnecessary pkgconfig build requirement.
34f3c4
34f3c4
* Mon Jun 16 2008 Matthew Barnes <mbarnes@redhat.com> - 2.23.1-3
34f3c4
- Incorporate package review feedback (RH bug #226046).
34f3c4
34f3c4
* Sun May  4 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.1-2
34f3c4
- Fix source url
34f3c4
34f3c4
* Mon Apr 21 2008 Matthew Barnes <mbarnes@redhat.com> - 2.23.1-1
34f3c4
- Update to 2.23.1
34f3c4
34f3c4
* Mon Apr 07 2008 Matthew Barnes <mbarnes@redhat.com> - 2.4.1-1
34f3c4
- Update to 2.4.1
34f3c4
34f3c4
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 2.4.0-1
34f3c4
- Update to 2.4.0
34f3c4
34f3c4
* Mon Feb 25 2008 Matthew Barnes <mbarnes@redhat.com> - 2.3.4-1
34f3c4
- Update to 2.3.4
34f3c4
34f3c4
* Wed Feb 13 2008 Matthew Barnes <mbarnes@redhat.com> - 2.3.2-1
34f3c4
- Update to 2.3.2
34f3c4
34f3c4
* Mon Jan 28 2008 Matthew Barnes <mbarnes@redhat.com> - 2.3.0-1
34f3c4
- Update to 2.3.0
34f3c4
- Bump glib2 requirement to >= 2.15.3.
34f3c4
- Clean up some redundant dependencies.
34f3c4
- Remove patch for RH bug #327871 (fixed in glibc).
34f3c4
34f3c4
* Mon Nov 26 2007 Matthew Barnes <mbarnes@redhat.com> - 2.2.104-1
34f3c4
- Update to 2.2.104
34f3c4
34f3c4
* Sun Oct 28 2007 Jeremy Katz <katzj@redhat.com> - 2.2.103-1
34f3c4
- update to 2.2.103 to fix a rhythmbox crasher (#343561)
34f3c4
34f3c4
* Mon Oct 15 2007 Matthew Barnes <mbarnes@redhat.com> - 2.2.102-1
34f3c4
- Update to 2.2.102
34f3c4
34f3c4
* Thu Oct 11 2007 Matthew Barnes <mbarnes@redhat.com> - 2.2.101-2
34f3c4
- Add patch for RH bug #327871 (broken Rhythmbox build).
34f3c4
- Suspect this is really a glibc bug.
34f3c4
34f3c4
* Fri Oct 05 2007 Matthew Barnes <mbarnes@redhat.com> - 2.2.101-1
34f3c4
- Update to 2.2.101
34f3c4
34f3c4
* Wed Aug  8 2007 Matthias Clasen <mclasen@redhat.com> - 2.2.100-3
34f3c4
- Update the license field
34f3c4
34f3c4
* Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> - 2.2.100-2
34f3c4
- Don't install INSTALL
34f3c4
34f3c4
* Mon Feb 12 2007 Matthew Barnes <mbarnes@redhat.com> - 2.2.100-1
34f3c4
- Update to 2.2.100
34f3c4
34f3c4
* Mon Jan 08 2007 Matthew Barnes <mbarnes@redhat.com> - 2.2.99-1
34f3c4
- Update to 2.2.99
34f3c4
34f3c4
* Tue Nov 21 2006 Matthew Barnes <mbarnes@redhat.com> - 2.2.98-1
34f3c4
- Update to 2.2.98
34f3c4
- Remove patch for RH bug #215919 (fixed upstream).
34f3c4
34f3c4
* Fri Nov 17 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.97-2
34f3c4
- Avoid accidentally exported symbols (#215919)
34f3c4
34f3c4
* Mon Nov 06 2006 Matthew Barnes <mbarnes@redhat.com> - 2.2.97-1
34f3c4
- Update to 2.2.97
34f3c4
- Remove patch for Gnome.org bug #356809 (fixed upstream).
34f3c4
34f3c4
* Fri Nov 03 2006 Matthew Barnes <mbarnes@redhat.com> - 2.2.96-5
34f3c4
- Revised patch for Gnome.org bug #356809 to match upstream.
34f3c4
34f3c4
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 2.2.96-4
34f3c4
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
34f3c4
34f3c4
* Wed Sep 20 2006 Matthew Barnes <mbarnes@redhat.com> - 2.2.96-3.fc6
34f3c4
- Add patch for Gnome.org bug #356809 (lingering file on uninstall).
34f3c4
34f3c4
* Tue Aug 15 2006 Matthew Barnes <mbarnes@redhat.com> - 2.2.96-2.fc6
34f3c4
- Rebuild
34f3c4
34f3c4
* Tue Jul 25 2006 Matthew Barnes <mbarnes@redhat.com> - 2.2.96
34f3c4
- Update to 2.2.96
34f3c4
- Bump glib2 requirement to >= 2.6.
34f3c4
34f3c4
* Wed Jul 12 2006 Matthew Barnes <mbarnes@redhat.com> - 2.2.95.1-1
34f3c4
- Update to 2.2.95.1
34f3c4
34f3c4
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.2.94-3.1
34f3c4
- rebuild
34f3c4
34f3c4
* Wed Jun 14 2006 Tomas Mraz <tmraz@redhat.com> - 2.2.94-3
34f3c4
- rebuilt with new gnutls
34f3c4
34f3c4
* Tue Jun 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.94-1
34f3c4
- Update to 2.2.94
34f3c4
34f3c4
* Mon Apr 10 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.92-2
34f3c4
- Update to 2.2.92
34f3c4
34f3c4
* Sat Mar  4 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.91-1
34f3c4
- Update to 2.2.91
34f3c4
34f3c4
* Wed Feb 15 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.7-2
34f3c4
- Remove excessive Requires for the -devel package
34f3c4
34f3c4
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.2.7-1.2.1
34f3c4
- bump again for double-long bug on ppc(64)
34f3c4
34f3c4
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.2.7-1.2
34f3c4
- rebuilt for new gcc4.1 snapshot and glibc changes
34f3c4
34f3c4
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
34f3c4
- rebuilt
34f3c4
34f3c4
* Tue Nov 29 2005 David Malcolm <dmalcolm@redhat.com> - 2.2.7-1
34f3c4
- 2.2.7
34f3c4
- Remove static library
34f3c4
34f3c4
* Tue Aug 23 2005 David Malcolm <dmalcolm@redhat.com> - 2.2.6.1-1
34f3c4
- 2.2.6.1
34f3c4
34f3c4
* Tue Aug  9 2005 David Malcolm <dmalcolm@redhat.com> - 2.2.5-1
34f3c4
- 2.2.5
34f3c4
- Removed gnome-bug-306877-soup-connection-ntlm.c.patch (#160071) as this is 
34f3c4
  now in upstream tarball
34f3c4
34f3c4
* Mon Aug  8 2005 Tomas Mraz <tmraz@redhat.com> - 2.2.3-5
34f3c4
- rebuild with new gnutls
34f3c4
34f3c4
* Tue Jun 14 2005 David Malcolm <dmalcolm@redhat.com> - 2.2.3-4
34f3c4
- add patch for NTLM domains (#160071)
34f3c4
34f3c4
* Sun Apr 24 2005 Florian La Roche <laroche@redhat.com>
34f3c4
- rebuild for new gnutls
34f3c4
34f3c4
* Thu Mar 17 2005 David Malcolm <dmalcolm@redhat.com> - 2.2.3-2
34f3c4
- explicitly enable gtk-doc support
34f3c4
34f3c4
* Thu Mar 17 2005 David Malcolm <dmalcolm@redhat.com> - 2.2.3-1
34f3c4
- 2.2.3
34f3c4
34f3c4
* Wed Mar  2 2005 David Malcolm <dmalcolm@redhat.com> - 2.2.2-3
34f3c4
- rebuild with GCC 4
34f3c4
34f3c4
* Wed Jan 26 2005 David Malcolm <dmalcolm@redhat.com> - 2.2.2-2
34f3c4
- actually uploaded the source this time
34f3c4
34f3c4
* Wed Jan 26 2005 David Malcolm <dmalcolm@redhat.com> - 2.2.2-1
34f3c4
- update from 2.2.1 to 2.2.2
34f3c4
- add explicit devel requirements on glib2-devel, pkgconfig, gtk-doc, gnutls-devel and libxml2-devel
34f3c4
34f3c4
* Tue Oct 12 2004 David Malcolm <dmalcolm@redhat.com> - 2.2.1-1
34f3c4
- update from 2.2.0 to 2.2.1
34f3c4
34f3c4
* Wed Oct  6 2004 David Malcolm <dmalcolm@redhat.com> - 2.2.0-3
34f3c4
- added requirement on libxml2 (#134700)
34f3c4
34f3c4
* Wed Sep 22 2004 David Malcolm <dmalcolm@redhat.com> - 2.2.0-2
34f3c4
- added requirement on gnutls, so that we build with SSL support
34f3c4
- fixed source download path
34f3c4
34f3c4
* Tue Aug 31 2004 David Malcolm <dmalcolm@redhat.com> - 2.2.0-1
34f3c4
- update from 2.1.13 to 2.2.0
34f3c4
34f3c4
* Mon Aug 16 2004 David Malcolm <dmalcolm@redhat.com> - 2.1.13-1
34f3c4
- 2.1.13
34f3c4
34f3c4
* Tue Jul 20 2004 David Malcolm <dmalcolm@redhat.com> - 2.1.12-1
34f3c4
- 2.1.12
34f3c4
34f3c4
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
34f3c4
- rebuilt
34f3c4
34f3c4
* Mon Jun  7 2004 David Malcolm <dmalcolm@redhat.com> - 2.1.11-1
34f3c4
- 2.1.11
34f3c4
34f3c4
* Thu May 20 2004 David Malcolm <dmalcolm@redhat.com> - 2.1.10-2
34f3c4
- added missing md5 file
34f3c4
34f3c4
* Thu May 20 2004 David Malcolm <dmalcolmredhat.com> - 2.1.10-1
34f3c4
- 2.1.10
34f3c4
34f3c4
* Tue Apr 20 2004 David Malcolm <dmalcolm@redhat.com> - 2.1.9-1
34f3c4
- Update to 2.1.9; added gtk-doc to BuildRequires and the generated files to the devel package
34f3c4
34f3c4
* Wed Mar 10 2004 Jeremy Katz <katzj@redhat.com> - 2.1.8-1
34f3c4
- 2.1.8
34f3c4
34f3c4
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
34f3c4
- rebuilt
34f3c4
34f3c4
* Tue Feb 17 2004 Jeremy Katz <katzj@redhat.com> - 2.1.7-1
34f3c4
- 2.1.7
34f3c4
34f3c4
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
34f3c4
- rebuilt
34f3c4
34f3c4
* Mon Jan 26 2004 Jeremy Katz <katzj@redhat.com> 2.1.5-1
34f3c4
- 2.1.5
34f3c4
34f3c4
* Wed Jan 14 2004 Jeremy Katz <katzj@redhat.com> 2.1.4-0
34f3c4
- update to 2.1.4
34f3c4
34f3c4
* Sat Jan  3 2004 Jeremy Katz <katzj@redhat.com> 2.1.3-0
34f3c4
- update to 2.1.3
34f3c4
34f3c4
* Tue Sep 23 2003 Jeremy Katz <katzj@redhat.com> 1.99.26-2
34f3c4
- rebuild
34f3c4
34f3c4
* Fri Sep 19 2003 Jeremy Katz <katzj@redhat.com> 1.99.26-1
34f3c4
- 1.99.26
34f3c4
34f3c4
* Tue Jul 15 2003 Jeremy Katz <katzj@redhat.com> 1.99.23-3
34f3c4
- rebuild to pickup ppc64
34f3c4
34f3c4
* Mon Jun  9 2003 Jeremy Katz <katzj@redhat.com> 1.99.23-2
34f3c4
- rebuild 
34f3c4
- no openssl on ppc64 yet, excludearch
34f3c4
34f3c4
* Mon Jun  9 2003 Jeremy Katz <katzj@redhat.com> 1.99.23-1
34f3c4
- 1.99.23
34f3c4
34f3c4
* Thu Jun 5 2003 Elliot Lee <sopwith@redhat.com>
34f3c4
- rebuilt
34f3c4
34f3c4
* Thu Jun  5 2003 Jeremy Katz <katzj@redhat.com> 1.99.22-2
34f3c4
- rebuild
34f3c4
34f3c4
* Sun May 25 2003 Jeremy Katz <katzj@redhat.com> 1.99.22-1
34f3c4
- 1.99.22
34f3c4
34f3c4
* Tue May  6 2003 Jeremy Katz <katzj@redhat.com> 1.99.20-1
34f3c4
- 1.99.20
34f3c4
34f3c4
* Sun May  4 2003 Jeremy Katz <katzj@redhat.com> 1.99.17-3
34f3c4
- include ssl proxy so that ssl urls work properly (#90165, #90166)
34f3c4
34f3c4
* Wed Apr 16 2003 Jeremy Katz <katzj@redhat.com> 1.99.17-2
34f3c4
- forward port patch to use a union initializer to fix build on x86_64
34f3c4
34f3c4
* Wed Apr 16 2003 Jeremy Katz <katzj@redhat.com> 1.99.17-1
34f3c4
- rename package to libsoup
34f3c4
- update to 1.99.17
34f3c4
- don't obsolete soup for now, it's parallel installable
34f3c4
34f3c4
* Sun Apr  6 2003 Jeremy Katz <katzj@redhat.com> 0.7.11-1
34f3c4
- update to 0.7.11
34f3c4
34f3c4
* Wed Apr  2 2003 Matt Wilson <msw@redhat.com> 0.7.10-5
34f3c4
- added soup-0.7.10-64bit.patch to fix 64 bit platforms (#86347)
34f3c4
34f3c4
* Sat Feb 01 2003 Florian La Roche <Florian.LaRoche@redhat.de>
34f3c4
- only runtime libs in normal rpm
34f3c4
34f3c4
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
34f3c4
- rebuilt
34f3c4
34f3c4
* Tue Jan 21 2003 Jeremy Katz <katzj@redhat.com> 
34f3c4
- update url (#82347)
34f3c4
34f3c4
* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 0.7.10-2
34f3c4
- use pkgconfig's openssl configuration information, if it exists
34f3c4
34f3c4
* Fri Dec 13 2002 Jeremy Katz <katzj@redhat.com> 0.7.10-1
34f3c4
- update to 0.7.10
34f3c4
34f3c4
* Thu Dec 12 2002 Jeremy Katz <katzj@redhat.com> 0.7.9-4
34f3c4
- fix fpic patch
34f3c4
- soup-devel should require soup
34f3c4
34f3c4
* Thu Dec 12 2002 Jeremy Katz <katzj@redhat.com> 0.7.9-3
34f3c4
- better lib64 patch
34f3c4
- fix building of libwsdl-build to use libtool so that it gets built 
34f3c4
  with -fPIC as needed
34f3c4
34f3c4
* Tue Dec 10 2002 Jeremy Katz <katzj@redhat.com> 0.7.9-2
34f3c4
- change popt handling in configure slightly so that it will work on 
34f3c4
  multilib arches
34f3c4
34f3c4
* Tue Dec 10 2002 Jeremy Katz <katzj@redhat.com> 0.7.9-1
34f3c4
- update to 0.7.9, pulling the tarball out of Ximian packages
34f3c4
34f3c4
* Wed Oct 23 2002 Jeremy Katz <katzj@redhat.com> 0.7.4-3
34f3c4
- fix to not try to include non-existent doc files and remove all 
34f3c4
  unwanted files from the build
34f3c4
- include api docs 
34f3c4
- don't build the apache module
34f3c4
34f3c4
* Wed Sep 25 2002 Jeremy Katz <katzj@redhat.com> 0.7.4-2
34f3c4
- various specfile tweaks to include in Red Hat Linux
34f3c4
- include all the files
34f3c4
34f3c4
* Tue Jan 23 2001 Alex Graveley <alex@ximian.com>
34f3c4
- Inital RPM config.