forked from pool/pugixml
Dave Plater
73c6d8d804
- Update to version 1.9 * Specification changes + xml_document::load(const char*) (deprecated in 1.5) now has deprecated attribute; use xml_document::load_string instead + xml_node::select_single_node (deprecated in 1.5) now has deprecated attribute; use xml_node::select_node instead * New features + Add move semantics support for xml_document and improve move semantics support for other objects + CMake build now exports include directories + CMake build with BUILD_SHARED_LIBS=ON now uses dllexport attribute for MSVC * XPath improvements + Rework parser/evaluator to not rely on exceptional control flow; longjmp is no longer used when exceptions are disabled + Improve error messages for certain invalid expressions such as .[1] or (1 + Minor performance improvements * Compatibility improvements + Fix Texas Instruments compiler warnings + Fix compilation issues with limits.h for some versions of gcc + Fix compilation issues with Clang/C2 + Fix implicit fallthrough warnings in gcc 7 + Fix unknown attribute directive warnings in gcc 8 + Fix cray++ compiler errors + Fix unsigned integer overflow errors with -fsanitize=integer + Fix undefined behavior sanitizer issues in compact mode OBS-URL: https://build.opensuse.org/request/show/595366 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/pugixml?expand=0&rev=11
98 lines
2.9 KiB
RPMSpec
98 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package pugixml
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define _libname libpugixml1
|
|
Name: pugixml
|
|
Version: 1.9
|
|
Release: 0
|
|
Summary: Light-weight C++ XML Processing Library
|
|
License: MIT
|
|
Group: System/Libraries
|
|
Url: http://pugixml.org/
|
|
Source0: https://github.com/zeux/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
|
Patch1: pugixml-config.patch
|
|
BuildRequires: cmake
|
|
BuildRequires: fdupes
|
|
BuildRequires: gcc-c++
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
pugixml is a light-weight C++ XML processing library. It features:
|
|
|
|
- DOM-like interface with rich traversal/modification capabilities
|
|
- Extremely fast non-validating XML parser which constructs the DOM tree from
|
|
an XML file/buffer
|
|
- XPath 1.0 implementation for complex data-driven tree queries
|
|
- Full Unicode support with Unicode interface variants and automatic encoding
|
|
conversions
|
|
|
|
The library is extremely portable and easy to integrate and use.
|
|
|
|
%package devel
|
|
Summary: Development Files for pugixml
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{_libname} = %{version}
|
|
|
|
%description devel
|
|
This package provides development libraries and headers needed to build
|
|
software using pugixml.
|
|
|
|
%package -n %{_libname}
|
|
Summary: Light-weight C++ XML Processing Library
|
|
Group: System/Libraries
|
|
|
|
%description -n %{_libname}
|
|
pugixml is a light-weight C++ XML processing library. It features:
|
|
|
|
- DOM-like interface with rich traversal/modification capabilities
|
|
- Extremely fast non-validating XML parser which constructs the DOM tree from
|
|
an XML file/buffer
|
|
- XPath 1.0 implementation for complex data-driven tree queries
|
|
- Full Unicode support with Unicode interface variants and automatic encoding
|
|
conversions
|
|
|
|
The library is extremely portable and easy to integrate and use.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch1 -p1
|
|
|
|
%build
|
|
%cmake
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%cmake_install
|
|
|
|
%post -n %{_libname} -p /sbin/ldconfig
|
|
|
|
%postun -n %{_libname} -p /sbin/ldconfig
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%doc readme.txt docs/*
|
|
%{_includedir}/*.hpp
|
|
%{_libdir}/cmake/*
|
|
%{_libdir}/*.so
|
|
|
|
%files -n %{_libname}
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/libpugixml.so.*
|
|
|
|
%changelog
|