guix-commits
[Top][All Lists]
Advanced

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

01/02: guix: utils: Add version-major.


From: Christopher Baines
Subject: 01/02: guix: utils: Add version-major.
Date: Mon, 11 Dec 2017 14:13:56 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit 47dc9a0dae35960ec6239152df748bb062c640b2
Author: nee <address@hidden>
Date:   Mon Oct 9 23:02:05 2017 +0200

    guix: utils: Add version-major.
    
    * guix/utils.scm (version-major): New procedure.
---
 guix/utils.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/guix/utils.scm b/guix/utils.scm
index fed31f4..92e45de 100644
--- a/guix/utils.scm
+++ b/guix/utils.scm
@@ -82,6 +82,7 @@
             version>=?
             version-prefix
             version-major+minor
+            version-major
             guile-version>?
             string-replace-substring
             arguments-from-environment-variable
@@ -497,6 +498,10 @@ For example, (version-prefix \"2.1.47.4.23\" 3) returns 
\"2.1.47\""
 minor version numbers from version-string."
   (version-prefix version-string 2))
 
+(define (version-major version-string)
+  "Return the major version number as string from the version-string."
+  (version-prefix version-string 1))
+
 (define (version>? a b)
   "Return #t when A denotes a version strictly newer than B."
   (eq? '> (version-compare a b)))



reply via email to

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