Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: libxml++-devel | Distribution: SUSE Linux Enterprise 15 |
Version: 5.0.3 | Vendor: SUSE LLC <https://www.suse.com/> |
Release: 150600.1.2 | Build date: Sat Mar 9 01:43:24 2024 |
Group: Development/Libraries/C and C++ | Build host: s390zp38 |
Size: 216107 | Source RPM: libxml++-5.0.3-150600.1.2.src.rpm |
Packager: https://www.suse.com/ | |
Url: https://libxmlplusplus.github.io/libxmlplusplus | |
Summary: C++ Interface for XML Files -- Development Files |
This package contains all necessary include files and libraries needed to develop applications that require these.
LGPL-2.1-or-later
* Wed Mar 22 2023 bjorn.lie@gmail.com - Update to version 5.0.3: + exception: Fix linking on MinGW. + headers: Drop LIBXMLPP_API from 'friend' members. + Meson build: - Detect if we build from a git subtree. - Don't copy files with configure_file(). - Fix the evaluation of is_git_build on Windows. * Wed Feb 22 2023 jengelh@inai.de - Drop hard glibmm2-devel Requires in devel sub-package. - Move documentation to -devel subpackage. * Sun Sep 11 2022 bjorn.lie@gmail.com - Update to version 5.0.2: + Document, Node: Recognize HTML documents + Parsers: Avoid std::getline for istream inputs + Many small updates, suggested by the clang-tidy program + Build: - Meson build: . When mm-common >= 1.0.4 is used, Perl is not required . Specify 'check' option in run_command(). Will be necessary with future versions of Meson. . Avoid configuration warnings . Enable static building on windows . Require meson >= 0.60.0 . libxml2 can be built as a subproject - Win32: Don't include afxres.h in resources - Support Visual Studio 2022 - docs/manual: Sort example file lists. See glgo/GNOME/gtkmm-documentation/!15 - NMake Makefiles: . Remove dependency on msvc_recommended_pragmas.h . Make things more configurable + Documentation: - docs/manual: Upgrade from DocBook 4.1 to DocBook 5.0 - MSVC_NMake/README: Document dependency placement - Drop erroneous executable bit from docs and headerfiles. - Use ldconfig_scriptlets macro for post(un) handling. * Fri Jun 04 2021 dimstar@opensuse.org - Update to version 5.0.1: + Build: - libxml++config.h.*: Don't dllimport on MinGW. - Meson build: . Make it possible to use libxml++ as a subproject. . No implicit_include_directories. - MSVC build: Export classes selectively. * Mon Dec 28 2020 bjorn.lie@gmail.com - Update to version 5.0.0: + Build: - Add NMake Makefiles. Remove Visual Studio 2010 projects. - Use __declspec(dllexport) when building on Visual Studio. Stop using gendef.exe. - Add support for building with Meson. - Replace pkgconfig(glibmm-2.4) with pkgconfig(glibmm-2.68) BuildRequires following upstream changes. - Add define so_ver 5_0-1 and define base_ver 5.0, make future updates easier. - Changes from version 4.0.0: + Build: Use glibmm-2.68 instead of glibmm-2.64. * Sun Dec 20 2020 bjorn.lie@gmail.com - Update to version 3.2.2: + Build: - Add NMake Makefiles. Remove Visual Studio 2010 projects. - Add support for building with Meson. - Use __declspec(dllexport) when building on Visual Studio. Stop using gendef.exe. - Add meson BuildRequires and macros. - Replace gcc-c++ with generic c++_compiler BuildRequires. - Update URL to new home. * Sat Jan 11 2020 bjorn.lie@gmail.com - Update to version 3.2.0: + Document, DomParser: Improve XInclude processing: - Document: Add process_xinclude() overload that takes a fixup_base_uris parameter. - DomParser: Add set/get_xinclude_options() and add optional XInclude processing to the parse methods (bgo#781566). + Add explicit keyword to some single-parameter constructors. + tests: Don't require C++17. + Build: Fix srcdir != buildir build. - Modernize spec. * Wed Feb 28 2018 dimstar@opensuse.org - Modernize spec-file by calling spec-cleaner * Mon Nov 14 2016 dimstar@opensuse.org - Update to version 3.0.1 (jsc#SLE-8163, FATE#324347): + Element::remove_attribute(): Delete the C++ wrapper (bgo#768404). * Tue Feb 02 2016 dimstar@opensuse.org - Update to version 3.0.0: + This release is identical to the unstable 2.91.3, except for the so name, which has now been bumped (bgo#760574). - Rename libxml++-3_0-0 subpackage to libxml++-3_0-1, following upstreams soname bump (also in baselibs.conf). * Tue Jan 12 2016 zaitor@opensuse.org - Update to version 2.91.3: + Element: Remove a redundant nullptr check (bgo#757515). + Use scoped enums (enum class) instead of unscoped enums. + Document: Test for nullptr in a constructor. + DomParser: Make operator bool() explicit. + The ABI and API are not identical to libxml++ 2.91.2. * Fri Nov 27 2015 zaitor@opensuse.org - Update to version 2.91.2: + Remove the preprocessor constant LIBXMLCPP_EXCEPTIONS_ENABLED. It was always 1. + Add a config-time test for support of std::exception_ptr. Don't try to use std::exception_ptr on a system where it does not exist. This includes re-implementing the wrapped_exception class and the raise() and clone() methods in xmlpp::exception and its subclasses (bgo##757042). + The ABI is not identical to that of libxml++ 2.91.1. There may be more changes in ABI and/or API before the first stable libxml++-3.0 release. - Changes from version 2.91.1: + Renamed ABI from libxml++-2.6 to libxml++-3.0. + This requires applications to change their pkg-config check to libxml++-3.0 when they wish to use libxml++ 2.9x or 3.x instead of libxml++2.x. (bgo#754673). + There may be more changes in ABI and/or API before the first stable libxml++-3.0 release. + Node: Add const_NodeList and use it in a const version of get_children(). + Add const_NodeSet and use it in a const version of find(). + Replace xmlpp::NodeSet by xmlpp::Node::NodeSet. + Element: Add const_Attribute_list and use it in a const version of get_attributes() (bgo#338907). + Document: Add a non-const version of get_root_node(). Let the const version return a const pointer (bgo#632522). + Element: Add a non-const version of get_attribute(). Let the const version return a const pointer (bgo#632524). + Replace the deprecated std::auto_ptr by std::unique_ptr (bgo#753123). + DomParser: The default behaviour is to throw both parse errors and validity errors in an exception instead of printing some messages on stderr. + Parser: Some protected data has become private. + Several classes: Some virtual methods have become non-virtual, and some non-virtual methods have become virtual. + Remove class xmlpp::wrapped_exception and the deprecated classes Schema and SchemaValidator. + xmlpp::exception and its subclasses: Remove Raise() and Clone(). + SaxParser: Start each parsing with a new Document for entity resolution. + Move all Node::add_child*() methods to Element and rename them to add_child_element*(). + Attribute: Move set_value() to AttributeNode. + Use std::string instead of Glib::ustring for filenames. + Node: Replace remove_child() by remove_node(). + Move some code from DtdValidator to Dtd. + Element: Rename set/get_child_text() to set/get_first_child_text(). + Rename subpackages following upstreams soname bump. + Bump version in baselibs.conf. * Wed Sep 30 2015 zaitor@opensuse.org - Update to version 2.40.0: + Build improvements. * Sat Sep 05 2015 zaitor@opensuse.org - Update to version 2.39.2: + SaxParser: Fix “double free or corruption” if a std::exception is thrown by a handler method. + Replace some (deprecated in C++11) std::auto_ptr by std::unique_ptr. There are still some auto_ptrs in header files bug replacing them would break ABI (bgo#753123). * Sat Jul 25 2015 zaitor@opensuse.org - Update to version 2.39.1: + Use (and require) C++11. * Thu Jul 23 2015 zaitor@opensuse.org - Run spec-cleaner, make spec more modern. - Replace glibmm2-devel and libxml2-devel for their pkgconfig() equivalents. * Mon Jun 08 2015 zaitor@opensuse.org - Update to version 2.38.1: + Fix the build with C++11 compilers, such as MS Visual C++ 2013. Implicit conversions from streams to bool are no longer allowed. + Build: - Disable deprecated API in dependencies if - -enable-warnings=fatal. - Require libxml2 2.7.7 or later. * Fri Feb 27 2015 zaitor@opensuse.org - Update to version 2.38.0: + No changes from last relase, stable version bump only. * Wed Jan 28 2015 zaitor@opensuse.org - Update to version 2.37.2: + Add version information to libxml++config.h. + Document: Avoid possible null pointer dereference (bgo#732604). + Element::set_namespace_declaration(): Update the node's associated namespace. Add dom_update_namespace example program (bgo#737682). + Add Node::add_child_with_new_ns() (bgo#737682). + Schema: Don't use null pointers in get_name(), get_target_namespace() and get_version(). + Add XsdSchema and XsdValidator. Deprecate Schema and SchemaValidator. + Add RelaxNGSchema and RelaxNGValidator (bgo#737712). + Parser: Add input operator>>(std::istream& in, Parser& parser) (bgo#329281). + Documentation: Use doxygen-extra.css from the mm-common package. Requires mm-common 0.9.7 when configured to use maintainer-mode. + Build: Avoid infinite loop with Doxygen 1.8.6.
/usr/include/libxml++-5.0 /usr/include/libxml++-5.0/libxml++ /usr/include/libxml++-5.0/libxml++/attribute.h /usr/include/libxml++-5.0/libxml++/attributedeclaration.h /usr/include/libxml++-5.0/libxml++/attributenode.h /usr/include/libxml++-5.0/libxml++/document.h /usr/include/libxml++-5.0/libxml++/dtd.h /usr/include/libxml++-5.0/libxml++/exceptions /usr/include/libxml++-5.0/libxml++/exceptions/exception.h /usr/include/libxml++-5.0/libxml++/exceptions/internal_error.h /usr/include/libxml++-5.0/libxml++/exceptions/parse_error.h /usr/include/libxml++-5.0/libxml++/exceptions/validity_error.h /usr/include/libxml++-5.0/libxml++/exceptions/wrapped_exception.h /usr/include/libxml++-5.0/libxml++/io /usr/include/libxml++-5.0/libxml++/io/istreamparserinputbuffer.h /usr/include/libxml++-5.0/libxml++/io/ostreamoutputbuffer.h /usr/include/libxml++-5.0/libxml++/io/outputbuffer.h /usr/include/libxml++-5.0/libxml++/io/parserinputbuffer.h /usr/include/libxml++-5.0/libxml++/keepblanks.h /usr/include/libxml++-5.0/libxml++/libxml++.h /usr/include/libxml++-5.0/libxml++/nodes /usr/include/libxml++-5.0/libxml++/nodes/cdatanode.h /usr/include/libxml++-5.0/libxml++/nodes/commentnode.h /usr/include/libxml++-5.0/libxml++/nodes/contentnode.h /usr/include/libxml++-5.0/libxml++/nodes/element.h /usr/include/libxml++-5.0/libxml++/nodes/entitydeclaration.h /usr/include/libxml++-5.0/libxml++/nodes/entityreference.h /usr/include/libxml++-5.0/libxml++/nodes/node.h /usr/include/libxml++-5.0/libxml++/nodes/processinginstructionnode.h /usr/include/libxml++-5.0/libxml++/nodes/textnode.h /usr/include/libxml++-5.0/libxml++/nodes/xincludeend.h /usr/include/libxml++-5.0/libxml++/nodes/xincludestart.h /usr/include/libxml++-5.0/libxml++/noncopyable.h /usr/include/libxml++-5.0/libxml++/parsers /usr/include/libxml++-5.0/libxml++/parsers/domparser.h /usr/include/libxml++-5.0/libxml++/parsers/parser.h /usr/include/libxml++-5.0/libxml++/parsers/saxparser.h /usr/include/libxml++-5.0/libxml++/parsers/textreader.h /usr/include/libxml++-5.0/libxml++/relaxngschema.h /usr/include/libxml++-5.0/libxml++/schemabase.h /usr/include/libxml++-5.0/libxml++/ustring.h /usr/include/libxml++-5.0/libxml++/validators /usr/include/libxml++-5.0/libxml++/validators/dtdvalidator.h /usr/include/libxml++-5.0/libxml++/validators/relaxngvalidator.h /usr/include/libxml++-5.0/libxml++/validators/schemavalidatorbase.h /usr/include/libxml++-5.0/libxml++/validators/validator.h /usr/include/libxml++-5.0/libxml++/validators/xsdvalidator.h /usr/include/libxml++-5.0/libxml++/xsdschema.h /usr/lib64/libxml++-5.0 /usr/lib64/libxml++-5.0.so /usr/lib64/libxml++-5.0/include /usr/lib64/libxml++-5.0/include/libxml++config.h /usr/lib64/pkgconfig/libxml++-5.0.pc /usr/share/doc/packages/libxml++-devel /usr/share/doc/packages/libxml++-devel/AUTHORS /usr/share/doc/packages/libxml++-devel/ChangeLog /usr/share/doc/packages/libxml++-devel/NEWS /usr/share/doc/packages/libxml++-devel/README.md
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Jul 9 20:22:04 2024