guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: gnu: tree: Update to 2.0.4.


From: guix-commits
Subject: 01/03: gnu: tree: Update to 2.0.4.
Date: Tue, 20 Sep 2022 07:57:20 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 00537ec17ddccfb41c0d9b27bf1bc4c47a8bd54e
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Sep 20 13:57:14 2022 +0300

    gnu: tree: Update to 2.0.4.
    
    * gnu/packages/admin.scm (tree): Update to 2.0.4.
    [arguments]: Add phase to fix the version string in the man page.
---
 gnu/packages/admin.scm | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 5fb621e027..be5f11e42b 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -2506,20 +2506,24 @@ characters can be replaced as well, as can UTF-8 
characters.")
 (define-public tree
   (package
     (name "tree")
-    (version "2.0.3")
+    (version "2.0.4")
     (source (origin
               (method url-fetch)
               (uri (string-append
                     "http://mama.indstate.edu/users/ice/tree/src/tree-";
                     version ".tgz"))
               (sha256
-               (base32 
"079vda37d5i3nfx12wx81z6r6bxynv2jww1z1hjziiwxbxxyf55s"))))
+               (base32 
"0x7s9wxvf83fw4qah16kapswl2277pybw3d514zrlms9g0cr5smh"))))
     (build-system gnu-build-system)
     (arguments
      (list
        #:phases
        #~(modify-phases %standard-phases
-           (delete 'configure))         ; No configure script.
+           (delete 'configure)          ; No configure script.
+           (add-after 'unpack 'fix-manpage-version
+             (lambda _
+               (substitute* "doc/tree.1"
+                 (("Tree 2\\.0\\.0") (string-append "Tree " #$version))))))
        #:tests? #f                      ; No check target.
        #:make-flags
        #~(list (string-append "PREFIX=" #$output)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]