xmlrpc-c/xmlrpc-c.spec

141 lines
3.8 KiB
RPMSpec
Raw Normal View History

2019-11-06 19:56:24 +08:00
Name: xmlrpc-c
2024-01-09 10:58:08 +00:00
Version: 1.59.02
2024-09-10 08:12:20 +00:00
Release: 2
2019-11-06 19:56:24 +08:00
Summary: Library implementing XML-based Remote Procedure Calls
License: BSD and MIT
URL: http://xmlrpc-c.sourceforge.net/
2022-11-15 03:06:39 +00:00
Source0: https://sourceforge.net/projects/xmlrpc-c/files/Xmlrpc-c%20Super%20Stable/%version/%name-%version.tgz
2019-11-06 19:56:24 +08:00
2021-12-22 14:17:17 +08:00
Patch0003: backport-0001-add-meson-buildsystem-definitions.patch
Patch0004: backport-0002-chmod-x-xml-rpc-api2txt.patch
2024-09-10 08:12:20 +00:00
Patch0005: backport-CVE-2024-45490-lib-Reject-negative-len-for-XML_ParseBuffer.patch
Patch0006: backport-CVE-2024-45491-lib-Detect-integer-overflow-in-dtdCopy.patch
2019-11-06 19:56:24 +08:00
BuildRequires: git-core meson >= 0.36.0 gcc gcc-c++ ncurses-devel
BuildRequires: libcurl-devel readline-devel pkgconfig(openssl)
Provides: xmlrpc-c-c++ = %{version}-%{release} xmlrpc-c-c++%{?_isa} = %{version}-%{release}
2020-01-14 23:33:02 +08:00
Obsoletes: xmlrpc-c-c++ < %{version}-%{release}
2019-11-06 19:56:24 +08:00
Provides: xmlrpc-c-client = %{version}-%{release} xmlrpc-c-client%{?_isa} = %{version}-%{release}
2020-01-14 23:33:02 +08:00
Obsoletes: xmlrpc-c-client < %{version}-%{release}
2019-11-06 19:56:24 +08:00
Provides: xmlrpc-c-client++ = %{version}-%{release} xmlrpc-c-client++%{?_isa} = %{version}-%{release}
2020-01-14 23:33:02 +08:00
Obsoletes: xmlrpc-c-client++ < %{version}-%{release}
2019-11-06 19:56:24 +08:00
Provides: xmlrpc-c-apps = %{version}-%{release} xmlrpc-c-apps%{?_isa} = %{version}-%{release}
2020-01-14 23:33:02 +08:00
Obsoletes: xmlrpc-c-apps < %{version}-%{release}
2019-11-06 19:56:24 +08:00
Provides: bundled(expat)
%description
XML-RPC is a quick-and-easy way to make procedure calls
over the Internet. It converts the procedure call into
an XML document, sends it to a remote server using HTTP,
and gets back the response as XML.
%package devel
Summary: Header files for xmlrpc-c
Requires: %{name} = %{version}-%{release}
%description devel
Header files for xmlrpc-c.
%package_help
%prep
2022-11-15 03:06:39 +00:00
%autosetup -n %{name}-%{version} -p1
2019-11-06 19:56:24 +08:00
%build
2020-07-23 17:18:07 +08:00
%meson
2019-11-06 19:56:24 +08:00
%meson_build
%install
%meson_install
%ldconfig_scriptlets
%files
%defattr(-,root,root)
%license doc/COPYING lib/abyss/license.txt
%{_bindir}/xml*
%{_libdir}/*.so.*
%exclude %{_bindir}/xmlrpc-c-config
%files devel
%defattr(-,root,root)
%{_bindir}/xmlrpc-c-config
%{_libdir}/libxmlrpc*.so
%{_libdir}/pkgconfig/xmlrpc*.pc
%{_includedir}/*.h
%{_includedir}/xmlrpc-c/
%files help
%defattr(-,root,root)
%doc doc/CREDITS doc/HISTORY doc/TODO README
%doc tools/xmlrpc_transport/xmlrpc_transport.html
%{_mandir}/man1/*
%changelog
2024-09-10 08:12:20 +00:00
* Tue Sep 10 2024 zhouyihang <zhouyihang3@h-partners.com> - 1.59.02-2
- Type:CVE
- CVE:CVE-2024-45490 CVE-2024-45491
- SUG:NA
- DESC:fix CVE-2024-45490 CVE-2024-45491
2024-01-09 10:58:08 +00:00
* Tue Jan 09 2024 zhouyihang <zhouyihang3@h-partners.com> - 1.59.02-1
- Type:requirement
- CVE:NA
- SUG:NA
- DESC: update xmlrpc-c to 1.59.02
2022-11-15 03:06:39 +00:00
* Tue Nov 15 2022 zhouyihang <zhouyihang3@h-partners.com> - 1.54.06-1
- Type:requirement
- Id:NA
- SUG:NA
- DESC: update xmlrpc-c to 1.54.06
2022-06-20 15:42:11 +08:00
* Mon Jun 20 2022 xinghe <xinghe2@h-partners.com> - 1.51.08-2
- Type:requirement
- Id:NA
- SUG:NA
- DESC: fix meson build
2021-12-22 14:17:17 +08:00
* Wed Dec 22 2021 gaihuiying <gaihuiying1@huawei.com> - 1.51.08-1
- Type:requirement
- Id:NA
- SUG:NA
- DESC: update to 1.51.08
2022-06-15 15:26:30 +08:00
* Thu Jul 23 2020 openEuler Buildteam <buildteam@openeuler.org> - 1.51.06-1
2020-07-23 17:18:07 +08:00
- Type:NA
- Id:NA
- SUG:NA
2020-07-24 09:29:06 +08:00
- DESC: update to 1.51.06
2020-07-23 17:18:07 +08:00
2020-03-17 22:10:04 +08:00
* Tue Mar 17 2020 openEuler Buildteam <buildteam@openeuler.org> - 1.51.03-4
- Type:bugfix
- Id:NA
- SUG:NA
- DESC: chmod xml-rpc-api2txt
2020-01-14 23:33:02 +08:00
* Tue Jan 14 2020 openEuler Buildteam <buildteam@openeuler.org> - 1.51.03-3
- Type:bugfix
- Id:NA
- SUG:NA
- DESC:delete the isa in obsoletes
2020-01-10 20:09:07 +08:00
* Fri Jan 10 2020 openEuler Buildteam <buildteam@openeuler.org> - 1.51.03-2
- Type:NA
- ID:NA
- SUG:NA
- DESC:optimization the spec
2019-12-31 17:51:11 +08:00
* Tue Dec 31 2019 openEuler Buildteam <buildteam@openeuler.org> - 1.51.03-1
- Type:NA
- ID:NA
- SUG:NA
- DESC:update to 1.51.03-1
2019-11-06 19:56:24 +08:00
* Sat Oct 12 2019 openEuler Buildteam <buildteam@openeuler.org> - 1.51.0-7
- Package init