unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#46567] [PATCH 0/1] imagemagick: update to latest 6.x.
@ 2021-02-16 19:18 Vincent Legoll
  2021-02-16 19:32 ` [bug#46567] [PATCH] gnu: imagemagick: Update to 6.9.12-0 Vincent Legoll
  2021-02-16 20:29 ` [bug#46567] [PATCH 0/1] imagemagick: update to latest 6.x Leo Famulari
  0 siblings, 2 replies; 5+ messages in thread
From: Vincent Legoll @ 2021-02-16 19:18 UTC (permalink / raw)
  To: 46567

The latest 6.x is 6.9.12-0.

I dunno the status of dependents wrt 7.x.

-- 
Vincent Legoll




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#46567] [PATCH] gnu: imagemagick: Update to 6.9.12-0.
  2021-02-16 19:18 [bug#46567] [PATCH 0/1] imagemagick: update to latest 6.x Vincent Legoll
@ 2021-02-16 19:32 ` Vincent Legoll
  2021-02-16 20:31   ` bug#46567: " Leo Famulari
  2021-02-16 20:29 ` [bug#46567] [PATCH 0/1] imagemagick: update to latest 6.x Leo Famulari
  1 sibling, 1 reply; 5+ messages in thread
From: Vincent Legoll @ 2021-02-16 19:32 UTC (permalink / raw)
  To: 46567; +Cc: Vincent Legoll

* gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.12-0.
---
 gnu/packages/imagemagick.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/imagemagick.scm b/gnu/packages/imagemagick.scm
index 02a627f17e..2ca0cfc9ea 100644
--- a/gnu/packages/imagemagick.scm
+++ b/gnu/packages/imagemagick.scm
@@ -50,14 +50,14 @@
     ;; The 7 release series has an incompatible API, while the 6 series is still
     ;; 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")
+    (version "6.9.12-0")
     (source (origin
              (method url-fetch)
              (uri (string-append "mirror://imagemagick/ImageMagick-"
                                  version ".tar.xz"))
              (sha256
               (base32
-               "0m8nkmywkqwyrr01q7aiakj6mi4rb2psjgzv8n0x82x3s1rpfyql"))))
+               "0bdc6rn14xxlvylck9yzr0mgx5dps3pdyfsgy91wxs64ck0kaahf"))))
     (build-system gnu-build-system)
     (arguments
      `(#:configure-flags '("--with-frozenpaths" "--without-gcc-arch"
-- 
2.30.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#46567] [PATCH 0/1] imagemagick: update to latest 6.x.
  2021-02-16 19:18 [bug#46567] [PATCH 0/1] imagemagick: update to latest 6.x Vincent Legoll
  2021-02-16 19:32 ` [bug#46567] [PATCH] gnu: imagemagick: Update to 6.9.12-0 Vincent Legoll
@ 2021-02-16 20:29 ` Leo Famulari
  2021-02-16 20:57   ` Vincent Legoll
  1 sibling, 1 reply; 5+ messages in thread
From: Leo Famulari @ 2021-02-16 20:29 UTC (permalink / raw)
  To: Vincent Legoll; +Cc: 46567

On Tue, Feb 16, 2021 at 08:18:55PM +0100, Vincent Legoll wrote:
> The latest 6.x is 6.9.12-0.
> 
> I dunno the status of dependents wrt 7.x.

In Guix we don't have a package of ImageMagick 7, and the upstream
developers continue supporting "legacy" ImageMagick 6. We have packaged
ImageMagick 7 in the past at least once.

Basically, if we want to use version 7, we should do some tests to
ensure that packages using ImageMagick are compatible. Unfortunately
ImageMagick uses a so-called "command-line API" so it's not simple to
check compatibility. The easiest way would be to wait for the upstream
developers of packages that use ImageMagick to announce compaitibility
(maybe some of them have already done this, I don't know).




^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#46567: [PATCH] gnu: imagemagick: Update to 6.9.12-0.
  2021-02-16 19:32 ` [bug#46567] [PATCH] gnu: imagemagick: Update to 6.9.12-0 Vincent Legoll
@ 2021-02-16 20:31   ` Leo Famulari
  0 siblings, 0 replies; 5+ messages in thread
From: Leo Famulari @ 2021-02-16 20:31 UTC (permalink / raw)
  To: Vincent Legoll; +Cc: 46567-done

On Tue, Feb 16, 2021 at 08:32:43PM +0100, Vincent Legoll wrote:
> * gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.12-0.

Thanks! Pushed to staging as 98a41305cca3413c6d0b98e9c02caddc9138353e




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#46567] [PATCH 0/1] imagemagick: update to latest 6.x.
  2021-02-16 20:29 ` [bug#46567] [PATCH 0/1] imagemagick: update to latest 6.x Leo Famulari
@ 2021-02-16 20:57   ` Vincent Legoll
  0 siblings, 0 replies; 5+ messages in thread
From: Vincent Legoll @ 2021-02-16 20:57 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 46567

Hello,

On Tue, Feb 16, 2021 at 9:29 PM Leo Famulari <leo@famulari.name> wrote:
> On Tue, Feb 16, 2021 at 08:18:55PM +0100, Vincent Legoll wrote:
> > I dunno the status of dependents wrt 7.x.
>
> In Guix we don't have a package of ImageMagick 7, and the upstream
> developers continue supporting "legacy" ImageMagick 6. We have packaged
> ImageMagick 7 in the past at least once.
>
> Basically, if we want to use version 7, we should do some tests to
> ensure that packages using ImageMagick are compatible. Unfortunately
> ImageMagick uses a so-called "command-line API" so it's not simple to
> check compatibility. The easiest way would be to wait for the upstream
> developers of packages that use ImageMagick to announce compaitibility
> (maybe some of them have already done this, I don't know).

Yes, I've seen the comment, I was just trying to tell that I did not check
any dependent for 7.x compatibility.

Thanks

-- 
Vincent Legoll




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-02-16 20:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-16 19:18 [bug#46567] [PATCH 0/1] imagemagick: update to latest 6.x Vincent Legoll
2021-02-16 19:32 ` [bug#46567] [PATCH] gnu: imagemagick: Update to 6.9.12-0 Vincent Legoll
2021-02-16 20:31   ` bug#46567: " Leo Famulari
2021-02-16 20:29 ` [bug#46567] [PATCH 0/1] imagemagick: update to latest 6.x Leo Famulari
2021-02-16 20:57   ` Vincent Legoll

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).