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