2006-12-19 00:15:51 +01:00
|
|
|
#
|
2011-03-22 17:50:17 +01:00
|
|
|
# spec file for package expat
|
2006-12-19 00:15:51 +01:00
|
|
|
#
|
2021-04-06 09:58:20 +02:00
|
|
|
# Copyright (c) 2021 SUSE LLC
|
2006-12-19 00:15:51 +01:00
|
|
|
#
|
2008-11-02 15:39:25 +01:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2019-01-03 14:09:24 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2006-12-19 00:15:51 +01:00
|
|
|
#
|
|
|
|
|
2012-02-12 17:28:13 +01:00
|
|
|
|
2021-04-06 09:58:20 +02:00
|
|
|
%global unversion 2_3_0
|
2006-12-19 00:15:51 +01:00
|
|
|
Name: expat
|
2021-04-06 09:58:20 +02:00
|
|
|
Version: 2.3.0
|
2011-12-02 13:53:21 +01:00
|
|
|
Release: 0
|
2006-12-19 00:15:51 +01:00
|
|
|
Summary: XML Parser Toolkit
|
2012-02-12 17:28:13 +01:00
|
|
|
License: MIT
|
|
|
|
Group: Development/Libraries/C and C++
|
Accepting request 731221 from home:pmonrealgonzalez:branches:devel:libraries:c_c++
- Version update to 2.2.8
* Security fixes: (CVE-2019-15903, bsc#1149429)
- CVE-2019-15903 -- Fix heap overflow triggered by XML_GetCurrentLineNumber
(or XML_GetCurrentColumnNumber), and deny internal entities closing the doctype;
* Bug fixes:
- Fix cases where XML_StopParser did not have any effect
when called from inside of an end element handler
- xmlwf: Fix exit code for operation without "-d DIRECTORY";
previously, only "-d DIRECTORY" would give you a proper exit code:
Now both cases return exit code 2.
* Other changes:
- examples: Improve elements.c
- Autotools: Add argument --enable-xml-attr-info
- Autotools: Add arguments --with-getrandom --without-getrandom --with-sys-getrandom --without-sys-getrandom
- Autotools: Fix linking issues with "./configure LD=clang"
- Autotools: Fix "make run-xmltest" for out-of-source builds
- CMake: Pull all options from Expat <=2.2.7 into namespace
- CMake: Add argument -DEXPAT_ATTR_INFO=(ON|OFF), default OFF
- CMake: Add argument -DEXPAT_LARGE_SIZE=(ON|OFF), default OFF
- CMake: Add argument -DEXPAT_MIN_SIZE=(ON|OFF), default OFF
- CMake: Add arguments -DEXPAT_WITH_GETRANDOM=(ON|OFF|AUTO), default AUTO
- CMake: Add arguments -DEXPAT_WITH_SYS_GETRANDOM=(ON|OFF|AUTO), default AUTO
- CMake: Install expat_config.h to include directory
- CMake: Generate and install configuration files for future find_package(expat [..] CONFIG [..])
- CMake: Now produces a summary of applied configuration
- CMake: Require C++ compiler only when tests are enabled
- CMake: Fix compilation for 16bit character types, i.e. ex -DXML_UNICODE=ON (and ex -DXML_UNICODE_WCHAR_T=ON)
- CMake: Port "make run-xmltest" from GNU Autotools to CMake
- CMake: Integrate OSS-Fuzz fuzzers, option -DEXPAT_BUILD_FUZZERS=(ON|OFF), default OFF
- Removed patches fixed in the update:
OBS-URL: https://build.opensuse.org/request/show/731221
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/expat?expand=0&rev=79
2019-09-16 11:43:53 +02:00
|
|
|
URL: https://libexpat.github.io
|
2019-07-02 13:47:21 +02:00
|
|
|
Source0: https://github.com/libexpat/libexpat/releases/download/R_%{unversion}/expat-%{version}.tar.xz
|
2006-12-19 00:15:51 +01:00
|
|
|
Source1: %{name}faq.html
|
2010-01-08 17:30:06 +01:00
|
|
|
Source2: baselibs.conf
|
2019-07-02 13:47:21 +02:00
|
|
|
Source3: https://github.com/libexpat/libexpat/releases/download/R_%{unversion}/expat-%{version}.tar.xz.asc
|
2009-04-23 19:05:43 +02:00
|
|
|
BuildRequires: gcc-c++
|
2012-02-12 17:28:13 +01:00
|
|
|
BuildRequires: libtool
|
2016-07-14 17:19:01 +02:00
|
|
|
BuildRequires: pkgconfig
|
2006-12-19 00:15:51 +01:00
|
|
|
|
|
|
|
%description
|
2013-02-21 17:47:18 +01:00
|
|
|
Expat is an XML parser library written in C. It is a stream-oriented
|
|
|
|
parser in which an application registers handlers for things the
|
|
|
|
parser might find in the XML document (like start tags).
|
2006-12-19 00:15:51 +01:00
|
|
|
|
2007-04-27 16:43:19 +02:00
|
|
|
%package -n libexpat1
|
|
|
|
Summary: XML Parser Toolkit
|
2016-07-20 08:48:52 +02:00
|
|
|
Group: System/Libraries
|
2007-04-27 16:43:19 +02:00
|
|
|
|
|
|
|
%description -n libexpat1
|
2013-02-21 17:47:18 +01:00
|
|
|
Expat is an XML parser library written in C. It is a stream-oriented
|
|
|
|
parser in which an application registers handlers for things the
|
|
|
|
parser might find in the XML document (like start tags).
|
2007-04-27 16:43:19 +02:00
|
|
|
|
|
|
|
%package -n libexpat-devel
|
2017-11-16 11:56:06 +01:00
|
|
|
Summary: Development files for expat, an XML parser toolkit
|
2012-02-12 17:28:13 +01:00
|
|
|
Group: Development/Libraries/C and C++
|
2012-03-06 10:36:12 +01:00
|
|
|
Requires: glibc-devel
|
|
|
|
Requires: libexpat1 = %{version}
|
2007-04-27 16:43:19 +02:00
|
|
|
|
|
|
|
%description -n libexpat-devel
|
2013-02-21 17:47:18 +01:00
|
|
|
Expat is an XML parser library written in C. It is a stream-oriented
|
|
|
|
parser in which an application registers handlers for things the
|
|
|
|
parser might find in the XML document (like start tags).
|
|
|
|
|
|
|
|
This package contains the development headers for the library found
|
|
|
|
in libexpat.
|
2007-04-27 16:43:19 +02:00
|
|
|
|
2006-12-19 00:15:51 +01:00
|
|
|
%prep
|
2016-03-23 09:48:07 +01:00
|
|
|
%setup -q
|
|
|
|
|
2015-07-11 15:33:21 +02:00
|
|
|
cp %{SOURCE1} .
|
2007-06-08 00:13:26 +02:00
|
|
|
rm -f examples/*.dsp
|
2006-12-19 00:15:51 +01:00
|
|
|
|
|
|
|
%build
|
2016-07-14 17:19:01 +02:00
|
|
|
%configure \
|
2017-07-11 22:45:24 +02:00
|
|
|
--disable-silent-rules \
|
2017-10-26 15:40:29 +02:00
|
|
|
--docdir="%{_docdir}/%{name}" \
|
2019-07-04 14:15:08 +02:00
|
|
|
--disable-static
|
2017-10-07 17:19:36 +02:00
|
|
|
%if 0%{?do_profiling}
|
2021-04-06 09:58:20 +02:00
|
|
|
%make_build CFLAGS="%{optflags} %{cflags_profile_generate}"
|
|
|
|
%make_build CFLAGS="%{optflags} %{cflags_profile_generate}" LDFLAGS="%{optflags} %{cflags_profile_generate}" check
|
|
|
|
%make_build clean
|
|
|
|
%make_build CFLAGS="%{optflags} %{cflags_profile_feedback}"
|
2017-07-11 22:45:24 +02:00
|
|
|
%else
|
2021-04-06 09:58:20 +02:00
|
|
|
%make_build CFLAGS="%{optflags}"
|
2017-07-11 22:45:24 +02:00
|
|
|
%endif
|
2006-12-19 00:15:51 +01:00
|
|
|
|
|
|
|
%install
|
2016-07-14 17:19:01 +02:00
|
|
|
%make_install
|
|
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
Accepting request 731221 from home:pmonrealgonzalez:branches:devel:libraries:c_c++
- Version update to 2.2.8
* Security fixes: (CVE-2019-15903, bsc#1149429)
- CVE-2019-15903 -- Fix heap overflow triggered by XML_GetCurrentLineNumber
(or XML_GetCurrentColumnNumber), and deny internal entities closing the doctype;
* Bug fixes:
- Fix cases where XML_StopParser did not have any effect
when called from inside of an end element handler
- xmlwf: Fix exit code for operation without "-d DIRECTORY";
previously, only "-d DIRECTORY" would give you a proper exit code:
Now both cases return exit code 2.
* Other changes:
- examples: Improve elements.c
- Autotools: Add argument --enable-xml-attr-info
- Autotools: Add arguments --with-getrandom --without-getrandom --with-sys-getrandom --without-sys-getrandom
- Autotools: Fix linking issues with "./configure LD=clang"
- Autotools: Fix "make run-xmltest" for out-of-source builds
- CMake: Pull all options from Expat <=2.2.7 into namespace
- CMake: Add argument -DEXPAT_ATTR_INFO=(ON|OFF), default OFF
- CMake: Add argument -DEXPAT_LARGE_SIZE=(ON|OFF), default OFF
- CMake: Add argument -DEXPAT_MIN_SIZE=(ON|OFF), default OFF
- CMake: Add arguments -DEXPAT_WITH_GETRANDOM=(ON|OFF|AUTO), default AUTO
- CMake: Add arguments -DEXPAT_WITH_SYS_GETRANDOM=(ON|OFF|AUTO), default AUTO
- CMake: Install expat_config.h to include directory
- CMake: Generate and install configuration files for future find_package(expat [..] CONFIG [..])
- CMake: Now produces a summary of applied configuration
- CMake: Require C++ compiler only when tests are enabled
- CMake: Fix compilation for 16bit character types, i.e. ex -DXML_UNICODE=ON (and ex -DXML_UNICODE_WCHAR_T=ON)
- CMake: Port "make run-xmltest" from GNU Autotools to CMake
- CMake: Integrate OSS-Fuzz fuzzers, option -DEXPAT_BUILD_FUZZERS=(ON|OFF), default OFF
- Removed patches fixed in the update:
OBS-URL: https://build.opensuse.org/request/show/731221
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/expat?expand=0&rev=79
2019-09-16 11:43:53 +02:00
|
|
|
# Fix permissions error: spurious-executable-perm
|
|
|
|
chmod 0644 examples/elements.c
|
2006-12-19 00:15:51 +01:00
|
|
|
|
2009-04-02 17:23:53 +02:00
|
|
|
%check
|
2021-04-06 09:58:20 +02:00
|
|
|
%make_build check
|
2009-04-02 17:23:53 +02:00
|
|
|
|
|
|
|
%post -n libexpat1 -p /sbin/ldconfig
|
|
|
|
%postun -n libexpat1 -p /sbin/ldconfig
|
2007-06-08 00:13:26 +02:00
|
|
|
|
2006-12-19 00:15:51 +01:00
|
|
|
%files
|
2017-10-26 15:40:29 +02:00
|
|
|
%{_docdir}/%{name}
|
2019-07-04 14:15:08 +02:00
|
|
|
%license COPYING
|
2019-01-03 14:09:43 +01:00
|
|
|
%doc README.md expatfaq.html
|
2007-04-27 16:43:19 +02:00
|
|
|
%doc doc/expat.png doc/reference.html doc/style.css doc/valid-xhtml10.png
|
2017-10-26 15:40:29 +02:00
|
|
|
%doc examples/elements.c examples/outline.c examples/Makefile.am examples/Makefile.in
|
|
|
|
%doc AUTHORS Changes
|
2007-04-27 16:43:19 +02:00
|
|
|
%{_bindir}/xmlwf
|
|
|
|
|
|
|
|
%files -n libexpat1
|
2012-02-12 17:28:13 +01:00
|
|
|
%{_libdir}/libexpat.so.*
|
2007-04-27 16:43:19 +02:00
|
|
|
|
|
|
|
%files -n libexpat-devel
|
2017-10-26 15:40:29 +02:00
|
|
|
|
2006-12-19 00:15:51 +01:00
|
|
|
%{_includedir}/*
|
2007-04-27 16:43:19 +02:00
|
|
|
%{_libdir}/libexpat.so
|
2012-03-06 10:33:32 +01:00
|
|
|
%{_libdir}/pkgconfig/expat.pc
|
2021-04-13 11:38:16 +02:00
|
|
|
%dir %{_libdir}/cmake
|
2021-04-06 09:58:20 +02:00
|
|
|
%{_libdir}/cmake/expat-%{version}
|
2006-12-19 00:15:51 +01:00
|
|
|
|
2007-04-27 16:43:19 +02:00
|
|
|
%changelog
|