unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Vinicius Monego <monego@posteo.net>
To: 51106@debbugs.gnu.org
Cc: Vinicius Monego <monego@posteo.net>
Subject: [bug#51106] [PATCH 5/7] gnu: gegl: Add optional dependencies.
Date: Sat,  9 Oct 2021 01:07:34 +0000	[thread overview]
Message-ID: <20211009010736.269383-5-monego@posteo.net> (raw)
In-Reply-To: <20211009010736.269383-1-monego@posteo.net>

* gnu/packages/gimp.scm (gegl)[inputs]: Add gdk-pixbuf, gexiv2, jasper,
libnsgif, libraw, librsvg, libspiro, libtiff, libwebp, maxflow, openexr,
poppler, sdl2.
---
 gnu/packages/gimp.scm | 21 +++++++++++++++++++--
 1 file changed, 19 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm
index fc4b882912..e99ab7f8e0 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -39,6 +39,7 @@
   #:use-module (gnu packages base)
   #:use-module (gnu packages build-tools)
   #:use-module (gnu packages documentation)
+  #:use-module (gnu packages fontutils)
   #:use-module (gnu packages graphviz)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages glib)
@@ -50,11 +51,13 @@
   #:use-module (gnu packages compression)
   #:use-module (gnu packages xml)
   #:use-module (gnu packages linux)
+  #:use-module (gnu packages maths)
   #:use-module (gnu packages ncurses)
   #:use-module (gnu packages patchutils)
   #:use-module (gnu packages pdf)
   #:use-module (gnu packages photo)
   #:use-module (gnu packages python)
+  #:use-module (gnu packages sdl)
   #:use-module (gnu packages web)
   #:use-module (gnu packages xorg))
 
@@ -252,10 +255,24 @@ provided, as well as a framework to add new color models and data types.")
        ("glib" ,glib)
        ("json-glib" ,json-glib)))
     (inputs
+     ;; All inputs except libpng and libjpeg are optional.
      `(("cairo" ,cairo)
-       ("pango" ,pango)
+       ("gdk-pixbuf" ,gdk-pixbuf)
+       ("gexiv2" ,gexiv2)
+       ("jasper" ,jasper)
+       ("libjpeg" ,libjpeg-turbo)
+       ("libnsgif" ,libnsgif)
        ("libpng" ,libpng)
-       ("libjpeg" ,libjpeg-turbo)))
+       ("libraw" ,libraw)
+       ("librsvg" ,librsvg)
+       ("libspiro" ,libspiro)
+       ("libtiff" ,libtiff)
+       ("libwebp" ,libwebp)
+       ("maxflow" ,maxflow)
+       ("openexr" ,openexr)
+       ("pango" ,pango)
+       ("poppler" ,poppler)
+       ("sdl2" ,sdl2)))
     (native-inputs
      `(("pkg-config" ,pkg-config)
        ("glib" ,glib "bin")             ; for gtester
-- 
2.30.2





  parent reply	other threads:[~2021-10-09  1:09 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-09  1:06 [bug#51106] [PATCH 0/7] Update GIMP to 2.10.28 Vinicius Monego
2021-10-09  1:07 ` [bug#51106] [PATCH 1/7] gnu: babl: Update to 0.1.88 Vinicius Monego
2021-10-09  1:07   ` [bug#51106] [PATCH 2/7] gnu: babl: Enable GIR Vinicius Monego
2021-10-09 12:40     ` Liliana Marie Prikler
2021-10-09  1:07   ` [bug#51106] [PATCH 3/7] gnu: gegl: Update to 0.4.32 Vinicius Monego
2021-10-09  1:07   ` [bug#51106] [PATCH 4/7] gnu: gegl: Enable GIR Vinicius Monego
2021-10-09 12:42     ` Liliana Marie Prikler
2021-10-09  1:07   ` Vinicius Monego [this message]
2021-10-09  1:07   ` [bug#51106] [PATCH 6/7] gnu: gimp: Update to 2.10.28 Vinicius Monego
2021-10-09  1:07   ` [bug#51106] [PATCH 7/7] gnu: gimp: Add optional dependencies Vinicius Monego
2021-10-09 17:08 ` [bug#51106] [PATCH v2 1/7] gnu: babl: Update to 0.1.88 Vinicius Monego
2021-10-09 17:08   ` [bug#51106] [PATCH v2 2/7] gnu: babl: Enable GIR Vinicius Monego
2021-10-09 17:08   ` [bug#51106] [PATCH v2 3/7] gnu: gegl: Update to 0.4.32 Vinicius Monego
2021-10-09 17:08   ` [bug#51106] [PATCH v2 4/7] gnu: gegl: Enable GIR Vinicius Monego
2021-10-09 17:08   ` [bug#51106] [PATCH v2 5/7] gnu: gegl: Add optional dependencies Vinicius Monego
2021-10-09 17:08   ` [bug#51106] [PATCH v2 6/7] gnu: gimp: Update to 2.10.28 Vinicius Monego
2021-10-09 17:08   ` [bug#51106] [PATCH v2 7/7] gnu: gimp: Add optional dependencies Vinicius Monego
2021-10-10 19:38     ` bug#51106: " Liliana Marie Prikler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211009010736.269383-5-monego@posteo.net \
    --to=monego@posteo.net \
    --cc=51106@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).