monego pushed a commit to branch master
in repository guix.

commit 50731875243428cb11cc17fa712fa8079b307622
Author: Vinicius Monego <[email protected]>
AuthorDate: Fri Dec 8 15:17:56 2023 -0300

    gnu: gmic: Update to 3.3.3.
    
    gmic was integrated into Krita 5+.
    
    * gnu/packages/image-processing.scm (gmic, gmic-qt): Update to 3.3.3.
    (gmic-qt-krita): Delete variable.
    
    Change-Id: I44e33b570bcf3e1df3eba5eb9ede1f333f8a177a
---
 gnu/packages/image-processing.scm | 18 +++---------------
 1 file changed, 3 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/image-processing.scm 
b/gnu/packages/image-processing.scm
index 306da962cc..07ba0297cd 100644
--- a/gnu/packages/image-processing.scm
+++ b/gnu/packages/image-processing.scm
@@ -9,7 +9,7 @@
 ;;; Copyright © 2018 Lprndn <[email protected]>
 ;;; Copyright © 2019, 2021, 2023 Efraim Flashner <[email protected]>
 ;;; Copyright © 2020 Vincent Legoll <[email protected]>
-;;; Copyright © 2020, 2021 Vinicius Monego <[email protected]>
+;;; Copyright © 2020, 2021, 2024 Vinicius Monego <[email protected]>
 ;;; Copyright © 2020 Pierre Neidhardt <[email protected]>
 ;;; Copyright © 2020 Brendan Tildesley <[email protected]>
 ;;; Copyright © 2021 Oleh Malyi <[email protected]>
@@ -832,14 +832,14 @@ due to its architecture which automatically parallelises 
the image workflows.")
 (define-public gmic
   (package
     (name "gmic")
-    (version "3.0.0")
+    (version "3.3.3")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://gmic.eu/files/source/gmic_";
                            version ".tar.gz"))
        (sha256
-        (base32 "080inz0wisv3rhvbnzrgcs3j25wq86gybp68yi56gw6vwswnn19z"))))
+        (base32 "0pb474cdlxcp3m7gkxrfpnblag6r3wny7vih44gdyy2q8zb3ffch"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f ;there are no tests
@@ -900,18 +900,6 @@ including 2D color images.")
     (synopsis "Qt frontend for the G'MIC image processing framework")
     (license license:gpl3+)))
 
-(define-public gmic-qt-krita
-  (package
-    (inherit gmic-qt)
-    (name "gmic-qt-krita")
-    (arguments
-     (substitute-keyword-arguments (package-arguments gmic-qt)
-       ((#:configure-flags flags)
-        '(list "-DGMIC_QT_HOST=krita" "-DENABLE_DYNAMIC_LINKING=ON"
-               (string-append "-DGMIC_LIB_PATH="
-                              (assoc-ref %build-inputs "gmic") "/lib")))))
-    (synopsis "Krita plugin for the G'MIC image processing framework")))
-
 (define-public gmic-qt-gimp
   (package
     (inherit gmic-qt)

Reply via email to