guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: ImageMagick: Fix version number in build con


From: guix-commits
Subject: branch master updated: gnu: ImageMagick: Fix version number in build configuration of grafted replacement.
Date: Fri, 12 Mar 2021 14:42:36 -0500

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

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new bb5d84a  gnu: ImageMagick: Fix version number in build configuration 
of grafted replacement.
bb5d84a is described below

commit bb5d84a0489a629d30bc2e978807caf20f46e329
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Fri Mar 12 14:39:36 2021 -0500

    gnu: ImageMagick: Fix version number in build configuration of grafted 
replacement.
    
    Fixes <https://bugs.gnu.org/47110>.
    
    This is a followup to commits 852ba914a43da0977d4f53b53da7039cdd6706b2 and
    82e887ba48c2ba91b17aa9b6b17501e3e0ef4aef.
    
    * gnu/packages/imagemagick.scm (imagemagick/fixed)[name, arguments]: New
    fields.
---
 gnu/packages/imagemagick.scm | 43 +++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 41 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/imagemagick.scm b/gnu/packages/imagemagick.scm
index 1a5ddb6..8f6eddc 100644
--- a/gnu/packages/imagemagick.scm
+++ b/gnu/packages/imagemagick.scm
@@ -51,6 +51,7 @@
     ;; maintained. Don't update to 7 until we've made sure that the ImageMagick
     ;; users are ready for the 7-series API.
     (version "6.9.11-48")
+    (replacement imagemagick/fixed)
     (source (origin
              (method url-fetch)
              (uri (string-append "mirror://imagemagick/ImageMagick-"
@@ -58,7 +59,6 @@
              (sha256
               (base32
                "0m8nkmywkqwyrr01q7aiakj6mi4rb2psjgzv8n0x82x3s1rpfyql"))))
-    (replacement imagemagick/fixed)
     (build-system gnu-build-system)
     (arguments
      `(#:configure-flags '("--with-frozenpaths" "--without-gcc-arch"
@@ -130,6 +130,7 @@ text, lines, polygons, ellipses and Bézier curves.")
 (define-public imagemagick/fixed
   (package
     (inherit imagemagick)
+    (name "imagemagick")
     (version "6.9.12-2g") ;; 'g' for 'guix', appended character to retain
     ;; version length so grafting works properly.
     (source (origin
@@ -140,7 +141,45 @@ text, lines, polygons, ellipses and Bézier curves.")
                                   ".tar.xz"))
               (sha256
                (base32
-                "17da5zihz58qm41y61sbvw626m5xfwr2nzszlikrvxyq1j1q7asa"))))))
+                "17da5zihz58qm41y61sbvw626m5xfwr2nzszlikrvxyq1j1q7asa"))))
+    (arguments
+     `(#:configure-flags '("--with-frozenpaths" "--without-gcc-arch"
+
+                           ;; Do not embed the build date in binaries.
+                           "--enable-reproducible-build")
+
+       ;; FIXME: The test suite succeeded before version 6.9.6-2.
+       ;; Try enabling it again with newer releases.
+       #:tests? #f
+       #:phases (modify-phases %standard-phases
+                  (add-before
+                   'build 'pre-build
+                   (lambda* (#:key outputs #:allow-other-keys)
+                     (substitute* "Makefile"
+                       ;; Clear the `LIBRARY_PATH' setting, which otherwise
+                       ;; interferes with our own use.
+                       (("^LIBRARY_PATH[[:blank:]]*=.*$")
+                        "")
+
+                       ;; Since the Makefile overrides $docdir, modify it to
+                       ;; refer to what we want.
+                       (("^DOCUMENTATION_PATH[[:blank:]]*=.*$")
+                        (let ((doc (assoc-ref outputs "doc")))
+                          (string-append "DOCUMENTATION_PATH = "
+                                         doc "/share/doc/"
+                                         ,name "-" ,version "\n"))))
+                     #t))
+                  (add-before
+                   'configure 'strip-configure-xml
+                   (lambda _
+                     (substitute* "config/configure.xml.in"
+                       ;; Do not record 'configure' arguments in the
+                       ;; configure.xml file that gets installed: That would
+                       ;; include --docdir, and thus retain a reference to the
+                       ;; 'doc' output.
+                       (("@CONFIGURE_ARGS@")
+                        "not recorded"))
+                     #t)))))))
 
 (define-public perl-image-magick
   (package



reply via email to

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