guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 42804622a18190e8977d4d9f26be04151ada6708
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Thu Feb 5 14:02:26 2026 +0100

    gnu: poco: Update to 1.15.0.
    
    * gnu/packages/cpp.scm (poco): Update to 1.15.0.
    [arguments]<#:phases>{check-setenv}: New phase.
    
    Change-Id: I157edbddc881941e13738dca18350c5ed690ba5f
---
 gnu/packages/cpp.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 857eee8ec8..50096c88ef 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -2590,7 +2590,7 @@ of C++14 components that complements @code{std} and 
Boost.")
 (define-public poco
   (package
     (name "poco")
-    (version "1.13.3")
+    (version "1.15.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -2599,7 +2599,7 @@ of C++14 components that complements @code{std} and 
Boost.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1b8w3s6j020r356s6j6ijpnvzjdby4qwwndhzhfjc3rm727m085g"))))
+                "0fzf46y7rga233nsg7d1jc6xa83i6qajxil6rak1z2z2bmhk5xa8"))))
     (build-system cmake-build-system)
     (arguments
      (list
@@ -2607,6 +2607,10 @@ of C++14 components that complements @code{std} and 
Boost.")
                                 "-DENABLE_NETSSL=ON")
       #:phases
       #~(modify-phases %standard-phases
+          (add-before 'check 'check-setenv
+            (lambda _
+              (setenv "HOME" "/tmp")
+              (setenv "TMPDIR" "/tmp")))
           (add-after 'unpack 'disable-problematic-tests
             (lambda _
               (substitute* (list "Foundation/CMakeLists.txt" ; XXX: fails.

Reply via email to