aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/base.scm
diff options
context:
space:
mode:
authorJan Nieuwenhuizen <janneke@gnu.org>2020-03-01 16:37:37 +0100
committerJan Nieuwenhuizen <janneke@gnu.org>2020-03-24 23:31:33 +0100
commit974c42a70a12f0c4ed298c2c8dab3f154338de58 (patch)
tree332f3ff956005c347d667d0dd4c8313483ce7258 /gnu/packages/base.scm
parent9b943db357ad63b7a3d063c658b1f557697ef0fa (diff)
downloadguix-974c42a70a12f0c4ed298c2c8dab3f154338de58.tar.gz
guix-974c42a70a12f0c4ed298c2c8dab3f154338de58.zip
gnu: glibc: Add clock patches for the Hurd.
* gnu/packages/patches/glibc-hurd-clock_t_centiseconds.patch: New file. * gnu/packages/patches/glibc-hurd-clock_gettime_monotonic.patch: New file. * gnu/local.mk (dist_patch_DATA): Update them. * gnu/packages/base.scm (glibc): Use them.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r--gnu/packages/base.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index c3298b3cec..1b7a834ac8 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -612,7 +612,9 @@ the store.")
"glibc-versioned-locpath.patch"
"glibc-allow-kernel-2.6.32.patch"
"glibc-reinstate-prlimit64-fallback.patch"
- "glibc-supported-locales.patch"))))
+ "glibc-supported-locales.patch"
+ "glibc-hurd-clock_t_centiseconds.patch"
+ "glibc-hurd-clock_gettime_monotonic.patch"))))
(build-system gnu-build-system)
;; Glibc's <limits.h> refers to <linux/limit.h>, for instance, so glibc
* gnu/packages/curl.scm (curl): Update to 8.4.0 from graft, preserving... [arguments]<#:phases>: ... check phase to skip failing test on Hurd. [replacement]: Remove. (curl/fixed): Remove variable. Change-Id: I9243d6b3a9084d9c24884e755f2f42ffafca4205 2023-10-25gnu: curlie: Update to 1.7.2.Imran Iqbal * gnu/packages/curl.scm (curlie): Update to 1.7.2. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Change-Id: Ic54bb5c1975fe8b954b4ab4b72ca5748c0924b7a 2023-10-11gnu: curl/fixed: Fix version.John Kehayias This is a followup to d6d706a58b8159748d3a46fa97cae18850487c8a. The version string is set separately to have the same length as curl for grafting and was forgotten in the previous commit. * gnu/packages/curl.scm (curl/fixed)[version]: Set to "8.4.0a" to match actual version and length needed for grafting. 2023-10-11gnu: curl/fixed: Update to 8.4.0 [security fixes].John Kehayias Fixes CVE-2023-38545 and CVE-2023-38546. See <https://curl.se/docs/CVE-2023-38545.html> and <https://curl.se/docs/CVE-2023-38546.html> for details. * gnu/packages/curl.scm (curl/fixed): Update to 8.4.0. 2023-10-10gnu: curl/fixed: Skip failing test on the Hurd.Janneke Nieuwenhuizen * gnu/packages/curl.scm (curl/fixed)[arguments]: When building on the Hurd, replace `check' phase to skip test 1474. 2023-10-05gnu: curl: Update to 8.3.0.Liliana Marie Prikler According to upstream, the current version has 19 security issues. See also <https://curl.se/docs/vuln-7.85.0.html>. * gnu/packages/curl.scm (curl/fixed): New variable. (curl): Use it as replacement. 2023-07-20gnu: curl: Skip failing test on the Hurd.Janneke Nieuwenhuizen * gnu/packages/curl.scm (curl)[arguments]: When building natively on the Hurd, add phase 'skip-tests'.