[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/09: gnu: mercurial: Update to 5.8.
From: |
guix-commits |
Subject: |
05/09: gnu: mercurial: Update to 5.8. |
Date: |
Fri, 14 May 2021 08:48:43 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit bdb6ff3ab13c94ae5b51171c4f1df87f8af398cc
Author: Xinglu Chen <public@yoctocell.xyz>
AuthorDate: Sat May 8 13:53:14 2021 +0200
gnu: mercurial: Update to 5.8.
* gnu/packages/version-control.scm (mercurial): Update to 5.8.
[build-system]: Switch from ‘python-build-system’ to ‘gnu-build-system’,
this
will install additional things like man pages.
[arguments]<#:make-flags>: Set PREFIX argument.
[native-inputs]: Add ‘python-docutils’ for generating man pages.
[inputs]: Add ‘python’.
[description]: Fix formatting.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/version-control.scm | 24 +++++++++++++++---------
1 file changed, 15 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 5e89de8..5438f63 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1607,18 +1607,21 @@ execution of any hook written in any language before
every commit.")
(define-public mercurial
(package
(name "mercurial")
- (version "5.6.1")
+ (version "5.8")
(source (origin
(method url-fetch)
(uri (string-append "https://www.mercurial-scm.org/"
"release/mercurial-" version ".tar.gz"))
(sha256
(base32
- "1bgz8f1a7lnmh6lzcvwg6q1yx6i7yibhwy06l4k55i04957jap75"))))
- (build-system python-build-system)
+ "17rhlmmkqz5ll3k68jfzpcifg3nndbcbc2nx7kw8xn3qcj7nlpgw"))))
+ (build-system gnu-build-system)
(arguments
- `(#:phases
+ `(#:make-flags
+ (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
+ #:phases
(modify-phases %standard-phases
+ (delete 'configure)
(add-after 'unpack 'patch-tests
(lambda _
(substitute* '("tests/test-extdiff.t"
@@ -1671,17 +1674,20 @@ execution of any hook written in any language before
every commit.")
;; The test suite takes a long time and produces
little
;; output by default. Prevent timeouts due to
silence.
"-v"))))))))
- ;; The following inputs are only needed to run the tests.
(native-inputs
- `(("python-nose" ,python-nose)
+ `(("python-docutils", python-docutils)
+ ;; The following inputs are only needed to run the tests.
+ ("python-nose" ,python-nose)
("unzip" ,unzip)
("which" ,which)))
+ (inputs
+ `(("python" ,python)))
(home-page "https://www.mercurial-scm.org/")
(synopsis "Decentralized version control system")
(description
- "Mercurial is a free, distributed source control management tool.
-It efficiently handles projects of any size
-and offers an easy and intuitive interface.")
+ "Mercurial is a free, distributed source control management tool. It
+efficiently handles projects of any size and offers an easy and intuitive
+interface.")
(license license:gpl2+)))
(define-public python-hg-evolve
- branch master updated (c37d81c -> e685ae6), guix-commits, 2021/05/14
- 01/09: gnu: guile@3.0.7: Remove pre-built .go files., guix-commits, 2021/05/14
- 02/09: gnu: libmediainfo: Update to 21.03., guix-commits, 2021/05/14
- 03/09: gnu: mediainfo: Update to 21.03., guix-commits, 2021/05/14
- 04/09: gnu: Add guile-raw-strings., guix-commits, 2021/05/14
- 06/09: gnu: Add xdg-desktop-portal-wlr., guix-commits, 2021/05/14
- 05/09: gnu: mercurial: Update to 5.8.,
guix-commits <=
- 09/09: gnu: Add seatd., guix-commits, 2021/05/14
- 07/09: gnu: rss-bridge: Update to 2020-11-10., guix-commits, 2021/05/14
- 08/09: import: go: Fix goproxy option argument's format., guix-commits, 2021/05/14