GNU bug report logs - #77706
[PATCH] gnu: emacs-julia-mode: Update to 1.0.2-0.7fc071e.

Previous Next

Package: guix-patches;

Reported by: Cayetano Santos <csantosb <at> inventati.org>

Date: Thu, 10 Apr 2025 14:36:02 UTC

Severity: normal

Tags: patch

Done: Christopher Baines <mail <at> cbaines.net>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Christopher Baines <mail <at> cbaines.net>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#77706: closed ([PATCH] gnu: emacs-julia-mode: Update to
 1.0.2-0.7fc071e.)
Date: Fri, 11 Apr 2025 11:39:03 +0000
[Message part 1 (text/plain, inline)]
Your message dated Fri, 11 Apr 2025 12:38:43 +0100
with message-id <87iknbudvg.fsf <at> cbaines.net>
and subject line Re: [bug#77706] [PATCH] gnu: emacs-julia-mode: Update to 1.0.2-0.7fc071e.
has caused the debbugs.gnu.org bug report #77706,
regarding [PATCH] gnu: emacs-julia-mode: Update to 1.0.2-0.7fc071e.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
77706: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=77706
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Cayetano Santos <csantosb <at> inventati.org>
To: guix-patches <at> gnu.org
Cc: Cayetano Santos <csantosb <at> inventati.org>
Subject: [PATCH] gnu: emacs-julia-mode: Update to 1.0.2-0.7fc071e.
Date: Thu, 10 Apr 2025 16:34:01 +0200
* gnu/packages/emacs-xyz.scm (emacs-julia-mode): Update to 1.0.2-0.7fc071e.

[arguments]<#:include>: Add make-julia-latexsubs.jl.
[arguments]<#:phases>: No more need of fix-test phase.

Change-Id: Ibb8cddcab527fc692f741eca5314f9c6190e40d2
---
 gnu/packages/emacs-xyz.scm | 21 ++++++---------------
 1 file changed, 6 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 421b9b4cfa..fea22fa557 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -15953,12 +15953,11 @@ (define-public emacs-eprime
       (license license:gpl3+))))
 
 (define-public emacs-julia-mode
-  ;; Last release was in March 2020.
-  (let ((commit "7a8c868e0d3e51ba4a2c621ee22ca9599e0e4bbb")
+  (let ((commit "7fc071eb2c383d44be6d61ea6cef73b0cc8ef9b7")
         (revision "0"))
     (package
       (name "emacs-julia-mode")
-      (version (git-version "0.4" revision commit))
+      (version (git-version "1.0.2" revision commit))
       (source
        (origin
          (method git-fetch)
@@ -15968,24 +15967,16 @@ (define-public emacs-julia-mode
          (file-name (git-file-name name version))
          (sha256
           (base32
-           "0xwd4kq69ray6bk8hwjxnqf7myc3mn36chc2l9jn7a0x1f8x6k10"))))
+           "1dfls9ggn192xblfyjrbxi007hg4yd25s2cl8zh0v40akpqclhqc"))))
       (build-system emacs-build-system)
       (arguments
        (list
+        #:include
+        #~(cons* "^make-julia-latexsubs\\.jl" %default-include)
         #:tests? #t
         #:test-command #~(list "emacs" "--batch"
                                "-l" "julia-mode-tests.el"
-                               "-f" "ert-run-tests-batch-and-exit")
-        #:phases
-        #~(modify-phases %standard-phases
-            (add-before 'check 'fix-test
-              (lambda _
-                (substitute* "julia-mode-tests.el"
-                  ;; The test started failing with Emacs 29; see
-                  ;; <https://github.com/JuliaEditorSupport/julia-emacs/issues/199>
-                  ;; and discrepancy reported <https://issues.guix.gnu.org/66763>.
-                  (("julia--test-end-of-defun-nested-2.*" all)
-                   (string-append all "  :expected-result :failed\n"))))))))
+                               "-f" "ert-run-tests-batch-and-exit")))
       (home-page "https://github.com/JuliaEditorSupport/julia-emacs")
       (synopsis "Major mode for Julia")
       (description "This Emacs package provides a mode for the Julia

base-commit: 07c9a4273152deb128006b5ac2087d5fe30a5927
-- 
2.49.0



[Message part 3 (message/rfc822, inline)]
From: Christopher Baines <mail <at> cbaines.net>
To: Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org>
Cc: Ian Eure <ian <at> retrospec.tv>, 77706-done <at> debbugs.gnu.org,
 Katherine Cox-Buday <cox.katherine.e+guix <at> gmail.com>,
 Cayetano Santos <csantosb <at> inventati.org>, Andrew Tropin <andrew <at> trop.in>,
 Hilton Chain <hako <at> ultrarare.space>,
 Divya Ranjan Pattanaik <divya <at> subvertising.org>,
 Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Subject: Re: [bug#77706] [PATCH] gnu: emacs-julia-mode: Update to
 1.0.2-0.7fc071e.
Date: Fri, 11 Apr 2025 12:38:43 +0100
[Message part 4 (text/plain, inline)]
Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-julia-mode): Update to 1.0.2-0.7fc071e.
>
> [arguments]<#:include>: Add make-julia-latexsubs.jl.
> [arguments]<#:phases>: No more need of fix-test phase.
>
> Change-Id: Ibb8cddcab527fc692f741eca5314f9c6190e40d2
> ---
>  gnu/packages/emacs-xyz.scm | 21 ++++++---------------
>  1 file changed, 6 insertions(+), 15 deletions(-)

Thanks for the patch, I've pushed this to master as
33c3ee5985b05ca67b26b559ee5b8833f6e2d656.

Chris
[signature.asc (application/pgp-signature, inline)]

This bug report was last modified 40 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.