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