GNU bug report logs -
#42754
[PATCH 0/1] Add yeganesh.
Previous Next
Reported by: EuAndreh <eu <at> euandre.org>
Date: Sat, 8 Aug 2020 00:25:02 UTC
Severity: normal
Tags: patch
Merged with 42755
Done: Oleg Pykhalov <go.wigust <at> gmail.com>
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 42754 in the body.
You can then email your comments to 42754 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#42754
; Package
guix-patches
.
(Sat, 08 Aug 2020 00:25:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
EuAndreh <eu <at> euandre.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sat, 08 Aug 2020 00:25:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Add yeganesh package, a simple wrapper around dmenu.
Instead of adding it to gnu/packages/suckless.scm where dmenu lives, I put it
inside gnu/packages/wm.scm where xmonad lives.
That's because it was made with xmonad in mind, and is also written in
Haskell, as is xmonad.
EuAndreh (1):
gnu: Add yeganesh.
gnu/packages/wm.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
--
2.27.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#42754
; Package
guix-patches
.
(Sat, 08 Aug 2020 09:25:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 42754 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/wm.scm (yeganesh): New variable.
---
gnu/packages/wm.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index bc3c152627..32bb35b4c6 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -35,6 +35,7 @@
;;; Copyright © 2020 Brice Waegeneire <brice <at> waegenei.re>
;;; Copyright © 2020 Boris A. Dekshteyn <harlequin78 <at> gmail.com>
;;; Copyright © 2020 Marcin Karpezo <sirmacik <at> wioo.waw.pl>
+;;; Copyright © 2020 EuAndreh <eu <at> euandre.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -742,6 +743,30 @@ is also usable with any other window manager. While xmobar is written in
Haskell, no knowledge of the language is required to install and use it.")
(license license:bsd-3)))
+(define-public yeganesh
+ (package
+ (name "yeganesh")
+ (version "2.4")
+ (source
+ (origin
+
+ (method url-fetch)
+ (uri (string-append "http://dmwit.com/yeganesh/yeganesh-" version ".tar.gz"))
+ (sha256
+ (base32 "04djfyjab3c5y9z9x8zd0xcx0jyy35zq7cl9ddr4ppf6k5ky6iky"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-strict" ,ghc-strict)
+ ("ghc-xdg-basedir" ,ghc-xdg-basedir)))
+ (home-page "http://dmwit.com/yeganesh/")
+ (synopsis "Small wrapper around dmenu")
+ (description
+ "@code{yeganesh} is a small wrapper around demnu. Like dmenu,
+it accepts input on stdin and writes the chosen result on stdout. Unlike dmenu,
+it mangles the input before it presents its choices. In particular,it displays
+commonly-chosen options before uncommon ones.")
+ (license license:bsd-3)))
+
(define-public ghc-xmonad-contrib
(package
(name "ghc-xmonad-contrib")
--
2.27.0
Merged 42754 42755.
Request was from
Mathieu Othacehe <mathieu <at> cervin.i-did-not-set--mail-host-address--so-tickle-me>
to
control <at> debbugs.gnu.org
.
(Sat, 08 Aug 2020 14:52:03 GMT)
Full text and
rfc822 format available.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#42754
; Package
guix-patches
.
(Fri, 14 Aug 2020 12:35:01 GMT)
Full text and
rfc822 format available.
Message #13 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi,
EuAndreh via Guix-patches via <guix-patches <at> gnu.org> writes:
> Add yeganesh package, a simple wrapper around dmenu.
>
> Instead of adding it to gnu/packages/suckless.scm where dmenu lives, I put it
> inside gnu/packages/wm.scm where xmonad lives.
>
> That's because it was made with xmonad in mind, and is also written in
> Haskell, as is xmonad.
Thank you. Pushed to master as 9c814c337946f5e70b0dbe45fb54f451b06fe0b2
with small typo fix and formatting:
[Message part 2 (text/x-patch, inline)]
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 5406aa8b99..28c3a3bac6 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -761,11 +761,10 @@ Haskell, no knowledge of the language is required to install and use it.")
("ghc-xdg-basedir" ,ghc-xdg-basedir)))
(home-page "http://dmwit.com/yeganesh/")
(synopsis "Small wrapper around dmenu")
- (description
- "@code{yeganesh} is a small wrapper around demnu. Like dmenu,
-it accepts input on stdin and writes the chosen result on stdout. Unlike dmenu,
-it mangles the input before it presents its choices. In particular,it displays
-commonly-chosen options before uncommon ones.")
+ (description "@code{yeganesh} is a small wrapper around demnu. Like
+dmenu, it accepts input on stdin and writes the chosen result on stdout.
+Unlike dmenu, it mangles the input before it presents its choices. In
+particular, it displays commonly-chosen options before uncommon ones.")
(license license:bsd-3)))
(define-public ghc-xmonad-contrib
[Message part 3 (text/plain, inline)]
Oleg.
[signature.asc (application/pgp-signature, inline)]
Reply sent
to
Oleg Pykhalov <go.wigust <at> gmail.com>
:
You have taken responsibility.
(Fri, 14 Aug 2020 12:35:03 GMT)
Full text and
rfc822 format available.
Notification sent
to
EuAndreh <eu <at> euandre.org>
:
bug acknowledged by developer.
(Fri, 14 Aug 2020 12:35:03 GMT)
Full text and
rfc822 format available.
Reply sent
to
Oleg Pykhalov <go.wigust <at> gmail.com>
:
You have taken responsibility.
(Fri, 14 Aug 2020 12:35:03 GMT)
Full text and
rfc822 format available.
Notification sent
to
EuAndreh <eu <at> euandre.org>
:
bug acknowledged by developer.
(Fri, 14 Aug 2020 12:35: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
.
(Sat, 12 Sep 2020 11:24:07 GMT)
Full text and
rfc822 format available.
This bug report was last modified 4 years and 276 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.