From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 22 07:22:49 2022 Received: (at submit) by debbugs.gnu.org; 22 Jan 2022 12:22:49 +0000 Received: from localhost ([127.0.0.1]:35957 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nBFPt-0006Zj-23 for submit@debbugs.gnu.org; Sat, 22 Jan 2022 07:22:49 -0500 Received: from lists.gnu.org ([209.51.188.17]:59444) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nBFPq-0006ZV-DL for submit@debbugs.gnu.org; Sat, 22 Jan 2022 07:22:47 -0500 Received: from eggs.gnu.org ([209.51.188.92]:59082) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nBFPo-0008E3-IB for guix-patches@gnu.org; Sat, 22 Jan 2022 07:22:45 -0500 Received: from knopi.disroot.org ([178.21.23.139]:36358) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nBFPl-0000AG-QW for guix-patches@gnu.org; Sat, 22 Jan 2022 07:22:43 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id AA46A9102; Sat, 22 Jan 2022 13:22:38 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id I3PXj-OkxiGc; Sat, 22 Jan 2022 13:22:36 +0100 (CET) From: "(unmatched-parenthesis" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1642854156; bh=CeaIvKbBbf/Z7GnGGp7JyCQrREzNKBlWVkkuUNrMPSQ=; h=From:To:Cc:Subject:Date; b=V535GFUVO+gk0PLb+93oH/4HZAmUnojSRaTIGfRYIs0zIC4wbVYo1+TP/biKTMnoX PgDszSXlnXnEMX1vbytE4kAQ1M3tLV3zS1wPxjiZg6pP06klNZ6ia5yeEzUXAZM0Gg OLMzxJJl2aORT+d9tcYHLuXl1GqBbW/BRBMcJXkFjIhKoYY0mYPvseHni8m8murYs4 2DjieOwgDaStyssAKZbV9R402VSd7HBE7pp91Cy8zw5ue+nbvNh24b7McocXbqe7S5 5cosx6Xfrq6t7C6Gfcc+q1QUDKj4Gl6cALs4OmdgK/X9Ifz3ETbygk+VzRUQC/JXrN kLg/vdYvKso/Q== To: guix-patches@gnu.org Subject: [PATCH 1/3] gnu: Add python-i3ipc Date: Sat, 22 Jan 2022 11:47:22 +0000 Message-Id: <20220122114722.21774-1-paren@disroot.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=paren@disroot.org; helo=knopi.disroot.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: "\(unmatched-parenthesis" X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * 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 ;;; Copyright © 2021 Disseminate Dissent ;;; Copyright © 2022 John Kehayias +;;; Copyright © 2022 (unmatched parenthesis ;;; ;;; 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 From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 22 07:23:14 2022 Received: (at submit) by debbugs.gnu.org; 22 Jan 2022 12:23:15 +0000 Received: from localhost ([127.0.0.1]:35966 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nBFQI-0006bl-KT for submit@debbugs.gnu.org; Sat, 22 Jan 2022 07:23:14 -0500 Received: from lists.gnu.org ([209.51.188.17]:59840) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nBFQH-0006bf-Tu for submit@debbugs.gnu.org; Sat, 22 Jan 2022 07:23:14 -0500 Received: from eggs.gnu.org ([209.51.188.92]:59138) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nBFQH-0008V1-PU for guix-patches@gnu.org; Sat, 22 Jan 2022 07:23:13 -0500 Received: from knopi.disroot.org ([178.21.23.139]:43570) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nBFQF-0000Ct-QB for guix-patches@gnu.org; Sat, 22 Jan 2022 07:23:13 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id E0E279102; Sat, 22 Jan 2022 13:23:09 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3X7CkXc6K2lw; Sat, 22 Jan 2022 13:23:08 +0100 (CET) From: "(unmatched-parenthesis" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1642854187; bh=Vgvz8SpCcXB4aE85o9DziI2k4p8qN/uU2rsRAzWhXi8=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=WILksKbYiiiXmjpdBXdA3dHrdYoJWObBF+yyEinf3I68D9mXU3KbxXGUSyWWy5S43 Jwba4lCZdvodcYc0eOmUOn540M035qR4AslvCNlNGXyr4Wog/emsmmc227+MiWfrd7 bvLMaAbja3sSdTQYKZAeMpgZItaagQXebl4oYifCCZfzKiyIofqnjA+g02vQTs8iQB 0LOI0QPmxeeYFPjsiWazO6fXQBv6shnnCOxl96mbAdIGaCM0/aRRkHg7y6N1Veclk8 VUKUZXRk6m06YHDD4XaTP2RhAO6FFZ8k3qioyX+DmF96I5TK2LW/LvjM4u7WXZybD6 NylRNzZDJG3kg== To: guix-patches@gnu.org Subject: [PATCH 3/3] gnu: Add i3-autotiling Date: Sat, 22 Jan 2022 11:47:24 +0000 Message-Id: <20220122114722.21774-3-paren@disroot.org> In-Reply-To: <20220122114722.21774-1-paren@disroot.org> References: <20220122114722.21774-1-paren@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=paren@disroot.org; helo=knopi.disroot.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: "\(unmatched-parenthesis" X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * 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 From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 25 16:26:46 2022 Received: (at 53444-done) by debbugs.gnu.org; 25 Sep 2022 20:26:47 +0000 Received: from localhost ([127.0.0.1]:48592 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ocYD8-00041K-MA for submit@debbugs.gnu.org; Sun, 25 Sep 2022 16:26:46 -0400 Received: from m4s11.vlinux.de ([83.151.27.109]:45208 helo=bjoernhoefling.de) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ocYD3-000418-8J for 53444-done@debbugs.gnu.org; Sun, 25 Sep 2022 16:26:45 -0400 Received: from alma-ubu.fritz.box (p508ac0e4.dip0.t-ipconnect.de [80.138.192.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by bjoernhoefling.de (Postfix) with ESMTPSA id 691933F8D8; Sun, 25 Sep 2022 22:26:39 +0200 (CEST) Date: Sun, 25 Sep 2022 22:26:38 +0200 From: =?UTF-8?B?QmrDtnJuIEjDtmZsaW5n?= Subject: Re: [bug#53444] [PATCH 1/3] gnu: Add python-i3ipc Message-ID: <20220925222638.44157da4@alma-ubu.fritz.box> In-Reply-To: <20220122114722.21774-1-paren@disroot.org> References: <20220122114722.21774-1-paren@disroot.org> X-Mailer: Claws Mail 3.17.5 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/hyiRDEyS/=y0zAwkyCC/j5I"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Spam-Score: 1.6 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: On Sat, 22 Jan 2022 11:47:22 +0000 "\(unmatched-parenthesis via Guix-patches" via 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 Content analysis details: (1.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_NONE SPF: sender does not publish an SPF Record 1.2 MISSING_HEADERS Missing To: header 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.4 KHOP_HELO_FCRDNS Relay HELO differs from its IP's reverse DNS X-Debbugs-Envelope-To: 53444-done Cc: "\(unmatched-parenthesis" , 53444-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.2 (/) --Sig_/hyiRDEyS/=y0zAwkyCC/j5I Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Sat, 22 Jan 2022 11:47:22 +0000 "\(unmatched-parenthesis via Guix-patches" via 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=C3=B6rn --Sig_/hyiRDEyS/=y0zAwkyCC/j5I Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iF0EAREKAB0WIQQiGUP0np8nb5SZM4K/KGy2WT5f/QUCYzC5fgAKCRC/KGy2WT5f /dauAJ4hPKnh/HIOcE0ffdYLSq8CN1ViQwCdFMUIJa6RlmEyeezcrsx4sbKrFq4= =F3gd -----END PGP SIGNATURE----- --Sig_/hyiRDEyS/=y0zAwkyCC/j5I-- From unknown Sun Jun 22 00:21:02 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 24 Oct 2022 11:24:08 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator