guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: imagemagick/fixed: Retain version length for


From: guix-commits
Subject: branch master updated: gnu: imagemagick/fixed: Retain version length for successful grafting.
Date: Tue, 09 Mar 2021 19:36:49 -0500

This is an automated email from the git hooks/post-receive script.

lle_bout pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 852ba91  gnu: imagemagick/fixed: Retain version length for successful 
grafting.
852ba91 is described below

commit 852ba914a43da0977d4f53b53da7039cdd6706b2
Author: Léo Le Bouter <lle-bout@zaclys.net>
AuthorDate: Wed Mar 10 01:34:11 2021 +0100

    gnu: imagemagick/fixed: Retain version length for successful grafting.
    
    * gnu/packages/imagemagick.scm (imagemagick/fixed):
    [version]: Append 'g'.
    [source]: Hardcode version.
---
 gnu/packages/imagemagick.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/imagemagick.scm b/gnu/packages/imagemagick.scm
index d7abf6e..1a5ddb6 100644
--- a/gnu/packages/imagemagick.scm
+++ b/gnu/packages/imagemagick.scm
@@ -130,11 +130,14 @@ text, lines, polygons, ellipses and Bézier curves.")
 (define-public imagemagick/fixed
   (package
     (inherit imagemagick)
-    (version "6.9.12-2")
+    (version "6.9.12-2g") ;; 'g' for 'guix', appended character to retain
+    ;; version length so grafting works properly.
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://imagemagick/ImageMagick-"
-                                  version ".tar.xz"))
+                                  "6.9.12-2" ;; Hardcode version here since we
+                                  ;; had to change it up there.
+                                  ".tar.xz"))
               (sha256
                (base32
                 "17da5zihz58qm41y61sbvw626m5xfwr2nzszlikrvxyq1j1q7asa"))))))



reply via email to

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