unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#72318] [PATCH] gnu: Add fyi.
@ 2024-07-27 10:27 Ashish SHUKLA via Guix-patches via
  2024-08-02 22:01 ` [bug#72318] [PATCH v2] " Ashish SHUKLA via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: Ashish SHUKLA via Guix-patches via @ 2024-07-27 10:27 UTC (permalink / raw)
  To: 72318; +Cc: Ashish SHUKLA

* gnu/packages/xdisorg.scm (fyi): New variable.

Change-Id: I8bbc45324495cc0248bedd793b1a951aa0126706
---
 gnu/packages/xdisorg.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 4c12835b24..dd6f265daf 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -63,6 +63,7 @@
 ;;; Copyright © 2022 Mehmet Tekman <mtekman89@gmail.com>
 ;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
 ;;; Copyright © 2024 Igor Goryachev <igor@goryachev.org>
+;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3852,3 +3853,24 @@ (define-public xxkb
 accepts events from XKB.  That means that it will work with the existing
 setup of your X Server without any modifications.")
     (license license:artistic2.0)))
+
+(define-public fyi
+  (package
+    (name "fyi")
+    (version "1.0.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://codeberg.org/dnkl/fyi")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256 (base32 "19l1w30wsm3gac0s1f81jxgmibi3qgx8f73hi047ykbxiwdccvqz"))))
+    (build-system meson-build-system)
+    (inputs (list dbus))
+    (native-inputs (list pkg-config))
+    (home-page "https://codeberg.org/dnkl/fyi")
+    (synopsis "A lightweight alternative to notify-send")
+    (description "FYI (for your information) is a command line utility to send
+desktop notifications to the user via a notification daemon implementing XDG desktop
+notifications.")
+    (license license:expat)))

base-commit: c6ff1d6ff761af0bd9bac5403fd834f04a14a192
-- 
2.45.2





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#72318] [PATCH v2] gnu: Add fyi.
  2024-07-27 10:27 [bug#72318] [PATCH] gnu: Add fyi Ashish SHUKLA via Guix-patches via
@ 2024-08-02 22:01 ` Ashish SHUKLA via Guix-patches via
  2024-08-19 18:07   ` bug#72318: " Nicolas Goaziou via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: Ashish SHUKLA via Guix-patches via @ 2024-08-02 22:01 UTC (permalink / raw)
  To: 72318; +Cc: Ashish SHUKLA, Ashish SHUKLA

* gnu/packages/xdisorg.scm (fyi): New variable.

Change-Id: I8bbc45324495cc0248bedd793b1a951aa0126706
---
 gnu/packages/xdisorg.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 4c12835b24..67cd491f66 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -63,6 +63,7 @@
 ;;; Copyright © 2022 Mehmet Tekman <mtekman89@gmail.com>
 ;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
 ;;; Copyright © 2024 Igor Goryachev <igor@goryachev.org>
+;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3852,3 +3853,24 @@ (define-public xxkb
 accepts events from XKB.  That means that it will work with the existing
 setup of your X Server without any modifications.")
     (license license:artistic2.0)))
+
+(define-public fyi
+  (package
+    (name "fyi")
+    (version "1.0.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://codeberg.org/dnkl/fyi")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256 (base32 "29l1w30wsm3gac0s1f81jxgmibi3qgx8f73hi047ykbxiwdccvqz"))))
+    (build-system meson-build-system)
+    (inputs (list dbus))
+    (native-inputs (list pkg-config))
+    (home-page "https://codeberg.org/dnkl/fyi")
+    (synopsis "A lightweight alternative to notify-send")
+    (description "FYI (for your information) is a command line utility to send
+desktop notifications to the user via a notification daemon implementing XDG desktop
+notifications.")
+    (license license:expat)))

base-commit: b20956651a53a8f23828fdeb6945e1a31e6997a8
-- 
2.46.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#72318: [PATCH v2] gnu: Add fyi.
  2024-08-02 22:01 ` [bug#72318] [PATCH v2] " Ashish SHUKLA via Guix-patches via
@ 2024-08-19 18:07   ` Nicolas Goaziou via Guix-patches via
  0 siblings, 0 replies; 3+ messages in thread
From: Nicolas Goaziou via Guix-patches via @ 2024-08-19 18:07 UTC (permalink / raw)
  To: Ashish SHUKLA via Guix-patches via; +Cc: Ashish SHUKLA, 72318-done

Hello,

Ashish SHUKLA via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/xdisorg.scm (fyi): New variable.

Thank you. Applied with the following changes.

> +(define-public fyi
> +  (package
> +    (name "fyi")
> +    (version "1.0.2")

I updated it to 1.0.3.

> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                    (url "https://codeberg.org/dnkl/fyi")
> +                    (commit version)))
> +              (file-name (git-file-name name version))
> +              (sha256 (base32 "29l1w30wsm3gac0s1f81jxgmibi3qgx8f73hi047ykbxiwdccvqz"))))

I updated this accordingly, but this hash was also wrong for the version
1.0.2, FWIW.

> +    (synopsis "A lightweight alternative to notify-send")

I removed the article "A" at the beginning of the synopsis.

> +    (description "FYI (for your information) is a command line utility to send

I used @acronym{...} Texinfo command here.

Regards,
-- 
Nicolas Goaziou






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-08-19 18:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-27 10:27 [bug#72318] [PATCH] gnu: Add fyi Ashish SHUKLA via Guix-patches via
2024-08-02 22:01 ` [bug#72318] [PATCH v2] " Ashish SHUKLA via Guix-patches via
2024-08-19 18:07   ` bug#72318: " Nicolas Goaziou via Guix-patches via

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).