GNU bug report logs -
#25918
[PATCH 1/3] gnu: Add libmesode.
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#25918: [PATCH 1/3] gnu: Add libmesode.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 25918 <at> debbugs.gnu.org.
--
25918: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=25918
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
On Thu, Mar 02, 2017 at 11:46:26PM +0100, Mekeor Melire wrote:
> From f413c7ed74e30d73d9fe17f3b8cd3ef86842e22c Mon Sep 17 00:00:00 2001
> From: Mekeor Melire <mekeor.melire <at> gmail.com>
> Date: Thu, 2 Mar 2017 23:30:18 +0100
> Subject: [PATCH 1/3] gnu: Add libmesode.
>
> * gnu/packages/messaging.scm (libmesode): New variable.
> From af0bcb551ca9a7b03df9442d2e6bf9c7a6d78b21 Mon Sep 17 00:00:00 2001
> From: Mekeor Melire <mekeor.melire <at> gmail.com>
> Date: Thu, 2 Mar 2017 23:31:09 +0100
> Subject: [PATCH 2/3] gnu: Add libstrophe.
>
> * gnu/packages/messaging.scm (libstrophe): New variable.
> From 90a0cac4263416b01a66f2464208d09d444208f1 Mon Sep 17 00:00:00 2001
> From: Mekeor Melire <mekeor.melire <at> gmail.com>
> Date: Thu, 2 Mar 2017 23:31:50 +0100
> Subject: [PATCH 3/3] gnu: Add profanity.
>
> * gnu/packages/messaging.scm (profanity): New variable.
Thanks! Pushed with minor edits to synopses, and I also used the package
version to construct profanity's source URL.
Sorry for the delay — I think we got side-tracked by discussion of our
development workflows :)
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
From aff05409f65025c007d7a50f5d4e90b301ce3b18 Mon Sep 17 00:00:00 2001
From: Mekeor Melire <mekeor.melire <at> gmail.com>
Date: Wed, 1 Mar 2017 20:08:04 +0100
Subject: [PATCH 1/3] gnu: Add libmesode.
* gnu/packages/messaging.scm (libmesode): New variable.
---
gnu/packages/messaging.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 0ffc031c8..b3d988be7 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -8,6 +8,7 @@
;;; Copyright © 2016, 2017 <contact.ng0 <at> cryptolab.net>
;;; Copyright © 2016 Andy Patterson <ajpatter <at> uwaterloo.ca>
;;; Copyright © 2016, 2017 Clément Lassieur <clement <at> lassieur.org>
+;;; Copyright © 2017 Mekeor Melire <mekeor.melire <at> gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1222,4 +1223,37 @@ is also scriptable and extensible via Guile.")
(home-page "https://www.gnu.org/software/freetalk")
(license license:gpl3+)))
+(define-public libmesode
+ (package
+ (name "libmesode")
+ (version "0.9.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/boothj5/libmesode/archive/"
+ version ".tar.gz")
+ (sha256
+ (base32
+ "0iaj56fkd5bjvqpvq3324ni895rmbj1akbfqipjydnghfwaym4z6"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-before 'configure 'bootstrap
+ (lambda _
+ (zero? (system* "./bootstrap.sh")))))))
+ (inputs
+ `(("expat" ,expat)
+ ("openssl" ,openssl)))
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("libtool" ,libtool)
+ ("pkg-config" ,pkg-config)))
+ (synopsis "A simple, lightweight C library for writing XMPP clients")
+ (description "Libmesode is a fork of libstrophe for use with Profanity
+XMPP Client. In particular, libmesode provides extra TLS functionality such as
+manual SSL certificate verification.")
+ (home-page "https://github.com/boothj5/libmesode")
+ (license (list license:gpl3+ license:x11))))
+
;;; messaging.scm ends here
--
2.11.0
This bug report was last modified 8 years and 72 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.