emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#69219: closed ([PATCH] gnu: Add sandbar.)


From: GNU bug Tracking System
Subject: bug#69219: closed ([PATCH] gnu: Add sandbar.)
Date: Mon, 15 Apr 2024 10:20:01 +0000

Your message dated Mon, 15 Apr 2024 12:19:02 +0200
with message-id <874jc3lyi1.fsf@nicolasgoaziou.fr>
and subject line Re: [bug#69219] [PATCH v2] gnu/packages/wm.scm(sandbar): New 
package definition.
has caused the debbugs.gnu.org bug report #69219,
regarding [PATCH] gnu: Add sandbar.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
69219: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=69219
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add sandbar. Date: Fri, 16 Feb 2024 19:04:16 +0000
* gnu/packages/wm.scm(sandbar): New package definition.

Change-Id: I81e109dc72a18adf8bfbb29632397fe4160b4489
---
 gnu/packages/wm.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 4efd98f11c..550d58e7c0 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1383,6 +1383,34 @@ (define-public keybinder
 (define-public keybinder-3.0
   (deprecated-package "keybinder-3.0" keybinder))
 
+(define-public sandbar
+  (package
+    (name "sandbar")
+    (version "0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/kolunmi/sandbar";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0912cr2q2kg4nqdwy978kpmdcj2cjz3gnlcb28ny9z3cprxvyvxq"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f
+       #:make-flags (list (string-append "CC="
+                                         ,(cc-for-target))
+                          (string-append "PREFIX=" %output))
+       #:phases (modify-phases %standard-phases
+                  (delete 'configure))))
+    (inputs (list fcft wayland))
+    (native-inputs (list pkg-config wayland-protocols))
+    (synopsis "dwm-like bar for the river wayland compositor")
+    (description "A simple statusbar designed for the river window manager.")
+    (license (list license:gpl3 license:expat))
+    (home-page "https://github.com/kolunmi/sandbar";)))
+
 (define-public spectrwm
   (package
     (name "spectrwm")

base-commit: 96a2357a8a19bd4a796fdf1a875f7f3e0c91030c
-- 
2.41.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#69219] [PATCH v2] gnu/packages/wm.scm(sandbar): New package definition. Date: Mon, 15 Apr 2024 12:19:02 +0200 User-agent: Gnus/5.13 (Gnus v5.13)
Hello,

Erik Eduardo <eduarskate8@gmail.com> writes:

> +(define-public sandbar

I normalized the commit message and applied your patch. Thank you.

> +    (description "@command{sandbar} is a minimalist DWM-like bar designed 
> for River,
> +                 a Wayland compositor. It is triggered through commands sent 
> via
> +                 standard input, providing extensive customization options. 
> This
> +                 behavior allows users to dynamically adjust status text, 
> visibility,
> +                 and bar location, making @command{sandbar} an ideal choice 
> for those
> +                 seeking a lightweight and hackable bar solution in their 
> Wayland
> +                 environment.")

I fixed indentation and separated sentences with two spaces.

Nitpick: I also used capitalization for Sandbar (the project name)
instead of @command{sandbar} (the command), as reducing markup is always
better for readability.

Regards,
-- 
Nicolas Goaziou




--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]