[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/06: gnu: pspp: Update to 2.0.0.
From: |
guix-commits |
Subject: |
02/06: gnu: pspp: Update to 2.0.0. |
Date: |
Tue, 27 Feb 2024 05:52:07 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit ce5f75637575c35a98f80647c1a790d190db1a02
Author: Andy Tai <atai@atai.org>
AuthorDate: Sun Feb 25 15:45:54 2024 -0800
gnu: pspp: Update to 2.0.0.
* gnu/packages/statistics.scm (pspp): Update to 2.0.0
[arguments](phases): Patch test case to make pass due to locale
[native-inputs]: Switch from Python 2 to Python 3
Change-Id: I9feeab72789347033d2df8f23bda9ea27aaa7dd9
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/statistics.scm | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 1c4e2dd66b..d17061205f 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -115,7 +115,7 @@
(define-public pspp
(package
(name "pspp")
- (version "1.4.1")
+ (version "2.0.0")
(source
(origin
(method url-fetch)
@@ -123,11 +123,16 @@
version ".tar.gz"))
(sha256
(base32
- "0lqrash677b09zxdlxp89z6k02y4i23mbqg83956dwl69wc53dan"))))
+ "1pyqlab9kw65wxc8pilcwb64l18w37xxdg3r6n287c7mda4cpxm8"))))
(build-system gnu-build-system)
(arguments
(list #:phases
#~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-test-suite
+ (lambda _
+ (substitute* "tests/output/tex.at"
+ (("AT_CHECK\\(\\[LC_ALL=C.UTF-8 pspp")
+ "AT_CHECK([LC_ALL=en_US.UTF-8 pspp"))))
(add-before 'check 'prepare-tests
;; Prevent irrelevant errors that cause test output
mismatches:
;; ‘Fontconfig error: No writable cache directories’
@@ -149,7 +154,7 @@
`(,glib "bin") ;for glib-genmarshal
perl
pkg-config
- python-2 ;for tests
+ python-3 ;for tests
texinfo))
(home-page "https://www.gnu.org/software/pspp/")
(synopsis "Statistical analysis")
- branch master updated (99e5f3cd14 -> 75bad75367), guix-commits, 2024/02/27
- 03/06: doc: Document required setup steps for Nix service., guix-commits, 2024/02/27
- 04/06: gnu: Add yambar-wayland., guix-commits, 2024/02/27
- 01/06: gnu: petsc: Reduce closure size., guix-commits, 2024/02/27
- 06/06: gnu: gdb: Update to 14.1., guix-commits, 2024/02/27
- 05/06: gnu: googlebenchmark: Update to 1.8.3., guix-commits, 2024/02/27
- 02/06: gnu: pspp: Update to 2.0.0.,
guix-commits <=