guix-commits
[Top][All Lists]
Advanced

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

01/09: gnu: opensubdiv: Use a regular versioning pattern.


From: guix-commits
Subject: 01/09: gnu: opensubdiv: Use a regular versioning pattern.
Date: Fri, 18 Oct 2019 08:44:11 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit a31b745756669631285da474e838081965c7b892
Author: Marius Bakke <address@hidden>
Date:   Thu Oct 17 15:23:39 2019 +0200

    gnu: opensubdiv: Use a regular versioning pattern.
    
    * gnu/packages/graphics.scm (opensubdiv)[version]: Use dots instead of
    underscores between numbers.
    [source](uri): Adjust accordingly.
---
 gnu/packages/graphics.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
index c57d90f..e453d9f 100644
--- a/gnu/packages/graphics.scm
+++ b/gnu/packages/graphics.scm
@@ -1026,12 +1026,13 @@ requirements.")
 (define-public opensubdiv
   (package
     (name "opensubdiv")
-    (version "3_4_0")
+    (version "3.4.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
-                     (url 
"https://github.com/PixarAnimationStudios/OpenSubdiv";)
-                     (commit (string-append "v" version))))
+                    (url "https://github.com/PixarAnimationStudios/OpenSubdiv";)
+                    (commit (string-append "v" (string-join (string-split 
version #\.)
+                                                            "_")))))
               (file-name (git-file-name name version))
               (sha256
                (base32



reply via email to

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