From 0ccea2ef8d3d6c69e60ce4f1181218ac9ff54bb7 Mon Sep 17 00:00:00 2001 From: Martin Owens Date: Mon, 5 May 2025 16:03:23 -0400 Subject: [PATCH] Use a specific version of capypdf Now that the extension is stable and merged, pin the version of the upstream library so it can continue to change without us needing to update Inkscape's CI. --- CMakeScripts/DefineDependsandFlags.cmake | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeScripts/DefineDependsandFlags.cmake b/CMakeScripts/DefineDependsandFlags.cmake index f8ef90c6b4..ecf868c430 100644 --- a/CMakeScripts/DefineDependsandFlags.cmake +++ b/CMakeScripts/DefineDependsandFlags.cmake @@ -182,8 +182,7 @@ elseif(WITH_CAPYPDF) set(CAPY_LIBDIR ${CAPY_PREFIX}/${CMAKE_INSTALL_LIBDIR}) include(ExternalProject) ExternalProject_Add(capypdf - #URL https://github.com/jpakkane/capypdf/archive/refs/tags/0.17.0.zip - URL https://github.com/jpakkane/capypdf/archive/refs/heads/master.zip + URL https://github.com/jpakkane/capypdf/archive/refs/tags/0.16.0.zip DOWNLOAD_EXTRACT_TIMESTAMP TRUE CONFIGURE_COMMAND meson setup . ../capypdf --libdir=${CAPY_LIBDIR} --prefix=${CAPY_PREFIX} BUILD_COMMAND meson compile -- GitLab