all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#67165] [PATCH] gnu: cheese: Update to 44.1.
@ 2023-11-14  0:01 Vivien Kraus via Guix-patches via
  2023-11-14  0:01 ` [bug#67165] [PATCH gnome-team v2] " Vivien Kraus via Guix-patches via
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Vivien Kraus via Guix-patches via @ 2023-11-14  0:01 UTC (permalink / raw)
  To: 67165

The build system changed how it disables icon-theme.cache.

* gnu/packages/gnome.scm (cheese): Update to 44.1.
[#:phase 'skip-gtk-update-icon-cache]: Update.

Change-Id: I95044d29da019345d14b5fe8f1671f0f7046fba3
---
 gnu/packages/gnome.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 2958da2cd9..69212ca0ef 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11344,7 +11344,7 @@ (define-public gnome-video-effects
 (define-public cheese
   (package
     (name "cheese")
-    (version "43.0")
+    (version "44.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/" name "/"
@@ -11352,7 +11352,7 @@ (define-public cheese
                                   version ".tar.xz"))
               (sha256
                (base32
-                "02vzcvk2s6cwvdw6v6qmlq3znamy6zwv7l6nlbqjfwrj7i54qmvl"))))
+                "13pnz35yvwvmk1iyhcp1a94yal4rh610rxmsp3rdsm4yr728a8az"))))
     (arguments
      (list #:glib-or-gtk? #t
            #:phases
@@ -11360,8 +11360,9 @@ (define-public cheese
                (add-after 'unpack 'skip-gtk-update-icon-cache
                  (lambda _
                    ;; Don't create 'icon-theme.cache'.
-                   (substitute* "meson_post_install.py"
-                     (("gtk-update-icon-cache") (which "true")))))
+                   (substitute* "meson.build"
+                     (("gtk_update_icon_cache: true")
+                      "gtk_update_icon_cache: false"))))
                (add-after 'install 'wrap-cheese
                  (lambda* (#:key inputs outputs #:allow-other-keys)
                    (wrap-program (search-input-file outputs "bin/cheese")

base-commit: 72e886328c14c832b2ed71c400069b63852ee18d
-- 
2.41.0




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

* [bug#67165] [PATCH gnome-team v2] gnu: cheese: Update to 44.1.
  2023-11-14  0:01 [bug#67165] [PATCH] gnu: cheese: Update to 44.1 Vivien Kraus via Guix-patches via
@ 2023-11-14  0:01 ` Vivien Kraus via Guix-patches via
  2023-11-14  0:01 ` [bug#67165] [PATCH gnome-team v3] " Vivien Kraus via Guix-patches via
  2023-11-15  5:18 ` [bug#67165] [PATCH gnome-team v2] " Liliana Marie Prikler
  2 siblings, 0 replies; 4+ messages in thread
From: Vivien Kraus via Guix-patches via @ 2023-11-14  0:01 UTC (permalink / raw)
  To: 67165; +Cc: liliana.prikler, maxim.cournoyer, rg

The build system changed how it disables icon-theme.cache.

* gnu/packages/gnome.scm (cheese): Update to 44.1.
[#:phase 'skip-gtk-update-icon-cache]: Update.

Change-Id: I95044d29da019345d14b5fe8f1671f0f7046fba3
---
 gnu/packages/gnome.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 2958da2cd9..69212ca0ef 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11344,7 +11344,7 @@ (define-public gnome-video-effects
 (define-public cheese
   (package
     (name "cheese")
-    (version "43.0")
+    (version "44.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/" name "/"
@@ -11352,7 +11352,7 @@ (define-public cheese
                                   version ".tar.xz"))
               (sha256
                (base32
-                "02vzcvk2s6cwvdw6v6qmlq3znamy6zwv7l6nlbqjfwrj7i54qmvl"))))
+                "13pnz35yvwvmk1iyhcp1a94yal4rh610rxmsp3rdsm4yr728a8az"))))
     (arguments
      (list #:glib-or-gtk? #t
            #:phases
@@ -11360,8 +11360,9 @@ (define-public cheese
                (add-after 'unpack 'skip-gtk-update-icon-cache
                  (lambda _
                    ;; Don't create 'icon-theme.cache'.
-                   (substitute* "meson_post_install.py"
-                     (("gtk-update-icon-cache") (which "true")))))
+                   (substitute* "meson.build"
+                     (("gtk_update_icon_cache: true")
+                      "gtk_update_icon_cache: false"))))
                (add-after 'install 'wrap-cheese
                  (lambda* (#:key inputs outputs #:allow-other-keys)
                    (wrap-program (search-input-file outputs "bin/cheese")

base-commit: 72e886328c14c832b2ed71c400069b63852ee18d
-- 
2.41.0




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

* [bug#67165] [PATCH gnome-team v3] gnu: cheese: Update to 44.1.
  2023-11-14  0:01 [bug#67165] [PATCH] gnu: cheese: Update to 44.1 Vivien Kraus via Guix-patches via
  2023-11-14  0:01 ` [bug#67165] [PATCH gnome-team v2] " Vivien Kraus via Guix-patches via
@ 2023-11-14  0:01 ` Vivien Kraus via Guix-patches via
  2023-11-15  5:18 ` [bug#67165] [PATCH gnome-team v2] " Liliana Marie Prikler
  2 siblings, 0 replies; 4+ messages in thread
From: Vivien Kraus via Guix-patches via @ 2023-11-14  0:01 UTC (permalink / raw)
  To: 67165; +Cc: rg, Liliana Marie Prikler, maxim.cournoyer

The build system changed how it disables icon-theme.cache.

* gnu/packages/gnome.scm (cheese): Update to 44.1.
[#:phases]<skip-gtk-update-icon-cache>: Update.

Change-Id: I95044d29da019345d14b5fe8f1671f0f7046fba3
---
 gnu/packages/gnome.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 2958da2cd9..69212ca0ef 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11344,7 +11344,7 @@ (define-public gnome-video-effects
 (define-public cheese
   (package
     (name "cheese")
-    (version "43.0")
+    (version "44.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/" name "/"
@@ -11352,7 +11352,7 @@ (define-public cheese
                                   version ".tar.xz"))
               (sha256
                (base32
-                "02vzcvk2s6cwvdw6v6qmlq3znamy6zwv7l6nlbqjfwrj7i54qmvl"))))
+                "13pnz35yvwvmk1iyhcp1a94yal4rh610rxmsp3rdsm4yr728a8az"))))
     (arguments
      (list #:glib-or-gtk? #t
            #:phases
@@ -11360,8 +11360,9 @@ (define-public cheese
                (add-after 'unpack 'skip-gtk-update-icon-cache
                  (lambda _
                    ;; Don't create 'icon-theme.cache'.
-                   (substitute* "meson_post_install.py"
-                     (("gtk-update-icon-cache") (which "true")))))
+                   (substitute* "meson.build"
+                     (("gtk_update_icon_cache: true")
+                      "gtk_update_icon_cache: false"))))
                (add-after 'install 'wrap-cheese
                  (lambda* (#:key inputs outputs #:allow-other-keys)
                    (wrap-program (search-input-file outputs "bin/cheese")

base-commit: 72e886328c14c832b2ed71c400069b63852ee18d
-- 
2.41.0




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

* [bug#67165] [PATCH gnome-team v2] gnu: cheese: Update to 44.1.
  2023-11-14  0:01 [bug#67165] [PATCH] gnu: cheese: Update to 44.1 Vivien Kraus via Guix-patches via
  2023-11-14  0:01 ` [bug#67165] [PATCH gnome-team v2] " Vivien Kraus via Guix-patches via
  2023-11-14  0:01 ` [bug#67165] [PATCH gnome-team v3] " Vivien Kraus via Guix-patches via
@ 2023-11-15  5:18 ` Liliana Marie Prikler
  2 siblings, 0 replies; 4+ messages in thread
From: Liliana Marie Prikler @ 2023-11-15  5:18 UTC (permalink / raw)
  To: Vivien Kraus, 67165; +Cc: rg, maxim.cournoyer

Am Dienstag, dem 14.11.2023 um 01:01 +0100 schrieb Vivien Kraus:
> The build system changed how it disables icon-theme.cache.
> 
> * gnu/packages/gnome.scm (cheese): Update to 44.1.
> [#:phase 'skip-gtk-update-icon-cache]: Update.
I personally prefer [#:phases]<the-phase>.  (I don't think #:phase
'the-phase is used anywhere.)  Instead of "Update" you might want to
say "Adjust accordingly."


Cheers




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

end of thread, other threads:[~2023-11-16  6:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-14  0:01 [bug#67165] [PATCH] gnu: cheese: Update to 44.1 Vivien Kraus via Guix-patches via
2023-11-14  0:01 ` [bug#67165] [PATCH gnome-team v2] " Vivien Kraus via Guix-patches via
2023-11-14  0:01 ` [bug#67165] [PATCH gnome-team v3] " Vivien Kraus via Guix-patches via
2023-11-15  5:18 ` [bug#67165] [PATCH gnome-team v2] " Liliana Marie Prikler

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.