GNU bug report logs -
#74708
[PATCH] gnu: add wideriver.
Previous Next
Reported by: Hikari <Quelln <at> protonmail.com>
Date: Fri, 6 Dec 2024 11:02:02 UTC
Severity: normal
Tags: patch
Done: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
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 74708 in the body.
You can then email your comments to 74708 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#74708
; Package
guix-patches
.
(Fri, 06 Dec 2024 11:02:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Hikari <Quelln <at> protonmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Fri, 06 Dec 2024 11:02:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Change-Id: Iab2a6bd8bd02098105848d240af0271df44b58bf
---
gnu/packages/wm.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 2ab6f88cd5..d1df1e85c0 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -3999,3 +3999,35 @@ (define-public scenefx
"A drop-in replacement for the wlroots scene API that allows wayland
compositors to render surfaces with eye-candy effects.")
(license license:expat)))
+
+(define-public wideriver
+ (package
+ (name "wideriver")
+ (version "1.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/alex-courtis/wideriver")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "16i0mzgxn32nrh5ajn0kb4xdwmsjg03amhasxhwyvspar5y4flhg"))))
+ (build-system gnu-build-system)
+
+ (arguments
+ (list
+ #:tests? #f
+ #:make-flags #~(list (string-append "PREFIX="
+ #$output)
+ (string-append "CC="
+ #$(cc-for-target)))
+ #:phases #~(modify-phases %standard-phases
+ (delete 'configure))))
+ (native-inputs (list pkg-config))
+ (inputs (list wayland wayland-protocols wlroots))
+ (home-page "https://github.com/alex-courtis/wideriver")
+ (synopsis "A set of riverWM layouts")
+ (description
+ "Tiling window manager for the river wayland compositor, inspired by dwm and xmonad.")
+ (license license:gpl3)))
base-commit: d75d1fe6ac7ded7e61322d18b07d347beb609aa0
--
2.46.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#74708
; Package
guix-patches
.
(Sun, 08 Dec 2024 08:29:04 GMT)
Full text and
rfc822 format available.
Message #8 received at 74708 <at> debbugs.gnu.org (full text, mbox):
Change-Id: Iab2a6bd8bd02098105848d240af0271df44b58bf
---
gnu/packages/wm.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 2ab6f88cd5..4e90a94792 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -3949,6 +3949,37 @@ (define-public yambar-wayland
battery efficient---polling is only done when absolutely necessary.")
(license license:expat)))
+(define-public wideriver
+ (package
+ (name "wideriver")
+ (version "1.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/alex-courtis/wideriver")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "16i0mzgxn32nrh5ajn0kb4xdwmsjg03amhasxhwyvspar5y4flhg"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:tests? #f
+ #:make-flags #~(list (string-append "PREFIX="
+ #$output)
+ (string-append "CC="
+ #$(cc-for-target)))
+ #:phases #~(modify-phases %standard-phases
+ (delete 'configure))))
+ (native-inputs (list pkg-config))
+ (inputs (list wayland wayland-protocols wlroots))
+ (home-page "https://github.com/alex-courtis/wideriver")
+ (synopsis "A set of riverWM layouts")
+ (description
+ "Tiling window manager for the river wayland compositor, inspired by dwm and xmonad.")
+ (license license:gpl3)))
+
(define-public wf-config
(package
(name "wf-config")
base-commit: d75d1fe6ac7ded7e61322d18b07d347beb609aa0
--
2.46.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#74708
; Package
guix-patches
.
(Mon, 27 Jan 2025 12:26:01 GMT)
Full text and
rfc822 format available.
Message #11 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hikari via Guix-patches via <guix-patches <at> gnu.org> writes:
> Change-Id: Iab2a6bd8bd02098105848d240af0271df44b58bf
> ---
> gnu/packages/wm.scm | 31 +++++++++++++++++++++++++++++++
> 1 file changed, 31 insertions(+)
>
> diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
> index 2ab6f88cd5..4e90a94792 100644
> --- a/gnu/packages/wm.scm
> +++ b/gnu/packages/wm.scm
> @@ -3949,6 +3949,37 @@ (define-public yambar-wayland
> battery efficient---polling is only done when absolutely necessary.")
> (license license:expat)))
>
> +(define-public wideriver
> + (package
> + (name "wideriver")
> + (version "1.2.0")
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/alex-courtis/wideriver")
> + (commit version)))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32 "16i0mzgxn32nrh5ajn0kb4xdwmsjg03amhasxhwyvspar5y4flhg"))))
> + (build-system gnu-build-system)
> + (arguments
> + (list
> + #:tests? #f
use #:test-target "test" to enable tests.
> + #:make-flags #~(list (string-append "PREFIX="
> + #$output)
> + (string-append "CC="
> + #$(cc-for-target)))
> + #:phases #~(modify-phases %standard-phases
> + (delete 'configure))))
add ; no configure script
> + (native-inputs (list pkg-config))
add cmocka
> + (inputs (list wayland wayland-protocols wlroots))
> + (home-page "https://github.com/alex-courtis/wideriver")
> + (synopsis "A set of riverWM layouts")
> + (description
> + "Tiling window manager for the river wayland compositor, inspired by dwm and xmonad.")
Wrap lines to avoid being too long
> + (license license:gpl3)))
> +
> (define-public wf-config
> (package
> (name "wf-config")
>
> base-commit: d75d1fe6ac7ded7e61322d18b07d347beb609aa0
and pushed, closing.
[signature.asc (application/pgp-signature, inline)]
Reply sent
to
Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
:
You have taken responsibility.
(Mon, 27 Jan 2025 12:26:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Hikari <Quelln <at> protonmail.com>
:
bug acknowledged by developer.
(Mon, 27 Jan 2025 12:26: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
.
(Tue, 25 Feb 2025 12:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 16 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.