SHA256
8
0
forked from pool/tinyxml2

7 Commits

Author SHA256 Message Date
873124b561 Accepting request 1253473 from devel:libraries:c_c++
- Update to release 11

OBS-URL: https://build.opensuse.org/request/show/1253473
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/tinyxml2?expand=0&rev=11
2025-03-17 21:15:00 +00:00
OBS User unknown
1cb4fc2ba7 [info=95c20e8a6563945a4255e1eec60036541a1831beaaa4a4ad6c8433b0199c53f5]
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tinyxml2?expand=0&rev=22
2025-03-16 09:12:53 +00:00
3f4ee035cd Accepting request 1251452 from devel:libraries:c_c++
- Update to release 10.1.0

OBS-URL: https://build.opensuse.org/request/show/1251452
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/tinyxml2?expand=0&rev=10
2025-03-10 16:57:34 +00:00
OBS User unknown
a0c636f7c0 [info=063857e54b8326bba35124139c20a93624fdd5433b64e90f3d9eb2a57a0301ee]
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tinyxml2?expand=0&rev=21
2025-03-08 21:06:14 +00:00
df95c60481 Accepting request 1196024 from devel:libraries:c_c++
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1196024
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/tinyxml2?expand=0&rev=9
2024-08-27 17:38:14 +00:00
OBS User unknown
73b2c5e275 [info=e7d6f1849b5649d1fb903f11afcf88f4db5b3fb92e9261375c4155ad4c8d4eec]
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tinyxml2?expand=0&rev=20
2024-08-19 08:03:06 +00:00
5d52b48c39 [info=8c5148fbdf96e10538863c946b4996eb502dca2ba073a9da8c91f83fd6351b3e]
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tinyxml2?expand=0&rev=19
2024-08-19 07:56:50 +00:00
6 changed files with 42 additions and 9 deletions

BIN
10.0.0.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
11.0.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

4
_scmsync.obsinfo Normal file
View File

@@ -0,0 +1,4 @@
mtime: 1742116363
commit: 95c20e8a6563945a4255e1eec60036541a1831beaaa4a4ad6c8433b0199c53f5
url: https://src.opensuse.org/jengelh/tinyxml2
revision: master

3
build.specials.obscpio Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:42977db4de50e69859cebc9b967b47c06ecd05520534efb9a6fb34a14974949b
size 256

View File

@@ -1,3 +1,29 @@
-------------------------------------------------------------------
Sun Mar 16 09:10:55 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
- Update to release 11
* Bump version to address ABI incompatibility between 10.0
and 10.1 both producing the same SONAME.
-------------------------------------------------------------------
Sat Mar 8 20:25:46 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
- Update to release 10.1.0
* Build fixes, typo fixes.
* Fix CVE-2024-50615 which was a problem parsing character
encodings.
- Delete 0001-Make-DocPrinter-support-DynArrays-larger-than-2G.patch
0001-Make-DynArray-support-objects-larger-than-1-gigabyte.patch
(merged)
-------------------------------------------------------------------
Mon Aug 19 07:58:36 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
- Add
0001-Make-DocPrinter-support-DynArrays-larger-than-2G.patch
0001-Make-DynArray-support-objects-larger-than-1-gigabyte.patch
to fix crashes when working with XML documents larger than 1 GB.
-------------------------------------------------------------------
Tue May 7 12:48:07 UTC 2024 - Jan Engelhardt <jengelh@inai.de>

View File

@@ -1,7 +1,7 @@
#
# spec file for package tinyxml2
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,10 +16,10 @@
#
%define so_version 10
%define so_version 11
%define lib_package lib%{name}-%{so_version}
Name: tinyxml2
Version: 10.0.0
Version: 11.0.0
Release: 0
Summary: Basic XML parser in C++
License: Zlib
@@ -28,7 +28,7 @@ URL: https://github.com/leethomason/tinyxml2
Source: https://github.com/leethomason/tinyxml2/archive/%{version}.tar.gz
BuildRequires: cmake >= 3.15
BuildRequires: gcc-c++
BuildRequires: pkgconfig
BuildRequires: pkg-config
%description
TinyXML is a feature-bounded XML parser in C++ that can be integrated
@@ -73,8 +73,8 @@ developing applications that use libtinyxml2.
find %{buildroot} -type f -name "*.la" -delete -print
# /usr/lib/cmake is not owned by cmake; avoid any further conflicts
if [ ! -d "%{buildroot}/%{_libdir}/cmake/%{name}" ]; then
mkdir -p %{buildroot}/%{_libdir}/cmake/%{name}
mv %{buildroot}%{_prefix}/lib/cmake/tinyxml2 %{buildroot}/%{_libdir}/cmake/tinyxml2
mkdir -pv %{buildroot}/%{_libdir}/cmake/%{name}
mv -v %{buildroot}%{_prefix}/lib/cmake/tinyxml2 %{buildroot}/%{_libdir}/cmake/tinyxml2
fi
%check