GNU bug report logs - #67165
[PATCH] gnu: cheese: Update to 44.1.

Previous Next

Package: guix-patches;

Reported by: Vivien Kraus <vivien <at> planete-kraus.eu>

Date: Tue, 14 Nov 2023 11:43:04 UTC

Severity: normal

Tags: patch

Fixed in versions 67354, 67223, 67167, 67163, 67413, 67353, 67348

Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 67165 in the body.
You can then email your comments to 67165 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#67165; Package guix-patches. (Tue, 14 Nov 2023 11:43:04 GMT) Full text and rfc822 format available.

Acknowledgement sent to Vivien Kraus <vivien <at> planete-kraus.eu>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 14 Nov 2023 11:43:04 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Vivien Kraus <vivien <at> planete-kraus.eu>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: cheese: Update to 44.1.
Date: Tue, 14 Nov 2023 01:01:22 +0100
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




Information forwarded to liliana.prikler <at> gmail.com, maxim.cournoyer <at> gmail.com, rg <at> raghavgururajan.name, guix-patches <at> gnu.org:
bug#67165; Package guix-patches. (Tue, 14 Nov 2023 12:39:03 GMT) Full text and rfc822 format available.

Information forwarded to liliana.prikler <at> gmail.com, maxim.cournoyer <at> gmail.com, rg <at> raghavgururajan.name, guix-patches <at> gnu.org:
bug#67165; Package guix-patches. (Tue, 14 Nov 2023 13:21:03 GMT) Full text and rfc822 format available.

Message #11 received at 67165 <at> debbugs.gnu.org (full text, mbox):

From: Vivien Kraus <vivien <at> planete-kraus.eu>
To: 67165 <at> debbugs.gnu.org
Subject: [PATCH gnome-team v2] gnu: cheese: Update to 44.1.
Date: Tue, 14 Nov 2023 01:01:22 +0100
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




Information forwarded to guix-patches <at> gnu.org:
bug#67165; Package guix-patches. (Wed, 15 Nov 2023 05:19:01 GMT) Full text and rfc822 format available.

Message #14 received at 67165 <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: Vivien Kraus <vivien <at> planete-kraus.eu>, 67165 <at> debbugs.gnu.org
Cc: rg <at> raghavgururajan.name, maxim.cournoyer <at> gmail.com
Subject: Re: [bug#67165] [PATCH gnome-team v2] gnu: cheese: Update to 44.1.
Date: Wed, 15 Nov 2023 06:18:02 +0100
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




Information forwarded to guix-patches <at> gnu.org:
bug#67165; Package guix-patches. (Thu, 16 Nov 2023 06:47:05 GMT) Full text and rfc822 format available.

Message #17 received at 67165 <at> debbugs.gnu.org (full text, mbox):

From: Vivien Kraus <vivien <at> planete-kraus.eu>
To: 67165 <at> debbugs.gnu.org
Cc: rg <at> raghavgururajan.name, Liliana Marie Prikler <liliana.prikler <at> gmail.com>,
 maxim.cournoyer <at> gmail.com
Subject: [PATCH gnome-team v3] gnu: cheese: Update to 44.1.
Date: Tue, 14 Nov 2023 01:01:22 +0100
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




bug marked as fixed in version 67354 67223 67167 67163 67413 67353 67348, send any further explanations to 67165 <at> debbugs.gnu.org and Vivien Kraus <vivien <at> planete-kraus.eu> Request was from Liliana Marie Prikler <liliana.prikler <at> gmail.com> to control <at> debbugs.gnu.org. (Tue, 02 Jan 2024 20:40:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 31 Jan 2024 12:24:12 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 99 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.