all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
To: 38982@debbugs.gnu.org
Cc: Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
Subject: [bug#38982] [PATCH 10/22] gnu: Add gnutls-jami (not yet working).
Date: Mon,  6 Jan 2020 02:11:40 +0100	[thread overview]
Message-ID: <20200106011151.1902-10-tona_kosmicznego_smiecia@interia.pl> (raw)
In-Reply-To: <20200106011151.1902-1-tona_kosmicznego_smiecia@interia.pl>

---
 gnu/packages/jami.scm | 51 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/gnu/packages/jami.scm b/gnu/packages/jami.scm
index 8b24984bd5..db2e52d27f 100644
--- a/gnu/packages/jami.scm
+++ b/gnu/packages/jami.scm
@@ -45,6 +45,7 @@
   #:use-module (gnu packages serialization)
   #:use-module (gnu packages sqlite)
   #:use-module (gnu packages telephony)
+  #:use-module (gnu packages time)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages upnp)
   #:use-module (gnu packages video)
@@ -219,6 +220,56 @@
                 "selftest: pjlib-test pjlib-util-test pjmedia-test"))
              #t)))))))
 
+(define-public gnutls-jami
+  (package
+   (inherit gnutls)
+   (name "gnutls-jami")
+   (native-inputs
+    `(("savoir-faire-linux-patches" ,(jami-source))
+      ("automake" ,automake)
+      ("autoconf" ,autoconf)
+      ("datefudge" ,datefudge)
+      ("openssl" ,openssl)
+      ,@(package-native-inputs gnutls)))
+   (version "3.6.10")
+    (source (origin
+             (method url-fetch)
+             (uri
+              (string-append "mirror://gnupg/gnutls/v"
+                             (version-major+minor version)
+                             "/gnutls-" version ".tar.xz"))
+             ;;(patches (search-patches "gnutls-skip-trust-store-test.patch"))
+             (sha256
+              (base32
+               "14r2h73yfj66cm14k9mnb3kgzq5a7qjg5b31m53bf19vcxkwmwxi"))))
+   (arguments
+    (substitute-keyword-arguments (package-arguments gnutls)
+				  ((#:configure-flags '())
+				   '("--disable-gtk-doc"
+				     "--without-p11-kit"
+				     "--disable-cxx"
+				     "--disable-srp-authentication"
+				     "--disable-psk-authentication-FIXME"
+				     "--with-included-libtasn1"
+				     "--with-included-unistring"
+				     "--disable-openpgp-authentication"
+				     "--disable-openssl-compatibility"
+				     "--disable-guile"
+				     "--disable-nls"
+				     "--disable-dtls-srtp-support"
+				     "--without-libintl-prefix"
+				     "--without-idn"))
+				  ((#:phases phases)
+				   `(modify-phases ,phases
+						   (add-after 'unpack 'apply-patches
+							      (lambda* (#:key inputs #:allow-other-keys)
+								       (let ((jami-apply-dependency-patches ,jami-apply-dependency-patches))
+									 (jami-apply-dependency-patches #:inputs inputs
+													#:dep-name "gnutls"
+													#:patches
+													'("downgrade-gettext-requirement"))
+									 #t)))))))))
+
 (define-public ffmpeg-jami
   (package
    (inherit ffmpeg)
-- 
2.24.1

  parent reply	other threads:[~2020-01-06 11:11 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-06  1:11 [bug#38984] [PATCH 01/22] gnu: jami: Bump to 20191128.1.4c44bb7 Jan Wielkiewicz
2020-01-06  1:11 ` [bug#38984] [PATCH 02/22] gnu: jami: fix downloading by changing the prefix to jami_ Jan Wielkiewicz
2020-01-06  1:11 ` [bug#38969] [PATCH 03/22] gnu: Add libnatpmp Jan Wielkiewicz
2020-01-06 18:05   ` bug#38969: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38975] [PATCH 04/22] gnu: libupnp: Bump to 1.8.3; change fetch-method; add missing dependencies Jan Wielkiewicz
2020-01-06 18:07   ` bug#38975: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38977] [PATCH 05/22] gnu: Jami: add libnatpmp (an optional dependency) Jan Wielkiewicz
2020-01-06 18:07   ` bug#38977: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38964] [PATCH 06/22] gnu: jami: Move Jami and its dependencies to a separate file (jami.scm) Jan Wielkiewicz
2020-01-06  1:36   ` bug#38964: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38979] [PATCH 07/22] gnu: jami: Fix the procedure for applying patches. Use the procedure correctly in pjproject-jami Jan Wielkiewicz
2020-01-06 18:08   ` bug#38979: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38961] [PATCH 08/22] gnu: Add ffmpeg-jami Jan Wielkiewicz
2020-01-06  1:38   ` bug#38961: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38983] [PATCH 09/22] gnu: jami: Bump to 20191209.1.4b48135 Jan Wielkiewicz
2020-01-07  0:37   ` bug#38983: Closing the broken patch Jan
2020-01-06  1:11 ` Jan Wielkiewicz [this message]
2020-01-07  0:38   ` bug#38982: " Jan
2020-01-06  1:11 ` [bug#38984] [PATCH 11/22] gnu: jami: Bump to 20191214.1.07edb5e Jan Wielkiewicz
2020-01-06  1:11 ` [bug#38960] [PATCH 12/22] gnu: ffmpeg-jami: skip tests Jan Wielkiewicz
2020-01-06  1:39   ` bug#38960: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38971] [PATCH 13/22] gnu: jami: bump to 20191217.1.ce5f295 Jan Wielkiewicz
2020-01-06 18:06   ` bug#38971: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38974] [PATCH 14/22] gnu: opendht: Bump to 2.0.0beta3 Jan Wielkiewicz
2020-01-06 18:06   ` bug#38974: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38976] [PATCH 15/22] gnu: restinio: Bump to 0.6.1.1 Jan Wielkiewicz
2020-01-06 18:07   ` bug#38976: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38978] [PATCH 16/22] gnu: pjproject-jami: Fix formatting - replace a tab sign with a space. No code changes! Jan Wielkiewicz
2020-01-06 18:07   ` bug#38978: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38962] [PATCH 17/22] gnu: pjproject-jami: Remove unnecessary lambda, which came from doing rebase improperly; jami.scm: untabify, remove trailing whitespace Jan Wielkiewicz
2020-01-06  1:37   ` bug#38962: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38963] [PATCH 18/22] gnu: jami.scm: Fix formatting. No code changes! Jan Wielkiewicz
2020-01-06  1:37   ` bug#38963: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38984] [PATCH 19/22] gnu: jami: Bump to 20191224.1.5c0154a Jan Wielkiewicz
2020-01-06  1:11 ` [bug#38984] [PATCH 20/22] gnu: libring: Use ffmpeg-jami instead of ffmpeg Jan Wielkiewicz
2020-01-06  1:11 ` [bug#38970] [PATCH 21/22] gnu: pjproject-jami: Apply a missing patch Jan Wielkiewicz
2020-01-06 18:05   ` bug#38970: Closing the broken patch Jan
2020-01-06  1:11 ` [bug#38972] [PATCH 22/22] gnu: jami: Bump to 20191227.2.74b55b6 Jan Wielkiewicz
2020-01-06 18:06   ` bug#38972: Closing the broken patch Jan
2020-01-07  0:38 ` bug#38984: " Jan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200106011151.1902-10-tona_kosmicznego_smiecia@interia.pl \
    --to=tona_kosmicznego_smiecia@interia.pl \
    --cc=38982@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.