diff options
author | Dr. Arne Babenhauserheide <arne_bab@web.de> | 2025-04-24 18:46:45 +0200 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-04-26 19:55:45 +0800 |
commit | 76dc9622412fc70ad4e3d20a97c4fb0e7c1fa73d (patch) | |
tree | 7685be2405f2eb71c6638b34dfad2c472f6de46a | |
parent | 74bf9c189878b179e7739d29916ad5e9032bc704 (diff) |
gnu: mercurial: Update to 6.9.5.
* gnu/packages/version-control.scm (mercurial): update to 6.9.5.
[arguments]<#:phases>: disable test-revlog-mmapindex.t.
Change-Id: I48f26635b896fb6038b7f656a53395e79c0ee43a
Signed-off-by: Zheng Junjie <z572@z572.online>
-rw-r--r-- | gnu/packages/version-control.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index d9e7dd249f..1a5962b993 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -2624,7 +2624,7 @@ execution of any hook written in any language before every commit.") (define-public mercurial (package (name "mercurial") - (version "6.7.2") + (version "6.9.5") (source (origin (method url-fetch) (uri (string-append "https://www.mercurial-scm.org/" @@ -2632,7 +2632,7 @@ execution of any hook written in any language before every commit.") (patches (search-patches "mercurial-hg-extension-path.patch")) (sha256 (base32 - "01nqvp3cvidlz9z5vm05vpq81r6x10jwwfcaz0gw9anz0l60f8hw")))) + "1zb5rjqs5z0y900hml0v4wsmv59cdhi50a8kcbjxdp79z7p2mwnk")))) (build-system gnu-build-system) (arguments `(#:make-flags @@ -2657,6 +2657,11 @@ execution of any hook written in any language before every commit.") ;; PATH from before (that's why we are building it!)? "test-hghave.t" + ;; This test is missing a debug line + ;; mmapping $TESTTMP/a/.hg/store/00changelog.i (no-pure !) + ;; but the relevant output is correct. + "test-revlog-mmapindex.t" + ;; This test creates a shebang spanning multiple ;; lines which is difficult to substitute. It ;; only tests the test runner itself, which gets |