GNU bug report logs - #35707
[PATCH] gnu: Add lemonbar package

Previous Next

Package: guix-patches;

Reported by: Noodles! <nnoodle <at> chiru.no>

Date: Mon, 13 May 2019 05:28:02 UTC

Severity: normal

Tags: patch

Done: Brett Gilio <brettg <at> posteo.net>

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 35707 in the body.
You can then email your comments to 35707 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#35707; Package guix-patches. (Mon, 13 May 2019 05:28:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Noodles! <nnoodle <at> chiru.no>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 13 May 2019 05:28:02 GMT) Full text and rfc822 format available.

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

From: Noodles! <nnoodle <at> chiru.no>
To: guix-patches <at> gnu.org
Cc: Noodles! <nnoodle <at> chiru.no>
Subject: [PATCH] gnu: Add lemonbar package
Date: Mon, 13 May 2019 04:57:21 +0000
---
 gnu/packages/wm.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 0a05ff4ae..6c727e36c 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -19,6 +19,7 @@
 ;;; Copyright © 2018 Pierre-Antoine Rouby <contact <at> parouby.fr>
 ;;; Copyright © 2018 Meiyo Peng <meiyo.peng <at> gmail.com>
 ;;; Copyright © 2019 Rutger Helling <rhelling <at> mykolab.com>
+;;; Copyright © 2019 Noodles! <nnoodle <at> chiru.no>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1087,6 +1088,42 @@ customizable status bars for their desktop environment.  It has built-in
 functionality to display information about the most commonly used services.")
     (license license:expat)))
 
+(define-public lemonbar
+  (let ((commit "35183ab81d2128dbb7b6d8e119cc57846bcefdb4")
+        (revision "1"))
+    (package
+     (name "lemonbar")
+     (version (git-version "1.3" revision commit))
+     (source (origin
+               (method git-fetch)
+               (uri (git-reference
+                     (url "https://github.com/LemonBoy/bar")
+                     (commit commit)))
+               (file-name (git-file-name name version))
+               (sha256
+                (base32
+                 "1wwqbph392iwz8skaqxb0xpklb1l6yganqz80g4x1fhrnz7idmlh"))))
+     (build-system gnu-build-system)
+     (arguments
+      '(#:tests? #f
+        #:make-flags (list "CC=gcc"
+                      (string-append "PREFIX=" %output))
+        #:phases
+        (modify-phases %standard-phases
+          (delete 'configure))))
+     (inputs
+      `(("libxcb" ,libxcb)))
+     (native-inputs
+      `(("perl" ,perl)))
+     (home-page "https://github.com/LemonBoy/bar")
+     (synopsis "Featherweight status bar")
+     (description
+      "@code{lemonbar} (formerly known as @code{bar}) is a lightweight
+bar entirely based on XCB.  Provides full UTF-8 support, basic
+formatting, RandR and Xinerama support and EWMH compliance without
+wasting your precious memory.")
+     (license license:x11))))
+
 (define-public wlroots
   (package
     (name "wlroots")
-- 
2.17.1





Information forwarded to guix-patches <at> gnu.org:
bug#35707; Package guix-patches. (Tue, 25 Jun 2019 21:01:01 GMT) Full text and rfc822 format available.

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

From: swedebugia <swedebugia <at> riseup.net>
To: guix-patches <at> gnu.org
Subject: Re: [bug#35707] [PATCH] gnu: Add lemonbar package
Date: Tue, 25 Jun 2019 22:59:53 +0200
On 2019-05-13 06:57, Noodles! wrote:
> +(define-public lemonbar
> +  (let ((commit "35183ab81d2128dbb7b6d8e119cc57846bcefdb4")
> +        (revision "1"))
> +    (package
> +     (name "lemonbar")
> +     (version (git-version "1.3" revision commit))
> +     (source (origin
> +               (method git-fetch)
> +               (uri (git-reference
> +                     (url"https://github.com/LemonBoy/bar")
> +                     (commit commit)))
> +               (file-name (git-file-name name version))
> +               (sha256
> +                (base32
> +                 "1wwqbph392iwz8skaqxb0xpklb1l6yganqz80g4x1fhrnz7idmlh"))))
> +     (build-system gnu-build-system)
> +     (arguments
> +      '(#:tests? #f
> +        #:make-flags (list "CC=gcc"
> +                      (string-append "PREFIX=" %output))
> +        #:phases
> +        (modify-phases %standard-phases
> +          (delete 'configure))))
> +     (inputs
> +      `(("libxcb" ,libxcb)))
> +     (native-inputs
> +      `(("perl" ,perl)))
> +     (home-page"https://github.com/LemonBoy/bar")
> +     (synopsis "Featherweight status bar")
> +     (description
> +      "@code{lemonbar} (formerly known as @code{bar}) is a lightweight
> +bar entirely based on XCB.  Provides full UTF-8 support, basic
> +formatting, RandR and Xinerama support and EWMH compliance without
> +wasting your precious memory.")
> +     (license license:x11))))

It did not apply because of patch age.

I applied it manually. LGTM!

Thanks.

-- 
Cheers Swedebugia




Reply sent to Brett Gilio <brettg <at> posteo.net>:
You have taken responsibility. (Tue, 10 Dec 2019 05:52:01 GMT) Full text and rfc822 format available.

Notification sent to Noodles! <nnoodle <at> chiru.no>:
bug acknowledged by developer. (Tue, 10 Dec 2019 05:52:02 GMT) Full text and rfc822 format available.

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

From: Brett Gilio <brettg <at> posteo.net>
To: Noodles! <nnoodle <at> chiru.no>
Cc: 35707-done <at> debbugs.gnu.org
Subject: Re: [bug#35707] [PATCH] gnu: Add lemonbar package
Date: Mon, 09 Dec 2019 23:51:04 -0600
Pushed with commit d4145638631f2ebe94fa93fef326da83dd85732b.

Because this patch was outdated it could not merge automatically. I took
the liberty to make sure this patch could be merged, made sure all
details are up-to-date, that the tests are commented as to why they are
disabled, linted it, and pushed it with a proper commit message.

Thanks!

-- 
Brett M. Gilio
Homepage -- https://scm.pw/
GNU Guix -- https://guix.gnu.org/




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

This bug report was last modified 4 years and 101 days ago.

Previous Next


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