Blame SPECS/xmlrpc-c.spec

8abba2
%global advanced_branch 1
8abba2
8abba2
# Upstream libxml2 backend is completely broken since 2015
8abba2
# https://sourceforge.net/p/xmlrpc-c/patches/49/
8abba2
%bcond_without libxml2
8abba2
8abba2
Name:           xmlrpc-c
8abba2
Version:        1.51.0
8abba2
Release:        16%{?dist}
8abba2
Summary:        Lightweight RPC library based on XML and HTTP
8abba2
# See doc/COPYING for details.
8abba2
# The Python 1.5.2 license used by a few files is just BSD.
8abba2
License:        BSD and MIT
8abba2
URL:            http://xmlrpc-c.sourceforge.net/
8abba2
%{!?advanced_branch:Source0: http://dl.sourceforge.net/sourceforge/xmlrpc-c/xmlrpc-%version.tgz}
8abba2
# generated by 'make svn-sources [SVN_VER=%version SVN_REV=%svnrev]'. Unfortunately,
8abba2
# upstream does not tag versions so we must fetch from the branch and
8abba2
# check which version was used for it
8abba2
%{?advanced_branch:Source0: xmlrpc-c-%version.tar.xz}
8abba2
8abba2
# Upstreamable patches
8abba2
Patch101:       0001-xmlrpc_server_abyss-use-va_args-properly.patch
8abba2
Patch102:       0002-Use-proper-datatypes-for-long-long.patch
8abba2
Patch103:       0003-allow-30x-redirections.patch
8abba2
#Patch104:       xmlrpc-c-printf-size_t.patch
8abba2
#Patch105:       xmlrpc-c-check-vasprintf-return-value.patch
8abba2
Patch106:       0001-cleanup-and-fix-libxml2-backend.patch
8abba2
8abba2
# Backported patches
8abba2
# https://sourceforge.net/p/xmlrpc-c/code/2981/
8abba2
# Fixes RHBZ #1541868
8abba2
Patch201:       0001-Remove-trace-statements-accidentally-committed-with-.patch
8abba2
8abba2
# Meson buildsystem, see https://blogs.gnome.org/ignatenko/2016/12/17/meson-%E2%99%A5-xmlrpc-c/
8abba2
Patch1001:      0001-add-meson-buildsystem-definitions.patch
8abba2
Patch1002:      0002-chmod-x-xml-rpc-api2txt.patch
8abba2
8abba2
BuildRequires:  git-core
8abba2
BuildRequires:  meson >= 0.36.0
8abba2
BuildRequires:  gcc
8abba2
BuildRequires:  gcc-c++
8abba2
%if %{with libxml2}
8abba2
BuildRequires:  pkgconfig(libxml-2.0)
8abba2
%else
8abba2
# upstream has its own fork of expat
8abba2
Provides:       bundled(expat)
8abba2
%endif
8abba2
BuildRequires:  pkgconfig(openssl)
8abba2
BuildRequires:  pkgconfig(libcurl)
8abba2
BuildRequires:  readline-devel
8abba2
BuildRequires:  ncurses-devel
8abba2
8abba2
%package c++
8abba2
Summary:        C++ libraries for xmlrpc-c
8abba2
Requires:       %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
8abba2
8abba2
%package client
8abba2
Summary:        C client libraries for xmlrpc-c
8abba2
Requires:       %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
8abba2
8abba2
%package client++
8abba2
Summary:        C++ client libraries for xmlrpc-c
8abba2
Requires:       %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
8abba2
Requires:       %{name}-c++%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
8abba2
Requires:       %{name}-client%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
8abba2
8abba2
%package devel
8abba2
Summary:        Development files for xmlrpc-c based programs
8abba2
Requires:       %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
8abba2
Requires:       %{name}-c++%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
8abba2
Requires:       %{name}-client%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
8abba2
Requires:       %{name}-client++%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
8abba2
8abba2
%package apps
8abba2
Summary:        Sample XML-RPC applications
8abba2
Requires:       %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
8abba2
Requires:       %{name}-c++%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
8abba2
Requires:       %{name}-client%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
8abba2
Requires:       %{name}-client++%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
8abba2
8abba2
8abba2
%description
8abba2
XML-RPC is a quick-and-easy way to make procedure calls over the
8abba2
Internet. It converts the procedure call into XML document, sends it
8abba2
to a remote server using HTTP, and gets back the response as XML.
8abba2
8abba2
This library provides a modular implementation of XML-RPC for C.
8abba2
8abba2
8abba2
%description c++
8abba2
XML-RPC is a quick-and-easy way to make procedure calls over the
8abba2
Internet. It converts the procedure call into XML document, sends it
8abba2
to a remote server using HTTP, and gets back the response as XML.
8abba2
8abba2
This library provides a modular implementation of XML-RPC for C++.
8abba2
8abba2
8abba2
%description client
8abba2
XML-RPC is a quick-and-easy way to make procedure calls over the
8abba2
Internet. It converts the procedure call into XML document, sends it
8abba2
to a remote server using HTTP, and gets back the response as XML.
8abba2
8abba2
This library provides a modular implementation of XML-RPC for C
8abba2
clients.
8abba2
8abba2
%description client++
8abba2
XML-RPC is a quick-and-easy way to make procedure calls over the
8abba2
Internet. It converts the procedure call into XML document, sends it
8abba2
to a remote server using HTTP, and gets back the response as XML.
8abba2
8abba2
This library provides a modular implementation of XML-RPC for C++
8abba2
clients.
8abba2
8abba2
8abba2
%description devel
8abba2
Static libraries and header files for writing XML-RPC applications in
8abba2
C and C++.
8abba2
8abba2
8abba2
%description apps
8abba2
XML-RPC is a quick-and-easy way to make procedure calls over the
8abba2
Internet. It converts the procedure call into XML document, sends it
8abba2
to a remote server using HTTP, and gets back the response as XML.
8abba2
8abba2
This package contains some handy XML-RPC demo applications.
8abba2
8abba2
8abba2
%prep
8abba2
%autosetup -Sgit
8abba2
8abba2
%if %{with libxml2}
8abba2
# We want to build xmlrpc-c against libxml2, so we remove the bundled expat sources -- just to be sure
8abba2
rm -Rf lib/expat
8abba2
%endif
8abba2
8abba2
%build
8abba2
%meson %{?with_libxml2:-Dlibxml2-backend=true}
8abba2
%meson_build
8abba2
8abba2
%install
8abba2
%meson_install
8abba2
8abba2
%ldconfig_scriptlets
8abba2
%ldconfig_scriptlets client
8abba2
%ldconfig_scriptlets c++
8abba2
%ldconfig_scriptlets client++
8abba2
8abba2
%files
8abba2
%license doc/COPYING lib/abyss/license.txt
8abba2
%doc doc/CREDITS doc/HISTORY
8abba2
%if ! %{with libxml2}
8abba2
%{_libdir}/libxmlrpc_xml*.so.*
8abba2
%endif
8abba2
%{_libdir}/libxmlrpc_openssl.so.*
8abba2
%{_libdir}/libxmlrpc.so.*
8abba2
%{_libdir}/libxmlrpc_util.so.*
8abba2
%{_libdir}/libxmlrpc_abyss.so.*
8abba2
%{_libdir}/libxmlrpc_server.so.*
8abba2
%{_libdir}/libxmlrpc_server_abyss.so.*
8abba2
%{_libdir}/libxmlrpc_server_cgi.so.*
8abba2
8abba2
%files client
8abba2
%{_libdir}/libxmlrpc_client.so.*
8abba2
8abba2
%files c++
8abba2
%{_libdir}/libxmlrpc_cpp.so.*
8abba2
%{_libdir}/libxmlrpc++.so.*
8abba2
%{_libdir}/libxmlrpc_util++.so.*
8abba2
%{_libdir}/libxmlrpc_abyss++.so.*
8abba2
%{_libdir}/libxmlrpc_server++.so.*
8abba2
%{_libdir}/libxmlrpc_server_abyss++.so.*
8abba2
%{_libdir}/libxmlrpc_server_cgi++.so.*
8abba2
%{_libdir}/libxmlrpc_packetsocket.so.*
8abba2
%{_libdir}/libxmlrpc_server_pstream++.so.*
8abba2
8abba2
%files client++
8abba2
%{_libdir}/libxmlrpc_client++.so.*
8abba2
8abba2
%files devel
8abba2
%{_bindir}/xmlrpc-c-config
8abba2
%{_includedir}/xmlrpc-c/
8abba2
%{_includedir}/*.h
8abba2
%{_libdir}/pkgconfig/xmlrpc*.pc
8abba2
%{_libdir}/libxmlrpc*.so
8abba2
8abba2
%files apps
8abba2
%{_bindir}/xmlrpc_parsecall
8abba2
%{_bindir}/xmlrpc
8abba2
%{_bindir}/xmlrpc_transport
8abba2
%doc tools/xmlrpc_transport/xmlrpc_transport.html
8abba2
%{_bindir}/xml-rpc-api2cpp
8abba2
%{_mandir}/man1/xml-rpc-api2cpp.1*
8abba2
%{_bindir}/xml-rpc-api2txt
8abba2
%{_mandir}/man1/xml-rpc-api2txt.1*
8abba2
%{_bindir}/xmlrpc_cpp_proxy
8abba2
%{_bindir}/xmlrpc_pstream
8abba2
%{_bindir}/xmlrpc_dumpserver
8abba2
8abba2
%changelog
8abba2
* Thu Mar 17 2022 Michal Srb <michal@redhat.com> - 1.51.0-16
8abba2
- Drop bundled expat and build against libxml2
8abba2
- Resolves: CVE-2022-25235
8abba2
- Resolves: CVE-2022-25236
8abba2
8abba2
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.51.0-15
8abba2
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
8abba2
  Related: rhbz#1991688
8abba2
8abba2
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.51.0-14
8abba2
- Rebuilt for RHEL 9 BETA for openssl 3.0
8abba2
  Related: rhbz#1971065
8abba2
8abba2
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.51.0-13
8abba2
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
8abba2
8abba2
* Thu Jan 28 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-12
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
8abba2
8abba2
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-11
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
8abba2
8abba2
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-10
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
8abba2
8abba2
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-9
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
8abba2
8abba2
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.51.0-8
8abba2
- Rebuild for readline 8.0
8abba2
8abba2
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-7
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
8abba2
8abba2
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-6
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
8abba2
8abba2
* Thu Apr 19 2018 Adam Williamson <awilliam@redhat.com> - 1.51.0-5
8abba2
- Backport upstream fix for console spam with debug messages (#1541868)
8abba2
8abba2
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.51.0-4
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8abba2
8abba2
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.51.0-3
8abba2
- Switch to %%ldconfig_scriptlets
8abba2
8abba2
* Wed Jan 17 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.51.0-2
8abba2
- BuildRequire openssl by pkgconfig()
8abba2
8abba2
* Mon Jan 01 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.51.0-1
8abba2
- Update to 1.51.0
8abba2
8abba2
* Sun Oct 01 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.49.02-2
8abba2
- Fix Requires.private in xmlrpc_server++.pc
8abba2
8abba2
* Fri Sep 29 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.49.02-1
8abba2
- Update to 1.49.02
8abba2
8abba2
* Fri Sep 29 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.48.0-8
8abba2
- Add xmlrpc_client++.pc
8abba2
8abba2
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.48.0-7
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
8abba2
8abba2
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.48.0-6
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8abba2
8abba2
* Fri Jun 30 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.48.0-5
8abba2
- Fix underlinking issue causing FTBFS
8abba2
8abba2
* Mon Mar 13 2017 Peter Robinson <pbrobinson@fedoraproject.org> 1.48.0-4
8abba2
- Build with openssl 1.1
8abba2
8abba2
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.48.0-3
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8abba2
8abba2
* Sat Jan 21 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.48.0-2
8abba2
- Apply patches via git to preserve permissions
8abba2
8abba2
* Sun Dec 18 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.48.0-1
8abba2
- Update to 1.48.0
8abba2
8abba2
* Tue Feb 16 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.32.5-1909.svn2451
8abba2
- Add patch for conversion from int to usnigned char
8abba2
- Resolves: rhbz#1308254
8abba2
8abba2
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.32.5-1909.svn2451
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8abba2
8abba2
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.32.5-1908.svn2451
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8abba2
8abba2
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.32.5-1907.svn2451
8abba2
- Rebuilt for GCC 5 C++11 ABI change
8abba2
8abba2
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.32.5-1906.svn2451
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
8abba2
8abba2
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.32.5-1905.svn2451
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8abba2
8abba2
* Fri Mar 28 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.32.5-1904.svn2451
8abba2
- Add patch to silence format-security compiler warning
8abba2
- Resolves: rhbz#1037399
8abba2
8abba2
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.32.5-1903.svn2451
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
8abba2
8abba2
* Thu Apr 25 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.32.5-1902.svn2451
8abba2
- Add missing inter-package dependencies
8abba2
- Rename fedora directory to build
8abba2
8abba2
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.32.5-1901.svn2451
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8abba2
8abba2
* Sun Dec  9 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.32.5-1900.svn2451
8abba2
- updated to 1.32.5
8abba2
8abba2
* Sun Oct 21 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.32.2-1900.svn2434
8abba2
- updated to 1.32.2
8abba2
8abba2
* Sat Oct  6 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.32.1-1900.svn2413
8abba2
- updated to 1.32.1
8abba2
8abba2
* Sun Aug 26 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.31.4-1900.svn2386
8abba2
- updated to 1.31.4
8abba2
8abba2
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.31.0-1801.svn2365
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8abba2
8abba2
* Sun Jul  1 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.31.0-1800.svn2365
8abba2
- updated to 1.31.0
8abba2
8abba2
* Wed Jun  6 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.30.6-1800.svn2328
8abba2
- updated to 1.30.6
8abba2
8abba2
* Sat May 26 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.30.5-1800.svn2324
8abba2
- updated to 1.30.5 (IPv6 server fixes)
8abba2
8abba2
* Sat May 12 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.30.4-1800.svn2318
8abba2
- updated to 1.30.4
8abba2
8abba2
* Thu Apr  5 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.30.1-1800.svn2298
8abba2
- updated to 1.30.1
8abba2
8abba2
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.29.0-1701.svn2233
8abba2
- Rebuilt for c++ ABI breakage
8abba2
8abba2
* Wed Jan  4 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.29.0-1700.svn2233
8abba2
- updated to 1.29.0
8abba2
8abba2
* Mon Oct  3 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.28.1-1700.svn2203
8abba2
- updated to 1.28.1
8abba2
8abba2
* Mon Oct  3 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.27.5-1701.svn2185
8abba2
- fixed error handling when transfering too large files (#741980)
8abba2
8abba2
* Sat Aug 27 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.27.5-1700.svn2185
8abba2
- updated to 1.27.5
8abba2
8abba2
* Sun Aug  7 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.27.4-1700.svn2171
8abba2
- updated to 1.27.4
8abba2
8abba2
* Sun Aug  7 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.27.3-1700.svn2145
8abba2
- updated to 1.27.3
8abba2
8abba2
* Mon Jun 27 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.27.0-1600.svn2145
8abba2
- updated to 1.27.0
8abba2
- made it build with recent curl
8abba2
8abba2
* Mon Jun 13 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.26.3-1600.svn2134
8abba2
- updated to 1.26.3
8abba2
- removed default-constructor patch; issue is solved upstream
8abba2
8abba2
* Sat Apr  2 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.26.0-1600.svn2188
8abba2
- updated to 1.26.0
8abba2
8abba2
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.25.1-1501.svn2077
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8abba2
8abba2
* Thu Jan  6 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.25.1-1500.svn2077
8abba2
- updated to 1.25.1
8abba2
8abba2
* Thu Dec 30 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.25.0-1500.svn2074
8abba2
- updated to 1.25.0
8abba2
8abba2
* Sun Nov  7 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.24.4-1500.svn2042
8abba2
- updated to 1.24.4
8abba2
8abba2
* Sat Oct  9 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.24.1-1500.svn1987
8abba2
- updated to 1.24.1
8abba2
- set -Wno-uninitialized CFLAGS; code contains lot of constructs
8abba2
  triggering this warning and the 'int a=a' defeaters have been
8abba2
  removed in this version
8abba2
8abba2
* Fri Aug 27 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.23.02-1500.svn1968
8abba2
- updated to 1.23.02 (note: this breaks C++ ABI)
8abba2
- added vasprintf patch
8abba2
8abba2
* Thu Jul 29 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.23.01-1400.svn1958
8abba2
- updated to 1.23.01
8abba2
- added patch to make curl follow HTTP POST 301 redirects (#618504)
8abba2
8abba2
* Sun Apr 18 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.22.01-1400.svn1907
8abba2
- updated to 1.22.01 (svn 1907)
8abba2
8abba2
* Tue Feb 23 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.21.00-1401.1851
8abba2
- require the various subpackages explicitly for -devel; the ld linker
8abba2
  scripts broke rpm's autodetection (#567400)
8abba2
- removed -devel Requires: which are covered by pkgconfig autodeps
8abba2
- added %%{?_isa} annotations
8abba2
8abba2
* Sun Feb 21 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.21.00-1400.1851
8abba2
- made linker scripts more 'ldconfig' friendly
8abba2
8abba2
* Mon Feb 15 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.21.00-1301.1851
8abba2
- replaced .so symlinks by linker scripts which add all implicit
8abba2
  dependencies in AS_NEEDED() commands (#564607, #565577)
8abba2
8abba2
* Thu Jan 14 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.21.00-1300.1851
8abba2
- updated to 1.21.00 (rev 1851)
8abba2
- removed curl-trace patch as applied upstream
8abba2
- rediffed patches
8abba2
8abba2
* Sat Nov 21 2009 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.20.3-1.1841
8abba2
- updated to rev1841
8abba2
- rediffed patches
8abba2
- added patch to fix handling of wrong certificates (Nikola Pajkovsky)
8abba2
- added support for $XMLRPC_TRACE_CURL env (John Dennis)
8abba2
8abba2
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16.6-3.1582
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8abba2
8abba2
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16.6-2.1582
8abba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8abba2
8abba2
* Thu Dec 11 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.16.6-1.1582
8abba2
- updated to 1.16.6; rediffed patches
8abba2
- fixed client headers (bug #475887)
8abba2
8abba2
* Sat Nov 15 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.16.4.1567-2
8abba2
- updated to 1.16.4
8abba2
- rediffed/updated patches
8abba2
- splitted some subpackages (c++, client) out of main package as they
8abba2
  introduce additional dependencies (c++, curl)
8abba2
8abba2
* Sat Sep  6 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.14.8-2
8abba2
- fix license tag
8abba2
8abba2
* Sat Jun 21 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.14.8-1
8abba2
- updated to 1.14.8
8abba2
8abba2
* Sun May 25 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.14.6-1
8abba2
- updated to 1.14.6
8abba2
8abba2
* Sat Apr 12 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.14.2-1
8abba2
- updated to 1.14.2
8abba2
- rediffed patches
8abba2
- added patch to fix broken usage of 'long long' datatype
8abba2
8abba2
* Mon Mar 17 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.13.8-2
8abba2
- fixed cmake quoting so that pkgconfig files get correct version number
8abba2
- fixed handling of 'server-util' and '--cflags' within xmlrpc-c-config
8abba2
8abba2
* Sun Mar 16 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.13.8-1
8abba2
- updated to 1.13.8
8abba2
- removed some patches which were applied upstream
8abba2
8abba2
* Tue Feb 26 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.13.07-2
8abba2
- moved to advanced branched; rediffed/updated existing cmake patch
8abba2
  and fixed other compilation issues (#369841)
8abba2
8abba2
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.06.23-2
8abba2
- Autorebuild for GCC 4.3
8abba2
8abba2
* Wed Jan  2 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.23-1
8abba2
- use correct pkg-config script for 'xmlrpc-config abyss-server'
8abba2
  output (#355411)
8abba2
- updated to 1.06.23 (#355411)
8abba2
8abba2
* Tue Sep  4 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.18-1
8abba2
- updated to 1.06.18
8abba2
8abba2
* Thu Aug 16 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.17-1
8abba2
- updated to 1.06.17
8abba2
8abba2
* Sun Jul 22 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.16-1
8abba2
- updated to 1.06.16
8abba2
8abba2
* Thu Jun 14 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.14-1
8abba2
- updated to 1.06.14
8abba2
8abba2
* Sun Apr  1 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.11-2
8abba2
- rediffed cmake patch against current version
8abba2
- made the xmlrpc-c-config compatible to the upstream version
8abba2
- added compatibility symlinks for some header files (thx to Robert de
8abba2
  Vries for reporting these two issues)
8abba2
8abba2
* Sat Mar 17 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.11-1
8abba2
- updated to 1.06.11
8abba2
8abba2
* Sat Feb  3 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.09-1
8abba2
- updated to 1.06.09
8abba2
- removed -typo patch since applied upstream
8abba2
8abba2
* Mon Nov  6 2006 Jindrich Novy <jnovy@redhat.com> - 1.06.05-3
8abba2
- rebuild against the new curl
8abba2
8abba2
* Mon Oct  2 2006 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.05-2
8abba2
- updated cmake patch
8abba2
- strip installed libraries
8abba2
8abba2
* Wed Sep 20 2006 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.05-1
8abba2
- updated to 1.06.05
8abba2
- merged + updated patches
8abba2
8abba2
* Sat Sep 16 2006 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.04-1
8abba2
- updated to 1.06.04
8abba2
- patched the broken buildsystem
8abba2
- disabled libwww backend explicitely
8abba2
8abba2
* Sun Jun  4 2006 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.05-1
8abba2
- updated to 1.05
8abba2
- updated patches
8abba2
8abba2
* Sat Feb 18 2006 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.04-2
8abba2
- rebuilt for FC5
8abba2
8abba2
* Sun Dec 18 2005 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.04-1
8abba2
- added libxml2-devel and openssl-devel Requires: for the -devel
8abba2
  subpackage
8abba2
- ship doc/* instead of doc
8abba2
- initial Fedora Extras package (review 175840)
8abba2
8abba2
* Thu Dec 15 2005 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.04-0.1
8abba2
- disabled w3c-libwww because it does not exist anymore in FC5 and
8abba2
  seems to be unmaintained upstream
8abba2
- added missing libxml2-devel
8abba2
- cleaned up list of %%doc files
8abba2
- fixed gcc4.1 build issues
8abba2
- removed static libraries when there exists a corresponding dynamic one
8abba2
8abba2
* Tue Aug  2 2005 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.03.02-1
8abba2
- Initial build.