GNU bug report logs - #53757
[PATCH] fix i3-gaps by updating to 4.20.1

Previous Next

Package: guix-patches;

Reported by: Gabriel Wicki <gabriel <at> erlikon.ch>

Date: Thu, 3 Feb 2022 18:48: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 53757 in the body.
You can then email your comments to 53757 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#53757; Package guix-patches. (Thu, 03 Feb 2022 18:48:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Gabriel Wicki <gabriel <at> erlikon.ch>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 03 Feb 2022 18:48:02 GMT) Full text and rfc822 format available.

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

From: Gabriel Wicki <gabriel <at> erlikon.ch>
To: guix-patches <at> gnu.org
Subject: [PATCH] fix i3-gaps by updating to 4.20.1
Date: Thu, 3 Feb 2022 19:46:20 +0100
Hello

i3-gaps was broken, the patch below fixes this and updates the package
to 4.20.1.

Thanks to lfam for their assistance on irc!

Kind regards

Gabriel 


From c03cc3c3f3e522f3eba6cf00f2a8ccaa121ced06 Mon Sep 17 00:00:00 2001
From: Gabriel Wicki <gabriel <at> erlikon.ch>
Date: Thu, 3 Feb 2022 19:38:57 +0100
Subject: [PATCH] gnu: i3-gaps: Update to 4.20.1

* gnu/packages/wm (i3-gaps): Update to 4.20.1
---
 gnu/packages/wm.scm | 33 ++++++++++++++++++---------------
 1 file changed, 18 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 93040895bf..de67177730 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -49,6 +49,7 @@
 ;;; Copyright © 2021 jgart <jgart <at> dismail.de>
 ;;; Copyright © 2021 Disseminate Dissent <disseminatedissent <at> protonmail.com>
 ;;; Copyright © 2022 John Kehayias <john.kehayias <at> protonmail.com>
+;;; Copyright © 2022 Gabriel Wicki <gabriel <at> erlikon.ch>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -356,20 +357,22 @@ (define-public i3-wm
     (license license:bsd-3)))
 
 (define-public i3-gaps
-  (package (inherit i3-wm)
-           (name "i3-gaps")
-           (version "4.18.3")
-           (source (origin
-                     (method url-fetch)
-                     (uri (string-append
-                           "https://github.com/Airblader/i3/releases/download/"
-                           version "/i3-" version ".tar.bz2"))
-                     (sha256
-                      (base32
-                       "1hcakwyz78lgp8mhqv7pw86jlb3m415pfql1q19rkijnhm3fn3ci"))))
-           (home-page "https://github.com/Airblader/i3")
-           (synopsis "Tiling window manager with gaps")
-           (description "i3-gaps is a fork of i3wm, a tiling window manager
+  (package
+    (inherit i3-wm)
+    (name "i3-gaps")
+    (version "4.20.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/Airblader/i3")
+                    (commit version)))
+              (sha256
+               (base32
+                "0g0qmv2gpv9qbhj9h5f4c4vfs6ndzq2rblgx9md85iharwp5sbb9"))))
+    (home-page "https://github.com/Airblader/i3")
+    (synopsis "Tiling window manager with gaps")
+    (description
+     "i3-gaps is a fork of i3wm, a tiling window manager
 for X11.  It is kept up to date with upstream, adding a few additional
 features such as gaps between windows.
 
@@ -382,7 +385,7 @@ (define-public i3-gaps
 
 i3 uses a plain-text configuration file, and can be extended and controlled
 from many programming languages.")
-           (license license:bsd-3)))
+    (license license:bsd-3)))
 
 (define-public i3lock
   (package

base-commit: 5fe10d1b97b1ea183eebcc44de175e1d135ae558
-- 
2.34.0





Reply sent to Leo Famulari <leo <at> famulari.name>:
You have taken responsibility. (Thu, 03 Feb 2022 19:22:02 GMT) Full text and rfc822 format available.

Notification sent to Gabriel Wicki <gabriel <at> erlikon.ch>:
bug acknowledged by developer. (Thu, 03 Feb 2022 19:22:02 GMT) Full text and rfc822 format available.

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

From: Leo Famulari <leo <at> famulari.name>
To: Gabriel Wicki <gabriel <at> erlikon.ch>
Cc: 53757-done <at> debbugs.gnu.org
Subject: Re: [bug#53757] [PATCH] fix i3-gaps by updating to 4.20.1
Date: Thu, 3 Feb 2022 14:21:27 -0500
On Thu, Feb 03, 2022 at 07:46:20PM +0100, Gabriel Wicki wrote:
> Hello
> 
> i3-gaps was broken, the patch below fixes this and updates the package
> to 4.20.1.
> 
> Thanks to lfam for their assistance on irc!
> 
> Kind regards
> 
> Gabriel 
> 
> 
> From c03cc3c3f3e522f3eba6cf00f2a8ccaa121ced06 Mon Sep 17 00:00:00 2001
> From: Gabriel Wicki <gabriel <at> erlikon.ch>
> Date: Thu, 3 Feb 2022 19:38:57 +0100
> Subject: [PATCH] gnu: i3-gaps: Update to 4.20.1
> 
> * gnu/packages/wm (i3-gaps): Update to 4.20.1

Thanks! I made sure to list all the changes in the commit message
(switch from url-fetch to git-fetch) and pushed as
70f2207152793d74b78b66b04b66fbbdd4d7c620




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

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

Previous Next


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