all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#45414] [PATCH 1/4] gnu: libavif: Update to 0.8.4.
@ 2020-12-24 23:52 Vinicius Monego
  2020-12-24 23:55 ` [bug#45414] [PATCH 2/4] gnu: libavif: Add dependency on rav1e Vinicius Monego
  0 siblings, 1 reply; 5+ messages in thread
From: Vinicius Monego @ 2020-12-24 23:52 UTC (permalink / raw)
  To: 45414; +Cc: Vinicius Monego

* gnu/packages/image.scm (libavif): Update to 0.8.4.
---
 gnu/packages/image.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 979b069415..6086f5b1b6 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -27,6 +27,7 @@
 ;;; Copyright © 2020 R Veera Kumar <vkor@vkten.in>
 ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2020 Zhu Zihao <all_but_last@163.com>
+;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2082,7 +2083,7 @@ This package can be used to create @code{favicon.ico} files for web sites.")
 (define-public libavif
   (package
     (name "libavif")
-    (version "0.7.3")
+    (version "0.8.4")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -2091,7 +2092,7 @@ This package can be used to create @code{favicon.ico} files for web sites.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "17hagdngpc4xzrr0aa48nx399y5lawyyx9cpcdhpds1mqk6p77lp"))))
+                "1qvjd3xi9r89pcblxdgz4c6hqp67ss53b1x9zkg7lrik7g3lwq8d"))))
     (build-system cmake-build-system)
     (arguments
      `(#:configure-flags '("-DAVIF_CODEC_AOM=ON" "-DAVIF_CODEC_DAV1D=ON"
-- 
2.29.2





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

* [bug#45414] [PATCH 2/4] gnu: libavif: Add dependency on rav1e.
  2020-12-24 23:52 [bug#45414] [PATCH 1/4] gnu: libavif: Update to 0.8.4 Vinicius Monego
@ 2020-12-24 23:55 ` Vinicius Monego
  2020-12-24 23:55   ` [bug#45414] [PATCH 3/4] gnu: darktable: Update to 3.4.0 Vinicius Monego
  2020-12-24 23:55   ` [bug#45414] [PATCH 4/4] gnu: darktable: Enable tests Vinicius Monego
  0 siblings, 2 replies; 5+ messages in thread
From: Vinicius Monego @ 2020-12-24 23:55 UTC (permalink / raw)
  To: 45414; +Cc: Vinicius Monego

* gnu/packages/image.scm (libavif): Add dependency on rav1e.
[arguments]: Enable rav1e support.
[inputs]: Sort, add rav1e.
---
 gnu/packages/image.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 6086f5b1b6..5f7b8bb9b3 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -2096,7 +2096,7 @@ This package can be used to create @code{favicon.ico} files for web sites.")
     (build-system cmake-build-system)
     (arguments
      `(#:configure-flags '("-DAVIF_CODEC_AOM=ON" "-DAVIF_CODEC_DAV1D=ON"
-                           "-DAVIF_CODEC_RAV1E=OFF" ; not packaged yet
+                           "-DAVIF_CODEC_RAV1E=ON"
                            "-DAVIF_BUILD_TESTS=ON")
        #:phases
        (modify-phases %standard-phases
@@ -2110,8 +2110,9 @@ This package can be used to create @code{favicon.ico} files for web sites.")
                (install-file "../source/README.md" doc)
                #t))))))
     (inputs
-     `(("libaom" ,libaom)
-       ("dav1d" ,dav1d)))
+     `(("dav1d" ,dav1d)
+       ("libaom" ,libaom)
+       ("rav1e" ,rav1e)))
     (synopsis "Encode and decode AVIF files")
     (description "Libavif is a C implementation of @acronym{AVIF, the AV1 Image
 File Format}.  It can encode and decode all YUV formats and bit depths supported
-- 
2.29.2





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

* [bug#45414] [PATCH 3/4] gnu: darktable: Update to 3.4.0.
  2020-12-24 23:55 ` [bug#45414] [PATCH 2/4] gnu: libavif: Add dependency on rav1e Vinicius Monego
@ 2020-12-24 23:55   ` Vinicius Monego
  2020-12-24 23:55   ` [bug#45414] [PATCH 4/4] gnu: darktable: Enable tests Vinicius Monego
  1 sibling, 0 replies; 5+ messages in thread
From: Vinicius Monego @ 2020-12-24 23:55 UTC (permalink / raw)
  To: 45414; +Cc: Vinicius Monego

* gnu/packages/photo.scm (darktable): Update to 3.4.0.
[native-inputs]: Increase clang and llvm version to 11, add python-wrapper and ruby.
---
 gnu/packages/photo.scm | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/photo.scm b/gnu/packages/photo.scm
index 677d0ed95e..f1b8d390a1 100644
--- a/gnu/packages/photo.scm
+++ b/gnu/packages/photo.scm
@@ -75,6 +75,7 @@
   #:use-module (gnu packages python-web)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages readline)
+  #:use-module (gnu packages ruby)
   #:use-module (gnu packages sqlite)
   #:use-module (gnu packages tex)
   #:use-module (gnu packages time)
@@ -467,7 +468,7 @@ photographic equipment.")
 (define-public darktable
   (package
     (name "darktable")
-    (version "3.2.1")
+    (version "3.4.0")
     (source
      (origin
        (method url-fetch)
@@ -475,7 +476,7 @@ photographic equipment.")
              "https://github.com/darktable-org/darktable/releases/"
              "download/release-" version "/darktable-" version ".tar.xz"))
        (sha256
-        (base32 "035rvqmw386hm0jpi14lf4dnpr5rjkalzjkyprqh42nwi3m86dkf"))))
+        (base32 "1nmx5lmhp7igav5pswqxmacsbnhgydgvxh1q53wlmyd9bqgxxlvd"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f                      ; there are no tests
@@ -519,16 +520,18 @@ photographic equipment.")
                                   "/lib"))))
              #t)))))
     (native-inputs
-     `(("clang" ,clang-9)
+     `(("clang" ,clang-11)
        ("desktop-file-utils" ,desktop-file-utils)
        ("glib:bin" ,glib "bin")
        ("gobject-introspection" ,gobject-introspection)
        ("intltool" ,intltool)
-       ("llvm" ,llvm-9) ;should match the Clang version
+       ("llvm" ,llvm-11) ;should match the Clang version
        ("opencl-headers" ,opencl-headers)
        ("perl" ,perl)
        ("pkg-config" ,pkg-config)
-       ("po4a" ,po4a)))
+       ("po4a" ,po4a)
+       ("python" ,python-wrapper)
+       ("ruby" ,ruby)))
     (inputs
      `(("cairo" ,cairo)
        ("colord-gtk" ,colord-gtk) ;optional, for color profile support
-- 
2.29.2





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

* [bug#45414] [PATCH 4/4] gnu: darktable: Enable tests.
  2020-12-24 23:55 ` [bug#45414] [PATCH 2/4] gnu: libavif: Add dependency on rav1e Vinicius Monego
  2020-12-24 23:55   ` [bug#45414] [PATCH 3/4] gnu: darktable: Update to 3.4.0 Vinicius Monego
@ 2020-12-24 23:55   ` Vinicius Monego
  2020-12-25  4:12     ` bug#45414: " Leo Famulari
  1 sibling, 1 reply; 5+ messages in thread
From: Vinicius Monego @ 2020-12-24 23:55 UTC (permalink / raw)
  To: 45414; +Cc: Vinicius Monego

* gnu/packages/photo.scm (darktable): Enable tests.
[native-inputs]: Add cmocka.
---
 gnu/packages/photo.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/photo.scm b/gnu/packages/photo.scm
index f1b8d390a1..5402826fd6 100644
--- a/gnu/packages/photo.scm
+++ b/gnu/packages/photo.scm
@@ -41,6 +41,7 @@
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages base)
   #:use-module (gnu packages boost)
+  #:use-module (gnu packages check)
   #:use-module (gnu packages cmake)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages cups)
@@ -479,8 +480,8 @@ photographic equipment.")
         (base32 "1nmx5lmhp7igav5pswqxmacsbnhgydgvxh1q53wlmyd9bqgxxlvd"))))
     (build-system cmake-build-system)
     (arguments
-     `(#:tests? #f                      ; there are no tests
-       #:configure-flags '("-DBINARY_PACKAGE_BUILD=On")
+     `(#:configure-flags '("-DBINARY_PACKAGE_BUILD=On"
+                           "-DBUILD_TESTING=On")
        #:phases
        (modify-phases %standard-phases
          (add-before 'configure 'prepare-build-environment
@@ -521,6 +522,7 @@ photographic equipment.")
              #t)))))
     (native-inputs
      `(("clang" ,clang-11)
+       ("cmocka" ,cmocka)
        ("desktop-file-utils" ,desktop-file-utils)
        ("glib:bin" ,glib "bin")
        ("gobject-introspection" ,gobject-introspection)
-- 
2.29.2





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

* bug#45414: [PATCH 4/4] gnu: darktable: Enable tests.
  2020-12-24 23:55   ` [bug#45414] [PATCH 4/4] gnu: darktable: Enable tests Vinicius Monego
@ 2020-12-25  4:12     ` Leo Famulari
  0 siblings, 0 replies; 5+ messages in thread
From: Leo Famulari @ 2020-12-25  4:12 UTC (permalink / raw)
  To: Vinicius Monego; +Cc: 45414-done

On Thu, Dec 24, 2020 at 08:55:31PM -0300, Vinicius Monego wrote:
> * gnu/packages/photo.scm (darktable): Enable tests.
> [native-inputs]: Add cmocka.

Thanks! I tweaked the commit messages and pushed as
adaf577c2eba6a847be7dc4a1e0b5be841119eaf




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

end of thread, other threads:[~2020-12-25  4:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-24 23:52 [bug#45414] [PATCH 1/4] gnu: libavif: Update to 0.8.4 Vinicius Monego
2020-12-24 23:55 ` [bug#45414] [PATCH 2/4] gnu: libavif: Add dependency on rav1e Vinicius Monego
2020-12-24 23:55   ` [bug#45414] [PATCH 3/4] gnu: darktable: Update to 3.4.0 Vinicius Monego
2020-12-24 23:55   ` [bug#45414] [PATCH 4/4] gnu: darktable: Enable tests Vinicius Monego
2020-12-25  4:12     ` bug#45414: " Leo Famulari

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.