GNU bug report logs - #50800
[PATCH] gnu: swappy: Update to 1.4.0.

Previous Next

Package: guix-patches;

Reported by: Alexandr Vityazev <avityazev <at> posteo.org>

Date: Sat, 25 Sep 2021 09:45:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

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 50800 in the body.
You can then email your comments to 50800 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#50800; Package guix-patches. (Sat, 25 Sep 2021 09:45:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Alexandr Vityazev <avityazev <at> posteo.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 25 Sep 2021 09:45:02 GMT) Full text and rfc822 format available.

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

From: Alexandr Vityazev <avityazev <at> posteo.org>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: swappy: Update to 1.4.0.
Date: Sat, 25 Sep 2021 09:44:11 +0000
* gnu/packages/image.scm (swappy): Update to 1.4.0.
---
 gnu/packages/image.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 6e67c56d78..bdcf43c03f 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -30,6 +30,7 @@
 ;;; Copyright © 2020, 2021 Vinicius Monego <monego <at> posteo.net>
 ;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus <at> gmail.com>
 ;;; Copyright © 2021 Nicolò Balzarotti <nicolo <at> nixo.xyz>
+;;; Copyright © 2021 Alexandr Vityazev <avityazev <at> posteo.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1852,7 +1853,7 @@ Features:
 (define-public swappy
   (package
     (name "swappy")
-    (version "1.2.1")
+    (version "1.4.0")
     (source
      (origin
        (method git-fetch)
@@ -1861,7 +1862,7 @@ Features:
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "14ac2jmnak7avcz0jhqjm30vk7pv3gq5aq5rdyh84k8c613kkicf"))))
+        (base32 "1s2lp3bz30svqdg6467jvncim0qgl0q1b1nqxnnci6kljbp5g0xh"))))
     (build-system meson-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)
-- 
2.33.0



-- 

Alexandr Vityazev




Information forwarded to guix-patches <at> gnu.org:
bug#50800; Package guix-patches. (Sat, 25 Sep 2021 13:05:02 GMT) Full text and rfc822 format available.

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

From: Alexandr Vityazev <avityazev <at> posteo.org>
To: 50800 <at> debbugs.gnu.org
Subject: [PATCH] gnu: swappy: Add propagated-inputs.
Date: Sat, 25 Sep 2021 13:04:50 +0000
Add font-awesome to propagated-inputs to properly render the icons.

* gnu/packages/image.scm (swappy)[propagated-inputs]:
Add font-awesome;
[use-modules]: Add (gnu packages fonts).
---
 gnu/packages/image.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index bdcf43c03f..0e59c6f643 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -91,6 +91,7 @@
   #:use-module (gnu packages xdisorg)
   #:use-module (gnu packages xml)
   #:use-module (gnu packages xorg)
+  #:use-module (gnu packages fonts)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
@@ -1871,6 +1872,8 @@ Features:
     (inputs
      `(("gtk+" ,gtk+)
        ("libnotify" ,libnotify)))
+    (propagated-inputs
+     `(("font-awesome" ,font-awesome)))
     (home-page "https://github.com/jtheoof/swappy")
     (synopsis "Grab and edit on the fly snapshots of a Wayland compositor")
     (description
-- 
2.33.0



-- 

Alexandr Vityazev




Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Wed, 13 Oct 2021 09:16:01 GMT) Full text and rfc822 format available.

Notification sent to Alexandr Vityazev <avityazev <at> posteo.org>:
bug acknowledged by developer. (Wed, 13 Oct 2021 09:16:01 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: Alexandr Vityazev <avityazev <at> posteo.org>
Cc: 50800-done <at> debbugs.gnu.org
Subject: Re: bug#50800: [PATCH] gnu: swappy: Update to 1.4.0.
Date: Wed, 13 Oct 2021 11:15:15 +0200
Alexandr Vityazev <avityazev <at> posteo.org> skribis:

> Add font-awesome to propagated-inputs to properly render the icons.
>
> * gnu/packages/image.scm (swappy)[propagated-inputs]:
> Add font-awesome;
> [use-modules]: Add (gnu packages fonts).

[...]

> +    (propagated-inputs
> +     `(("font-awesome" ,font-awesome)))

This is an unusual thing to do but since this font is required for
proper functioning, let’s do that.

Applied as well the previous one, thanks!

Ludo’.




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

This bug report was last modified 3 years and 227 days ago.

Previous Next


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