[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: liquid-dsp: Update to 1.5.0.
From: |
guix-commits |
Subject: |
branch master updated: gnu: liquid-dsp: Update to 1.5.0. |
Date: |
Mon, 21 Nov 2022 08:53:06 -0500 |
This is an automated email from the git hooks/post-receive script.
glv pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new b83982bc8b gnu: liquid-dsp: Update to 1.5.0.
b83982bc8b is described below
commit b83982bc8beb34399de3b8236754279fdd70237d
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Mon Nov 21 14:44:18 2022 +0100
gnu: liquid-dsp: Update to 1.5.0.
* gnu/packages/radio.scm (liquid-dsp): Update to 1.5.0.
---
gnu/packages/radio.scm | 24 ++++++++++++++----------
1 file changed, 14 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index e36dc55795..3834599cfc 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -175,7 +175,7 @@ used as a drop-in substitute for @code{libfec}.")
(define-public liquid-dsp
(package
(name "liquid-dsp")
- (version "1.4.0")
+ (version "1.5.0")
(source
(origin (method git-fetch)
(uri (git-reference
@@ -183,21 +183,25 @@ used as a drop-in substitute for @code{libfec}.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32
"0mr86z37yycrqwbrmsiayi1vqrgpjq0pn1c3p1qrngipkw45jnn0"))))
+ (base32
"0m0bhj80rs9yhfwnrlx960lii1cqijz1wr8q93i7m2z91h3v3w0j"))))
(build-system gnu-build-system)
(native-inputs
(list autoconf automake))
(inputs
(list fftwf libfec))
(arguments
- `(;; For reproducibility, disable use of SSE3, SSE4.1, etc.
- #:configure-flags '("--enable-simdoverride")
- #:phases
- (modify-phases %standard-phases
- (add-after 'install 'delete-static-library
- (lambda* (#:key outputs #:allow-other-keys)
- (delete-file (string-append (assoc-ref outputs "out")
- "/lib/libliquid.a")))))))
+ (list
+ ;; For reproducibility, disable use of SSE3, SSE4.1, etc.
+ #:configure-flags #~(list "--enable-simdoverride")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'install 'delete-static-library
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((version #$(version-major+minor
+ (package-version this-package))))
+ (delete-file (string-append #$output
+ "/lib/libliquid.a."
+ version))))))))
(home-page "https://liquidsdr.org")
(synopsis "Signal processing library for software-defined radios")
(description
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: liquid-dsp: Update to 1.5.0.,
guix-commits <=