From unknown Wed Jun 18 23:09:58 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#73843 <73843@debbugs.gnu.org> To: bug#73843 <73843@debbugs.gnu.org> Subject: Status: [PATCH] gnu: dwl: Update to 0.6. Reply-To: bug#73843 <73843@debbugs.gnu.org> Date: Thu, 19 Jun 2025 06:09:58 +0000 retitle 73843 [PATCH] gnu: dwl: Update to 0.6. reassign 73843 guix-patches submitter 73843 kiasoc5 severity 73843 normal tag 73843 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Oct 16 21:24:29 2024 Received: (at submit) by debbugs.gnu.org; 17 Oct 2024 01:24:29 +0000 Received: from localhost ([127.0.0.1]:60986 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t1FFc-0000D5-VF for submit@debbugs.gnu.org; Wed, 16 Oct 2024 21:24:29 -0400 Received: from lists.gnu.org ([209.51.188.17]:35272) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t1FFb-0000Cx-1q for submit@debbugs.gnu.org; Wed, 16 Oct 2024 21:24:27 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t1FFG-0001a2-55 for guix-patches@gnu.org; Wed, 16 Oct 2024 21:24:06 -0400 Received: from [70.108.10.10] (helo=localhost.localdomain) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t1FFE-0000dO-24 for guix-patches@gnu.org; Wed, 16 Oct 2024 21:24:05 -0400 Received: from brainstorm (uid 1000) (envelope-from brainstorm@localhost.localdomain) id 420087 by localhost.localdomain (DragonFly Mail Agent v0.13); Wed, 16 Oct 2024 21:21:46 -0400 From: kiasoc5 To: guix-patches@gnu.org Subject: [PATCH] gnu: dwl: Update to 0.6. Date: Wed, 16 Oct 2024 21:21:44 -0400 Message-Id: X-Mailer: git-send-email 2.39.5 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Host-Lookup-Failed: Reverse DNS lookup failed for 70.108.10.10 (failed) Received-SPF: none client-ip=70.108.10.10; envelope-from=brainstorm@localhost.localdomain; helo=localhost.localdomain X-Spam_score_int: 25 X-Spam_score: 2.5 X-Spam_bar: ++ X-Spam_report: (2.5 / 5.0 requ) BAYES_00=-1.9, HEADER_FROM_DIFFERENT_DOMAINS=0.248, NO_DNS_FOR_FROM=0.001, RCVD_IN_PBL=3.335, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, RDNS_NONE=0.793, SPF_HELO_NONE=0.001, SPF_NONE=0.001, UNPARSEABLE_RELAY=0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.7 (-) X-Debbugs-Envelope-To: submit Cc: kiasoc5 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.7 (--) * gnu/packages/wm.scm (dwl): Update to 0.6. [origin]: Update repository url. [homepage]: Update homepage. [arguments]: Convert to G-exps, use #$output instead of assoc-ref. [inputs]: Remove wlroots-0.16; add wlroots. Change-Id: I567a99e88a899953049a9ce00d699ea73ee08c14 --- gnu/packages/wm.scm | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 38cb8cc717..750e9fa0ed 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -1597,31 +1597,31 @@ (define-public dunst (define-public dwl (package (name "dwl") - (version "0.4") + (version "0.6") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/djpohly/dwl") + (url "https://codeberg.org/dwl/dwl") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "0pj0h3zd2f60hxpavpmgzid1sj7hf9m5cgclbackljqq4gpwlvir")))) + "1j7lmp6k80g54hrsmwixh8ahpnbax4khgiybg8lhlvmq93618a3z")))) (build-system gnu-build-system) (arguments - `(#:tests? #f ; no tests - #:make-flags - (list - (string-append "CC=" ,(cc-for-target)) - (string-append "PREFIX=" (assoc-ref %outputs "out"))) - #:phases - (modify-phases %standard-phases - (delete 'configure)))) ; no configure + (list #:tests? #f ; no tests + #:make-flags + #~(list + #$(string-append "CC=" (cc-for-target)) + (string-append "PREFIX=" #$output)) + #:phases + #~(modify-phases %standard-phases + (delete 'configure)))) ; no configure (native-inputs (list pkg-config)) (inputs - (list wlroots-0.16)) - (home-page "https://github.com/djpohly/dwl") + (list wlroots)) + (home-page "https://codeberg/dwl/dwl") (synopsis "Dynamic window manager for Wayland") (description "@command{dwl} is a compact, hackable compositor for Wayland based on base-commit: 8f0d76152a4496960f4c2ec219839c5a48b0568e -- 2.39.5 From debbugs-submit-bounces@debbugs.gnu.org Wed Oct 16 21:28:46 2024 Received: (at control) by debbugs.gnu.org; 17 Oct 2024 01:28:46 +0000 Received: from localhost ([127.0.0.1]:32771 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t1FJm-0000RV-B2 for submit@debbugs.gnu.org; Wed, 16 Oct 2024 21:28:46 -0400 Received: from layka.disroot.org ([178.21.23.139]:52748) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t1FJk-0000RN-MW for control@debbugs.gnu.org; Wed, 16 Oct 2024 21:28:45 -0400 Received: from mail01.disroot.lan (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 55CC523D3D for ; Thu, 17 Oct 2024 03:28:23 +0200 (CEST) X-Virus-Scanned: SPAM Filter at disroot.org Received: from layka.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavis, port 10024) with ESMTP id a8vmmPhEsFOD for ; Thu, 17 Oct 2024 03:28:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1729128502; bh=DJxFPzM4McqKO///9MBMzKTf4oiTtzv726tqFml+TbE=; h=Date:From:To; b=c4HsKuB1Ihr0oDQ8IKf/+OvxTuWCdg4RaO3fUorKJnOL+gqa5WSWsb3n3GvocPZjC 5J/8h5YsHcD4/Y+aM1ZB2h7v5NdTv7y42jrl+ykvGJrretgDHGOk4GagG9IFGbFw1Q rAhyGnmMqNLGXu7gVdawm2rUrm9sQf5PGKz7rRD3BU9usxdf9898PCqlEMM0zLGrOF lpSXtBBojrD6fiaJMaqcqzJYS//OYgcm2I2zEuqTKJHYBa4kq/4eOvco3SV0wXdiqZ k4QgV29ApI3brr/wA8W6HifZsLDYgFlSvQk5dEWSpEI4YNHq745KFsvu6/cNSRkXii Cj2kB98HmQXvg== MIME-Version: 1.0 Date: Wed, 16 Oct 2024 21:28:22 -0400 From: kiasoc5@disroot.org To: Control Message-ID: X-Sender: kiasoc5@disroot.org Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: 2.0 (++) 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: merge 73845 73843 thanks Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 RCVD_IN_VALIDITY_SAFE_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [178.21.23.139 listed in sa-accredit.habeas.com] 0.0 RCVD_IN_VALIDITY_RPBL_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [178.21.23.139 listed in bl.score.senderscore.com] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject X-Debbugs-Envelope-To: control 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: 1.0 (+) merge 73845 73843 thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 17 12:24:01 2024 Received: (at 73843) by debbugs.gnu.org; 17 Oct 2024 16:24:01 +0000 Received: from localhost ([127.0.0.1]:35359 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t1TI8-00084M-Jb for submit@debbugs.gnu.org; Thu, 17 Oct 2024 12:24:00 -0400 Received: from smtp.domeneshop.no ([194.63.252.55]:39079) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t1TI4-000842-E6; Thu, 17 Oct 2024 12:23:58 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=xn--no-cja.eu; s=ds202402; h=Content-Transfer-Encoding:Content-Type: MIME-Version:Message-ID:Date:Subject:To:From:From:Sender:Reply-To:Subject: Date:Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=khTuf0XZFa15Itt/R1AwUx/SD+eEA8HbGI+LV+pphVE=; b=ntWGU+Aqyd0tPnGRL75FkM6upb 6/+eQT3JECo30rXRLM2kSksONHUpALonLul7vboLcUImwVE+kXjXWgN6ywb+pS/X1GTOIXFPzX/n9 sPYk3iglv60LhlYj2XsLGYAwajcRmeZneqRVbXc7xgrwyAnAsAgdDRUMdWvenDGopC1kh9mBO0zw8 XNW2nZhb6WkYUXyFORTU2RzNvcLt4Xa42/4k6s13R6l0hxZV/7alvSjmWkPGNUxeFdqxF7gL/MqfO pTiVq8TeYgCN+06zoOsPppK7QiHpWUL1WDUima3gq2VoUSuCD9YJvOBizlO3N4rMdQkyDVZLWHYah Ie2bHnfg==; Received: from [2a01:e0a:990:a960:b4f3:8f44:ec4:5af5] (port=49226 helo=lignux) by smtp.domeneshop.no with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.95) (envelope-from ) id 1t1TFW-00C3ZK-Ne; Thu, 17 Oct 2024 18:21:18 +0200 From: =?utf-8?Q?No=C3=A9_Lopez?= To: control@debbugs.gnu.org,73843@debbugs.gnu.org Subject: QA review for 73843 Date: Thu, 17 Oct 2024 18:22:15 +0200 Message-ID: <87y12mn1hk.fsf@xn--no-cja.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 73843 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: -1.0 (-) user guix usertag 73843 + reviewed-looks-good thanks Guix QA review form submission: Items marked as checked: Lint warnings, Package builds, Commit messages The home page says =C2=AB=C2=A0codeberg=C2=A0=C2=BB instead of =C2=AB=C2=A0= codeberg.org=C2=A0=C2=BB. Sending an updated patch right after. From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 17 12:25:35 2024 Received: (at 73843) by debbugs.gnu.org; 17 Oct 2024 16:25:35 +0000 Received: from localhost ([127.0.0.1]:35370 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t1TJe-0008DQ-AK for submit@debbugs.gnu.org; Thu, 17 Oct 2024 12:25:35 -0400 Received: from smtp1-g21.free.fr ([212.27.42.1]:12318) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t1TJb-0008An-Ii for 73843@debbugs.gnu.org; Thu, 17 Oct 2024 12:25:32 -0400 Received: from localhost.localdomain (unknown [IPv6:2a01:e0a:990:a960:b4f3:8f44:ec4:5af5]) by smtp1-g21.free.fr (Postfix) with ESMTP id CE70BB0059A; Thu, 17 Oct 2024 18:25:06 +0200 (CEST) From: =?UTF-8?q?No=C3=A9=20Lopez?= To: 73843@debbugs.gnu.org Subject: [PATCH v2] gnu: dwl: Update to 0.6. Date: Thu, 17 Oct 2024 18:25:59 +0200 Message-ID: X-Mailer: git-send-email 2.46.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 73843 Cc: kiasoc5 , =?UTF-8?q?No=C3=A9=20Lopez?= 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: -1.0 (-) From: kiasoc5 * gnu/packages/wm.scm (dwl): Update to 0.6. [origin]: Update repository url. [homepage]: Update homepage. [arguments]: Convert to G-exps, use #$output instead of assoc-ref. [inputs]: Remove wlroots-0.16; add wlroots. Change-Id: I567a99e88a899953049a9ce00d699ea73ee08c14 Signed-off-by: NoƩ Lopez --- gnu/packages/wm.scm | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 38cb8cc717..bfc1f6c449 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -1597,31 +1597,31 @@ (define-public dunst (define-public dwl (package (name "dwl") - (version "0.4") + (version "0.6") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/djpohly/dwl") + (url "https://codeberg.org/dwl/dwl") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "0pj0h3zd2f60hxpavpmgzid1sj7hf9m5cgclbackljqq4gpwlvir")))) + "1j7lmp6k80g54hrsmwixh8ahpnbax4khgiybg8lhlvmq93618a3z")))) (build-system gnu-build-system) (arguments - `(#:tests? #f ; no tests - #:make-flags - (list - (string-append "CC=" ,(cc-for-target)) - (string-append "PREFIX=" (assoc-ref %outputs "out"))) - #:phases - (modify-phases %standard-phases - (delete 'configure)))) ; no configure + (list #:tests? #f ; no tests + #:make-flags + #~(list + #$(string-append "CC=" (cc-for-target)) + (string-append "PREFIX=" #$output)) + #:phases + #~(modify-phases %standard-phases + (delete 'configure)))) ; no configure (native-inputs (list pkg-config)) (inputs - (list wlroots-0.16)) - (home-page "https://github.com/djpohly/dwl") + (list wlroots)) + (home-page "https://codeberg.org/dwl/dwl") (synopsis "Dynamic window manager for Wayland") (description "@command{dwl} is a compact, hackable compositor for Wayland based on base-commit: d95588242c605fbb72e25fe36a0903a1538e9018 -- 2.46.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 21 17:01:15 2024 Received: (at 73843-done) by debbugs.gnu.org; 21 Oct 2024 21:01:15 +0000 Received: from localhost ([127.0.0.1]:53725 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2zWd-0006GA-18 for submit@debbugs.gnu.org; Mon, 21 Oct 2024 17:01:15 -0400 Received: from eggs.gnu.org ([209.51.188.92]:33462) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2zWa-0006Fr-Nh; Mon, 21 Oct 2024 17:01:13 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t2zW4-0000np-Fh; Mon, 21 Oct 2024 17:00:40 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=CXqGrX5Z/l85Urav42JnyqCnhd4SzLkM6NULdWs8u8E=; b=KlIKG6og7KZRhWDpL5VU AX6D7pKj8RiAENyOk2kVBDPAdmRGs6KSelLvPvBPfyLcAEjAEnVe2SAPZ9tSMAAEndBBRCdK8Rim3 re3oxtd6QdZJLCT3RUs8VLoieqooTLl8CEttyzOtst+GwMQ/NjS2IepN40Z1/Ula43FXQsOr3mPtZ rYmigidHX3QZw93W5JKG339/MIk/EAxL7ZpnDWrNOo82pRL2ZZg4IiZpt0igJ1SJfIpteh9peEtNW 1vynYh+kf9YLlPsLI/6eeo5MTGNu/aoF7aPIWbp2Bz4G8h6oM1p0IWjhyvTU2BAnNO0hb+AbkZX5u 0peFn87DfOoCwA==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: =?utf-8?Q?No=C3=A9?= Lopez Subject: Re: [bug#73843] [PATCH v2] gnu: dwl: Update to 0.6. In-Reply-To: (=?utf-8?Q?=22No=C3=A9?= Lopez"'s message of "Thu, 17 Oct 2024 18:25:59 +0200") References: Date: Mon, 21 Oct 2024 23:00:23 +0200 Message-ID: <87o73dcgt4.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 73843-done Cc: kiasoc5 , 73843-done@debbugs.gnu.org, 73845@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: -3.3 (---) Hi No=C3=A9 & kiasoc5, No=C3=A9 Lopez skribis: > From: kiasoc5 > > * gnu/packages/wm.scm (dwl): Update to 0.6. > [origin]: Update repository url. > [homepage]: Update homepage. > [arguments]: Convert to G-exps, use #$output instead of assoc-ref. > [inputs]: Remove wlroots-0.16; add wlroots. > > Change-Id: I567a99e88a899953049a9ce00d699ea73ee08c14 > Signed-off-by: No=C3=A9 Lopez Applied, thanks! Ludo=E2=80=99. From unknown Wed Jun 18 23:09:58 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 19 Nov 2024 12:24:10 +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