* [bug#40931] [PATCH] gnu: add j4-dmenu-desktop
@ 2020-04-28 10:37 Alex McGrath
2020-04-29 7:52 ` [bug#40931] [PATCH v2] " Alex McGrath
2020-05-02 17:51 ` [bug#40931] [PATCH v3] " Alex McGrath
0 siblings, 2 replies; 6+ messages in thread
From: Alex McGrath @ 2020-04-28 10:37 UTC (permalink / raw)
To: 40931; +Cc: Alex McGrath
---
gnu/packages/xdisorg.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index bc2c9c4622..02997dcbf1 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -35,6 +35,7 @@
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
;;; Copyright © 2020 Damien Cassou <damien@cassou.me>
;;; Copyright © 2020 John Soo <jsoo1@asu.edu>
+;;; Copyright © 2020 Alex McGrath <amk@amk.ie>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2286,3 +2287,25 @@ to find all available clips and launches @command{dmenu} (or @command{rofi},
depending on the value of @code{CM_LAUNCHER}) to let the user select a clip.
After selection, the clip is put onto the PRIMARY and CLIPBOARD X selections.")
(license license:public-domain))))
+
+(define-public j4-dmenu-desktop
+ (package
+ (name "j4-dmenu-desktop")
+ (version "2.17")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/enkore/j4-dmenu-desktop.git")
+ (commit (string-append "r" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0v23fimkn83dcm5p53y2ymhklff3kwppxhf75sm8xmswrzkixpgc"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(#:configure-flags '("-DCMAKE_BUILD_TYPE=Release" "-DWITH_GIT_CACHE=off" "-DWITH_TESTS=off")
+ #:tests? #f)) ;; tests fetch an external git repo
+ (synopsis "A fast desktop menu")
+ (description "j4-dmenu-desktop is a replacement for i3-dmenu-desktop. It's purpose is to find desktop files and offer you a menu to start an application using dmenu.")
+ (home-page "https://github.com/enkore/j4-dmenu-desktop")
+ (license license:gpl3+)))
--
2.26.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#40931] [PATCH v2] gnu: add j4-dmenu-desktop
2020-04-28 10:37 [bug#40931] [PATCH] gnu: add j4-dmenu-desktop Alex McGrath
@ 2020-04-29 7:52 ` Alex McGrath
2020-05-02 14:18 ` Marius Bakke
2020-05-02 17:51 ` [bug#40931] [PATCH v3] " Alex McGrath
1 sibling, 1 reply; 6+ messages in thread
From: Alex McGrath @ 2020-04-29 7:52 UTC (permalink / raw)
To: 40931; +Cc: Alex McGrath
* gnu/packages/xdisorg.scm (j4-dmenu-desktop): New variable.
gnu/packages/xdisorg.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index bc2c9c4622..02997dcbf1 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -35,6 +35,7 @@
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
;;; Copyright © 2020 Damien Cassou <damien@cassou.me>
;;; Copyright © 2020 John Soo <jsoo1@asu.edu>
+;;; Copyright © 2020 Alex McGrath <amk@amk.ie>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2286,3 +2287,25 @@ to find all available clips and launches @command{dmenu} (or @command{rofi},
depending on the value of @code{CM_LAUNCHER}) to let the user select a clip.
After selection, the clip is put onto the PRIMARY and CLIPBOARD X selections.")
(license license:public-domain))))
+
+(define-public j4-dmenu-desktop
+ (package
+ (name "j4-dmenu-desktop")
+ (version "2.17")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/enkore/j4-dmenu-desktop.git")
+ (commit (string-append "r" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0v23fimkn83dcm5p53y2ymhklff3kwppxhf75sm8xmswrzkixpgc"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(#:configure-flags '("-DCMAKE_BUILD_TYPE=Release" "-DWITH_GIT_CACHE=off" "-DWITH_TESTS=off")
+ #:tests? #f)) ;; tests fetch an external git repo
+ (synopsis "A fast desktop menu")
+ (description "j4-dmenu-desktop is a replacement for i3-dmenu-desktop. It's purpose is to find desktop files and offer you a menu to start an application using dmenu.")
+ (home-page "https://github.com/enkore/j4-dmenu-desktop")
+ (license license:gpl3+)))
--
2.26.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#40931] [PATCH v2] gnu: add j4-dmenu-desktop
2020-04-29 7:52 ` [bug#40931] [PATCH v2] " Alex McGrath
@ 2020-05-02 14:18 ` Marius Bakke
2020-05-02 17:57 ` Alex McGrath
0 siblings, 1 reply; 6+ messages in thread
From: Marius Bakke @ 2020-05-02 14:18 UTC (permalink / raw)
To: Alex McGrath, 40931; +Cc: Alex McGrath
[-- Attachment #1: Type: text/plain, Size: 1874 bytes --]
Alex McGrath <amk@amk.ie> writes:
> * gnu/packages/xdisorg.scm (j4-dmenu-desktop): New variable.
Thanks! Unfortunately the patch no longer applies, can you rebase it on
the current master branch?
[...]
> +(define-public j4-dmenu-desktop
> + (package
> + (name "j4-dmenu-desktop")
> + (version "2.17")
> + (source (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/enkore/j4-dmenu-desktop.git")
> + (commit (string-append "r" version))))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32
> + "0v23fimkn83dcm5p53y2ymhklff3kwppxhf75sm8xmswrzkixpgc"))))
> + (build-system cmake-build-system)
> + (arguments
> + `(#:configure-flags '("-DCMAKE_BUILD_TYPE=Release" "-DWITH_GIT_CACHE=off" "-DWITH_TESTS=off")
Note that cmake-build-system exposes #:build-type, so you don't have to
pass "-DCMAKE_BUILD_TYPE". By default it uses RelWithDebugInfo which is
better because it adds debug information. There are cases where we
want "Release" instead (size or performance concerns), but it probably
is fine for this package?
> + #:tests? #f)) ;; tests fetch an external git repo
Is it possible to provide this repo as a native-input? See e.g. 'ghc'.
Don't stress it if it's not possible, though.
> + (synopsis "A fast desktop menu")
Just "Fast desktop menu" ('./pre-inst-env guix lint j4-dmenu-desktop'
should warn about this).
> + (description "j4-dmenu-desktop is a replacement for i3-dmenu-desktop. It's purpose is to find desktop files and offer you a menu to start an application using dmenu.")
Use two spaces between sentences, and try to wrap lines at ~78
characters. 'guix lint' will warn about this, too. :-)
Can you send an updated patch? Thanks in advance!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#40931] [PATCH v3] gnu: add j4-dmenu-desktop
2020-04-28 10:37 [bug#40931] [PATCH] gnu: add j4-dmenu-desktop Alex McGrath
2020-04-29 7:52 ` [bug#40931] [PATCH v2] " Alex McGrath
@ 2020-05-02 17:51 ` Alex McGrath
1 sibling, 0 replies; 6+ messages in thread
From: Alex McGrath @ 2020-05-02 17:51 UTC (permalink / raw)
To: 40931; +Cc: Alex McGrath
* gnu/packages/xdisorg.scm (j4-dmenu-desktop): New variable.
---
gnu/packages/xdisorg.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index df61a95cbb..99b3f765d2 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -36,6 +36,7 @@
;;; Copyright © 2020 Damien Cassou <damien@cassou.me>
;;; Copyright © 2020 John Soo <jsoo1@asu.edu>
;;; Copyright © 2020 Boris A. Dekshteyn <boris.dekshteyn@gmail.com>
+;;; Copyright © 2020 Alex McGrath <amk@amk.ie>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2324,3 +2325,34 @@ some kind of chat (in native language).
@command{kbdd} also supports D-Bus signals, which makes it possible to
create layout indicator widgets.")
(license license:bsd-2)))
+
+(define-public j4-dmenu-desktop
+ (package
+ (name "j4-dmenu-desktop")
+ (version "2.17")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/enkore/j4-dmenu-desktop.git")
+ (commit (string-append "r" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0v23fimkn83dcm5p53y2ymhklff3kwppxhf75sm8xmswrzkixpgc"))))
+ (build-system cmake-build-system)
+ (native-inputs
+ `(("catch2" ,catch-framework2)))
+ (arguments
+ `(#:configure-flags '("-DWITH_GIT_CATCH=off")
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda _
+ (invoke "./j4-dmenu-tests" "exclude:SearchPath/XDG_DATA_HOME"))))
+ #:tests? #t))
+ (synopsis "Fast desktop menu")
+ (description "j4-dmenu-desktop is a replacement for
+i3-dmenu-desktop. It's purpose is to find desktop files and offer you a menu
+to start an application using dmenu.")
+ (home-page "https://github.com/enkore/j4-dmenu-desktop")
+ (license license:gpl3+)))
--
2.26.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-05-04 17:03 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-28 10:37 [bug#40931] [PATCH] gnu: add j4-dmenu-desktop Alex McGrath
2020-04-29 7:52 ` [bug#40931] [PATCH v2] " Alex McGrath
2020-05-02 14:18 ` Marius Bakke
2020-05-02 17:57 ` Alex McGrath
2020-05-04 14:33 ` bug#40931: " Marius Bakke
2020-05-02 17:51 ` [bug#40931] [PATCH v3] " Alex McGrath
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.