GNU bug report logs - #61218
[PATCH] gnu: Add emacs-jabber.

Previous Next

Package: guix-patches;

Reported by: Antero Mejr <antero <at> mailbox.org>

Date: Wed, 1 Feb 2023 20:33:01 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

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 61218 in the body.
You can then email your comments to 61218 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#61218; Package guix-patches. (Wed, 01 Feb 2023 20:33:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Antero Mejr <antero <at> mailbox.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 01 Feb 2023 20:33:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Antero Mejr <antero <at> mailbox.org>
To: guix-patches <at> gnu.org
Cc: Antero Mejr <antero <at> mailbox.org>
Subject: [PATCH] gnu: Add emacs-jabber.
Date: Wed,  1 Feb 2023 20:31:21 +0000
* gnu/packages/emacs-xyz.scm (emacs-jabber): New variable.
---
Please apply in reverse order, thanks.

 gnu/packages/emacs-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index b98798a7d2..ae3466bb1a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -35653,6 +35653,42 @@ (define-public emacs-srv
 in turn.")
     (license license:gpl2+)))
 
+(define-public emacs-jabber
+  ;; No releases available.
+  (let ((commit "af0315e174fa6446d5c4dd3e6465d48912950e58")
+        (revision "0"))
+    (package
+      (name "emacs-jabber")
+      (version (git-version "0.8.92" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://codeberg.org/emacs-jabber/emacs-jabber")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "08q0hbm4pvp8sf261w1ihqa93sg8blfybfkhq7wrnvgs6kasgwvq"))))
+      (build-system emacs-build-system)
+      (arguments
+       (list #:emacs emacs ;requires gnutls
+             #:phases #~(modify-phases %standard-phases
+                          (add-after 'build 'make-info
+                            (lambda _
+                              (invoke "makeinfo" "jabber.texi")
+                              (install-file "jabber.info"
+                                            (string-append #$output
+                                                           "/share/info")))))))
+      (native-inputs (list texinfo))
+      (propagated-inputs (list emacs-fsm emacs-hexrgb emacs-srv gnutls))
+      (home-page "https://codeberg.org/emacs-jabber/emacs-jabber")
+      (synopsis "XMPP (Jabber) client for Emacs")
+      (description
+       "@code{jabber.el} is an XMPP client for Emacs.  XMPP (also known as
+\"Jabber\") is an instant messaging system; see @url{https://xmpp.org} for more
+information.")
+      (license license:gpl2+))))
+
 ;;;
 ;;; Avoid adding new packages to the end of this file. To reduce the chances
 ;;; of a merge conflict, place them above by existing packages with similar
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#61218; Package guix-patches. (Wed, 01 Feb 2023 20:36:02 GMT) Full text and rfc822 format available.

Message #8 received at 61218 <at> debbugs.gnu.org (full text, mbox):

From: Antero Mejr <antero <at> mailbox.org>
To: 61218 <at> debbugs.gnu.org
Cc: Antero Mejr <antero <at> mailbox.org>
Subject: [PATCH] gnu: Add emacs-srv.
Date: Wed,  1 Feb 2023 20:35:05 +0000
* gnu/packages/emacs-xyz.scm (emacs-srv): New variable.
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7dfa98f6ba..b98798a7d2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -35630,6 +35630,29 @@ (define-public emacs-hexrgb
 @end itemize")
     (license license:gpl2+)))
 
+(define-public emacs-srv
+  (package
+    (name "emacs-srv")
+    (version "0.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/legoscia/srv.el")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1a8pqhdi7m3lis5ad2f74s1sy8zpxlwvfsvd80lw746235x2v06z"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/legoscia/srv.el")
+    (synopsis "Emacs Lisp library to perform SRV DNS requests")
+    (description
+     "@code{srv.el} implements RFC 2782 (SRV records).  It is used to look up
+hostname and port for a service at a specific domain.  There might be multiple
+results, and the caller is supposed to attempt to connect to each hostname+port
+in turn.")
+    (license license:gpl2+)))
+
 ;;;
 ;;; Avoid adding new packages to the end of this file. To reduce the chances
 ;;; of a merge conflict, place them above by existing packages with similar
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#61218; Package guix-patches. (Wed, 01 Feb 2023 20:37:01 GMT) Full text and rfc822 format available.

Message #11 received at 61218 <at> debbugs.gnu.org (full text, mbox):

From: Antero Mejr <antero <at> mailbox.org>
To: 61218 <at> debbugs.gnu.org
Cc: Antero Mejr <antero <at> mailbox.org>
Subject: [PATCH] gnu: Add emacs-hexrgb.
Date: Wed,  1 Feb 2023 20:35:59 +0000
* gnu/packages/emacs-xyz.scm (emacs-hexrgb): New variable.
---
 gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ba2916a463..7dfa98f6ba 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -35602,6 +35602,34 @@ (define-public emacs-vertico-posframe
 a vertical completion UI.")
     (license license:gpl3+)))
 
+(define-public emacs-hexrgb
+  (package
+    (name "emacs-hexrgb")
+    (version "961")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/emacsmirror/hexrgb")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1j073dyzl343zh0nygldf9z3ixa57picq39a95mlz0p4pf6fmpx7"))))
+    (build-system emacs-build-system)
+    (home-page "https://www.emacswiki.org/emacs/hexrgb.el")
+    (synopsis "Emacs functions to convert color formats")
+    (description
+     "@code{hexrgb.el} provides functions for converting between RGB
+(red, green, blue) color components and HSV (hue, saturation, value) color
+components.  It converts:
+@itemize
+@item Emacs color components (whole numbers from 0 through 65535)
+@item RGB and HSV floating-point components (0.0 through 1.0)
+@item Emacs color-name strings (such as \"blue\")
+@item hex RGB color strings (such as \"#FC43A7912\")
+@end itemize")
+    (license license:gpl2+)))
+
 ;;;
 ;;; Avoid adding new packages to the end of this file. To reduce the chances
 ;;; of a merge conflict, place them above by existing packages with similar
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#61218; Package guix-patches. (Fri, 03 Feb 2023 22:48:01 GMT) Full text and rfc822 format available.

Message #14 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Antero Mejr via Guix-patches via <guix-patches <at> gnu.org>
Cc: 61218-done <at> debbugs.gnu.org, Antero Mejr <antero <at> mailbox.org>
Subject: Re: [bug#61218] [PATCH] gnu: Add emacs-jabber.
Date: Fri, 03 Feb 2023 23:47:13 +0100
Hello,

Antero Mejr via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-jabber): New variable.
> ---
> Please apply in reverse order, thanks.

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou




Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Fri, 03 Feb 2023 22:48:02 GMT) Full text and rfc822 format available.

Notification sent to Antero Mejr <antero <at> mailbox.org>:
bug acknowledged by developer. (Fri, 03 Feb 2023 22:48:02 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. (Sat, 04 Mar 2023 12:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 54 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.