* [bug#59241] [PATCH 1/2] gnu: rofi: Update to 1.7.5.
@ 2022-11-13 6:36 Hilton Chain via Guix-patches via
[not found] ` <handler.59241.B.166832145522511.ack@debbugs.gnu.org>
2022-11-19 14:02 ` [bug#59241] [PATCH 1/2] gnu: rofi: Update to 1.7.5 Christopher Baines
0 siblings, 2 replies; 3+ messages in thread
From: Hilton Chain via Guix-patches via @ 2022-11-13 6:36 UTC (permalink / raw)
To: 59241
* gnu/packages/xdisorg.scm (rofi): Update to 1.7.5.
[arguments]<#:phases>: Adjusted according to source change.
---
gnu/packages/xdisorg.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index c4cc351cad..c09e470460 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -1810,7 +1810,7 @@ (define-public xdpyprobe
(define-public rofi
(package
(name "rofi")
- (version "1.7.3")
+ (version "1.7.5")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/davatorium/rofi/"
@@ -1818,7 +1818,7 @@ (define-public rofi
version "/rofi-" version ".tar.xz"))
(sha256
(base32
- "0yxn9pmn9zp0k5ygnjqbj1pmp73g53wa47r145a8qcwqzxl8p1i5"))))
+ "138c4bl60p7namsb2pk8q5cdlxbdkli7zny192vk5jv5s5kczzya"))))
(build-system gnu-build-system)
(native-inputs
(list bison
@@ -1853,7 +1853,7 @@ (define-public rofi
(substitute* '("test/helper-expand.c")
(("~root") "/root")
(("~") "")
- (("g_get_home_dir \\(\\)") "\"/\"")))))))
+ (("g_get_home_dir\\(\\)") "\"/\"")))))))
(home-page "https://github.com/davatorium/rofi")
(synopsis "Application launcher")
(description "Rofi is a minimalist application launcher. It memorizes which
base-commit: c4025af8c11c3e9ea0c2747b6c475c916fb61d80
--
2.38.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#59241] [PATCH 2/2] gnu: Add rofi-wayland.
[not found] ` <handler.59241.B.166832145522511.ack@debbugs.gnu.org>
@ 2022-11-13 6:39 ` Hilton Chain via Guix-patches via
0 siblings, 0 replies; 3+ messages in thread
From: Hilton Chain via Guix-patches via @ 2022-11-13 6:39 UTC (permalink / raw)
To: 59241
* gnu/packages/xdisorg.scm (rofi-wayland): New variable.
---
gnu/packages/xdisorg.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index c09e470460..24e09f2b9f 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -1861,6 +1861,30 @@ (define-public rofi
by name.")
(license license:expat)))
+(define-public rofi-wayland
+ (let ((base rofi))
+ (package
+ (inherit rofi)
+ (name "rofi-wayland")
+ (version "1.7.5+wayland1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/lbonn/rofi"
+ "/releases/download/" version
+ "/rofi-" version ".tar.xz"))
+ (sha256
+ (base32
+ "09n71wv3nxpzpjmvqmxlxk0zfln3x2l8admfq571781p9hw0w6wp"))))
+ (build-system meson-build-system)
+ (inputs
+ (modify-inputs (package-inputs base)
+ (append wayland wayland-protocols)))
+ (description
+ (string-append
+ (package-description base)
+ " This package, @code{rofi-wayland}, provides additional wayland
+support.")))))
+
(define-public rofi-calc
(package
(name "rofi-calc")
--
2.38.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#59241] [PATCH 1/2] gnu: rofi: Update to 1.7.5.
2022-11-13 6:36 [bug#59241] [PATCH 1/2] gnu: rofi: Update to 1.7.5 Hilton Chain via Guix-patches via
[not found] ` <handler.59241.B.166832145522511.ack@debbugs.gnu.org>
@ 2022-11-19 14:02 ` Christopher Baines
1 sibling, 0 replies; 3+ messages in thread
From: Christopher Baines @ 2022-11-19 14:02 UTC (permalink / raw)
To: Hilton Chain; +Cc: 59241-done, 59241
[-- Attachment #1: Type: text/plain, Size: 414 bytes --]
Hilton Chain via Guix-patches via <guix-patches@gnu.org> writes:
> * gnu/packages/xdisorg.scm (rofi): Update to 1.7.5.
> [arguments]<#:phases>: Adjusted according to source change.
> ---
> gnu/packages/xdisorg.scm | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
This and the following patch look good to me, I've pushed them to master
as 04b5450ad852735dfa50961d3afc789b2e52b407.
Thanks,
Chris
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-11-19 14:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-13 6:36 [bug#59241] [PATCH 1/2] gnu: rofi: Update to 1.7.5 Hilton Chain via Guix-patches via
[not found] ` <handler.59241.B.166832145522511.ack@debbugs.gnu.org>
2022-11-13 6:39 ` [bug#59241] [PATCH 2/2] gnu: Add rofi-wayland Hilton Chain via Guix-patches via
2022-11-19 14:02 ` [bug#59241] [PATCH 1/2] gnu: rofi: Update to 1.7.5 Christopher Baines
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).