GNU bug report logs -
#75522
[PATCH v0 0/4] Add beanbag
Previous Next
To reply to this bug, email your comments to 75522 AT debbugs.gnu.org.
There is no need to reopen the bug first.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Sun, 12 Jan 2025 18:13:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Ashvith Shetty <ashvithshetty10 <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sun, 12 Jan 2025 18:13:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
This patch series includes beanbag, as well as it's dependencies. One
such dependency, `zig-wayland-beanbag`, is a package variant of
`zig-wayland`. `zigimg`, another dependency, does not have a tag
available yet, and hence the use of commit to pin to the version
required by beanbag.
Ashvith Shetty (4):
gnu: Add zig-clap.
gnu: Add zig-wayland-beanbag.
gnu: Add zig-img.
gnu: Add beanbag.
gnu/packages/zig-xyz.scm | 102 +++++++++++++++++++++++++++++++++++++++
1 file changed, 102 insertions(+)
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Sun, 12 Jan 2025 18:20:03 GMT)
Full text and
rfc822 format available.
Message #8 received at 75522 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/zig-xyz.scm (zig-clap): New variable.
Change-Id: Ib438ffa083bd96102e4058d2c64dccecadff1aa5
---
gnu/packages/zig-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index a76dbb0473..afb609ad50 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2023 Ekaitz Zarraga <ekaitz <at> elenq.tech>
;;; Copyright © 2023 Felix Lechner <felix.lechner <at> lease-up.com>
;;; Copyright © 2024 Justin Veilleux <terramorpha <at> cock.li>
+;;; Copyright © 2024 Ashvith Shetty <ashvithshetty10 <at> gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -301,6 +302,26 @@ (define-public zig-xkbcommon
(home-page "https://codeberg.org/ifreund/zig-xkbcommon")
(license license:expat)))
+(define-public zig-clap
+ (package
+ (name "zig-clap")
+ (version "0.9.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Hejsil/zig-clap")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1xjskvyib3kai3nmp574zfm07yvjsbzsxfysj96ss9339nq07ix6"))))
+ (build-system zig-build-system)
+ (home-page "https://github.com/Hejsil/zig-clap")
+ (synopsis "Command line argument parsing library")
+ (description
+ "A simple and easy to use command line argument parser library for Zig.")
+ (license license:expat)))
+
(define-public zig-zls-0.10
(package
(name "zig-zls")
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Sun, 12 Jan 2025 18:20:03 GMT)
Full text and
rfc822 format available.
Message #11 received at 75522 <at> debbugs.gnu.org (full text, mbox):
This is a package variant of zig-wayland required by beanbag.
* gnu/packages/zig-xyz.scm (zig-wayland-beanbag): New variable.
Change-Id: Id429a70e4cc30772357a706cd2b83798ce5ca1af
---
gnu/packages/zig-xyz.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index afb609ad50..bf86c0897a 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -240,6 +240,24 @@ (define-public zig-wayland
(home-page "https://codeberg.org/ifreund/zig-wayland")
(license license:expat)))
+(define zig-wayland-beanbag
+ (let ((commit "4761e625bcc8218650625edc4734710b29a9ff0b")
+ (revision "0"))
+ (hidden-package
+ (package
+ (inherit zig-wayland)
+ (name "zig-wayland")
+ (version (git-version "0.3.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/ifreund/zig-wayland")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1v669w8mnm5bp8508cvy41189njai8j92r6l9j5advk8589c18f7"))))))))
+
(define-public zig-wlroots
(package
(name "zig-wlroots")
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Sun, 12 Jan 2025 18:20:04 GMT)
Full text and
rfc822 format available.
Message #14 received at 75522 <at> debbugs.gnu.org (full text, mbox):
zig-img is required by beanbag. However, there's no tags at the
moment, so we'll be using the commit mentioned in beanbag's repo.
* gnu/packages/zig-xyz.scm (zig-img): New variable.
Change-Id: If66231806ffa50d0e6ec3091ab50f454db100f21
---
gnu/packages/zig-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index bf86c0897a..a6f5fbd453 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -340,6 +340,28 @@ (define-public zig-clap
"A simple and easy to use command line argument parser library for Zig.")
(license license:expat)))
+(define-public zig-img
+ (let ((commit "52f10dd3e3b1cd4614fe72a8a8f0eddc7700bc0a")
+ (revision "0"))
+ (package
+ (name "zig-img")
+ (version (git-version "0.1.0" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/zigimg/zigimg")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "187nh49rdv37arlvf056jiv58n4y87q2pm6qvznn75zrszjlvp0b"))))
+ (build-system zig-build-system)
+ (home-page "https://github.com/zigimg/zigimg")
+ (synopsis "Zig library for reading and writing different image formats")
+ (description
+ "This is a zig library for reading and writing different image formats.")
+ (license license:expat))))
+
(define-public zig-zls-0.10
(package
(name "zig-zls")
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Sun, 12 Jan 2025 18:20:07 GMT)
Full text and
rfc822 format available.
Message #17 received at 75522 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/zig-xyz.scm (beanbag): New variable.
Change-Id: Icbe3bfe8af1d6754ffdae38d896ee8c9dace0dab
---
gnu/packages/zig-xyz.scm | 41 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index a6f5fbd453..64ee303854 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -189,6 +189,47 @@ (define-public zig-known-folders
(home-page "https://github.com/ziglibs/known-folders")
(license license:expat))))
+(define-public beanbag
+ (package
+ (name "beanbag")
+ (version "0.1.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/bwbuhse/beanbag")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0i37hvg4jz9v2wfx41ycyqfq87wdh6nawgpic1mmqnj32jglkx7y"))
+ (snippet (rename-zig-dependencies '(("clap" . "zig-clap")
+ ("zigimg" . "zig-img"))))))
+ (build-system zig-build-system)
+ (arguments
+ (list
+ ;; Nothing to test
+ #:tests? #f
+ #:install-source? #f
+ #:zig-release-type "safe"
+ #:phases #~(modify-phases %standard-phases
+ (add-after 'unpack 'remove-deps
+ (lambda* (#:key inputs #:allow-other-keys)
+ (delete-file-recursively "protocol")
+ (substitute* "build.zig"
+ (("b\\.path\\(\"protocol\\/wlr-layer-shell-unstable-v1.xml\"\\)")
+ (string-append ".{ .cwd_relative = \""
+ (search-input-file inputs
+ "share/wlr-protocols/unstable/wlr-layer-shell-unstable-v1.xml")
+ "\" }"))))))))
+ (inputs (list zig-clap zig-img zig-pixman zig-wayland-beanbag
+ wlr-protocols))
+ (native-inputs (list pkg-config wlr-protocols))
+ (home-page "https://codeberg.org/bwbuhse/beanbag")
+ (synopsis "Wallpaper app for Wayland compositors")
+ (description
+ "beanbag is a wallpaper app for Wayland compositors, heavily inspired by dnkl's wbg.")
+ (license license:gpl3)))
+
(define-public zig-pixman
(package
(name "zig-pixman")
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Tue, 14 Jan 2025 07:05:02 GMT)
Full text and
rfc822 format available.
Message #20 received at 75522 <at> debbugs.gnu.org (full text, mbox):
On Mon, 13 Jan 2025 02:19:00 +0800,
Ashvith Shetty wrote:
>
>[...]
> + (build-system zig-build-system)
> + (home-page "https://github.com/Hejsil/zig-clap")
> + (synopsis "Command line argument parsing library")
> + (description
> + "A simple and easy to use command line argument parser library for Zig.")
Please use a complete sentence.
> + (license license:expat)))
> +
> (define-public zig-zls-0.10
> (package
> (name "zig-zls")
> --
> 2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Tue, 14 Jan 2025 07:05:02 GMT)
Full text and
rfc822 format available.
Message #23 received at 75522 <at> debbugs.gnu.org (full text, mbox):
On Mon, 13 Jan 2025 02:19:01 +0800,
Ashvith Shetty wrote:
>
> This is a package variant of zig-wayland required by beanbag.
> * gnu/packages/zig-xyz.scm (zig-wayland-beanbag): New variable.
>
> Change-Id: Id429a70e4cc30772357a706cd2b83798ce5ca1af
> ---
> gnu/packages/zig-xyz.scm | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
You can package beanbag 0.1.1 instead, which supports zig-wayland 0.2.0.
> diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
> index afb609ad50..bf86c0897a 100644
> --- a/gnu/packages/zig-xyz.scm
> +++ b/gnu/packages/zig-xyz.scm
> @@ -240,6 +240,24 @@ (define-public zig-wayland
> (home-page "https://codeberg.org/ifreund/zig-wayland")
> (license license:expat)))
>
> +(define zig-wayland-beanbag
> + (let ((commit "4761e625bcc8218650625edc4734710b29a9ff0b")
> + (revision "0"))
> + (hidden-package
> + (package
> + (inherit zig-wayland)
> + (name "zig-wayland")
> + (version (git-version "0.3.0" revision commit))
BTW, 0.3.0 + revision > 0.3.0.
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://codeberg.org/ifreund/zig-wayland")
> + (commit commit)))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32 "1v669w8mnm5bp8508cvy41189njai8j92r6l9j5advk8589c18f7"))))))))
> +
> (define-public zig-wlroots
> (package
> (name "zig-wlroots")
> --
> 2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Thu, 20 Feb 2025 19:11:02 GMT)
Full text and
rfc822 format available.
Message #26 received at 75522 <at> debbugs.gnu.org (full text, mbox):
This patch series downgrades `beanbag` to 0.1.1, removes
`zig-wayland-beanbag` and fixes the synopsis and description for
`zig-clap`.
Ashvith Shetty (3):
gnu: Add zig-clap.
gnu: Add zig-img.
gnu: Add beanbag.
gnu/packages/zig-xyz.scm | 102 +++++++++++++++++++++++++++++++++++++++
1 file changed, 102 insertions(+)
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Thu, 20 Feb 2025 19:11:02 GMT)
Full text and
rfc822 format available.
Message #29 received at 75522 <at> debbugs.gnu.org (full text, mbox):
From: Ashvith Shetty <ashvithshetty10 <at> gmail.com>
zig-img is required by beanbag. However, there's no tags at the
moment, so we'll be using the commit mentioned in beanbag's repo.
* gnu/packages/zig-xyz.scm (zig-img): New variable.
Change-Id: If66231806ffa50d0e6ec3091ab50f454db100f21
---
gnu/packages/zig-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index 9b6bf09b56..e8fa59227d 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -343,6 +343,28 @@ (define-public zig-clap
@end itemize")
(license license:expat)))
+(define-public zig-img
+ (let ((commit "52f10dd3e3b1cd4614fe72a8a8f0eddc7700bc0a")
+ (revision "0"))
+ (package
+ (name "zig-img")
+ (version (git-version "0.1.0" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/zigimg/zigimg")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "187nh49rdv37arlvf056jiv58n4y87q2pm6qvznn75zrszjlvp0b"))))
+ (build-system zig-build-system)
+ (home-page "https://github.com/zigimg/zigimg")
+ (synopsis "Zig library for reading and writing different image formats")
+ (description
+ "This is a zig library for reading and writing different image formats.")
+ (license license:expat))))
+
(define-public zig-zls-0.10
(package
(name "zig-zls")
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Thu, 20 Feb 2025 19:11:03 GMT)
Full text and
rfc822 format available.
Message #32 received at 75522 <at> debbugs.gnu.org (full text, mbox):
From: Ashvith Shetty <ashvithshetty10 <at> gmail.com>
* gnu/packages/zig-xyz.scm (zig-clap): New variable.
Change-Id: I8982047890799dfe32113f63e63dd7b6110eb8c6
---
gnu/packages/zig-xyz.scm | 42 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index a76dbb0473..9b6bf09b56 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2023 Ekaitz Zarraga <ekaitz <at> elenq.tech>
;;; Copyright © 2023 Felix Lechner <felix.lechner <at> lease-up.com>
;;; Copyright © 2024 Justin Veilleux <terramorpha <at> cock.li>
+;;; Copyright © 2025 Ashvith Shetty <ashvithshetty0010 <at> zohomail.in>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -301,6 +302,47 @@ (define-public zig-xkbcommon
(home-page "https://codeberg.org/ifreund/zig-xkbcommon")
(license license:expat)))
+(define-public zig-clap
+ (package
+ (name "zig-clap")
+ (version "0.9.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Hejsil/zig-clap")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1xjskvyib3kai3nmp574zfm07yvjsbzsxfysj96ss9339nq07ix6"))))
+ (build-system zig-build-system)
+ (arguments
+ (list
+ #:zig zig-0.13))
+ (home-page "https://github.com/Hejsil/zig-clap")
+ (synopsis "Command line argument parsing library for Zig")
+ (description
+ "A simple and easy to use command line argument parser library for Zig.
+
+Features include:
+@itemize
+@item Short arguments -a
+@itemize
+@item Chaining -abc where a and b does not take values.
+@item Multiple specifications are tallied (e.g. -v -v).
+@end itemize
+@item Long arguments --long
+@item Supports both passing values using spacing and = (-a 100, -a=100)
+@itemize
+@item Short args also support passing values with no spacing or = (-a100)
+@item This all works with chaining (-ba 100, -ba=100, -ba100)
+@end itemize
+@item Supports options that can be specified multiple times (-e 1 -e 2 -e 3)
+@item Print help message from parameter specification.
+@item Parse help message to parameter specification.
+@end itemize")
+ (license license:expat)))
+
(define-public zig-zls-0.10
(package
(name "zig-zls")
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Thu, 20 Feb 2025 19:11:04 GMT)
Full text and
rfc822 format available.
Message #35 received at 75522 <at> debbugs.gnu.org (full text, mbox):
From: Ashvith Shetty <ashvithshetty10 <at> gmail.com>
* gnu/packages/zig-xyz.scm (beanbag): New variable.
Change-Id: I07ebb8f6e632e4c24e183ad8d9f01f1bf17373f0
---
gnu/packages/zig-xyz.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index e8fa59227d..03118cfe85 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -189,6 +189,44 @@ (define-public zig-known-folders
(home-page "https://github.com/ziglibs/known-folders")
(license license:expat))))
+(define-public beanbag
+ (package
+ (name "beanbag")
+ (version "0.1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/bwbuhse/beanbag")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1d2h5bqicqnyawswdq7bg1w9frjk0ra2sva1as2qgc5s7pjclyql"))
+ (snippet (rename-zig-dependencies '(("clap" . "zig-clap")
+ ("zigimg" . "zig-img"))))))
+ (build-system zig-build-system)
+ (arguments
+ (list
+ ;; Nothing to test
+ #:tests? #f
+ #:install-source? #f
+ #:zig-release-type "safe"
+ #:phases #~(modify-phases %standard-phases
+ (add-after 'unpack 'remove-deps
+ (lambda* (#:key inputs #:allow-other-keys)
+ (delete-file-recursively "protocol")
+ (substitute* "build.zig"
+ (("protocol\\/wlr-layer-shell-unstable-v1.xml")
+ (string-append (search-input-file inputs
+ "share/wlr-protocols/unstable/wlr-layer-shell-unstable-v1.xml")))))))))
+ (inputs (list zig-clap zig-img zig-pixman zig-wayland))
+ (native-inputs (list pkg-config wlr-protocols))
+ (home-page "https://codeberg.org/bwbuhse/beanbag")
+ (synopsis "Wallpaper app for Wayland compositors")
+ (description
+ "beanbag is a wallpaper app for Wayland compositors, heavily inspired by dnkl's wbg.")
+ (license license:gpl3)))
+
(define-public zig-pixman
(package
(name "zig-pixman")
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Sat, 22 Feb 2025 05:32:02 GMT)
Full text and
rfc822 format available.
Message #38 received at 75522 <at> debbugs.gnu.org (full text, mbox):
On Fri, 21 Feb 2025 03:09:12 +0800,
Ashvith Shetty wrote:
>
> From: Ashvith Shetty <ashvithshetty10 <at> gmail.com>
>
> * gnu/packages/zig-xyz.scm (beanbag): New variable.
>
> Change-Id: I07ebb8f6e632e4c24e183ad8d9f01f1bf17373f0
> ---
> gnu/packages/zig-xyz.scm | 38 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 38 insertions(+)
>
> diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
> index e8fa59227d..03118cfe85 100644
> --- a/gnu/packages/zig-xyz.scm
> +++ b/gnu/packages/zig-xyz.scm
> @@ -189,6 +189,44 @@ (define-public zig-known-folders
> (home-page "https://github.com/ziglibs/known-folders")
> (license license:expat))))
>
> +(define-public beanbag
> + (package
> + (name "beanbag")
> + (version "0.1.1")
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://codeberg.org/bwbuhse/beanbag")
> + (commit (string-append "v" version))))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32 "1d2h5bqicqnyawswdq7bg1w9frjk0ra2sva1as2qgc5s7pjclyql"))
> + (snippet (rename-zig-dependencies '(("clap" . "zig-clap")
> + ("zigimg" . "zig-img"))))))
> + (build-system zig-build-system)
> + (arguments
> + (list
> + ;; Nothing to test
> + #:tests? #f
> + #:install-source? #f
> + #:zig-release-type "safe"
> + #:phases #~(modify-phases %standard-phases
> + (add-after 'unpack 'remove-deps
> + (lambda* (#:key inputs #:allow-other-keys)
> + (delete-file-recursively "protocol")
> + (substitute* "build.zig"
> + (("protocol\\/wlr-layer-shell-unstable-v1.xml")
> + (string-append (search-input-file inputs
> + "share/wlr-protocols/unstable/wlr-layer-shell-unstable-v1.xml")))))))))
> + (inputs (list zig-clap zig-img zig-pixman zig-wayland))
> + (native-inputs (list pkg-config wlr-protocols))
> + (home-page "https://codeberg.org/bwbuhse/beanbag")
> + (synopsis "Wallpaper app for Wayland compositors")
> + (description
> + "beanbag is a wallpaper app for Wayland compositors, heavily inspired by dnkl's wbg.")
Either capitalize the first word or use @code (or @command etc. depending on
context) markup, this issue should be found by ‘guix lint’.
Since wbg is packaged, you can reference it by ‘@code{wbg}’.
> + (license license:gpl3)))
> +
> (define-public zig-pixman
> (package
> (name "zig-pixman")
> --
> 2.48.1
>
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Sat, 22 Feb 2025 05:32:03 GMT)
Full text and
rfc822 format available.
Message #41 received at 75522 <at> debbugs.gnu.org (full text, mbox):
On Fri, 21 Feb 2025 03:09:10 +0800,
Ashvith Shetty wrote:
>
> From: Ashvith Shetty <ashvithshetty10 <at> gmail.com>
>
> * gnu/packages/zig-xyz.scm (zig-clap): New variable.
>
> Change-Id: I8982047890799dfe32113f63e63dd7b6110eb8c6
> ---
> gnu/packages/zig-xyz.scm | 42 ++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 42 insertions(+)
>
> diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
> index a76dbb0473..9b6bf09b56 100644
> --- a/gnu/packages/zig-xyz.scm
> +++ b/gnu/packages/zig-xyz.scm
> @@ -3,6 +3,7 @@
> ;;; Copyright © 2023 Ekaitz Zarraga <ekaitz <at> elenq.tech>
> ;;; Copyright © 2023 Felix Lechner <felix.lechner <at> lease-up.com>
> ;;; Copyright © 2024 Justin Veilleux <terramorpha <at> cock.li>
> +;;; Copyright © 2025 Ashvith Shetty <ashvithshetty0010 <at> zohomail.in>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -301,6 +302,47 @@ (define-public zig-xkbcommon
> (home-page "https://codeberg.org/ifreund/zig-xkbcommon")
> (license license:expat)))
>
> +(define-public zig-clap
> + (package
> + (name "zig-clap")
> + (version "0.9.1")
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/Hejsil/zig-clap")
> + (commit version)))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32 "1xjskvyib3kai3nmp574zfm07yvjsbzsxfysj96ss9339nq07ix6"))))
> + (build-system zig-build-system)
> + (arguments
> + (list
> + #:zig zig-0.13))
zig-0.13 is the default, no need to set the argument.
> + (home-page "https://github.com/Hejsil/zig-clap")
> + (synopsis "Command line argument parsing library for Zig")
> + (description
> + "A simple and easy to use command line argument parser library for Zig.
In case you didn't get what a full sentence is: you need a subject and a predicate.
> +
> +Features include:
> +@itemize
> +@item Short arguments -a
> +@itemize
> +@item Chaining -abc where a and b does not take values.
> +@item Multiple specifications are tallied (e.g. -v -v).
> +@end itemize
> +@item Long arguments --long
> +@item Supports both passing values using spacing and = (-a 100, -a=100)
> +@itemize
> +@item Short args also support passing values with no spacing or = (-a100)
> +@item This all works with chaining (-ba 100, -ba=100, -ba100)
> +@end itemize
> +@item Supports options that can be specified multiple times (-e 1 -e 2 -e 3)
> +@item Print help message from parameter specification.
> +@item Parse help message to parameter specification.
> +@end itemize")
> + (license license:expat)))
Please use proper texinfo markups for codes.
Also when writing synopses and descriptions, please consider yourself an end
user and explain the package to yourself first, instead of just copying upstream
documentation. Keep in mind this is a distribution.
> +
> (define-public zig-zls-0.10
> (package
> (name "zig-zls")
> --
> 2.48.1
BTW variables in zig-xyz.scm are sorted alphabetically. When adding new
variables, please follow this rule as well.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Sat, 22 Feb 2025 05:32:04 GMT)
Full text and
rfc822 format available.
Message #44 received at 75522 <at> debbugs.gnu.org (full text, mbox):
On Fri, 21 Feb 2025 03:09:11 +0800,
Ashvith Shetty wrote:
>
> From: Ashvith Shetty <ashvithshetty10 <at> gmail.com>
>
> zig-img is required by beanbag. However, there's no tags at the
> moment, so we'll be using the commit mentioned in beanbag's repo.
Please reflect this information as a comment in package definition instead.
> * gnu/packages/zig-xyz.scm (zig-img): New variable.
>
> Change-Id: If66231806ffa50d0e6ec3091ab50f454db100f21
> ---
> gnu/packages/zig-xyz.scm | 22 ++++++++++++++++++++++
> 1 file changed, 22 insertions(+)
>
> diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
> index 9b6bf09b56..e8fa59227d 100644
> --- a/gnu/packages/zig-xyz.scm
> +++ b/gnu/packages/zig-xyz.scm
> @@ -343,6 +343,28 @@ (define-public zig-clap
> @end itemize")
> (license license:expat)))
>
> +(define-public zig-img
> + (let ((commit "52f10dd3e3b1cd4614fe72a8a8f0eddc7700bc0a")
> + (revision "0"))
> + (package
> + (name "zig-img")
> + (version (git-version "0.1.0" revision commit))
> + (source (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/zigimg/zigimg")
> + (commit commit)))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32
> + "187nh49rdv37arlvf056jiv58n4y87q2pm6qvznn75zrszjlvp0b"))))
> + (build-system zig-build-system)
> + (home-page "https://github.com/zigimg/zigimg")
> + (synopsis "Zig library for reading and writing different image formats")
> + (description
> + "This is a zig library for reading and writing different image formats.")
zig -> Zig
> + (license license:expat))))
> +
> (define-public zig-zls-0.10
> (package
> (name "zig-zls")
> --
> 2.48.1
>
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Mon, 24 Mar 2025 12:12:02 GMT)
Full text and
rfc822 format available.
Message #47 received at 75522 <at> debbugs.gnu.org (full text, mbox):
Ashvith Shetty (3):
gnu: Add zig-clap.
gnu: Add zig-img.
gnu: Add beanbag.
gnu/packages/zig-xyz.scm | 86 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 86 insertions(+)
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Mon, 24 Mar 2025 12:13:02 GMT)
Full text and
rfc822 format available.
Message #50 received at 75522 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
* gnu/packages/zig-xyz.scm (zig-clap): New variable.
Change-Id: Iae01f44bd9ddb312b51cf899c24f6b56a808d026
---
gnu/packages/zig-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index a76dbb0473..4d1cbf9000 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2023 Ekaitz Zarraga <mailto:ekaitz <at> elenq.tech>
;;; Copyright © 2023 Felix Lechner <mailto:felix.lechner <at> lease-up.com>
;;; Copyright © 2024 Justin Veilleux <mailto:terramorpha <at> cock.li>
+;;; Copyright © 2025 Ashvith Shetty <mailto:ashvithshetty0010 <at> zohomail.in>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -141,6 +142,27 @@ (define-public waylock
@code{ext-session-lock-v1} protocol.")
(license license:expat)))
+(define-public zig-clap
+ (package
+ (name "zig-clap")
+ (version "0.9.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Hejsil/zig-clap")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1xjskvyib3kai3nmp574zfm07yvjsbzsxfysj96ss9339nq07ix6"))))
+ (build-system zig-build-system)
+ (home-page "https://github.com/Hejsil/zig-clap")
+ (synopsis "Command line argument parsing library for Zig")
+ (description
+ "@code{zig-clap} is a simple and easy to use command line argument parser library for
+Zig.")
+ (license license:expat)))
+
(define-public zig-diffz
(let ((commit "420fcb22306ffd4c9c3c761863dfbb6bdbb18a73")
(revision "0"))
--
2.48.1
[Message part 2 (text/html, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Mon, 24 Mar 2025 12:14:02 GMT)
Full text and
rfc822 format available.
Message #53 received at 75522 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
* gnu/packages/zig-xyz.scm (zig-img): New variable.
Change-Id: If87e1f65d3aa544b30ea3fb0da4e292bcec5e567
---
gnu/packages/zig-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index 4d1cbf9000..37c6e27e0a 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -187,6 +187,30 @@ (define-public zig-diffz
(home-page "https://github.com/ziglibs/diffz")
(license license:expat))))
+(define-public zig-img
+ ;; zig-img is required by beanbag. However, there's no tags at the
+ ;; moment, so we'll be using the commit mentioned in beanbag's repo.
+ (let ((commit "52f10dd3e3b1cd4614fe72a8a8f0eddc7700bc0a")
+ (revision "0"))
+ (package
+ (name "zig-img")
+ (version (git-version "0.1.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/zigimg/zigimg")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "187nh49rdv37arlvf056jiv58n4y87q2pm6qvznn75zrszjlvp0b"))))
+ (build-system zig-build-system)
+ (home-page "https://github.com/zigimg/zigimg")
+ (synopsis "Zig library for reading and writing different image formats")
+ (description
+ "@code{zig-img} is a Zig library for reading and writing different image formats.")
+ (license license:expat))))
+
(define-public zig-known-folders
(let ((commit "1cceeb70e77dec941a4178160ff6c8d05a74de6f")
(revision "0"))
--
2.48.1
[Message part 2 (text/html, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Mon, 24 Mar 2025 12:15:02 GMT)
Full text and
rfc822 format available.
Message #56 received at 75522 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
* gnu/packages/zig-xyz.scm (beanbag): New variable.
Change-Id: I1ffb34dd771e4cb0938f1c471573e6bbe1ff5046
---
gnu/packages/zig-xyz.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index 37c6e27e0a..9d4d02c02d 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -38,6 +38,46 @@ (define-module (gnu packages zig-xyz)
#:use-module (gnu packages xorg)
#:use-module (gnu packages zig))
+(define-public beanbag
+ (package
+ (name "beanbag")
+ (version "0.1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/bwbuhse/beanbag")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1d2h5bqicqnyawswdq7bg1w9frjk0ra2sva1as2qgc5s7pjclyql"))
+ (snippet (rename-zig-dependencies '(("clap" . "zig-clap")
+ ("zigimg" . "zig-img"))))))
+ (build-system zig-build-system)
+ (arguments
+ (list
+ ;; Nothing to test
+ #:tests? #f
+ #:install-source? #f
+ #:zig-release-type "safe"
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'remove-deps
+ (lambda* (#:key inputs #:allow-other-keys)
+ (delete-file-recursively "protocol")
+ (substitute* "build.zig"
+ (("protocol\\/wlr-layer-shell-unstable-v1.xml")
+ (string-append (search-input-file inputs
+ "share/wlr-protocols/unstable/wlr-layer-shell-unstable-v1.xml")))))))))
+ (inputs (list zig-clap zig-img zig-pixman zig-wayland))
+ (native-inputs (list pkg-config wlr-protocols))
+ (home-page "https://codeberg.org/bwbuhse/beanbag")
+ (synopsis "Wallpaper app for Wayland compositors")
+ (description
+ "@code{beanbag} is a wallpaper app for Wayland compositors, heavily inspired by
+ dnkl's @code{wbg}.")
+ (license license:gpl3)))
+
(define-public river
(package
(name "river")
--
2.48.1
[Message part 2 (text/html, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Mon, 24 Mar 2025 13:11:02 GMT)
Full text and
rfc822 format available.
Message #59 received at 75522 <at> debbugs.gnu.org (full text, mbox):
Ashvith Shetty (3):
gnu: Add zig-clap.
gnu: Add zig-img.
gnu: Add beanbag.
gnu/packages/zig-xyz.scm | 86 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 86 insertions(+)
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Mon, 24 Mar 2025 13:11:03 GMT)
Full text and
rfc822 format available.
Message #62 received at 75522 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/zig-xyz.scm (zig-clap): New variable.
Change-Id: Iae01f44bd9ddb312b51cf899c24f6b56a808d026
---
gnu/packages/zig-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index a76dbb0473..4d1cbf9000 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2023 Ekaitz Zarraga <ekaitz <at> elenq.tech>
;;; Copyright © 2023 Felix Lechner <felix.lechner <at> lease-up.com>
;;; Copyright © 2024 Justin Veilleux <terramorpha <at> cock.li>
+;;; Copyright © 2025 Ashvith Shetty <ashvithshetty0010 <at> zohomail.in>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -141,6 +142,27 @@ (define-public waylock
@code{ext-session-lock-v1} protocol.")
(license license:expat)))
+(define-public zig-clap
+ (package
+ (name "zig-clap")
+ (version "0.9.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Hejsil/zig-clap")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1xjskvyib3kai3nmp574zfm07yvjsbzsxfysj96ss9339nq07ix6"))))
+ (build-system zig-build-system)
+ (home-page "https://github.com/Hejsil/zig-clap")
+ (synopsis "Command line argument parsing library for Zig")
+ (description
+ "@code{zig-clap} is a simple and easy to use command line argument parser library for
+Zig.")
+ (license license:expat)))
+
(define-public zig-diffz
(let ((commit "420fcb22306ffd4c9c3c761863dfbb6bdbb18a73")
(revision "0"))
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Mon, 24 Mar 2025 13:12:01 GMT)
Full text and
rfc822 format available.
Message #65 received at 75522 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/zig-xyz.scm (zig-img): New variable.
Change-Id: If87e1f65d3aa544b30ea3fb0da4e292bcec5e567
---
gnu/packages/zig-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index 4d1cbf9000..37c6e27e0a 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -187,6 +187,30 @@ (define-public zig-diffz
(home-page "https://github.com/ziglibs/diffz")
(license license:expat))))
+(define-public zig-img
+ ;; zig-img is required by beanbag. However, there's no tags at the
+ ;; moment, so we'll be using the commit mentioned in beanbag's repo.
+ (let ((commit "52f10dd3e3b1cd4614fe72a8a8f0eddc7700bc0a")
+ (revision "0"))
+ (package
+ (name "zig-img")
+ (version (git-version "0.1.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/zigimg/zigimg")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "187nh49rdv37arlvf056jiv58n4y87q2pm6qvznn75zrszjlvp0b"))))
+ (build-system zig-build-system)
+ (home-page "https://github.com/zigimg/zigimg")
+ (synopsis "Zig library for reading and writing different image formats")
+ (description
+ "@code{zig-img} is a Zig library for reading and writing different image formats.")
+ (license license:expat))))
+
(define-public zig-known-folders
(let ((commit "1cceeb70e77dec941a4178160ff6c8d05a74de6f")
(revision "0"))
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75522
; Package
guix-patches
.
(Mon, 24 Mar 2025 13:13:02 GMT)
Full text and
rfc822 format available.
Message #68 received at 75522 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/zig-xyz.scm (beanbag): New variable.
Change-Id: I1ffb34dd771e4cb0938f1c471573e6bbe1ff5046
---
gnu/packages/zig-xyz.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index 37c6e27e0a..9d4d02c02d 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -38,6 +38,46 @@ (define-module (gnu packages zig-xyz)
#:use-module (gnu packages xorg)
#:use-module (gnu packages zig))
+(define-public beanbag
+ (package
+ (name "beanbag")
+ (version "0.1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/bwbuhse/beanbag")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1d2h5bqicqnyawswdq7bg1w9frjk0ra2sva1as2qgc5s7pjclyql"))
+ (snippet (rename-zig-dependencies '(("clap" . "zig-clap")
+ ("zigimg" . "zig-img"))))))
+ (build-system zig-build-system)
+ (arguments
+ (list
+ ;; Nothing to test
+ #:tests? #f
+ #:install-source? #f
+ #:zig-release-type "safe"
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'remove-deps
+ (lambda* (#:key inputs #:allow-other-keys)
+ (delete-file-recursively "protocol")
+ (substitute* "build.zig"
+ (("protocol\\/wlr-layer-shell-unstable-v1.xml")
+ (string-append (search-input-file inputs
+ "share/wlr-protocols/unstable/wlr-layer-shell-unstable-v1.xml")))))))))
+ (inputs (list zig-clap zig-img zig-pixman zig-wayland))
+ (native-inputs (list pkg-config wlr-protocols))
+ (home-page "https://codeberg.org/bwbuhse/beanbag")
+ (synopsis "Wallpaper app for Wayland compositors")
+ (description
+ "@code{beanbag} is a wallpaper app for Wayland compositors, heavily inspired by
+ dnkl's @code{wbg}.")
+ (license license:gpl3)))
+
(define-public river
(package
(name "river")
--
2.48.1
Reply sent
to
Hilton Chain <hako <at> ultrarare.space>
:
You have taken responsibility.
(Tue, 25 Mar 2025 09:22:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Ashvith Shetty <ashvithshetty10 <at> gmail.com>
:
bug acknowledged by developer.
(Tue, 25 Mar 2025 09:22:02 GMT)
Full text and
rfc822 format available.
Message #73 received at 75522-done <at> debbugs.gnu.org (full text, mbox):
On Mon, 24 Mar 2025 21:09:49 +0800,
Ashvith Shetty wrote:
>
> Ashvith Shetty (3):
> gnu: Add zig-clap.
> gnu: Add zig-img.
> gnu: Add beanbag.
>
> gnu/packages/zig-xyz.scm | 86 ++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 86 insertions(+)
>
> --
> 2.48.1
Applied as the following commits, with modifications:
14d7fe42b8 gnu: Add beanbag.
82619151c7 gnu: Add zig-zigimg.
3be752259d gnu: Add zig-clap.
Thanks
This bug report was last modified 10 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.