GNU bug report logs - #73843
[PATCH] gnu: dwl: Update to 0.6.

Previous Next

Package: guix-patches;

Reported by: kiasoc5 <kiasoc5 <at> disroot.org>

Date: Thu, 17 Oct 2024 01:25:02 UTC

Severity: normal

Tags: patch

Merged with 73845

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 73843 in the body.
You can then email your comments to 73843 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#73843; Package guix-patches. (Thu, 17 Oct 2024 01:25:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to kiasoc5 <kiasoc5 <at> disroot.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 17 Oct 2024 01:25:02 GMT) Full text and rfc822 format available.

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

From: kiasoc5 <kiasoc5 <at> disroot.org>
To: guix-patches <at> gnu.org
Cc: kiasoc5 <kiasoc5 <at> disroot.org>
Subject: [PATCH] gnu: dwl: Update to 0.6.
Date: Wed, 16 Oct 2024 21:21:44 -0400
* gnu/packages/wm.scm (dwl): Update to 0.6.
[origin]<url>: 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





Merged 73843 73845. Request was from kiasoc5 <at> disroot.org to control <at> debbugs.gnu.org. (Thu, 17 Oct 2024 01:29:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#73843; Package guix-patches. (Thu, 17 Oct 2024 16:24:01 GMT) Full text and rfc822 format available.

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

From: Noé Lopez <noe <at> xn--no-cja.eu>
To: control <at> debbugs.gnu.org,73843 <at> debbugs.gnu.org
Subject: QA review for 73843
Date: Thu, 17 Oct 2024 18:22:15 +0200
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 « codeberg » instead of « codeberg.org ». Sending an
updated patch right after.




Information forwarded to guix-patches <at> gnu.org:
bug#73843; Package guix-patches. (Thu, 17 Oct 2024 16:26:02 GMT) Full text and rfc822 format available.

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

From: Noé Lopez <noelopez <at> free.fr>
To: 73843 <at> debbugs.gnu.org
Cc: kiasoc5 <kiasoc5 <at> disroot.org>,
 Noé Lopez <noelopez <at> free.fr>
Subject: [PATCH v2] gnu: dwl: Update to 0.6.
Date: Thu, 17 Oct 2024 18:25:59 +0200
From: kiasoc5 <kiasoc5 <at> disroot.org>

* gnu/packages/wm.scm (dwl): Update to 0.6.
[origin]<url>: 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 <noelopez <at> free.fr>
---
 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





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Mon, 21 Oct 2024 21:02:02 GMT) Full text and rfc822 format available.

Notification sent to kiasoc5 <kiasoc5 <at> disroot.org>:
bug acknowledged by developer. (Mon, 21 Oct 2024 21:02:03 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: Noé Lopez <noelopez <at> free.fr>
Cc: kiasoc5 <kiasoc5 <at> disroot.org>, 73843-done <at> debbugs.gnu.org,
 73845 <at> debbugs.gnu.org
Subject: Re: [bug#73843] [PATCH v2] gnu: dwl: Update to 0.6.
Date: Mon, 21 Oct 2024 23:00:23 +0200
Hi Noé & kiasoc5,

Noé Lopez <noelopez <at> free.fr> skribis:

> From: kiasoc5 <kiasoc5 <at> disroot.org>
>
> * gnu/packages/wm.scm (dwl): Update to 0.6.
> [origin]<url>: 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 <noelopez <at> free.fr>

Applied, thanks!

Ludo’.




Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Mon, 21 Oct 2024 21:02:03 GMT) Full text and rfc822 format available.

Notification sent to kiasoc5 <at> disroot.org:
bug acknowledged by developer. (Mon, 21 Oct 2024 21:02:03 GMT) Full text and rfc822 format available.

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

This bug report was last modified 210 days ago.

Previous Next


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