[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
163/401: gnu: babl: Update package definition.
From: |
guix-commits |
Subject: |
163/401: gnu: babl: Update package definition. |
Date: |
Tue, 18 Aug 2020 16:21:18 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 04bbcd27cecd0643fbb31417fdaa1b17f15d4106
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Sat Jul 18 16:46:19 2020 -0400
gnu: babl: Update package definition.
* gnu/packages/gimp.scm (babl): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
[native-inputs]: Add gobject-introspection, python-wrapper, ruby
and vala.
[inputs]: Add librsvg and w3m.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gimp.scm | 58 +++++++++++++++++++++++++++------------------------
1 file changed, 31 insertions(+), 27 deletions(-)
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm
index c2fca07..f72cd27 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -45,6 +45,8 @@
#:use-module (gnu packages pdf)
#:use-module (gnu packages photo)
#:use-module (gnu packages python)
+ #:use-module (gnu packages ruby)
+ #:use-module (gnu packages w3m)
#:use-module (gnu packages web)
#:use-module (gnu packages xorg))
@@ -52,39 +54,41 @@
(package
(name "babl")
(version "0.1.78")
- (source (origin
- (method url-fetch)
- (uri (list (string-append "https://download.gimp.org/pub/babl/"
- (version-major+minor version)
- "/babl-" version ".tar.xz")
- (string-append "https://ftp.gtk.org/pub/babl/"
- (version-major+minor version)
- "/babl-" version ".tar.xz")
- (string-append "ftp://ftp.gtk.org/pub/babl/"
- (version-major+minor version)
- "/babl-" version ".tar.xz")))
- (sha256
- (base32
- "0fjjfb0pbgimlqi7rk8cqz8pq595b7gw8nrpkxfmixdz6cv4km8p"))))
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (list
+ (string-append "https://download.gimp.org/pub/babl/"
+ (version-major+minor version)
+ "/babl-" version ".tar.xz")
+ (string-append "https://ftp.gtk.org/pub/babl/"
+ (version-major+minor version)
+ "/babl-" version ".tar.xz")
+ (string-append "ftp://ftp.gtk.org/pub/babl/"
+ (version-major+minor version)
+ "/babl-" version ".tar.xz")))
+ (sha256
+ (base32 "0fjjfb0pbgimlqi7rk8cqz8pq595b7gw8nrpkxfmixdz6cv4km8p"))))
(build-system meson-build-system)
(arguments
- `(#:configure-flags
- (list "-Denable-gir=false")))
+ `(#:glib-or-gtk? #t)) ; To wrap binaires and/or compile schemas
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ `(("gobject-introspection" ,gobject-introspection)
+ ("pkg-config" ,pkg-config)
+ ("python" ,python-wrapper)
+ ("ruby" ,ruby)
+ ("vala" ,vala)))
+ (inputs
+ `(("rsvg-convert" ,librsvg)
+ ("w3m" ,w3m)))
(propagated-inputs
- ;; Propagated to satisfy ‘babl.pc’.
`(("lcms" ,lcms)))
+ (synopsis "Pixel encoding and color space conversion engine in C")
+ (description "Babl is a pixel encoding and color space conversion engine,
+with format introspection, cached runtime self-benchmarking alternate and cpu
+specific code paths.")
(home-page "http://gegl.org/babl/")
- (synopsis "Image pixel format conversion library")
- (description
- "Babl is a dynamic, any-to-any pixel format translation library.
-It allows converting between different methods of storing pixels, known as
-@dfn{pixel formats}, that have different bit depths and other data
-representations, color models, and component permutations.
-
-A vocabulary to formulate new pixel formats from existing primitives is
-provided, as well as a framework to add new color models and data types.")
(license license:lgpl3+)))
(define-public gegl
- 72/401: gnu: Add srt., (continued)
- 72/401: gnu: Add srt., guix-commits, 2020/08/18
- 84/401: gnu: gtk+-2: Update package definition., guix-commits, 2020/08/18
- 87/401: gnu: gtk-doc: Update package definition., guix-commits, 2020/08/18
- 90/401: gnu: gtksourceview-3: Update package definition., guix-commits, 2020/08/18
- 94/401: gnu: gvfs: Update package definition., guix-commits, 2020/08/18
- 102/401: gnu: libcanberra: Update package definition., guix-commits, 2020/08/18
- 149/401: gnu: Add libsigc++-2., guix-commits, 2020/08/18
- 154/401: gnu: atkmm: Update package definition., guix-commits, 2020/08/18
- 155/401: gnu: pangomm: Update package definition., guix-commits, 2020/08/18
- 156/401: gnu: Add pangomm-2.42., guix-commits, 2020/08/18
- 163/401: gnu: babl: Update package definition.,
guix-commits <=
- 165/401: gnu: Add gtx., guix-commits, 2020/08/18
- 169/401: gnu: Add poly2tri-c., guix-commits, 2020/08/18
- 177/401: gnu: gnome-online-accounts: Update package definition., guix-commits, 2020/08/18
- 109/401: gnu: Add rust-serial-test-derive@0.4.0., guix-commits, 2020/08/18
- 107/401: gnu: Add rust-cssparser@0.27.2., guix-commits, 2020/08/18
- 114/401: gnu: Add rust-string-cache-codegen@0.5.1., guix-commits, 2020/08/18
- 119/401: git: rust-rgb: Update to 0.8.20., guix-commits, 2020/08/18
- 121/401: gnu: Add rust-tinyvec@0.3.3., guix-commits, 2020/08/18
- 130/401: gnu: Add libdatrie., guix-commits, 2020/08/18
- 137/401: gnu: Add wpewebkit., guix-commits, 2020/08/18