From bb87745253f5eca6697e91bf30a00b7f094496d8 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 21 Feb 2024 10:02:18 +0100 Subject: gnu: emacs-ess: Update to 24.01.1. * gnu/packages/statistics.scm (emacs-ess): Update to 24.01.1. [source]: Remove patch to fix r-help-mode test. [arguments]: Enable some tests; only run tests conditionally. Change-Id: Ib341eac2d2e57cda7b2534bf88b0dd762b56281a --- gnu/packages/statistics.scm | 42 ++++++++---------------------------------- 1 file changed, 8 insertions(+), 34 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index dd8deef0f0..01d5e25a1a 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015-2023 Ricardo Wurmus +;;; Copyright © 2015-2024 Ricardo Wurmus ;;; Copyright © 2015 Vicente Vera Parra ;;; Copyright © 2016 Andreas Enge ;;; Copyright © 2016, 2017, 2019, 2020, 2021 Efraim Flashner @@ -6808,8 +6808,8 @@ (define-public java-jdistlib (license license:gpl2+))) (define-public emacs-ess - (let ((commit "3691ecc642eab5d016887e42699648e0eeeef566") - (version "18.10.2") + (let ((commit "ab2faeca1ba6c456333312c58f58ef9e5ef4aa8b") + (version "24.01.1") (revision "1")) (package (name "emacs-ess") @@ -6821,7 +6821,7 @@ (define-public emacs-ess (url "https://github.com/emacs-ess/ESS") (commit commit))) (sha256 - (base32 "19p8djsbgvahpsx1w8i6h3qvpbdr4isjwm3wi82yk2648ri0qsq1")) + (base32 "0jfdfqpa3x1zm65cllkzhqir057xd3hxi4z2ddii1i26zy56iikf")) (file-name (git-file-name name version)) (modules '((guix build utils))) (snippet @@ -6839,9 +6839,6 @@ (define-public emacs-ess ;; Stop install-info from trying to update the info directory. (substitute* "doc/Makefile" ((".*/dir.*") "")) - ;; Fix r-help-mode test. - (substitute* "test/ess-test-r.el" - (("\\(equal ess-help-object \"plot.default\")") "t")) ;; Avoid generating ess-autoloads.el twice. (substitute* "Makefile" (("all: lisp doc etc autoloads") @@ -6871,9 +6868,6 @@ (define-public emacs-ess #~(modify-phases %standard-phases (delete 'configure) (add-before 'check 'skip-failing-tests - ;; The command-without-trailing-newline-test and other - ;; tests fail for unknown reasons (see: - ;; https://github.com/emacs-ess/ESS/issues/1272). (lambda _ (let-syntax ((disable-tests @@ -6885,22 +6879,7 @@ (define-public emacs-ess (((string-append "^\\(ert-deftest " test-name ".*") all) (string-append all "(skip-unless nil)\n")) - ...)))) - (disable-etests ;different test syntax - (syntax-rules () - ((_ file ()) - (syntax-error "test names list must not be empty")) - ((_ file (test-name ...)) - (emacs-batch-edit-file file - '(progn - (mapc (lambda (test) - (goto-char (point-min)) - (search-forward - (format "etest-deftest %s " test)) - (beginning-of-line) - (kill-sexp)) - (list test-name ...)) - (basic-save-buffer))))))) + ...))))) (disable-tests (list "test/ess-test-inf.el" "test/ess-test-r.el") ("ess--derive-connection-path" @@ -6910,15 +6889,10 @@ (define-public emacs-ess "ess-r-load-ESSR-github-fetch-no" "ess-r-load-ESSR-github-fetch-yes" "ess-set-working-directory-test" - "ess-test-r-startup-directory")) - (disable-etests "test/ess-test-r-eval.el" - ("ess-r-eval-ns-env-roxy-tracebug-test" - "ess-r-eval-sink-freeze-test")) - (disable-etests - "test/ess-test-inf.el" - ("command-without-trailing-newline-test"))))) + "ess-test-r-startup-directory"))))) (replace 'check - (lambda _ (invoke "make" "test"))))))) + (lambda* (#:key tests? #:allow-other-keys) + (when tests? (invoke "make" "test")))))))) (native-inputs (list perl r-roxygen2 texinfo)) (inputs (list emacs-minimal r-minimal)) (propagated-inputs (list emacs-julia-mode)) -- cgit v1.2.3