[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/07: gnu: babl: Update to 0.1.72.
From: |
guix-commits |
Subject: |
04/07: gnu: babl: Update to 0.1.72. |
Date: |
Sat, 9 Nov 2019 18:32:45 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 54a114db45b37a6664bffd4ec9d4aa0c6bafeb48
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Sun Nov 10 00:29:05 2019 +0100
gnu: babl: Update to 0.1.72.
* gnu/packages/gimp.scm (babl): Update to 0.1.72.
[build-system]: Switch to Meson.
[arguments]: Disable GObject introspection.
[native-inputs]: Add pkg-config.
[propagated-inputs]: Add lcms.
---
gnu/packages/gimp.scm | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm
index 70bc8db..4fd3cd0 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -29,6 +29,7 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system gnu)
#:use-module (guix build-system glib-or-gtk)
+ #:use-module (guix build-system meson)
#:use-module (gnu packages)
#:use-module (gnu packages algebra)
#:use-module (gnu packages autotools)
@@ -49,22 +50,30 @@
(define-public babl
(package
(name "babl")
- (version "0.1.66")
+ (version "0.1.72")
(source (origin
(method url-fetch)
(uri (list (string-append "https://download.gimp.org/pub/babl/"
(version-major+minor version)
- "/babl-" version ".tar.bz2")
+ "/babl-" version ".tar.xz")
(string-append "https://ftp.gtk.org/pub/babl/"
(version-major+minor version)
- "/babl-" version ".tar.bz2")
+ "/babl-" version ".tar.xz")
(string-append "ftp://ftp.gtk.org/pub/babl/"
(version-major+minor version)
- "/babl-" version ".tar.bz2")))
+ "/babl-" version ".tar.xz")))
(sha256
(base32
- "0qx1dwbinxihwl2lmxi60qiqi402jlrdcnixx14kk6j88n9xi79n"))))
- (build-system gnu-build-system)
+ "0hkagjrnza77aasa1kss5hvy37ndm50y6i7hkdn2z8hzgc4i3qb4"))))
+ (build-system meson-build-system)
+ (arguments
+ `(#:configure-flags
+ (list "-Denable-gir=false")))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (propagated-inputs
+ ;; Propagated to satisfy ‘babl.pc’.
+ `(("lcms" ,lcms)))
(home-page "http://gegl.org/babl/")
(synopsis "Image pixel format conversion library")
(description
- branch master updated (c2cda7d -> 4c003c5), guix-commits, 2019/11/09
- 05/07: gnu: gegl: Add source URIs., guix-commits, 2019/11/09
- 06/07: gnu: gegl: Update to 0.4.18., guix-commits, 2019/11/09
- 07/07: gnu: gimp: Update to 2.10.14., guix-commits, 2019/11/09
- 04/07: gnu: babl: Update to 0.1.72.,
guix-commits <=
- 03/07: gnu: fvwm: Update to 2.6.9., guix-commits, 2019/11/09
- 02/07: gnu: fvwm: Don't use NAME in source URI., guix-commits, 2019/11/09
- 01/07: gnu: qtractor: Update to 0.9.11., guix-commits, 2019/11/09