From ec1e69c0690fbbd9303d06a451c5ab3de98fca76 Mon Sep 17 00:00:00 2001 From: Schrijvers Luc Date: Mon, 5 Jan 2026 08:29:39 +0100 Subject: [PATCH] pugixml, bump to 1.15 (#13582) --- ...ixml-1.11.4.recipe => pugixml-1.15.recipe} | 23 ++++++++----------- 1 file changed, 9 insertions(+), 14 deletions(-) rename dev-libs/pugixml/{pugixml-1.11.4.recipe => pugixml-1.15.recipe} (84%) diff --git a/dev-libs/pugixml/pugixml-1.11.4.recipe b/dev-libs/pugixml/pugixml-1.15.recipe similarity index 84% rename from dev-libs/pugixml/pugixml-1.11.4.recipe rename to dev-libs/pugixml/pugixml-1.15.recipe index 832c0f2cb..739119a10 100644 --- a/dev-libs/pugixml/pugixml-1.11.4.recipe +++ b/dev-libs/pugixml/pugixml-1.15.recipe @@ -2,22 +2,21 @@ SUMMARY="An XML processing library" DESCRIPTION="Pugixml is a C++ XML processing library, which consists of a \ DOM-like interface with rich traversal/modification capabilities, an \ extremely fast XML parser which constructs the DOM tree from an XML \ -file/buffer, and an XPath 1.0 implementation for complex data-driven tree \ -queries. +file/buffer, and an XPath 1.0 implementation for complex data-driven tree queries. \ Full Unicode support is also available, with Unicode interface \ variants and conversions between different Unicode encodings (which \ happen automatically during parsing/saving)." HOMEPAGE="https://pugixml.org/" -COPYRIGHT="2006-2021 Arseny Kapoulkine" +COPYRIGHT="2006-2025 Arseny Kapoulkine" LICENSE="MIT" -REVISION="2" +REVISION="1" SOURCE_URI="https://github.com/zeux/pugixml/releases/download/v${portVersion}/pugixml-$portVersion.tar.gz" -CHECKSUM_SHA256="8ddf57b65fb860416979a3f0640c2ad45ddddbbafa82508ef0a0af3ce7061716" +CHECKSUM_SHA256="655ade57fa703fb421c2eb9a0113b5064bddb145d415dd1f88c79353d90d511a" ARCHITECTURES="all !x86_gcc2" SECONDARY_ARCHITECTURES="x86" -libVersion="1.11" +libVersion="1.15" libVersionCompat="$libVersion compat >= ${libVersion%.*}" PROVIDES=" @@ -51,9 +50,10 @@ defineDebugInfoPackage pugixml$secondaryArchSuffix \ BUILD() { - cmake -Bbuild -S. -DCMAKE_BUILD_TYPE=Release \ - -DBUILD_SHARED_LIBS=ON \ - $cmakeDirArgs + cmake -B build -S . -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + $cmakeDirArgs \ + -DBUILD_SHARED_LIBS=ON + make -C build $jobArgs } @@ -70,8 +70,3 @@ INSTALL() $developDir \ $libDir/cmake } - -TEST() -{ - make -C build test -}