GNU bug report logs - #53444
[PATCH 1/3] gnu: Add python-i3ipc

Previous Next

Package: guix-patches;

Reported by: "(unmatched-parenthesis" <paren <at> disroot.org>

Date: Sat, 22 Jan 2022 12:23:02 UTC

Severity: normal

Tags: patch

Done: Björn Höfling <bjoern.hoefling <at> bjoernhoefling.de>

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 53444 in the body.
You can then email your comments to 53444 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#53444; Package guix-patches. (Sat, 22 Jan 2022 12:23:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to "(unmatched-parenthesis" <paren <at> disroot.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 22 Jan 2022 12:23:02 GMT) Full text and rfc822 format available.

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

From: "(unmatched-parenthesis" <paren <at> disroot.org>
To: guix-patches <at> gnu.org
Cc: "\(unmatched-parenthesis" <paren <at> disroot.org>
Subject: [PATCH 1/3] gnu: Add python-i3ipc
Date: Sat, 22 Jan 2022 11:47:22 +0000
* gnu/packages/wm.scm(python-i3ipc): New variable.
---
 gnu/packages/wm.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 67e113aaa2..975247bf07 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 (unmatched parenthesis <paren <at> disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -541,6 +542,25 @@ (define-public python-i3-py
 (define-public python2-i3-py
   (package-with-python2 python-i3-py))
 
+(define-public python-i3ipc
+  (package
+   (name "python-i3ipc")
+   (version "2.2.1")
+   (source
+    (origin
+     (method url-fetch)
+     (uri (pypi-uri "i3ipc" version))
+     (sha256
+      (base32 "1s6crkdn7q8wmzl5d0pb6rdkhhbvp444yxilrgaylnbr2kbxg078"))))
+   (build-system python-build-system)
+   (arguments
+    ;; TODO: Fix tests
+    '(#:tests? #f))
+   (propagated-inputs (list python-xlib))
+   (home-page "https://github.com/altdesktop/i3ipc-python")
+   (synopsis "An improved Python library to control i3wm and sway")
+   (description "This package provides an improved Python library to control i3wm and sway.")
+   (license license:bsd-3)))
 (define-public qtile
   (package
     (name "qtile")
-- 
2.34.0





Information forwarded to guix-patches <at> gnu.org:
bug#53444; Package guix-patches. (Sat, 22 Jan 2022 12:24:01 GMT) Full text and rfc822 format available.

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

From: "(unmatched-parenthesis" <paren <at> disroot.org>
To: guix-patches <at> gnu.org
Cc: "\(unmatched-parenthesis" <paren <at> disroot.org>
Subject: [PATCH 3/3] gnu: Add i3-autotiling
Date: Sat, 22 Jan 2022 11:47:24 +0000
* gnu/packages/wm.scm(i3-autotiling): New variable.
---
 gnu/packages/wm.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index c791bcf44e..9b473b22b1 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -121,6 +121,7 @@ (define-module (gnu packages wm)
   #:use-module (gnu packages pretty-print)
   #:use-module (gnu packages pulseaudio)
   #:use-module (gnu packages python)
+  #:use-module (gnu packages python-build)
   #:use-module (gnu packages python-crypto)
   #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages readline)
@@ -564,6 +565,32 @@ (define-public python-i3ipc
 
 (define-public python2-i3ipc
   (package-with-python2 python-i3ipc))
+
+(define-public i3-autotiling
+  (package
+   (name "i3-autotiling")
+   (version "1.6")
+   (source
+    (origin
+     (method git-fetch)
+     (uri (git-reference
+	   (url "https://github.com/nwg-piotr/autotiling")
+	   (commit (string-append "v" version))))
+     (file-name (git-file-name name version))
+     (sha256
+      (base32
+       "1hjlvg7095s322gb43r9g7mqlsy3pj13l827jpnbn5x0918rq9rr"))))
+   (build-system python-build-system)
+   (arguments
+    ;; TODO: Fix tests
+    '(#:tests? #f))
+   (propagated-inputs
+    (list python-i3ipc python-setuptools python-wheel))
+   (home-page "https://github.com/nwg-piotr/autotiling")
+   (synopsis "Automatic layout tiling for i3wm and sway.")
+   (description "This package uses @code{python-i3ipc} to control the tiling of i3wm and sway. It automatically switches between horizontal and vertical layouts to make the best use of space without human intervention.")
+   (license license:gpl3+)))
+
 (define-public qtile
   (package
     (name "qtile")
-- 
2.34.0





Reply sent to Björn Höfling <bjoern.hoefling <at> bjoernhoefling.de>:
You have taken responsibility. (Sun, 25 Sep 2022 20:27:02 GMT) Full text and rfc822 format available.

Notification sent to "(unmatched-parenthesis" <paren <at> disroot.org>:
bug acknowledged by developer. (Sun, 25 Sep 2022 20:27:02 GMT) Full text and rfc822 format available.

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

From: Björn Höfling <bjoern.hoefling <at> bjoernhoefling.de>
Cc: "\(unmatched-parenthesis" <paren <at> disroot.org>, 53444-done <at> debbugs.gnu.org
Subject: Re: [bug#53444] [PATCH 1/3] gnu: Add python-i3ipc
Date: Sun, 25 Sep 2022 22:26:38 +0200
[Message part 1 (text/plain, inline)]
On Sat, 22 Jan 2022 11:47:22 +0000
"\(unmatched-parenthesis via Guix-patches" via <guix-patches <at> gnu.org>
wrote:

> * gnu/packages/wm.scm(python-i3ipc): New variable.

I'm closing this ticket, as it has the same content as #56717, which
was already applied as commits

86da72fb5b3a35a30660e81084ed0c90ec5af08f
515288874ff12c00ca8d1d22a94ef4b4903fec76

Björn
[Message part 2 (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 24 Oct 2022 11:24:08 GMT) Full text and rfc822 format available.

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

Previous Next


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