GNU bug report logs - #70133
[PATCH] gnu: gpaste: Update to v44.1.

Previous Next

Package: guix-patches;

Reported by: attila.lendvai <at> gmail.com

Date: Mon, 1 Apr 2024 21:04:02 UTC

Severity: normal

Tags: patch

Done: Leo Famulari <leo <at> famulari.name>

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 70133 in the body.
You can then email your comments to 70133 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, vivien <at> planete-kraus.eu, guix-patches <at> gnu.org:
bug#70133; Package guix-patches. (Mon, 01 Apr 2024 21:04:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to attila.lendvai <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, vivien <at> planete-kraus.eu, guix-patches <at> gnu.org. (Mon, 01 Apr 2024 21:04:02 GMT) Full text and rfc822 format available.

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

From: attila.lendvai <at> gmail.com
To: guix-patches <at> gnu.org
Cc: Attila Lendvai <attila <at> lendvai.name>
Subject: [PATCH] gnu: gpaste: Update to v44.1.
Date: Mon,  1 Apr 2024 23:03:26 +0200
From: Attila Lendvai <attila <at> lendvai.name>

Change-Id: I2395c637caf151739740edca82fbb397e82d0fcf

* gnu/packages/gnome-xyz.scm (gpaste): Delete libarchive dependency (it seems
to be not needed anymore), add dependency to desktop-file-utils (for
update-desktop-database), and change gtk to gtk+ (which includes gdk).

Change-Id: I9e9ff51398bb49f2c81adbeac8817638ad62efa2
---
 gnu/packages/gnome-xyz.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index d81cf034a15..e8f70f477e5 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -1011,7 +1011,7 @@ (define-public gnome-shell-extension-night-theme-switcher
 (define-public gpaste
   (package
     (name "gpaste")
-    (version "42.2")
+    (version "44.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -1020,12 +1020,12 @@ (define-public gpaste
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0qq2p19p3r3lz8yfynpnf36cipv54bzdbmq1x5zgwhyl4yl41g28"))
+                "1amfr8hwf7401xa3fzaa8w17w3v3lxx0fkr7rqkkyfy57iavrykk"))
               (patches
                (search-patches "gpaste-fix-paths.patch"))))
     (build-system meson-build-system)
     (native-inputs
-     (list gcr-3
+     (list gcr
            gettext-minimal
            gobject-introspection
            (list glib "bin")            ; for glib-compile-resources
@@ -1033,11 +1033,11 @@ (define-public gpaste
            vala))
     (inputs
      (list appstream-glib
+           desktop-file-utils           ; for update-desktop-database
            gjs
-           gtk
+           gtk+
            mutter
-           libadwaita
-           libarchive))
+           libadwaita))
     (arguments
      (list #:glib-or-gtk? #true
            #:configure-flags

base-commit: 6e2db85ca83528199a46b002d2592bd4bef017c8
-- 
2.41.0





Information forwarded to guix-patches <at> gnu.org:
bug#70133; Package guix-patches. (Tue, 02 Apr 2024 16:57:02 GMT) Full text and rfc822 format available.

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

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: attila.lendvai <at> gmail.com, 70133 <at> debbugs.gnu.org
Cc: Raghav Gururajan <rg <at> raghavgururajan.name>,
 Attila Lendvai <attila <at> lendvai.name>, Vivien Kraus <vivien <at> planete-kraus.eu>,
 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Subject: Re: [bug#70133] [PATCH] gnu: gpaste: Update to v44.1.
Date: Tue, 02 Apr 2024 18:56:26 +0200
Am Montag, dem 01.04.2024 um 23:03 +0200 schrieb
attila.lendvai <at> gmail.com:
> From: Attila Lendvai <attila <at> lendvai.name>
> 
> Change-Id: I2395c637caf151739740edca82fbb397e82d0fcf
> 
> * gnu/packages/gnome-xyz.scm (gpaste): Delete libarchive dependency
> (it seems
> to be not needed anymore), add dependency to desktop-file-utils (for
> update-desktop-database), and change gtk to gtk+ (which includes
> gdk).
Make sure to follow our conventions for the ChangeLog.  In particular,
the "v" in the title is unnecessary; repeat the update for the
ChangeLog, and add a dedicated [inputs] "subsection" detailing the
changes (i.e. "Add desktop-file-utils.  Remove libarchive.  Replace…")

> 
> Change-Id: I9e9ff51398bb49f2c81adbeac8817638ad62efa2
> ---
>  gnu/packages/gnome-xyz.scm | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
> index d81cf034a15..e8f70f477e5 100644
> --- a/gnu/packages/gnome-xyz.scm
> +++ b/gnu/packages/gnome-xyz.scm
> @@ -1011,7 +1011,7 @@ (define-public gnome-shell-extension-night-
> theme-switcher
>  (define-public gpaste
>    (package
>      (name "gpaste")
> -    (version "42.2")
> +    (version "44.1")
>      (source (origin
>                (method git-fetch)
>                (uri (git-reference
> @@ -1020,12 +1020,12 @@ (define-public gpaste
>                (file-name (git-file-name name version))
>                (sha256
>                 (base32
> -               
> "0qq2p19p3r3lz8yfynpnf36cipv54bzdbmq1x5zgwhyl4yl41g28"))
> +               
> "1amfr8hwf7401xa3fzaa8w17w3v3lxx0fkr7rqkkyfy57iavrykk"))
>                (patches
>                 (search-patches "gpaste-fix-paths.patch"))))
>      (build-system meson-build-system)
>      (native-inputs
> -     (list gcr-3
> +     (list gcr
>             gettext-minimal
>             gobject-introspection
>             (list glib "bin")            ; for glib-compile-resources
> @@ -1033,11 +1033,11 @@ (define-public gpaste
>             vala))
>      (inputs
>       (list appstream-glib
> +           desktop-file-utils           ; for update-desktop-
> database
>             gjs
> -           gtk
> +           gtk+
>             mutter
> -           libadwaita
> -           libarchive))
> +           libadwaita))
>      (arguments
>       (list #:glib-or-gtk? #true
>             #:configure-flags
Content-wise LGTM.

Cheers

Reply sent to Leo Famulari <leo <at> famulari.name>:
You have taken responsibility. (Tue, 02 Apr 2024 19:06:02 GMT) Full text and rfc822 format available.

Notification sent to attila.lendvai <at> gmail.com:
bug acknowledged by developer. (Tue, 02 Apr 2024 19:06:02 GMT) Full text and rfc822 format available.

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

From: Leo Famulari <leo <at> famulari.name>
To: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Cc: attila.lendvai <at> gmail.com, Vivien Kraus <vivien <at> planete-kraus.eu>,
 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>,
 Raghav Gururajan <rg <at> raghavgururajan.name>, 70133-done <at> debbugs.gnu.org,
 Attila Lendvai <attila <at> lendvai.name>
Subject: Re: [bug#70133] [PATCH] gnu: gpaste: Update to v44.1.
Date: Tue, 2 Apr 2024 15:05:17 -0400
On Tue, Apr 02, 2024 at 06:56:26PM +0200, Liliana Marie Prikler wrote:
> Make sure to follow our conventions for the ChangeLog.  In particular,
> the "v" in the title is unnecessary; repeat the update for the
> ChangeLog, and add a dedicated [inputs] "subsection" detailing the
> changes (i.e. "Add desktop-file-utils.  Remove libarchive.  Replace…")

Thanks, I adjusted the changelog accordingly and pushed as
4d994f98a49e1a6e58b9b0b512a05efc1c431a50




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

This bug report was last modified 3 days ago.

Previous Next


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