[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/07: gnu: libsrtp: Update to 2.2.0.
From: |
Marius Bakke |
Subject: |
06/07: gnu: libsrtp: Update to 2.2.0. |
Date: |
Thu, 28 Jun 2018 19:10:00 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit f04152ef3b8f92d30c94fe2962d38166040e9e9f
Author: Marius Bakke <address@hidden>
Date: Thu Jun 28 16:10:55 2018 +0200
gnu: libsrtp: Update to 2.2.0.
* gnu/packages/telephony.scm (libsrtp): Update to 2.2.0.
[arguments]: Remove #:phases.
---
gnu/packages/telephony.scm | 24 +++---------------------
1 file changed, 3 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm
index 201cd80..246d859 100644
--- a/gnu/packages/telephony.scm
+++ b/gnu/packages/telephony.scm
@@ -218,7 +218,7 @@ internet.")
(define-public libsrtp
(package
(name "libsrtp")
- (version "1.6.0")
+ (version "2.2.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/cisco/libsrtp/archive/v"
@@ -226,31 +226,13 @@ internet.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "1ppdqsrx5ni54vmd4kdzzmvgmf5ixb04w0jw7idy8mad6l27jghs"))))
+ "02x5l5h2nq6f9gq1bmgz5v9jmnqaab51p8aldglng1z7pjbp9za4"))))
(native-inputs
`(("psmisc" ,psmisc) ;some tests require 'killall'
("procps" ,procps)))
(build-system gnu-build-system)
(arguments
- '(#:test-target "runtest"
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'patch-mips-variable-in-testsuite
- ;; This comes from https://github.com/cisco/libsrtp/pull/151
- (lambda _
- (substitute* "test/srtp_driver.c"
- (("mips ") "mips_est ")
- (("mips\\)") "mips_est)"))
- #t))
- (add-after 'unpack 'patch-dictionary-location
- ;; With the above changes, the rtpw_test.sh test finally runs, and
fails.
- (lambda _
- (substitute* "test/rtpw.c"
- (("/usr/share/dict/words")
- (string-append (assoc-ref %build-inputs "procps")
- "/share/doc/procps-ng/FAQ"))
- (("words.txt") "FAQ"))
- #t)))))
+ '(#:test-target "runtest"))
(synopsis "Secure RTP (SRTP) Reference Implementation")
(description
"This package provides an implementation of the Secure Real-time Transport
- branch master updated (6acdfa9 -> e689d8f), Marius Bakke, 2018/06/28
- 03/07: gnu: python-pandas: Update to 0.23.1., Marius Bakke, 2018/06/28
- 04/07: gnu: python-pyopenssl: Update to 18.0.0., Marius Bakke, 2018/06/28
- 01/07: gnu: samba: Update to 4.8.3., Marius Bakke, 2018/06/28
- 02/07: gnu: python-numpy: Update to 1.14.5., Marius Bakke, 2018/06/28
- 05/07: gnu: imagemagick: Update to 6.9.10-3., Marius Bakke, 2018/06/28
- 07/07: gnu: feh: Update to 2.27., Marius Bakke, 2018/06/28
- 06/07: gnu: libsrtp: Update to 2.2.0.,
Marius Bakke <=