GNU bug report logs - #65397
[PATCH gnome-team 0/3] Update Evolution

Previous Next

Package: guix-patches;

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

Date: Sun, 20 Aug 2023 06:30:02 UTC

Severity: normal

Tags: patch

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 65397 in the body.
You can then email your comments to 65397 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 liliana.prikler <at> gmail.com, maxim.cournoyer <at> gmail.com, rg <at> raghavgururajan.name, guix-patches <at> gnu.org:
bug#65397; Package guix-patches. (Sun, 20 Aug 2023 06:30:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
New bug report received and forwarded. Copy sent to liliana.prikler <at> gmail.com, maxim.cournoyer <at> gmail.com, rg <at> raghavgururajan.name, guix-patches <at> gnu.org. (Sun, 20 Aug 2023 06:30:02 GMT) Full text and rfc822 format available.

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

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH gnome-team 0/3] Update Evolution
Date: Sun, 20 Aug 2023 08:25:47 +0200
Hi Guix,

having reproducible CI again, let's start doing some GNOME application
packaging.  For reference, the string freeze for GNOME 45 is this Saturday
and release candidates are the week after that.  We should probably finish
our work on GNOME 44 soon ;)

Cheers

Liliana Marie Prikler (3):
  gnu: gnome-online-accounts: Update to 3.48.0.
  gnu: evolution-data-server: Update to 3.48.4.
  gnu: evolution: Update to 3.48.4.

 gnu/packages/gnome.scm | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)


base-commit: e43498b32dcbbf055d72339086213cd60c336acf
-- 
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#65397; Package guix-patches. (Sun, 20 Aug 2023 06:31:01 GMT) Full text and rfc822 format available.

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

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: 65397 <at> debbugs.gnu.org
Subject: [PATCH gnome-team 1/3] gnu: gnome-online-accounts: Update to 3.48.0.
Date: Sun, 20 Aug 2023 08:21:19 +0200
* gnu/packages/gnome.scm (gnome-online-accounts): Update to 3.48.0.
[arguments]: Adjust ‘disable-gtk-update-icon-cache’ accordingly.
Move it after unpack.
---
 gnu/packages/gnome.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index d718764dfc..1c4d3f29a0 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7949,7 +7949,7 @@ (define-public mutter
 (define-public gnome-online-accounts
   (package
     (name "gnome-online-accounts")
-    (version "3.45.2")
+    (version "3.48.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/" name "/"
@@ -7957,16 +7957,18 @@ (define-public gnome-online-accounts
                                   name "-" version ".tar.xz"))
               (sha256
                (base32
-                "15zzzndbfba8a497vxb6cmy1y22l3lfn4sx9s9r59kwzd83i6fxn"))))
+                "1gvmc4k5vm4qd97yfkd5a4sixz0pfq9nblss42c2mmyvzzybk2s1"))))
     (build-system meson-build-system)
     (arguments
      (list
       #:glib-or-gtk? #t
       #:phases
       #~(modify-phases %standard-phases
-          (add-before 'install 'disable-gtk-update-icon-cache
+          (add-after 'unpack 'disable-gtk-update-icon-cache
             (lambda _
-              (setenv "DESTDIR" "/"))))))
+              (substitute* "meson.build"
+                (("gtk_update_icon_cache: true")
+                 "gtk_update_icon_cache: false")))))))
     (native-inputs
      (list gettext-minimal
            `(,glib "bin")               ; for glib-compile-schemas, etc.
-- 
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#65397; Package guix-patches. (Sun, 20 Aug 2023 06:31:02 GMT) Full text and rfc822 format available.

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

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: 65397 <at> debbugs.gnu.org
Subject: [PATCH gnome-team 2/3] gnu: evolution-data-server: Update to 3.48.4.
Date: Sun, 20 Aug 2023 08:22:08 +0200
* gnu/packages/gnome.scm (evolution-data-server): Update to 3.48.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 1c4d3f29a0..68b3c86175 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -8024,7 +8024,7 @@ (define-public gnome-online-accounts-3.44
 (define-public evolution-data-server
   (package
     (name "evolution-data-server")
-    (version "3.46.4")
+    (version "3.48.4")
     (source
      (origin
        (method url-fetch)
@@ -8032,7 +8032,7 @@ (define-public evolution-data-server
                            (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
-        (base32 "1j0c7kwmjng7spkqz6vfd8gyvw65invjsf5mqzbsr7y58m0jb6x5"))))
+        (base32 "0q3d5masw20sr6xm2rg3170a4pxsh23ywyq1rkzhmyvyn69kyzlr"))))
     (build-system cmake-build-system)
     (arguments
      (list
-- 
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#65397; Package guix-patches. (Sun, 20 Aug 2023 06:31:02 GMT) Full text and rfc822 format available.

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

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: 65397 <at> debbugs.gnu.org
Subject: [PATCH gnome-team 3/3] gnu: evolution: Update to 3.48.4.
Date: Sun, 20 Aug 2023 08:23:00 +0200
* gnu/packages/gnome.scm (evolution): Update to 3.48.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 68b3c86175..08debe6e8a 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11612,7 +11612,7 @@ (define-public libdazzle
 (define-public evolution
   (package
     (name "evolution")
-    (version "3.46.4")
+    (version "3.48.4")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/evolution/"
@@ -11620,7 +11620,7 @@ (define-public evolution
                                   "evolution-" version ".tar.xz"))
               (sha256
                (base32
-                "0gbvd460hsha0gss9rjjpyisq336fwxd8y1xf55s6ifjrqql423s"))))
+                "1dwbwy67xg1fypxj0qyhhvy608hbw19gqhvxqkr739shl3mrjbx0"))))
     (build-system cmake-build-system)
     (arguments
      (list
-- 
2.41.0





Information forwarded to guix-patches <at> gnu.org:
bug#65397; Package guix-patches. (Sun, 27 Aug 2023 01:22:02 GMT) Full text and rfc822 format available.

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

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Cc: 65397 <at> debbugs.gnu.org, rg <at> raghavgururajan.name
Subject: Re: [bug#65397] [PATCH gnome-team 3/3] gnu: evolution: Update to
 3.48.4.
Date: Sat, 26 Aug 2023 21:21:08 -0400
Hi Liliana,

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

> * gnu/packages/gnome.scm (evolution): Update to 3.48.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 68b3c86175..08debe6e8a 100644
> --- a/gnu/packages/gnome.scm
> +++ b/gnu/packages/gnome.scm
> @@ -11612,7 +11612,7 @@ (define-public libdazzle
>  (define-public evolution
>    (package
>      (name "evolution")
> -    (version "3.46.4")
> +    (version "3.48.4")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append "mirror://gnome/sources/evolution/"
> @@ -11620,7 +11620,7 @@ (define-public evolution
>                                    "evolution-" version ".tar.xz"))
>                (sha256
>                 (base32
> -                "0gbvd460hsha0gss9rjjpyisq336fwxd8y1xf55s6ifjrqql423s"))))
> +                "1dwbwy67xg1fypxj0qyhhvy608hbw19gqhvxqkr739shl3mrjbx0"))))
>      (build-system cmake-build-system)
>      (arguments
>       (list

I haven't tried to build or tested any of the upgrades, but the code
LGTM, for this whole series.

-- 
Thanks,
Maxim




Reply sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
You have taken responsibility. (Sun, 27 Aug 2023 06:10:01 GMT) Full text and rfc822 format available.

Notification sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
bug acknowledged by developer. (Sun, 27 Aug 2023 06:10:02 GMT) Full text and rfc822 format available.

Message #22 received at 65397-done <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Cc: rg <at> raghavgururajan.name, 65397-done <at> debbugs.gnu.org
Subject: Re: [bug#65397] [PATCH gnome-team 3/3] gnu: evolution: Update to
 3.48.4.
Date: Sun, 27 Aug 2023 08:09:27 +0200
Am Samstag, dem 26.08.2023 um 21:21 -0400 schrieb Maxim Cournoyer:
> Hi Liliana,
> 
> Liliana Marie Prikler <liliana.prikler <at> gmail.com> writes:
> 
> > * gnu/packages/gnome.scm (evolution): Update to 3.48.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 68b3c86175..08debe6e8a 100644
> > --- a/gnu/packages/gnome.scm
> > +++ b/gnu/packages/gnome.scm
> > @@ -11612,7 +11612,7 @@ (define-public libdazzle
> >  (define-public evolution
> >    (package
> >      (name "evolution")
> > -    (version "3.46.4")
> > +    (version "3.48.4")
> >      (source (origin
> >                (method url-fetch)
> >                (uri (string-append
> > "mirror://gnome/sources/evolution/"
> > @@ -11620,7 +11620,7 @@ (define-public evolution
> >                                    "evolution-" version ".tar.xz"))
> >                (sha256
> >                 (base32
> > -               
> > "0gbvd460hsha0gss9rjjpyisq336fwxd8y1xf55s6ifjrqql423s"))))
> > +               
> > "1dwbwy67xg1fypxj0qyhhvy608hbw19gqhvxqkr739shl3mrjbx0"))))
> >      (build-system cmake-build-system)
> >      (arguments
> >       (list
> 
> I haven't tried to build or tested any of the upgrades, but the code
> LGTM, for this whole series.
Thanks, I've pushed it now.


bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 24 Sep 2023 11:24:19 GMT) Full text and rfc822 format available.

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

Previous Next


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