* [bug#50747] [PATCH 1/2] gnu: gthumb: Update to 3.12.0.
@ 2021-09-23 3:36 Vinicius Monego
2021-09-23 3:38 ` [bug#50747] [PATCH 2/2] gnu: gthumb: Add optional dependencies Vinicius Monego
2021-10-02 15:28 ` bug#50747: [PATCH 1/2] gnu: gthumb: Update to 3.12.0 Ludovic Courtès
0 siblings, 2 replies; 3+ messages in thread
From: Vinicius Monego @ 2021-09-23 3:36 UTC (permalink / raw)
To: 50747; +Cc: Vinicius Monego
* gnu/packages/gnome.scm (gthumb): Update to 3.12.0.
---
gnu/packages/gnome.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index deeeab5b32..7aae33af61 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -10855,7 +10855,7 @@ functionality.")
(define-public gthumb
(package
(name "gthumb")
- (version "3.10.3")
+ (version "3.12.0")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/gthumb/"
@@ -10863,7 +10863,7 @@ functionality.")
"gthumb-" version ".tar.xz"))
(sha256
(base32
- "04n2sgasc03kiczyzkq362pjilj12hq2r5qj07lynqr9rivkzdys"))))
+ "0grqiq6v26z8avl7mj24xy4i9bl1niwpqhqw6rblprl40c1zrvrx"))))
(build-system meson-build-system)
(arguments
`(#:glib-or-gtk? #t
--
2.30.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#50747] [PATCH 2/2] gnu: gthumb: Add optional dependencies.
2021-09-23 3:36 [bug#50747] [PATCH 1/2] gnu: gthumb: Update to 3.12.0 Vinicius Monego
@ 2021-09-23 3:38 ` Vinicius Monego
2021-10-02 15:28 ` bug#50747: [PATCH 1/2] gnu: gthumb: Update to 3.12.0 Ludovic Courtès
1 sibling, 0 replies; 3+ messages in thread
From: Vinicius Monego @ 2021-09-23 3:38 UTC (permalink / raw)
To: 50747; +Cc: Vinicius Monego
* gnu/packages/gnome.scm (gthumb)[native-inputs]: Order alphabetically.
[inputs]: Order alphabetically. Add colord, libheif, librsvg, libwebp.
---
gnu/packages/gnome.scm | 22 +++++++++++++---------
1 file changed, 13 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 7aae33af61..e3130cf3ae 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -10876,23 +10876,27 @@ functionality.")
(assoc-ref %outputs "out")
"/lib/gthumb/extensions"))))
(native-inputs
- `(("pkg-config" ,pkg-config)
+ `(("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database
("glib:bin" ,glib "bin") ; for glib-compile-resources
("gtk+:bin" ,gtk+ "bin") ; for gtk-update-icon-cache
- ("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database
("intltool" ,intltool)
- ("itstool" ,itstool)))
+ ("itstool" ,itstool)
+ ("pkg-config" ,pkg-config)))
(inputs
- `(("exiv2" ,exiv2)
- ("gtk" ,gtk+)
- ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
- ("gstreamer" ,gstreamer)
- ("clutter" ,clutter)
+ `(("clutter" ,clutter)
("clutter-gst" ,clutter-gst)
("clutter-gtk" ,clutter-gtk)
+ ("colord" ,colord)
+ ("exiv2" ,exiv2)
+ ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
+ ("gstreamer" ,gstreamer)
+ ("gtk" ,gtk+)
+ ("libheif" ,libheif)
("libjpeg" ,libjpeg-turbo)
+ ("libraw" ,libraw)
+ ("librsvg" ,librsvg)
("libtiff" ,libtiff)
- ("libraw" ,libraw)))
+ ("libwebp" ,libwebp)))
(home-page "https://wiki.gnome.org/Apps/Gthumb")
(synopsis "GNOME image viewer and browser")
(description "GThumb is an image viewer, browser, organizer, editor and
--
2.30.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#50747: [PATCH 1/2] gnu: gthumb: Update to 3.12.0.
2021-09-23 3:36 [bug#50747] [PATCH 1/2] gnu: gthumb: Update to 3.12.0 Vinicius Monego
2021-09-23 3:38 ` [bug#50747] [PATCH 2/2] gnu: gthumb: Add optional dependencies Vinicius Monego
@ 2021-10-02 15:28 ` Ludovic Courtès
1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2021-10-02 15:28 UTC (permalink / raw)
To: Vinicius Monego; +Cc: 50747-done
Vinicius Monego <monego@posteo.net> skribis:
> * gnu/packages/gnome.scm (gthumb): Update to 3.12.0.
[...]
> * gnu/packages/gnome.scm (gthumb)[native-inputs]: Order alphabetically.
> [inputs]: Order alphabetically. Add colord, libheif, librsvg, libwebp.
Applied, thanks!
Ludo'.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-10-02 15:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-23 3:36 [bug#50747] [PATCH 1/2] gnu: gthumb: Update to 3.12.0 Vinicius Monego
2021-09-23 3:38 ` [bug#50747] [PATCH 2/2] gnu: gthumb: Add optional dependencies Vinicius Monego
2021-10-02 15:28 ` bug#50747: [PATCH 1/2] gnu: gthumb: Update to 3.12.0 Ludovic Courtès
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).