unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#66490] [PATCH gnome-team 1/2] gnu: gthumb: Update to 3.12.4.
  2023-10-12 12:36 [bug#66490] [PATCH gnome-team 0/2] Update gthumb Liliana Marie Prikler
@ 2023-10-12  8:26 ` Liliana Marie Prikler
  2023-10-12  8:30 ` [bug#66490] [PATCH gnome-team 2/2] gnu: gthumb: Use new input style Liliana Marie Prikler
  2023-10-12 14:16 ` [bug#66490] [PATCH gnome-team 0/2] Update gthumb Maxim Cournoyer
  2 siblings, 0 replies; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-10-12  8:26 UTC (permalink / raw)
  To: 66490; +Cc: liliana.prikler, maxim.cournoyer, rg

* gnu/packages/gnome.scm (gthumb): Update to 3.12.4.
---
 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 2ad7151f27..70468aac7c 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11802,7 +11802,7 @@ (define-public evolution
 (define-public gthumb
   (package
     (name "gthumb")
-    (version "3.12.2")
+    (version "3.12.4")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/gthumb/"
@@ -11810,7 +11810,7 @@ (define-public gthumb
                                   "gthumb-" version ".tar.xz"))
               (sha256
                (base32
-                "09flm8s6jrvfya2ypw5873mnnani8ssy7wdv3ra1cljk4bjszy4p"))))
+                "1s4lqy883s296mbh4fywd1l3z79811ia00xs57c316pb1an97mmd"))))
     (build-system meson-build-system)
     (arguments
      `(#:glib-or-gtk? #t
-- 
2.41.0





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

* [bug#66490] [PATCH gnome-team 2/2] gnu: gthumb: Use new input style.
  2023-10-12 12:36 [bug#66490] [PATCH gnome-team 0/2] Update gthumb Liliana Marie Prikler
  2023-10-12  8:26 ` [bug#66490] [PATCH gnome-team 1/2] gnu: gthumb: Update to 3.12.4 Liliana Marie Prikler
@ 2023-10-12  8:30 ` Liliana Marie Prikler
  2023-10-12 14:16 ` [bug#66490] [PATCH gnome-team 0/2] Update gthumb Maxim Cournoyer
  2 siblings, 0 replies; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-10-12  8:30 UTC (permalink / raw)
  To: 66490; +Cc: liliana.prikler, maxim.cournoyer, rg

* gnu/packages/gnome.scm (gthumb)[inputs, native-inputs]: Drop labels.
---
 gnu/packages/gnome.scm | 42 +++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 70468aac7c..24dfffd660 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11823,28 +11823,28 @@ (define-public gthumb
                             (assoc-ref %outputs "out")
                             "/lib/gthumb/extensions"))))
     (native-inputs
-     `(("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
-       ("intltool" ,intltool)
-       ("itstool" ,itstool)
-       ("pkg-config" ,pkg-config)
-       ("python" ,python)))
+     (list desktop-file-utils ; for update-desktop-database
+           `(,glib "bin") ; for glib-compile-resources
+           `(,gtk+ "bin") ; for gtk-update-icon-cache
+           intltool
+           itstool
+           pkg-config
+           python))
     (inputs
-     `(("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-for-system))
-       ("libtiff" ,libtiff)
-       ("libwebp" ,libwebp)))
+     (list clutter
+           clutter-gst
+           clutter-gtk
+           colord
+           exiv2
+           gsettings-desktop-schemas
+           gstreamer
+           gtk+
+           libheif
+           libjpeg-turbo
+           libraw
+           (librsvg-for-system)
+           libtiff
+           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.41.0





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

* [bug#66490] [PATCH gnome-team 0/2] Update gthumb
@ 2023-10-12 12:36 Liliana Marie Prikler
  2023-10-12  8:26 ` [bug#66490] [PATCH gnome-team 1/2] gnu: gthumb: Update to 3.12.4 Liliana Marie Prikler
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-10-12 12:36 UTC (permalink / raw)
  To: 66490; +Cc: liliana.prikler, maxim.cournoyer, rg

Hi Guix,

this series updates gthumb and also makes it use new-style inputs
(finally).

Liliana Marie Prikler (2):
  gnu: gthumb: Update to 3.12.4.
  gnu: gthumb: Use new input style.

 gnu/packages/gnome.scm | 46 +++++++++++++++++++++---------------------
 1 file changed, 23 insertions(+), 23 deletions(-)


base-commit: b701a7018d94aebef6a967ec235c72c1f7cdfe5c
-- 
2.41.0





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

* [bug#66490] [PATCH gnome-team 0/2] Update gthumb
  2023-10-12 12:36 [bug#66490] [PATCH gnome-team 0/2] Update gthumb Liliana Marie Prikler
  2023-10-12  8:26 ` [bug#66490] [PATCH gnome-team 1/2] gnu: gthumb: Update to 3.12.4 Liliana Marie Prikler
  2023-10-12  8:30 ` [bug#66490] [PATCH gnome-team 2/2] gnu: gthumb: Use new input style Liliana Marie Prikler
@ 2023-10-12 14:16 ` Maxim Cournoyer
  2023-10-12 14:25   ` Liliana Marie Prikler
  2 siblings, 1 reply; 6+ messages in thread
From: Maxim Cournoyer @ 2023-10-12 14:16 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: rg, 66490

Hello,

Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> Hi Guix,
>
> this series updates gthumb and also makes it use new-style inputs
> (finally).
>
> Liliana Marie Prikler (2):
>   gnu: gthumb: Update to 3.12.4.
>   gnu: gthumb: Use new input style.
>
>  gnu/packages/gnome.scm | 46 +++++++++++++++++++++---------------------
>  1 file changed, 23 insertions(+), 23 deletions(-)

The series LGTM.  I guess it can go to the master branch?

-- 
Thanks,
Maxim




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

* [bug#66490] [PATCH gnome-team 0/2] Update gthumb
  2023-10-12 14:16 ` [bug#66490] [PATCH gnome-team 0/2] Update gthumb Maxim Cournoyer
@ 2023-10-12 14:25   ` Liliana Marie Prikler
  2023-10-13 18:43     ` bug#66490: " Liliana Marie Prikler
  0 siblings, 1 reply; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-10-12 14:25 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: rg, 66490

Am Donnerstag, dem 12.10.2023 um 10:16 -0400 schrieb Maxim Cournoyer:
> Hello,
> 
> Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
> 
> > Hi Guix,
> > 
> > this series updates gthumb and also makes it use new-style inputs
> > (finally).
> > 
> > Liliana Marie Prikler (2):
> >   gnu: gthumb: Update to 3.12.4.
> >   gnu: gthumb: Use new input style.
> > 
> >  gnu/packages/gnome.scm | 46 +++++++++++++++++++++-----------------
> > ----
> >  1 file changed, 23 insertions(+), 23 deletions(-)
> 
> The series LGTM.  I guess it can go to the master branch?
No dependents safe for itself.  If it builds, it's good to go.




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

* bug#66490: [PATCH gnome-team 0/2] Update gthumb
  2023-10-12 14:25   ` Liliana Marie Prikler
@ 2023-10-13 18:43     ` Liliana Marie Prikler
  0 siblings, 0 replies; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-10-13 18:43 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: rg, 66490-done

Am Donnerstag, dem 12.10.2023 um 16:25 +0200 schrieb Liliana Marie
Prikler:
> Am Donnerstag, dem 12.10.2023 um 10:16 -0400 schrieb Maxim Cournoyer:
> > Hello,
> > 
> > Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
> > 
> > > Hi Guix,
> > > 
> > > this series updates gthumb and also makes it use new-style inputs
> > > (finally).
> > > 
> > > Liliana Marie Prikler (2):
> > >   gnu: gthumb: Update to 3.12.4.
> > >   gnu: gthumb: Use new input style.
> > > 
> > >  gnu/packages/gnome.scm | 46 +++++++++++++++++++++---------------
> > > --
> > > ----
> > >  1 file changed, 23 insertions(+), 23 deletions(-)
> > 
> > The series LGTM.  I guess it can go to the master branch?
> No dependents safe for itself.  If it builds, it's good to go.
Pushed to gnome-team anyway.  Feel free to cherry-pick.





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

end of thread, other threads:[~2023-10-13 18:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-12 12:36 [bug#66490] [PATCH gnome-team 0/2] Update gthumb Liliana Marie Prikler
2023-10-12  8:26 ` [bug#66490] [PATCH gnome-team 1/2] gnu: gthumb: Update to 3.12.4 Liliana Marie Prikler
2023-10-12  8:30 ` [bug#66490] [PATCH gnome-team 2/2] gnu: gthumb: Use new input style Liliana Marie Prikler
2023-10-12 14:16 ` [bug#66490] [PATCH gnome-team 0/2] Update gthumb Maxim Cournoyer
2023-10-12 14:25   ` Liliana Marie Prikler
2023-10-13 18:43     ` bug#66490: " Liliana Marie Prikler

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).