diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-02-05 14:02:26 +0100 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-02-21 21:52:39 +0100 |
| commit | 42804622a18190e8977d4d9f26be04151ada6708 (patch) | |
| tree | 2361a7ee9d2763d06ebe52c8597a4d0fc6d13037 /gnu | |
| parent | fd6b75b373077b08313de6768ac9b861b2836666 (diff) | |
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
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/cpp.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 857eee8ec84..50096c88ef6 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. |
