[PATCH] gnu: mercurial: Update to 5.8.

  • Done
  • quality assurance status badge
Details
2 participants
  • Efraim Flashner
  • Xinglu Chen
Owner
unassigned
Submitted by
Xinglu Chen
Severity
normal
X
X
Xinglu Chen wrote on 8 May 2021 13:53
(address . guix-patches@gnu.org)
d13a96c5866521918b944256a1a7539f56974292.1620474779.git.public@yoctocell.xyz
* 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.
---
gnu/packages/version-control.scm | 24 +++++++++++++++---------
1 file changed, 15 insertions(+), 9 deletions(-)

Toggle diff (60 lines)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 0cad83c4b0..b5c7800e12 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1638,18 +1638,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"
@@ -1702,17 +1705,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

base-commit: e5adaf6c2de917f33f90e24b551a8991e55b3eb6
--
2.31.1
E
E
Efraim Flashner wrote on 15 May 2021 21:49
(name . Xinglu Chen)(address . public@yoctocell.xyz)(address . 48283-done@debbugs.gnu.org)
YKAl5SdckDBlZgqz@3900XT
Pushed by Ludovic as bdb6ff3ab13c94ae5b51171c4f1df87f8af398cc. Thanks!

--
Efraim Flashner <efraim@flashner.co.il> ????? ?????
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
-----BEGIN PGP SIGNATURE-----

iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmCgJeUACgkQQarn3Mo9
g1Errw/+OGLQC0LvqaOr7ZRRg2II/ByRrHZBfkgIH+LzBaf7cc4exlN1pQyCFOC7
EnmzL3oG/8Q1g5VMqa0siqcDwKFKqeJl69M/q7kWS84jMVS9IFEnC/ZbKB60NN2N
M0Pl+I8MIcHg0s3JMXWE0Ay5W6hVhDbPWL90sA8UH1AS0fMZ4M8DB+n8BFL3lbBM
GECmUInElqlJ8AQa+acZ6fLNZP2ALYztXyRBhRTNO2G7qmw+eh7ClL8QC1zTvEr5
h7FUbVOlEBpvpPEHcDZ7yctRdZJF8OJ/C04fd5l1yJ1CGr8ntFTSgAoyuL+hw+l7
4emdP0zO0JDa0hQyr6WPzCUWM3C4luYZhG5C81Ps9sTb/gum/usFLmlqGvPs+t3+
KjCAPOYAwjU1BvwUFoACsyPwMgJhwA3VK2JsVS53gSgnSSf8/FntonWpyKVquO9m
0w+FkY57jc+rkxIozt5NMSD1U98nZHMolT5UQS6gNqr99cBDC2huqxRjSU6Xo5fJ
jhu1kkafcNkPCRxmuajcaBPK2IccCFV7IYhpOmf5ibqRzzI/RivqIOC5tpilulZN
I9OfEkv0tC9oM3Jdiape+bk+YnkO8E5Vw6uJpmMTINy3lBa8q8Tv7fuGXKXnJ/sD
uV0Ma4CChBR65Gkm/tfWPFPYZIx+9Q0/Sk++SvQm+amBDl4xQnk=
=BBMT
-----END PGP SIGNATURE-----


Closed
?